mirror of
https://github.com/openwrt/openwrt.git
synced 2026-07-12 20:34:45 +04:00
scripts: feeds: don't refresh .config upon update
Feeds update does not make updated packages available to compile; they must be installed. Despite this, update refreshes the .config, deleting selections in the .config which have not been installed yet. The deleted selections are not restored with `./scripts/feeds install` nor with `make defconfig` because these steps cannot conjure up already deleted selections. Change update to not modify the .config and leave it to `./scripts/feeds install -d <y|m|n>` or `make defconfig` or other *config options. Signed-off-by: Ryan Leung <untilscour@protonmail.com> Link: https://github.com/openwrt/openwrt/pull/23241 Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
This commit is contained in:
committed by
Jonas Jelonek
parent
7c69452c6a
commit
4b2e7031b2
@@ -892,8 +892,6 @@ sub update {
|
||||
};
|
||||
}
|
||||
|
||||
refresh_config();
|
||||
|
||||
return $failed;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user