Fixed MakeFile's "CopyConfig" fuction And Updated config

- Updated config to Buildroot 2025.02.17
 -  Disabled ext4fs generation
 - Enabled ISO genration
This commit is contained in:
2026-09-06 15:23:21 +02:00
parent 0e6404602d
commit d5e4474377
4 changed files with 54 additions and 50 deletions
+9 -4
View File
@@ -35,10 +35,15 @@ $(all): _all
# Local target runs directly
CopyConfig:
test -f Linux.config && mv Linux.config Linux.config.old || true
cp $$(find build/linux* -name .config) Linux.config
test -f Busybox.config && mv Busybox.config Busybox.config.old || true
cp $$(find build/busybox* -name .config) Busybox.config
if ls build/linux* >/dev/null; then \
test -f Linux.config && mv Linux.config Linux.config.old || true; \
cp $$(find build/linux* -name .config) Linux.config; \
fi
if ls build/busybox* >/dev/null; then \
test -f Busybox.config && mv Busybox.config Busybox.config.old || true; \
cp $$(find build/busybox* -name .config) Busybox.config; \
fi
if ! $$(test -h .config); then \
cp BuildRoot.config BuildRoot.config.old; \