From: Ryan Leung Date: Wed, 6 May 2026 11:31:01 +0000 (+1000) Subject: scripts: feeds: don't refresh .config upon update X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F23241%2Fhead;p=thirdparty%2Fopenwrt.git 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 ` or `make defconfig` or other *config options. Signed-off-by: Ryan Leung Link: https://github.com/openwrt/openwrt/pull/23241 Signed-off-by: Jonas Jelonek --- diff --git a/scripts/feeds b/scripts/feeds index 4b01c8b37f8..0c9ad9eef67 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -892,8 +892,6 @@ sub update { }; } - refresh_config(); - return $failed; }