Hello community, here is the log from the commit of package os-prober for openSUSE:Factory checked in at 2013-04-07 14:24:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/os-prober (Old) and /work/SRC/openSUSE:Factory/.os-prober.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "os-prober", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/os-prober/os-prober.changes 2013-03-25 20:41:46.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.os-prober.new/os-prober.changes 2013-04-07 14:24:52.000000000 +0200 @@ -1,0 +2,6 @@ +Fri Apr 5 16:33:28 UTC 2013 - [email protected] + +- add os-prober-linux-secure-boot.patch (bnc#810912) + * recognize linuxefi/initrdefi too + +------------------------------------------------------------------- New: ---- os-prober-linux-secure-boot.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ os-prober.spec ++++++ --- /var/tmp/diff_new_pack.vJFz7l/_old 2013-04-07 14:24:55.000000000 +0200 +++ /var/tmp/diff_new_pack.vJFz7l/_new 2013-04-07 14:24:55.000000000 +0200 @@ -46,6 +46,8 @@ Patch6: os-prober-usr_lib-detection.patch # PATCH-FIX-OPENSUSE: Probe also unpartitioned Linux MD devices (bnc#811006) Patch7: os-prober-probe-MD-devices.patch +# PATCH-FIX-OPENSUSE: Detect linux secure boot entries too (bnc#810912) +Patch8: os-prober-linux-secure-boot.patch Requires: /bin/grep Requires: /bin/sed @@ -72,6 +74,7 @@ %patch5 -p1 %patch6 -p1 %patch7 -p1 +%patch8 -p1 %build make %{?_smp_mflags} CC="%__cc" CFLAGS="%{optflags}" ++++++ os-prober-linux-secure-boot.patch ++++++ From: Andrey Borzenkov <[email protected]> Subject: detect linuxefi/initrdefi secure bootloaders too Reference: bnc#810912 Recognize initrdefi and linuxefi too. Whether linux/initrd or linuxefi/initrdefi will be emitted is controlled by SECURE_BOOT setting in /etc/sysconfig/bootloader. Index: os-prober/linux-boot-probes/mounted/common/40grub2 =================================================================== --- os-prober.orig/linux-boot-probes/mounted/common/40grub2 +++ os-prober/linux-boot-probes/mounted/common/40grub2 @@ -64,7 +64,7 @@ parse_grub_menu () { ignore_item=1 fi ;; - linux[" "]*) + linux[" "]*|linuxefi[" "]*) # And here we do NOT want to strip off # existing quting, which will be transferred # verbatim in new grub.cfg @@ -83,7 +83,7 @@ parse_grub_menu () { kernel="/boot$kernel" fi ;; - initrd[" "]*) + initrd[" "]*|initrdefi[" "]*) # And here we do NOT want to strip off # existing quting, which will be transferred # verbatim in new grub.cfg -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
