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:
@@ -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; \
|
||||
|
||||
Reference in New Issue
Block a user