Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1903 - (show annotations) (download)
Mon Oct 8 12:56:17 2012 UTC (11 years, 6 months ago) by niro
File size: 1090 byte(s)
-added missing getopt option
1 diff -Naur dracut-023/dracut.sh dracut-023-magellan/dracut.sh
2 --- dracut-023/dracut.sh 2012-08-01 15:30:30.000000000 +0200
3 +++ dracut-023-magellan/dracut.sh 2012-10-08 16:58:42.107983739 +0200
4 @@ -161,6 +161,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 --printsize Print out the module install size
11 --sshkey [SSHKEY] Add ssh key to initramfs (use with ssh-client module)
12 @@ -299,6 +300,7 @@
13 --long gzip \
14 --long list-modules \
15 --long show-modules \
16 + --logn allow-missing \
17 --long keep \
18 --long printsize \
19 -- "$@")
20 @@ -373,6 +375,7 @@
21 -M|--show-modules)
22 show_modules_l="yes"
23 ;;
24 + --allow-missing) ;; # simply ignore this one
25 --keep) keep="yes";;
26 --printsize) printsize="yes";;
27