X-Git-Url: http://git.grml.org/?a=blobdiff_plain;ds=sidebyside;f=components%2F9990-cmdline-old;h=1504e1e356763f8c16564eb73663496569a9d9bc;hb=cf60d58aaf46248744f163b4892040a8e323579a;hp=a565ce1794e7b857312eeba601e63acf9e40fc8a;hpb=b88a8daf9afb800e4ebee799b82e921a216b6e53;p=live-boot-grml.git diff --git a/components/9990-cmdline-old b/components/9990-cmdline-old index a565ce1..1504e1e 100755 --- a/components/9990-cmdline-old +++ b/components/9990-cmdline-old @@ -23,6 +23,12 @@ Cmdline_old () export DNSSERVERS unset DNS ;; + + bootid=*) + BOOTID="${_PARAMETER#bootid=}" + export BOOTID + ;; + dhcp) # Force dhcp even while netbooting # Use for debugging in case somebody works on fixing dhclient @@ -86,6 +92,11 @@ Cmdline_old () export FROMISO ;; + ignore_bootid) + IGNORE_BOOTID="Yes" + export IGNORE_BOOTID + ;; + ignore_uuid) IGNORE_UUID="true" export IGNORE_UUID @@ -147,6 +158,11 @@ Cmdline_old () export NFS_COW ;; + nodhcphostname) + NODHCPHOSTNAME="Yes" + export NODHCPHOSTNAME + ;; + nofstab) NOFSTAB="true" export NOFSTAB @@ -161,6 +177,11 @@ Cmdline_old () ramdisk_size="${_PARAMETER#ramdisk-size=}" ;; + overlay-size=*) + OVERLAY_SIZE="${_PARAMETER#overlay-size=}" + export OVERLAY_SIZE + ;; + persistence) PERSISTENCE="true" export PERSISTENCE @@ -195,7 +216,7 @@ Cmdline_old () ;; persistence-label=*) - custom_overlay_label="${_PARAMETER#persistence-label=*}" + custom_overlay_label=$(echo ${_PARAMETER#persistence-label=*} | sed -e 's/,/ /g') ;; nopersistence) @@ -248,6 +269,11 @@ Cmdline_old () UNIONTYPE="${_PARAMETER#union=}" export UNIONTYPE ;; + + vlan=*) + VLANS="${VLANS} ${_PARAMETER#vlan=}" + export VLANS + ;; esac done