From 1c2de7f962115a96668aa1f66b1cc1fee3be6922 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Fri, 6 Oct 2023 01:34:14 +0100 Subject: unify build/grub/* to build/coreboot/grub Signed-off-by: Leah Rowe --- script/build/grub/utils | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100755 script/build/grub/utils (limited to 'script/build/grub/utils') diff --git a/script/build/grub/utils b/script/build/grub/utils deleted file mode 100755 index edb78bb1..00000000 --- a/script/build/grub/utils +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env sh -# SPDX-License-Identifier: GPL-3.0-or-later -# SPDX-FileCopyrightText: 2014, 2015, 2020, 2023 Leah Rowe -# SPDX-FileCopyrightText: 2015, 2016 Klemens Nanni - -[ "x${DEBUG+set}" = 'xset' ] && set -v -set -u -e - -. "include/err.sh" - -main() -{ - [ -d "grub/" ] || x_ ./update project repo grub - build_grub -} - -build_grub() -{ - ( - x_ cd grub/ - [ ! -d Makefile ] || x_ make distclean - x_ ./bootstrap --gnulib-srcdir=gnulib/ --no-git - x_ ./autogen.sh - x_ ./configure --with-platform=coreboot - x_ make -j$(nproc) FS_PAYLOAD_MODULES="" - ) -} - -main $@ -- cgit v1.2.1