forked from pool/grub2
a584e29ccc
Build an efi subpackage [bnc#713595]. OBS-URL: https://build.opensuse.org/request/show/79800 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grub2?expand=0&rev=20
326 lines
10 KiB
RPMSpec
326 lines
10 KiB
RPMSpec
#
|
|
# spec file for package grub2
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
|
|
Name: grub2
|
|
%ifarch x86_64 ppc64
|
|
BuildRequires: freetype2-devel-32bit gcc-32bit glibc-32bit glibc-devel-32bit
|
|
BuildRequires: libncurses5-32bit libusb-1_0-devel-32bit ncurses-devel-32bit
|
|
%else
|
|
BuildRequires: freetype2-devel gcc glibc-devel libncurses5 libusb-1_0-devel
|
|
BuildRequires: ncurses-devel
|
|
%endif
|
|
BuildRequires: bison device-mapper-devel flex lzma ruby xz
|
|
|
|
# Modules always contain just 32-bit code
|
|
%define _libdir %{_exec_prefix}/lib
|
|
|
|
# 64-bit x86-64 machines use 32-bit boot loader
|
|
# (We cannot just redefine _target_cpu, as we'd get i386.rpm packages then)
|
|
%ifarch x86_64
|
|
%define _target_platform i386-%{_vendor}-%{_target_os}%{?_gnu}
|
|
%endif
|
|
%ifarch ppc ppc64
|
|
%define platform ieee1275
|
|
%else
|
|
%define platform pc
|
|
%endif
|
|
# build efi bootloader on some platforms only:
|
|
%if ! 0%{?efi}
|
|
%global efi %{ix86} x86_64 ia64
|
|
%endif
|
|
|
|
Version: 1.99
|
|
Release: 4
|
|
Summary: Bootloader with support for Linux, Multiboot and more
|
|
Group: System/Boot
|
|
License: GPLv3+
|
|
Url: http://www.gnu.org/software/grub/
|
|
Source0: ftp://ftp.gnu.org/gnu/grub/grub-%{version}.tar.xz
|
|
Source1: 90_persistent
|
|
Source2: grub.default
|
|
Source3: README.openSUSE
|
|
Source4: grub2.rpmlintrc
|
|
# rsync -Lrtvz translationproject.org::tp/latest/grub/ po
|
|
Source5: translations-20110531.tar.bz2
|
|
Patch0: gcc46-fixes.patch
|
|
Patch2: grub2-linux.patch
|
|
Patch3: gccwarn.patch
|
|
Patch4: grub2-linux-submenu.patch
|
|
Patch5: grub2-unused.patch
|
|
PreReq: perl-Bootloader
|
|
Requires: gettext-runtime
|
|
Requires(post): /sbin/install-info
|
|
Requires(preun):/sbin/install-info
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
ExclusiveArch: %{ix86} x86_64 ppc ppc64
|
|
|
|
%description
|
|
This is the second version of the GRUB (Grand Unified Bootloader),
|
|
a highly configurable and customizable bootloader with modular
|
|
architecture. It support rich scale of kernel formats, file systems,
|
|
computer architectures and hardware devices.
|
|
|
|
PLEASE NOTE: This is a development snapshot, and as such will not
|
|
replace grub if you install it, but will be merely added as another
|
|
kernel to your existing GRUB menu. Do not replace GRUB (grub package)
|
|
with it unless you know what are you doing. Refer to README.openSUSE
|
|
file that is part of this package's documentation for more information.
|
|
|
|
%ifarch %{efi}
|
|
|
|
%package efi
|
|
Summary: GRUB2 for EFI systems
|
|
Group: System/Boot
|
|
|
|
%description efi
|
|
The GRand Unified Bootloader (GRUB) is a highly configurable and customizable
|
|
bootloader with modular architecture. It support rich variety of kernel formats,
|
|
file systems, computer architectures and hardware devices. This subpackage
|
|
provides support for EFI systems.
|
|
%endif
|
|
|
|
%prep
|
|
# We create (if we build for efi) two copies of the sources
|
|
# in the Builddir
|
|
%setup -T -c -n grub-%{version}
|
|
%setup -D -T -q -n grub-%{version} -a 0
|
|
(cd grub-%{version};tar xaf %{SOURCE5})
|
|
(cd grub-%{version}/po && ls *.po | cut -d. -f1 | xargs) >grub-%{version}/po/LINGUAS
|
|
sed 's,@setfilename grub.info,@setfilename grub2.info,' grub-%{version}/docs/grub.texi >grub-%{version}/docs/grub2.texi
|
|
sed -i 's,grub.texi,grub2.texi,' grub-%{version}/docs/Makefile.am
|
|
cd grub-%{version}
|
|
%patch0 -p1
|
|
%patch2 -p0
|
|
%patch3 -p1
|
|
%patch4 -p1
|
|
%patch5 -p1
|
|
cd ..
|
|
|
|
# README.openSUSE
|
|
cp %{SOURCE3} grub-%{version}/
|
|
%ifarch %{efi}
|
|
cp -a grub-%{version} grub-efi-%{version}
|
|
%endif
|
|
|
|
%build
|
|
%ifarch %{efi}
|
|
cd grub-efi-%{version}
|
|
# we don't want to let rpm to override *FLAGS by bogus ones
|
|
CFLAGS=" "
|
|
CXXFLAGS=" "
|
|
FFLAGS=" "
|
|
export CFLAGS CXXFLAGS FFLAGS
|
|
%configure \
|
|
TARGET_LDFLAGS=-static \
|
|
--with-platform=efi \
|
|
--program-transform-name=s,grub,%{name}-efi,
|
|
make %{?_smp_mflags}
|
|
%ifarch %{ix86}
|
|
%define grubefiarch i386-efi
|
|
%else
|
|
%define grubefiarch %{_arch}-efi
|
|
%endif
|
|
./grub-mkimage -O %{grubefiarch} -o grub.efi -d grub-core part_gpt hfsplus fat \
|
|
ext2 btrfs normal chain boot configfile linux appleldr minicmd \
|
|
loadbios reboot halt search font gfxterm
|
|
cd ..
|
|
%endif
|
|
cd grub-%{version}
|
|
#./autogen.sh
|
|
|
|
# we don't want to let rpm to override *FLAGS by bogus ones
|
|
CFLAGS=" "
|
|
CXXFLAGS=" "
|
|
FFLAGS=" "
|
|
export CFLAGS CXXFLAGS FFLAGS
|
|
|
|
# -static is needed so that autoconf script is able to link
|
|
# test that looks for _start symbol on 64 bit platforms
|
|
%configure TARGET_LDFLAGS=-static \
|
|
--with-platform=%{platform} \
|
|
--enable-grub-emu-usb \
|
|
--program-transform-name=s,grub,%{name},
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%ifarch %{efi}
|
|
cd grub-efi-%{version}
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
# Ghost config file
|
|
install -d $RPM_BUILD_ROOT/boot/%{name}-efi
|
|
touch $RPM_BUILD_ROOT/boot/%{name}-efi/grub.cfg
|
|
ln -s ../boot/%{name}-efi/grub.cfg $RPM_BUILD_ROOT%{_sysconfdir}/%{name}-efi.cfg
|
|
|
|
install -m 755 -d $RPM_BUILD_ROOT/boot/efi/EFI/opensuse/
|
|
install -m 755 grub.efi $RPM_BUILD_ROOT/boot/efi/EFI/opensuse/grub.efi
|
|
# Remove devel files
|
|
rm $RPM_BUILD_ROOT/%{_libdir}/%{name}-efi/*/*.h
|
|
|
|
cd ..
|
|
%endif
|
|
|
|
cd grub-%{version}
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
# Script that makes part of grub.cfg persist across updates
|
|
install -m 755 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/grub.d/
|
|
|
|
# Ghost config file
|
|
install -d $RPM_BUILD_ROOT/boot/%{name}
|
|
touch $RPM_BUILD_ROOT/boot/%{name}/grub.cfg
|
|
ln -s ../boot/%{name}/grub.cfg $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.cfg
|
|
|
|
# Remove devel files
|
|
rm $RPM_BUILD_ROOT/%{_libdir}/%{name}/*/*.h
|
|
|
|
# Defaults
|
|
install -m 644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/default/grub
|
|
%find_lang grub
|
|
|
|
%post
|
|
/sbin/install-info %{_infodir}/grub-dev.info %{_infodir}/dir || :
|
|
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
|
|
|
|
mkdir -p /boot/%{name}/ 2>/dev/null || true
|
|
# Create device.map or reuse one from GRUB Legacy
|
|
if [ ! -e /boot/%{name}/device.map ] ; then
|
|
cp -u /boot/grub/device.map /boot/%{name}/device.map 2>/dev/null ||
|
|
%{name}-mkdevicemap
|
|
fi
|
|
if [ -e /boot/%{name}/device.map ]; then
|
|
# Determine the partition with /boot
|
|
BOOT_PARTITION=$(df -h /boot |(read; awk '{print $1; exit}'))
|
|
# Generate core.img, but don't let it be installed in boot sector
|
|
%{name}-install --grub-setup=/bin/true $BOOT_PARTITION || true
|
|
exec >/dev/null 2>&1
|
|
# Remove stale menu.lst entries
|
|
/sbin/update-bootloader --remove --image /boot/%{name}/core.img --name="GNU GRUB 2" || true
|
|
# Add core.img as multiboot kernel to GRUB Legacy menu
|
|
/sbin/update-bootloader --add --image /boot/%{name}/core.img --name="GNU GRUB 2" || true
|
|
/sbin/update-bootloader --refresh || true
|
|
fi
|
|
|
|
%post efi
|
|
/sbin/install-info %{_infodir}/grub-dev.info %{_infodir}/dir || :
|
|
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
|
|
|
|
%preun
|
|
if [ $1 = 0 ]; then
|
|
/sbin/install-info --delete %{_infodir}/grub-dev.info %{_infodir}/dir || :
|
|
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
|
|
exec >/dev/null
|
|
if [ -e /boot/%{name}/core.img ] ; then
|
|
/sbin/update-bootloader --remove --image /boot/%{name}/core.img --name="GNU GRUB 2" || :
|
|
/sbin/update-bootloader --refresh || :
|
|
fi
|
|
# Cleanup installed files
|
|
rm -f /boot/%{name}/*.mod
|
|
rm -f /boot/%{name}/*.img
|
|
rm -f /boot/%{name}/*.lst
|
|
rm -f /boot/%{name}/device.map
|
|
fi
|
|
|
|
%preun efi
|
|
if [ $1 = 0 ]; then
|
|
/sbin/install-info --delete %{_infodir}/grub-dev.info %{_infodir}/dir || :
|
|
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
|
|
fi
|
|
|
|
%files -f grub-%{version}/grub.lang
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/%{name}
|
|
%{_libdir}/grub/
|
|
%{_sbindir}/%{name}-*
|
|
%{_bindir}/%{name}-*
|
|
%{_sysconfdir}/bash_completion.d/grub
|
|
%config %{_sysconfdir}/default/grub
|
|
%dir %{_sysconfdir}/grub.d
|
|
%{_sysconfdir}/grub.d/README
|
|
%config %{_sysconfdir}/grub.d/??_*
|
|
%{_sysconfdir}/%{name}.cfg
|
|
%dir /boot/%{name}
|
|
# Actually, this is replaced by update-grub from scriptlets,
|
|
# but it takes care of modified persistent part
|
|
%config(noreplace) /boot/%{name}/grub.cfg
|
|
%doc grub-%{version}/COPYING grub-%{version}/INSTALL grub-%{version}/NEWS
|
|
%doc grub-%{version}/README grub-%{version}/THANKS grub-%{version}/TODO
|
|
%doc grub-%{version}/ChangeLog grub-%{version}/README.openSUSE
|
|
%{_infodir}/grub-dev.info*
|
|
%{_infodir}/%{name}.info*
|
|
|
|
%ifarch %{efi}
|
|
|
|
%files efi -f grub-%{version}/grub.lang
|
|
%defattr(-,root,root,-)
|
|
%dir /boot
|
|
%dir /boot/efi
|
|
%dir /boot/efi/EFI
|
|
%attr(0755,root,root)/boot/efi/EFI/opensuse
|
|
/etc/bash_completion.d/grub
|
|
%{_libdir}/grub2-efi
|
|
%{_libdir}/grub/
|
|
%{_sbindir}/grub2-efi-mkconfig
|
|
%{_sbindir}/grub2-efi-mkdevicemap
|
|
%{_sbindir}/grub2-efi-mknetdir
|
|
%{_sbindir}/grub2-efi-install
|
|
%{_sbindir}/grub2-efi-probe
|
|
%{_sbindir}/grub2-efi-reboot
|
|
%{_sbindir}/grub2-efi-set-default
|
|
#%{_sbindir}/grub2-efi-setup
|
|
%{_bindir}/grub2-efi-bin2h
|
|
%{_bindir}/grub2-efi-editenv
|
|
%{_bindir}/grub2-efi-fstest
|
|
%{_bindir}/grub2-efi-kbdcomp
|
|
%{_bindir}/grub2-efi-menulst2cfg
|
|
# %{_bindir}/grub2-efi-mkelfimage
|
|
%{_bindir}/grub2-efi-mkfont
|
|
%{_bindir}/grub2-efi-mklayout
|
|
%{_bindir}/grub2-efi-mkimage
|
|
# %{_bindir}/grub2-efi-mkisofs
|
|
%{_bindir}/grub2-efi-mkpasswd-pbkdf2
|
|
%{_bindir}/grub2-efi-mkrelpath
|
|
%ifnarch %{sparc} ppc ppc64
|
|
%{_bindir}/grub2-efi-mkrescue
|
|
%endif
|
|
%ifarch %{sparc} ppc ppc64
|
|
%{_sbindir}/grub2-efi-ofpathname
|
|
%endif
|
|
%{_bindir}/grub2-efi-script-check
|
|
%dir %{_sysconfdir}/grub.d
|
|
%config %{_sysconfdir}/grub.d/??_*
|
|
%{_sysconfdir}/grub.d/README
|
|
%{_sysconfdir}/grub2-efi.cfg
|
|
%{_sysconfdir}/default/grub
|
|
%dir /boot/grub2-efi
|
|
# Actually, this is replaced by update-grub from scriptlets,
|
|
# but it takes care of modified persistent part
|
|
%config(noreplace) /boot/grub2-efi/grub.cfg
|
|
%doc grub-%{version}/COPYING grub-%{version}/INSTALL grub-%{version}/NEWS
|
|
%doc grub-%{version}/README grub-%{version}/THANKS grub-%{version}/TODO
|
|
%doc grub-%{version}/ChangeLog grub-%{version}/README.openSUSE
|
|
%exclude %{_mandir}
|
|
%{_infodir}/grub2*
|
|
%endif
|
|
|
|
%changelog
|