Hello, I'm having a strange problem compiling version 25.12.0-rc2 using a build system.
In the menuconfig options, the luci-app-lxc package doesn't appear, but when I compile it as a single package with the command `make packages/luci-app-lxc package/compile`, it works.
I ran the scripts `./script/feeds update -a` and `./script/feeds/install -a`, but it still doesn't work.
I removed the `.config` file and ran `make defconfig` to create a new one, and the package still doesn't appear in the list.
I cleaned the build system with the command `make distclean` and tried again, but without success.
Diffconfig presented here does not contain any lxc. Add lxc and redo diffconfig?
Diffconfig is goid if you ad-hoc build some package with exotic options and then wish to return to normality.
I managed to solve it in a temporary way. I removed the entire build system, cloned the repository again, and checked out directly to version 25.12.0-rc2.
I realized that the problem is related to when I use the build system with a different version before, 24.10.5 for example, and changing to version 25.12.0-rc2, even after cleaning the build system using the make distclean command.
I noticed that the files related to the package are in the directories ./package/feeds/luci/luci-app-lxc and ./feeds/luci/applications/luci-app-lxc, but I haven't figured out why it doesn't appear in the menuconfig.
If anyone can help, I will leave the commands I used to change the version and screenshots. I only edited the fields to hide my computer username.
make distclean
git fetch -a -t
git checkout v25.12.0-rc2
./scripts/feeds update -a
./scripts/feeds install -a
I would have personally recommended
make distclean
git fetch -a -t
git checkout v25.12.0-rc2 make distclean
./scripts/feeds update -a
./scripts/feeds install -a
Since the 'incoming' version knows best what folders/files it cares about to clean up than a different version.