[openwrt/openwrt] ib: split out processing user provided packages

LEDE Commits lede-commits at lists.infradead.org
Sun Jul 16 05:06:28 PDT 2023


chunkeey pushed a commit to openwrt/openwrt.git, branch openwrt-23.05:
https://git.openwrt.org/b58955e92461b285ab9ea14c7a5fc61f738940bd

commit b58955e92461b285ab9ea14c7a5fc61f738940bd
Author: Tomasz Maciej Nowak <tmn505 at gmail.com>
AuthorDate: Tue Jul 11 16:06:21 2023 +0200

    ib: split out processing user provided packages
    
    Some device recipes remove default target packages. If user tries to add
    them back they will be ignored, since packages list is processed in one
    go. Process the device recipe packages first and do user ones later, so
    additions won't get filtered out.
    
    Signed-off-by: Tomasz Maciej Nowak <tmn505 at gmail.com>
    (cherry picked from commit e40b9a7fa002154e85459791101a0444d99dfb86)
---
 target/imagebuilder/files/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile
index 5020373792..78ec7e2e94 100644
--- a/target/imagebuilder/files/Makefile
+++ b/target/imagebuilder/files/Makefile
@@ -127,9 +127,11 @@ _call_info: FORCE
 	echo 'Available Profiles:'
 	echo; $(PROFILE_LIST)
 
-BUILD_PACKAGES:=$(USER_PACKAGES) $(sort $(DEFAULT_PACKAGES) $($(USER_PROFILE)_PACKAGES) kernel)
+BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $($(USER_PROFILE)_PACKAGES) kernel)
 # "-pkgname" in the package list means remove "pkgname" from the package list
 BUILD_PACKAGES:=$(filter-out $(filter -%,$(BUILD_PACKAGES)) $(patsubst -%,%,$(filter -%,$(BUILD_PACKAGES))),$(BUILD_PACKAGES))
+BUILD_PACKAGES:=$(USER_PACKAGES) $(BUILD_PACKAGES)
+BUILD_PACKAGES:=$(filter-out $(filter -%,$(BUILD_PACKAGES)) $(patsubst -%,%,$(filter -%,$(BUILD_PACKAGES))),$(BUILD_PACKAGES))
 PACKAGES:=
 
 _call_image: staging_dir/host/.prereq-build




More information about the lede-commits mailing list