From: Michael Prokop Date: Thu, 7 Sep 2017 07:22:25 +0000 (+0200) Subject: scripts/generate_netboot_package.sh: use net.ifnames=0 as default boot option X-Git-Tag: v0.31.0~1 X-Git-Url: http://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=54f19116b7d8df35c0b46c8d1b6da9d29c1307e3 scripts/generate_netboot_package.sh: use net.ifnames=0 as default boot option Otherwise we end up with arbitrary network device names which aren't properly supported (yet). See grml/grml#65 --- diff --git a/scripts/generate_netboot_package.sh b/scripts/generate_netboot_package.sh index bcf622a..f4e3d13 100755 --- a/scripts/generate_netboot_package.sh +++ b/scripts/generate_netboot_package.sh @@ -43,7 +43,7 @@ cat > "${WORKING_DIR}/pxelinux.cfg/default" << EOF default grml label grml kernel vmlinuz - append initrd=initrd.img root=/dev/nfs rw nfsroot=192.168.0.1:/live/image boot=live apm=power-off quiet nomce noprompt noeject vga=791 + append initrd=initrd.img root=/dev/nfs rw nfsroot=192.168.0.1:/live/image boot=live apm=power-off quiet nomce noprompt noeject vga=791 net.ifnames=0 EOF if tar -C "$OUTPUTDIR" -acf "${OUTPUT_FILE}" "grml_netboot_package_${GRML_VERSION}" ; then