summaryrefslogtreecommitdiffstats
path: root/core/modules/busybox/module.build
diff options
context:
space:
mode:
authorJonathan Bauer2020-07-31 17:41:08 +0200
committerJonathan Bauer2020-07-31 17:41:08 +0200
commit43183623f824de88932be1ace50a4b7544550826 (patch)
treea370ae56291b58e4b9f0e68cc6069e228f5960d8 /core/modules/busybox/module.build
parent[vbox-src] Disable cloud gateway network bullshit (diff)
downloadmltk-43183623f824de88932be1ace50a4b7544550826.tar.gz
mltk-43183623f824de88932be1ace50a4b7544550826.tar.xz
mltk-43183623f824de88932be1ace50a4b7544550826.zip
[busybox] update to 1.32.0
TODO: * fix rtcwake patch, currently not applied in module.build * refine fbsplash.cfg sanity checks when determining sizes of screen/image
Diffstat (limited to 'core/modules/busybox/module.build')
-rw-r--r--core/modules/busybox/module.build12
1 files changed, 5 insertions, 7 deletions
diff --git a/core/modules/busybox/module.build b/core/modules/busybox/module.build
index a6954efd..fe02a6f3 100644
--- a/core/modules/busybox/module.build
+++ b/core/modules/busybox/module.build
@@ -5,16 +5,14 @@ fetch_source() {
git clone --depth 1 "${REQUIRED_GIT}" --branch "$REQUIRED_BRANCH" src || perror "Could not clone busybox git"
fi
cde src
- # Patch image centering and background filling if not patched yet
- if ! grep -q "bcenter_image" "miscutils/fbsplash.c"; then
- git apply "${MODULE_DIR}/fbsplash-center.patch" || perror "Could not apply busybox patch for fbsplash image centering"
- fi
+ # Patch background filling if not patched yet
if ! grep -q "bfill_background" "miscutils/fbsplash.c"; then
git apply "${MODULE_DIR}/fbsplash-fillbg.patch" || perror "Could not apply busybox patch for fbsplash background filling"
fi
- if ! grep -q 'suspend.*"no"' "util-linux/rtcwake.c"; then
- git apply "${MODULE_DIR}/rtcwake-compat.patch" || perror "Could not apply busybox patch for rtcwake compat with util-linux"
- fi
+ # TODO fix this patch
+ #if ! grep -q 'suspend.*"no"' "util-linux/rtcwake.c"; then
+ # git apply "${MODULE_DIR}/rtcwake-compat.patch" || perror "Could not apply busybox patch for rtcwake compat with util-linux"
+ #fi
# make sure Makefile allows a preset CC
if [ -n "$CC" ]; then
sed -i -r 's/^CC\s*=\s*(\S)/CC ?= \1/' Makefile || perror "Could not patch Makefile"