diff options
author | Daniel Baumann <daniel@debian.org> | 2012-06-05 18:57:24 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-06-05 19:35:57 +0200 |
commit | 48b7f743543dfe4cc8e2bfbb74f4574053a7da13 (patch) | |
tree | a9ed60db70cd44e5aa38b5a1daed90d0b3df1e28 | |
parent | 5097c70efc48e5039ddb4c46c0e359c0c389dba9 (diff) | |
download | live-boot-48b7f743543dfe4cc8e2bfbb74f4574053a7da13.tar.gz live-boot-48b7f743543dfe4cc8e2bfbb74f4574053a7da13.zip |
Removing fastboot handling, the normal system handles this via 'fastboot' bootparameter already.
-rwxr-xr-x | initramfs-tools/scripts/live-bottom/12fstab | 5 | ||||
-rwxr-xr-x | scripts/boot/cmdline.sh | 8 |
2 files changed, 1 insertions, 12 deletions
diff --git a/initramfs-tools/scripts/live-bottom/12fstab b/initramfs-tools/scripts/live-bottom/12fstab index 848fc2f..871180c 100755 --- a/initramfs-tools/scripts/live-bottom/12fstab +++ b/initramfs-tools/scripts/live-bottom/12fstab @@ -44,9 +44,4 @@ then echo "tmpfs /tmp tmpfs nosuid,nodev 0 0" >> "${FSTAB}" fi -if [ "${NOFASTBOOT}" != "true" ] -then - touch root/fastboot -fi - log_end_msg diff --git a/scripts/boot/cmdline.sh b/scripts/boot/cmdline.sh index e5f7ce1..fbfd3d6 100755 --- a/scripts/boot/cmdline.sh +++ b/scripts/boot/cmdline.sh @@ -27,11 +27,10 @@ Cmdline () # parameters below need review (FIXME) skipconfig) - NOFASTBOOT="true" NOFSTAB="true" NONETWORKING="true" - export NOFASTBOOT NOFSTAB NONETWORKING + export NOFSTAB NONETWORKING ;; BOOTIF=*) @@ -160,11 +159,6 @@ Cmdline () export NFS_COW ;; - nofastboot) - NOFASTBOOT="true" - export NOFASTBOOT - ;; - nofstab) NOFSTAB="true" export NOFSTAB |