mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
703515f889
Includes the following changes:9edff13abd
mac80211: disable potentially harmful PS software retry for A-MPDU sessions75216a76b0
mac80211: backport upstream fix for CSA in IBSS mode368cc8ef47
mac80211: update brcmfmac backporting brcmf_err cleanups66a63d25c4
mac80211: fix build on linux 3.189eacb9d7fc
rt2x00: mt7620: lots of improvementsfd94fa61a7
mac80211: brcmfmac: update Raspberry Pi patches for linux 4.9649e766a64
mac80211: update to wireless-testing 2017-01-3147540afa5d
ath9k: add a warning to the tx99 config optionb367eef21d
mac80211: rt2x00: add support for external LNA on MT76209200e168f2
mac80211: move (& update) upstream accepted brcmfmac patches Signed-off-by: Felix Fietkau <nbd@nbd.name>
65 lines
1.6 KiB
Diff
65 lines
1.6 KiB
Diff
--- a/kconf/conf.c
|
|
+++ b/kconf/conf.c
|
|
@@ -594,40 +594,12 @@ int main(int ac, char **av)
|
|
case oldconfig:
|
|
case listnewconfig:
|
|
case olddefconfig:
|
|
- conf_read(NULL);
|
|
- break;
|
|
case allnoconfig:
|
|
case allyesconfig:
|
|
case allmodconfig:
|
|
case alldefconfig:
|
|
case randconfig:
|
|
- name = getenv("KCONFIG_ALLCONFIG");
|
|
- if (!name)
|
|
- break;
|
|
- if ((strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) {
|
|
- if (conf_read_simple(name, S_DEF_USER)) {
|
|
- fprintf(stderr,
|
|
- _("*** Can't read seed configuration \"%s\"!\n"),
|
|
- name);
|
|
- exit(1);
|
|
- }
|
|
- break;
|
|
- }
|
|
- switch (input_mode) {
|
|
- case allnoconfig: name = "allno.config"; break;
|
|
- case allyesconfig: name = "allyes.config"; break;
|
|
- case allmodconfig: name = "allmod.config"; break;
|
|
- case alldefconfig: name = "alldef.config"; break;
|
|
- case randconfig: name = "allrandom.config"; break;
|
|
- default: break;
|
|
- }
|
|
- if (conf_read_simple(name, S_DEF_USER) &&
|
|
- conf_read_simple("all.config", S_DEF_USER)) {
|
|
- fprintf(stderr,
|
|
- _("*** KCONFIG_ALLCONFIG set, but no \"%s\" or \"all.config\" file found\n"),
|
|
- name);
|
|
- exit(1);
|
|
- }
|
|
+ conf_read(NULL);
|
|
break;
|
|
default:
|
|
break;
|
|
--- a/kconf/confdata.c
|
|
+++ b/kconf/confdata.c
|
|
@@ -1170,6 +1170,8 @@ bool conf_set_all_new_symbols(enum conf_
|
|
}
|
|
bool has_changed = false;
|
|
|
|
+ sym_clear_all_valid();
|
|
+
|
|
for_all_symbols(i, sym) {
|
|
if (sym_has_value(sym) || (sym->flags & SYMBOL_VALID))
|
|
continue;
|
|
@@ -1213,8 +1215,6 @@ bool conf_set_all_new_symbols(enum conf_
|
|
|
|
}
|
|
|
|
- sym_clear_all_valid();
|
|
-
|
|
/*
|
|
* We have different type of choice blocks.
|
|
* If curr.tri equals to mod then we can select several
|