aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2017-06-13 19:34:41 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2017-06-13 19:39:52 +0200
commit3cb4ced6f354afcc5a9fbaded27769d2e425ccc6 (patch)
treebf7a38ee9c6c3f3cc35c925390aa63d274073da9
parent8a6d9a94ed8a91edb17598e3fd8b3afbd769980d (diff)
downloadalpine_aports-3cb4ced6f354afcc5a9fbaded27769d2e425ccc6.tar.bz2
alpine_aports-3cb4ced6f354afcc5a9fbaded27769d2e425ccc6.tar.xz
alpine_aports-3cb4ced6f354afcc5a9fbaded27769d2e425ccc6.zip
scripts/mkimg.base: set sysid on the iso images
Most other distros seems to do this (cherry picked from commit aefed4153f594ca97c1a0863c37132c6f81d1c99)
-rwxr-xr-xscripts/mkimg.base.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/mkimg.base.sh b/scripts/mkimg.base.sh
index 3e4252b86d..f326d8605c 100755
--- a/scripts/mkimg.base.sh
+++ b/scripts/mkimg.base.sh
@@ -260,6 +260,7 @@ create_image_iso() {
260 260
261 if [ "$ARCH" = ppc64le ]; then 261 if [ "$ARCH" = ppc64le ]; then
262 grub-mkrescue --output ${ISO} ${DESTDIR} -follow-links \ 262 grub-mkrescue --output ${ISO} ${DESTDIR} -follow-links \
263 -sysid LINUX \
263 -volid "alpine-$PROFILE $RELEASE $ARCH" 264 -volid "alpine-$PROFILE $RELEASE $ARCH"
264 else 265 else
265 xorrisofs \ 266 xorrisofs \
@@ -268,6 +269,7 @@ create_image_iso() {
268 -full-iso9660-filenames \ 269 -full-iso9660-filenames \
269 -joliet \ 270 -joliet \
270 -rock \ 271 -rock \
272 -sysid LINUX \
271 -volid "alpine-$PROFILE $RELEASE $ARCH" \ 273 -volid "alpine-$PROFILE $RELEASE $ARCH" \
272 $_isolinux \ 274 $_isolinux \
273 $_efiboot \ 275 $_efiboot \