From 7f0f60a6c9f2fe5909ffffc643fb88b91708c305 Mon Sep 17 00:00:00 2001 From: Nagy Karoly Gabriel Date: Sat, 31 Jan 2015 13:59:53 +0100 Subject: [PATCH] toybox: enhanced build to not include files in e2fsprogs. --- base/toybox/toybox.conf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/base/toybox/toybox.conf b/base/toybox/toybox.conf index 8f65f4fe4..41ac692d2 100644 --- a/base/toybox/toybox.conf +++ b/base/toybox/toybox.conf @@ -33,9 +33,11 @@ toybox_config() { if pkginstalled patch; then sed -i -e "s,^CONFIG_PATCH=y,CONFIG_PATCH=n," .config fi - + # always disable what e2fsprogs includes + sed -i -e "s,^CONFIG_CHATTR=y,CONFIG_CHATTR=n," .config + sed -i -e "s,^CONFIG_LSATTR=y,CONFIG_LSATTR=n," .config eval $MAKE oldconfig CPUS=$CPUS } -var_append makeopt ' ' 'toybox' -var_append makeinstopt ' ' "PREFIX=$root/" +var_append makeopt ' ' 'CPUS=$CPUS toybox' +var_append makeinstopt ' ' "CPUS=$CPUS PREFIX=$root/"