Magellan Linux

Annotation of /trunk/dracut/patches/dracut-019-mkinitrd-ignore-allow-missing-switch.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1823 - (hide annotations) (download)
Fri Jun 29 09:09:25 2012 UTC (11 years, 11 months ago) by niro
File size: 983 byte(s)
-reworked patches for 019
1 niro 1823 diff -Naur dracut-019/dracut.sh dracut-019-magellan/dracut.sh
2     --- dracut-019/dracut.sh 2012-06-04 14:24:25.000000000 +0200
3     +++ dracut-019-magellan/dracut.sh 2012-06-29 12:10:31.209982502 +0200
4     @@ -130,6 +130,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     @@ -280,6 +281,7 @@
13     -M|--show-modules)
14     show_modules_l="yes"
15     ;;
16     + --allow-missing) ;; # simply ignore this one
17     --keep) keep="yes";;
18     --printsize) printsize="yes";;
19     -*) printf "\nUnknown option: %s\n\n" "$1" >&2; usage; exit 1;;