From 4b2e7031b22e7887f9157162a849fbc43cbdb72b Mon Sep 17 00:00:00 2001 From: Ryan Leung Date: Wed, 6 May 2026 21:31:01 +1000 Subject: [PATCH] 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 --- scripts/feeds | 2 -- 1 file changed, 2 deletions(-) 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; }