From 69625e2ca493e7d0fd0ace8f713911835ff2d528 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Wed, 10 Jul 2019 19:56:52 -0400 Subject: patches: Build with BusyBox < 1.22.0 --- diff --git a/changelog b/changelog index d3e909d..c808565 100644 --- a/changelog +++ b/changelog @@ -2,6 +2,7 @@ linux-libre-4.19 (4.19.56+gnu-1) trunk * New upstream version. - Drop patches/01_no-bash.patch, issue fixed upstream. + - Add patch to build with BusyBox < 1.22.0. - New build dependencies: bison, flex. * Update Maintainer and Homepage. * Regenerate M+ fonts from M+ version 063a using otf2bdf and bdf2fbcon and diff --git a/patches/03_use-non-posix-sed-r.patch b/patches/03_use-non-posix-sed-r.patch new file mode 100644 index 0000000..02c2e82 --- /dev/null +++ b/patches/03_use-non-posix-sed-r.patch @@ -0,0 +1,17 @@ +Author: Patrick McDermott +Subject: Use non-POSIX sed -r + +BusyBox didn't support the POSIX -E option until version 1.22.0. + +diff -Naurp src.orig/scripts/headers_install.sh src/scripts/headers_install.sh +--- src.orig/scripts/headers_install.sh 2019-06-24 23:36:02.000000000 -0400 ++++ src/scripts/headers_install.sh 2019-07-10 19:52:42.152146074 -0400 +@@ -31,7 +31,7 @@ trap 'rm -f "$OUTDIR/$FILE" "$OUTDIR/$FI + for i in "$@" + do + FILE="$(basename "$i")" +- sed -E \ ++ sed -r \ + -e 's/([[:space:](])(__user|__force|__iomem)[[:space:]]/\1/g' \ + -e 's/__attribute_const__([[:space:]]|$)/\1/g' \ + -e 's@^#include @@' \ -- cgit v0.9.1