Magellan Linux

Contents of /trunk/dracut/patches/dracut-016-mkinitrd-ignore-allow-missing-switch.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1653 - (show annotations) (download)
Sat Feb 18 11:15:52 2012 UTC (12 years, 2 months ago) by niro
File size: 944 byte(s)
-added patch to ignore --allow-missing switch
1 diff -Naur dracut-016/dracut dracut-016-magellan/dracut
2 --- dracut-016/dracut 2012-02-15 18:05:34.000000000 +0100
3 +++ dracut-016-magellan/dracut 2012-02-18 13:06:15.039982932 +0100
4 @@ -119,6 +119,7 @@
5 --list-modules List all available dracut modules.
6 -M, --show-modules Print included module's name to standard output during
7 build.
8 + --allow-missing Compat switch for mkinitrd - ignored.
9 --keep Keep the temporary initramfs for debugging purposes
10 --sshkey [SSHKEY] Add ssh key to initramfs (use with ssh-client module)
11 --ctty Add control tty for emergency shells
12 @@ -263,6 +264,7 @@
13 -M|--show-modules)
14 show_modules_l="yes"
15 ;;
16 + --allow-missing) ;; # simply ignore this one
17 --keep) keep="yes";;
18 -*) printf "\nUnknown option: %s\n\n" "$1" >&2; usage; exit 1;;
19 *)