diff options
Diffstat (limited to 'config/module/memtest86plus')
| -rw-r--r-- | config/module/memtest86plus/default/patches/0001-add-central-Makefile-in-main-directory.patch | 41 | ||||
| -rw-r--r-- | config/module/memtest86plus/default/target.cfg | 10 |
2 files changed, 51 insertions, 0 deletions
diff --git a/config/module/memtest86plus/default/patches/0001-add-central-Makefile-in-main-directory.patch b/config/module/memtest86plus/default/patches/0001-add-central-Makefile-in-main-directory.patch new file mode 100644 index 00000000..8291bfb8 --- /dev/null +++ b/config/module/memtest86plus/default/patches/0001-add-central-Makefile-in-main-directory.patch @@ -0,0 +1,41 @@ +From 81d850494c3cde1da33cc2df44837c839c1f2c60 Mon Sep 17 00:00:00 2001 +From: Leah Rowe <leah@libreboot.org> +Date: Fri, 6 Oct 2023 23:17:06 +0100 +Subject: [PATCH 1/1] add central Makefile in main directory + +it only does build64. i'm disabling use of 32-bit memtest in lbmk, +until i can figure out a more consistent cross-compile method, +rather than relying on hostcc. + +a user on irc reported build issues on pop os + +it's not pop's fault. lbmk needs to start handling cross +compilers properly. (alternatively, i could rig memtest86+ +to use crossgcc. i'll explore that later) + +Signed-off-by: Leah Rowe <leah@libreboot.org> +--- + Makefile | 11 +++++++++++ + 1 file changed, 11 insertions(+) + create mode 100644 Makefile + +diff --git a/Makefile b/Makefile +new file mode 100644 +index 0000000..59fcbef +--- /dev/null ++++ b/Makefile +@@ -0,0 +1,11 @@ ++# SPDX-License-Identifier: MIT ++# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org> ++ ++all: ++ make -C build64 ++ ++clean: ++ make -C build64 clean ++ ++distclean: ++ make -C build64 clean +-- +2.39.2 + diff --git a/config/module/memtest86plus/default/target.cfg b/config/module/memtest86plus/default/target.cfg new file mode 100644 index 00000000..8f57b322 --- /dev/null +++ b/config/module/memtest86plus/default/target.cfg @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: GPL-3.0-or-later + +url="https://codeberg.org/libreboot/memtest86plus" +bkup_url="https://github.com/memtest86plus/memtest86plus.git" + +rev="5dcd424ea7afb857c1171e747ef064d98d26afeb" + +tree="default" + +noconfig="y" |
