How to delete a test program from autoloading in this system and how to add your program correctly to autoloading?
Can anyone suggest?
Вuildroot
Hello, if you are referring to the test program as the rockchip_test folder, you can modify the board support files (<Luckfox-pico Sdk>/project/cfg/BoardConfig_IPC/BoardConfig*.mk) before compiling the image. Set the RK_ENABLE_ROCKCHIP_TEST option from "y" to "n".
Code: Select all
export RK_ENABLE_ROCKCHIP_TEST=n
Code: Select all
build:prepare
...
...
ifeq ($(SYSDRV_BUILD_RAMDISK_FLAG),YES)
...
...
else
...
...
cp <Your program file> $(SYSDRV_DIR_OUT_ROOTFS)/<Your target path>
endif