From: Harald Hoyer Date: Wed, 14 Mar 2012 15:13:48 +0000 (+0100) Subject: remove --ctty X-Git-Tag: 018~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02aa795514b4f6febcedd1d0f3079c6eacdfd3f2;p=thirdparty%2Fdracut.git remove --ctty --- diff --git a/dracut.8.asc b/dracut.8.asc index 6ca73471f..891246de3 100644 --- a/dracut.8.asc +++ b/dracut.8.asc @@ -193,9 +193,6 @@ example: **--noprefix**:: do not prefix initramfs files (default) -**--ctty**:: - if possible, try to spawn an emergency shell on a terminal with job control - **-h, --help**:: display help text and exit. diff --git a/dracut.cmdline.7.asc b/dracut.cmdline.7.asc index 8924b898d..738d46459 100644 --- a/dracut.cmdline.7.asc +++ b/dracut.cmdline.7.asc @@ -78,12 +78,6 @@ Misc force loading kernel module after all automatic loading modules have been loaded. This parameter can be specified multiple times. -**rd.ctty=**__:: - if the dracut image was generated with --ctty option, try to spawn an - emergency shell on the specified terminal; if rd.ctty is specified without a - value or not provided at all, the default is /dev/tty1. The '/dev' prefix - can be omitted. - [[dracutkerneldebug]] Debug ~~~~~ diff --git a/dracut.sh b/dracut.sh index 417008c08..1bf8ad97a 100755 --- a/dracut.sh +++ b/dracut.sh @@ -121,7 +121,6 @@ Creates initial ramdisk images for preloading modules build. --keep Keep the temporary initramfs for debugging purposes --sshkey [SSHKEY] Add ssh key to initramfs (use with ssh-client module) - --ctty Add control tty for emergency shells If [LIST] has multiple arguments, then you have to put these in quotes. For example: @@ -241,7 +240,6 @@ while (($# > 0)); do --nolvmconf) lvmconf_l="no";; --debug) debug="yes";; --profile) profile="yes";; - --ctty) cttyhack="yes";; --sshkey) read_arg sshkey "$@" || shift;; -v|--verbose) ((verbosity_mod_l++));; -q|--quiet) ((verbosity_mod_l--));; @@ -625,7 +623,7 @@ done export initdir dracutbasedir dracutmodules drivers \ fw_dir drivers_dir debug no_kernel kernel_only \ add_drivers omit_drivers mdadmconf lvmconf filesystems \ - use_fstab fstab_lines libdir usrlibdir fscks nofscks cttyhack \ + use_fstab fstab_lines libdir usrlibdir fscks nofscks \ stdloglvl sysloglvl fileloglvl kmsgloglvl logfile \ debug host_fs_types host_devs sshkey diff --git a/modules.d/99base/module-setup.sh b/modules.d/99base/module-setup.sh index 5a9777022..98742f5c2 100755 --- a/modules.d/99base/module-setup.sh +++ b/modules.d/99base/module-setup.sh @@ -16,7 +16,6 @@ install() { dracut_install mount mknod mkdir modprobe pidof sleep chroot \ sed ls flock cp mv dmesg rm ln rmmod mkfifo umount readlink dracut_install -o less - [[ $cttyhack = yes ]] && dracut_install -o setsid if [ ! -e "${initdir}/bin/sh" ]; then dracut_install bash (ln -s bash "${initdir}/bin/sh" || :)