mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
RSB: add GRUB2 to the RTEMS tools and use it in 6/rtems-x86_64 build set
This commit is contained in:
parent
e4f6037646
commit
dbc11a81b7
@ -1,4 +1,9 @@
|
||||
%define release 1
|
||||
%define rtems_arch x86_64
|
||||
%define with_libgomp
|
||||
%define grub2_platform efi
|
||||
%define grub2_target x86_64
|
||||
|
||||
%include 6/rtems-default.bset
|
||||
|
||||
tools/rtems-grub-2.06
|
||||
|
8
rtems/config/tools/rtems-grub-2.06.cfg
Normal file
8
rtems/config/tools/rtems-grub-2.06.cfg
Normal file
@ -0,0 +1,8 @@
|
||||
%include %{_configdir}/checks.cfg
|
||||
%include %{_configdir}/base.cfg
|
||||
|
||||
%define grub2_version 2.06
|
||||
|
||||
%hash sha512 grub-%{grub2_version}.tar.xz 4f11c648f3078567e53fc0c74d5026fdc6da4be27d188975e79d9a4df817ade0fe5ad2ddd694238a07edc45adfa02943d83c57767dd51548102b375e529e8efe
|
||||
|
||||
%include %{_configdir}/grub2.cfg
|
75
source-builder/config/grub2.cfg
Normal file
75
source-builder/config/grub2.cfg
Normal file
@ -0,0 +1,75 @@
|
||||
#
|
||||
# GNU GRUB, the GRand Unified Bootloader
|
||||
#
|
||||
# This configuration file configure's, make's and install's GRUB2.
|
||||
#
|
||||
|
||||
%define grub2_platform_supported = 1
|
||||
|
||||
%ifos darwin
|
||||
%undefine grub2_platform_supported
|
||||
%{echo "Darwin does not support Grub2 compilation by default."}
|
||||
%{echo "If you need Grub2 on Darwin, please install objconv"}
|
||||
%{echo "and enable it by removing '%undefine grub2_platform_supported' above"}
|
||||
%endif
|
||||
|
||||
%if %{defined grub2_platform_supported}
|
||||
|
||||
%if %{release} == %{nil}
|
||||
%define release 1
|
||||
%endif
|
||||
|
||||
Name: grub2-%{grub2_version}-%{_host}-%{release}
|
||||
Summary: GNU GRUB, the GRand Unified Bootloader v%{grub2_version} for target %{_target} on host %{_host}
|
||||
Version: %{grub2_version}
|
||||
Release: %{release}
|
||||
URL: https://www.gnu.org/software/grub/index.html
|
||||
|
||||
#
|
||||
# Source
|
||||
#
|
||||
%source set grub2 https://ftp.gnu.org/gnu/grub/grub-%{grub2_version}.tar.xz
|
||||
|
||||
#
|
||||
# Prepare the source code.
|
||||
#
|
||||
%prep
|
||||
build_top=$(pwd)
|
||||
|
||||
%source setup grub2 -q -n grub-%{grub2_version}
|
||||
|
||||
cd ${build_top}
|
||||
|
||||
%build
|
||||
build_top=$(pwd)
|
||||
|
||||
cd grub-%{grub2_version}
|
||||
|
||||
%{host_build_flags}
|
||||
|
||||
./configure \
|
||||
--build=%{_build} --host=%{_host} \
|
||||
--verbose \
|
||||
--prefix=%{_prefix} --bindir=%{_bindir} \
|
||||
--exec-prefix=%{_exec_prefix} \
|
||||
--includedir=%{_includedir} --libdir=%{_libdir} \
|
||||
--mandir=%{_mandir} --infodir=%{_infodir} \
|
||||
--with-platform=%{grub2_platform} \
|
||||
--target=%{grub2_target} \
|
||||
--disable-libzfs # broken on FreeBSD and not needed at all
|
||||
|
||||
%{__make} %{?_smp_mflags} all
|
||||
|
||||
cd ${build_top}
|
||||
|
||||
%install
|
||||
build_top=$(pwd)
|
||||
|
||||
rm -rf $SB_BUILD_ROOT
|
||||
|
||||
cd grub-%{grub2_version}
|
||||
%{__make} DESTDIR=$SB_BUILD_ROOT install
|
||||
|
||||
cd ${build_top}
|
||||
|
||||
%endif
|
Loading…
x
Reference in New Issue
Block a user