linux: fix missing default packages in profiles.json
authorPetr Štetiar <ynezz@true.cz>
Sun, 17 Nov 2024 05:15:13 +0000 (05:15 +0000)
committerFelix Fietkau <nbd@nbd.name>
Fri, 3 Jan 2025 10:14:12 +0000 (11:14 +0100)
commit19db092082e676e8193a5bbe77f2bb62853fd8f3
tree117791849223d8f1b41706eede6f9dc54c9d79b6
parentc22410e7a9cdd409f7515416a1e4a3e094822b8c
linux: fix missing default packages in profiles.json

Robert reported, that in firmware images generated by ASU, there is
`apk` package manager missing after the commit 44598c233dd9 ("build:
remove broken dependency of metadata on toplevel .config variables").

That is happening, because apk got removed from `default_packages` list in
`profiles.json`, which is being generated by `json_overview_image_info` Make
target, which uses `scripts/json_overview_image_info.py` helper script,
which gets the information from `DEFAULT_PACKAGES` Make variable.

So lets fix it by providing `DEFAULT_PACKAGES` variable when its needed.

The reason why we didn't added those packages as a dependency to
base-files like any other packages, was to allow disabling them (in
order to save space).

Fixes: #16969
Fixes: openwrt/asu/issues/1084
Fixes: 44598c233dd9 ("build: remove broken dependency of metadata on toplevel .config variables")
Reported-by: Robert Marko <robimarko@gmail.com>
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Link: https://github.com/openwrt/openwrt/pull/16986
Signed-off-by: Robert Marko <robimarko@gmail.com>
(cherry picked from commit 90f0be8521a8608b0932c1ccb747c0ef1a085910)
target/linux/Makefile