summaryrefslogtreecommitdiffstats
path: root/source-builder
diff options
context:
space:
mode:
authorKarel Gardas <karel@functional.vision>2021-11-10 19:27:22 +0100
committerJoel Sherrill <joel@rtems.org>2021-11-18 11:06:04 -0600
commitdbc11a81b784f8b33e3d5614f44e7b381b4059c8 (patch)
tree0867d311d564ec8981b84c2a51be6552079b5e75 /source-builder
parentrtems-tools-6.cfg: Bump hash to get fix for rtems-test (diff)
downloadrtems-source-builder-dbc11a81b784f8b33e3d5614f44e7b381b4059c8.tar.bz2
RSB: add GRUB2 to the RTEMS tools and use it in 6/rtems-x86_64 build set
Diffstat (limited to 'source-builder')
-rw-r--r--source-builder/config/grub2.cfg75
1 files changed, 75 insertions, 0 deletions
diff --git a/source-builder/config/grub2.cfg b/source-builder/config/grub2.cfg
new file mode 100644
index 0000000..2333d6a
--- /dev/null
+++ b/source-builder/config/grub2.cfg
@@ -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