dev image: keep nano by re-setting the removal list

IMAGE_INSTALL:remove applies after every append, so the release recipe's
removal of nano also stripped it from the dev image that appended it back.
The dev recipe now re-sets the removal list to gfui-client alone.

No catalog consequence: dev image composition only.
This commit is contained in:
ScottW514
2026-08-24 16:04:09 -04:00
parent 4e79ee5f92
commit db2baa03bb
@@ -12,9 +12,14 @@ IMAGE_INSTALL += " \
forgetest \
python3-gfutilities-emulator \
htop \
nano \
"
# The release recipe removes nano from the shared base list (bench
# convenience, 8.7 MB with libmagic). A removal applies after every append,
# so the dev image re-sets the removal list to keep nano instead of adding
# it back.
IMAGE_INSTALL:remove = "gfui-client"
# debug-tweaks (passwordless root, root SSH login) belongs ONLY to the dev
# image - never the release image. It lives here, not in the shared kas
# local.conf, so the release forgefirm-image cannot inherit it.