From dffa2128a8c624364544da048f1df2b2e8043024 Mon Sep 17 00:00:00 2001 From: bryan Date: Mon, 23 Jan 2023 09:53:17 -0500 Subject: [PATCH] Prune compilation items --- openwrtbuilder | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openwrtbuilder b/openwrtbuilder index 5c8e613..64e4db4 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -580,6 +580,9 @@ fromSource() { done make_opts+=("CONFIG_TARGET_MULTI_PROFILE=n") + make_opts+=("CONFIG_TARGET_ALL_PROFILES=n") + make_opts+=("CONFIG_SDK=n") + make_opts+=("CONFIG_SDK_LLVM_BPF=n") make_opts+=("CONFIG_TARGET_PROFILE=DEVICE_${P_ARR[profile]}") make_opts+=("CONFIG_TARGET_DEVICE_${P_ARR[target]//\//_}_DEVICE_${P_ARR[profile]}=y") make_opts+=("CONFIG_BINARY_FOLDER=\"$THIS_BINDIR\"")