Name: os-prober Version: 1.58 Release: 9%{?dist} Summary: Probes disks on the system for installed operating systems Group: System Environment/Base # For more information about licensing, see copyright file. License: GPLv2+ and GPL+ URL: http://kitenet.net/~joey/code/os-prober/ Source0: http://ftp.de.debian.org/debian/pool/main/o/os-prober/%{name}_%{version}.tar.gz # move newns binary outside of os-prober subdirectory, so that debuginfo # can be automatically generated for it Patch0001: 0001-Change-filepath-to-newns.patch Patch0002: 0002-Don-t-count-dummy-mach_kernel-as-MacOS-X-811412.patch Patch0003: 0003-Detect-OS-installed-to-mdraid-partition-752402.patch Patch0004: 0004-Yaboot-allows-spaces-in-append-825041.patch Patch0005: 0005-Detect-ld.so-after-usr-move-826754.patch Patch0006: 0006-Use-shell-processing-instead-of-basename-875356.patch Patch0007: 0007-Add-option-for-less-logging-893997.patch Patch0008: 0008-Improve-btrfs-detection-support-888341.patch Patch0009: 0009-Support-detection-on-btrfs-software-raid-906847.patch Patch0010: 0010-Name-lvm-boot-partitions-by-fstab-entry-893472.patch Patch0011: 0011-Set-correct-boot-partition-906886.patch Patch0012: 0012-Factor-out-unnecessary-logger-calls-875356.patch Patch0013: 0013-Issue-with-EFI-detection-in-logger-873207.patch Patch0014: 0014-Man-pages-missing-948848.patch Patch0015: 0015-Properly-handle-extended-dos-partitions-1322957.patch Patch0016: 0016-Windows-detection-requires-binary-grep-1322956.patch Patch0017: 0017-Add-Windows-10-detection-support-1322956.patch Patch0018: 0018-Suppress-non-blocking-dmraid-error-info-1198918.patch Patch0019: 0019-Do-not-resolve-device-mapper-symlinks-1300262.patch Patch0020: 0020-Use-POSIX-shell-syntax-1300262.patch Patch0021: 0021-Fix-extended-dos-partition-regex-1322957.patch Requires: udev coreutils util-linux Requires: grep /bin/sed /sbin/modprobe %description This package detects other OSes available on a system and outputs the results in a generic machine-readable format. Support for new OSes and Linux distributions can be added easily. %prep %setup -q %patch01 -p1 %patch02 -p1 %patch03 -p1 %patch04 -p1 %patch05 -p1 %patch06 -p1 %patch07 -p1 %patch08 -p1 %patch09 -p1 %patch10 -p1 %patch11 -p1 %patch12 -p1 %patch13 -p1 %patch14 -p1 %patch15 -p1 %patch16 -p1 %patch17 -p1 %patch18 -p1 %patch19 -p1 %patch20 -p1 %patch21 -p1 find -type f -exec sed -i -e 's|usr/lib|usr/libexec|g' {} \; sed -i -e 's|grub-probe|grub2-probe|g' os-probes/common/50mounted-tests \ linux-boot-probes/common/50mounted-tests %build make %{?_smp_mflags} CFLAGS="%{optflags}" %install install -m 0755 -d %{buildroot}%{_bindir} install -m 0755 -d %{buildroot}%{_var}/lib/%{name} install -d 0755 -d %{buildroot}%{_mandir}/man1/ install -m 0755 -p os-prober linux-boot-prober %{buildroot}%{_bindir} install -m 0755 -Dp newns %{buildroot}%{_libexecdir}/newns install -m 0644 -Dp common.sh %{buildroot}%{_datadir}/%{name}/common.sh install -m 0644 -Dp *.1 %{buildroot}%{_mandir}/man1/ %ifarch m68k ARCH=m68k %endif %ifarch ppc ppc64 ARCH=powerpc %endif %ifarch sparc sparc64 ARCH=sparc %endif %ifarch %{ix86} x86_64 ARCH=x86 %endif for probes in os-probes os-probes/mounted os-probes/init \ linux-boot-probes linux-boot-probes/mounted; do install -m 755 -d %{buildroot}%{_libexecdir}/$probes cp -a $probes/common/* %{buildroot}%{_libexecdir}/$probes if [ -e "$probes/$ARCH" ]; then cp -a $probes/$ARCH/* %{buildroot}%{_libexecdir}/$probes fi done if [ "$ARCH" = x86 ]; then install -m 755 -p os-probes/mounted/powerpc/20macosx \ %{buildroot}%{_libexecdir}/os-probes/mounted fi %files %doc README TODO debian/copyright debian/changelog %{_bindir}/* %{_datadir}/%{name} %{_libexecdir}/* %{_mandir}/man1/* %{_var}/lib/%{name} %changelog * Wed Sep 14 2016 rmarshall@redhat.com - 1.58-9 - Fix regular expression that missed a corner case when detecting extended dos partitions. Resolves: rhbz#1322957 * Wed Jul 06 2016 rmarshall@redhat.com - 1.58-8 - Resolve some coverity concerns with how the previous patch detected whether or not a partition was a device mapper device. Related: rhbz#1300262 * Tue Jul 05 2016 rmarshall@redhat.com - 1.58-7 - Do not resolve device mapper links when generating stanzas for bootloader. Resolves: rhbz#1300262 * Wed May 04 2016 rmarshall@redhat.com - 1.58-6 - Adding handling to skip probing extended dos partitions Resolves: rhbz#1322957 - Improve Windows detection for dual boot and support Windows 10 Resolves: rhbz#1322956 - Suppress non-blocking dmraid sector size warning message Resolves: rhbz#1198918 * Fri Jan 24 2014 Daniel Mach - 1.58-5 - Mass rebuild 2014-01-24 * Mon Jan 20 2014 Peter Jones - 1.58-4 - Add man pages. Resolves: rhbz#948848 * Fri Dec 27 2013 Daniel Mach - 1.58-3 - Mass rebuild 2013-12-27 * Tue Jun 18 2013 Hedayat Vatankhah - 1.58-2 - Fix a bug in EFI detection because of redirecting result output * Sun May 05 2013 Hedayat Vatankhah - 1.58-1 - Update to upstream version 1.58, with UEFI support * Sat Feb 02 2013 Hedayat Vatankhah - 1.57-2 - Fix a bug in recent btrfs patch when an extended partition is examined. (H.J. Lu) (bug #906847) - Fix naming of /boot partitions according to their fstab entry (bug #893472) - Don't generate .btrfsfix files which will be included in final rpm - Fix wrong boot partition set by linux-boot-prober when / and /boot are mounted (bug #906886) - Factor out 'logger', so that it is run once and logs are piped to it (John Reiser) (bug #875356) * Tue Jan 22 2013 Hedayat Vatankhah - 1.57-1 - Update to 1.57 (#890409) - Use shell string processing rather than 'basename' (#875356) - Make it possible to disable logging debug messages by assigning a value to OS_PROBER_DISABLE_DEBUG environment variable (Gene Czarcinski) (#893997). - Detect multi btrfs pools/volumes (Gene Czarcinski) (#888341) * Thu Oct 11 2012 Hedayat Vatankhah - 1.56-1 - Update to 1.56 with a bug fix and applied one of my patches * Mon Aug 27 2012 Hedayat Vatankhah - 1.55-1 - Update to new upstream version: 1.55 * Fri Jul 20 2012 Fedora Release Engineering - 1.53-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Sat Jun 02 2012 Hedayat Vatankhah - 1.53-3 - Consider usrmoved distribtions in fallback linux detector (bug #826754) - Remove patch backup files from final rpm package (by not creating a backup!) * Fri May 25 2012 Hedayat Vatankhah - 1.53-2 - Add support for OSes installed on Linux mdraid partitions, bug #752402 - Add Fedora's grub2 config path, fixes generating menu entries for other installed Fedora's - Fixed bug in parsing yaboot.conf: accept spaces around '=' for append, bug #825041 * Fri May 11 2012 Hedayat Vatankhah - 1.53-1 - Updated to 1.53 for a bugfix - Fixed directory name in upstream tarbal * Thu May 10 2012 Peter Jones - 1.52-3 - Don't detect our Mac boot blocks as OS X. Resolves: rhbz#811412 * Sun Apr 29 2012 Hedayat Vatankhah - 1.52-2 - use correct directory name for setup * Sun Apr 29 2012 Hedayat Vatankhah - 1.52-1 - Updated to 1.52, supports win 8 * Wed Mar 28 2012 Hedayat Vatankhah - 1.51-1 - Update to latest upstream version, 1.51 * Sat Jan 21 2012 Hedayat Vatankhah - 1.48-3 - Remove dmraid and lvm2 dependency. bug #770393 * Fri Jan 13 2012 Fedora Release Engineering - 1.48-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Mon Jul 25 2011 Hedayat Vatankhah - 1.48-1 - Updated to 1.48 release * Thu May 19 2011 Hedayat Vatankhah - 1.47-1 - Updated to the new upstream version 1.47 * Wed May 04 2011 Hedayat Vatankhah - 1.46-2 - Removed obsolete parts (build tag, defattr, etc) - Added a patch to move newns outside of os-prober subdirectory - Added required utilities as package requires * Sat Apr 30 2011 Hedayat Vatankhah - 1.46-1 - Updated to 1.46 release * Tue Feb 22 2011 Hedayat Vatankhah - 1.42-2 - Remove executable permission from common.sh * Thu Feb 17 2011 Hedayat Vatankhah - 1.42-1 - Initial version