build: remove profile kernel/build system config override support
It has been unused for years Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
@@ -287,9 +287,7 @@ EOF
|
||||
config TARGET_$target->{conf}_$profile->{id}
|
||||
bool "$profile->{name}"
|
||||
depends on TARGET_$target->{conf}
|
||||
$profile->{config}
|
||||
EOF
|
||||
$profile->{kconfig} and print "\tselect PROFILE_KCONFIG\n";
|
||||
my @pkglist = merge_package_lists($target->{packages}, $profile->{packages});
|
||||
foreach my $pkg (@pkglist) {
|
||||
print "\tselect DEFAULT_$pkg\n";
|
||||
|
||||
@@ -96,8 +96,6 @@ 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-Config:/ and $profile->{config} = get_multiline(*FILE, "\t");
|
||||
/^Target-Profile-Kconfig:/ and $profile->{kconfig} = 1;
|
||||
}
|
||||
close FILE;
|
||||
foreach my $target (@target) {
|
||||
|
||||
Reference in New Issue
Block a user