mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-10 00:29:26 +00:00
build: allow overriding default selection state for devices
Allow overriding the default selection state for Devices, similar to
setting a default for packages.
E.g. by setting DEFAULT to n, they won't be selected by default anymore
when enabling all device in the multi device profile.
This allows preventing images being built by the default config for
known broken devices, devices without enough RAM/flash, or devices not
working with a certain kernel versions.
This does not prevent the devices from being manually selected or images
being built by the ImageBuilder. These devices often still have worth
with a reduced package-set, or as a device for regression testing, when
no better device is available.
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
(cherry picked from commit 7546be6007
)
This commit is contained in:
parent
378b51908c
commit
f783ad5b5b
@ -385,6 +385,8 @@ define Device/Init
|
||||
FILESYSTEMS := $(TARGET_FILESYSTEMS)
|
||||
|
||||
UBOOT_PATH := $(STAGING_DIR_IMAGE)/uboot-$(1)
|
||||
|
||||
DEFAULT :=
|
||||
endef
|
||||
|
||||
DEFAULT_DEVICE_VARS := \
|
||||
@ -561,6 +563,7 @@ Target-Profile-Name: $(DEVICE_TITLE)
|
||||
Target-Profile-Packages: $(DEVICE_PACKAGES)
|
||||
Target-Profile-hasImageMetadata: $(if $(foreach image,$(IMAGES),$(findstring append-metadata,$(IMAGE/$(image)))),1,0)
|
||||
Target-Profile-SupportedDevices: $(SUPPORTED_DEVICES)
|
||||
$(if $(DEFAULT),Target-Profile-Default: $(DEFAULT))
|
||||
Target-Profile-Description:
|
||||
$(DEVICE_DESCRIPTION)
|
||||
@@
|
||||
|
@ -143,7 +143,8 @@ sub parse_target_metadata($) {
|
||||
has_image_metadata => 0,
|
||||
supported_devices => [],
|
||||
priority => 999,
|
||||
packages => []
|
||||
packages => [],
|
||||
default => "y if TARGET_ALL_PROFILES"
|
||||
};
|
||||
$1 =~ /^DEVICE_/ and $target->{has_devices} = 1;
|
||||
push @{$target->{profiles}}, $profile;
|
||||
@ -157,6 +158,7 @@ sub parse_target_metadata($) {
|
||||
};
|
||||
/^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ];
|
||||
/^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
|
||||
/^Target-Profile-Default:\s*(.+)\s*$/ and $profile->{default} = $1;
|
||||
}
|
||||
close FILE;
|
||||
foreach my $target (@target) {
|
||||
|
@ -296,7 +296,7 @@ EOF
|
||||
menuconfig TARGET_DEVICE_$target->{conf}_$profile->{id}
|
||||
bool "$profile->{name}"
|
||||
depends on TARGET_$target->{conf}
|
||||
default y if TARGET_ALL_PROFILES
|
||||
default $profile->{default}
|
||||
EOF
|
||||
my @pkglist = merge_package_lists($target->{packages}, $profile->{packages});
|
||||
foreach my $pkg (@pkglist) {
|
||||
|
Loading…
Reference in New Issue
Block a user