How to configure Busybox on LuckFox Pico
Posted: 2024-04-23 8:26
I need to configure Busybox to enable / disable features.
On luckfox, buildroot is configured to use busybox.
The sysdrv/Makefile does a copy of a default snippet configuration to the busybox included in buildroot:
However when I modify the snippet sysdrv/tools/board/buildroot/busybox.config, and then issue a
then finally flash the generated firmware, my changes are not taken into account.
This problem seems similar to the problems I had configuring buildroot to remove Samba.
So, what is the process to change the config of busybox (ideally using menuconfig), then rebuild the firmware with those changes ?
On luckfox, buildroot is configured to use busybox.
The sysdrv/Makefile does a copy of a default snippet configuration to the busybox included in buildroot:
Code: Select all
cp $(SYSDRV_DIR)/tools/board/buildroot/busybox.config $(BUILDROOT_DIR)/$(BUILDROOT_VER)/package/busybox/ ;
Code: Select all
./build.sh clean rootfs
./build.sh clean sysdrv
./build.sh sysdrv
./build.sh rootfs
./build.sh firmware
This problem seems similar to the problems I had configuring buildroot to remove Samba.
So, what is the process to change the config of busybox (ideally using menuconfig), then rebuild the firmware with those changes ?