mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
fix image preconfiguration
SVN-Revision: 8921
This commit is contained in:
parent
6e7564b640
commit
dd44ecc578
@ -20,6 +20,7 @@ $(curdir)/cleanup: $(TMP_DIR)/.build
|
|||||||
rm -rf $(TARGET_DIR)
|
rm -rf $(TARGET_DIR)
|
||||||
|
|
||||||
$(curdir)/rootfs-prepare: $(TMP_DIR)/.build
|
$(curdir)/rootfs-prepare: $(TMP_DIR)/.build
|
||||||
|
@-$(MAKE) package/preconfig
|
||||||
@if [ -d $(TOPDIR)/files ]; then \
|
@if [ -d $(TOPDIR)/files ]; then \
|
||||||
$(CP) $(TOPDIR)/files/. $(TARGET_DIR); \
|
$(CP) $(TOPDIR)/files/. $(TARGET_DIR); \
|
||||||
fi
|
fi
|
||||||
|
@ -132,11 +132,15 @@ sub parse_package_metadata() {
|
|||||||
/^Prereq-Check:/ and $pkg->{prereq} = 1;
|
/^Prereq-Check:/ and $pkg->{prereq} = 1;
|
||||||
/^Preconfig:\s*(.+)\s*$/ and do {
|
/^Preconfig:\s*(.+)\s*$/ and do {
|
||||||
my $pkgname = $pkg->{name};
|
my $pkgname = $pkg->{name};
|
||||||
$preconfig{$pkgname} or $preconfig{$pkgname} = [];
|
$preconfig{$pkgname} or $preconfig{$pkgname} = {};
|
||||||
|
if (exists $preconfig{$pkgname}->{$1}) {
|
||||||
|
$preconfig = $preconfig{$pkgname}->{$1};
|
||||||
|
} else {
|
||||||
$preconfig = {
|
$preconfig = {
|
||||||
id => $1
|
id => $1
|
||||||
};
|
};
|
||||||
push @{$preconfig{$pkgname}}, $preconfig;
|
$preconfig{$pkgname}->{$1} = $preconfig;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
/^Preconfig-Type:\s*(.*?)\s*$/ and $preconfig->{type} = $1;
|
/^Preconfig-Type:\s*(.*?)\s*$/ and $preconfig->{type} = $1;
|
||||||
/^Preconfig-Label:\s*(.*?)\s*$/ and $preconfig->{label} = $1;
|
/^Preconfig-Label:\s*(.*?)\s*$/ and $preconfig->{label} = $1;
|
||||||
@ -451,14 +455,14 @@ sub gen_package_config() {
|
|||||||
parse_package_metadata();
|
parse_package_metadata();
|
||||||
print "menuconfig UCI_PRECONFIG\n\tbool \"Image configuration\"\n";
|
print "menuconfig UCI_PRECONFIG\n\tbool \"Image configuration\"\n";
|
||||||
foreach my $preconfig (keys %preconfig) {
|
foreach my $preconfig (keys %preconfig) {
|
||||||
foreach my $cfg (@{$preconfig{$preconfig}}) {
|
foreach my $cfg (keys %{$preconfig{$preconfig}}) {
|
||||||
my $conf = $cfg->{id};
|
my $conf = $preconfig{$preconfig}->{$cfg}->{id};
|
||||||
$conf =~ tr/\.-/__/;
|
$conf =~ tr/\.-/__/;
|
||||||
print <<EOF
|
print <<EOF
|
||||||
config UCI_PRECONFIG_$conf
|
config UCI_PRECONFIG_$conf
|
||||||
string "$cfg->{label}" if UCI_PRECONFIG
|
string "$preconfig{$preconfig}->{$cfg}->{label}" if UCI_PRECONFIG
|
||||||
depends PACKAGE_$preconfig
|
depends PACKAGE_$preconfig
|
||||||
default "$cfg->{default}"
|
default "$preconfig{$preconfig}->{$cfg}->{default}"
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
@ -524,10 +528,10 @@ sub gen_package_mk() {
|
|||||||
}
|
}
|
||||||
foreach my $preconfig (keys %preconfig) {
|
foreach my $preconfig (keys %preconfig) {
|
||||||
my $cmds;
|
my $cmds;
|
||||||
foreach my $cfg (@{$preconfig{$preconfig}}) {
|
foreach my $cfg (keys %{$preconfig{$preconfig}}) {
|
||||||
my $conf = $cfg->{id};
|
my $conf = $preconfig{$preconfig}->{$cfg}->{id};
|
||||||
$conf =~ tr/\.-/__/;
|
$conf =~ tr/\.-/__/;
|
||||||
$cmds .= "\techo \"uci set '$cfg->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
|
$cmds .= "\techo \"uci set '$preconfig{$preconfig}->{$cfg}->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
|
||||||
}
|
}
|
||||||
next unless $cmds;
|
next unless $cmds;
|
||||||
print <<EOF
|
print <<EOF
|
||||||
|
Loading…
Reference in New Issue
Block a user