Configuring the Linux kernel
Modifying the Linux kernel configuration may be necessary for certain use cases. The following steps describe how to copy the default SDK kernel configuration and modify it. It is assumed that the project template described in Creating a Linux distribution is used.
Copy sdk/acu6-pro-sdk-vX.X.X/externals/acu6-base/board/actia/acu6/linux-X.X.config to externals/YOUR_PROJECT_NAME/board/actia/acu6/linux_defconfig.
Run
make buildroot-menuconfig
and navigate to Kernel -> Kernel configuration (Using a custom (def)config file).Update the configuration file path to point to the external layer, e.g., $(BR2_EXTERNAL_YOUR_PROJECT_NAME_PATH)/board/actia/acu6/linux_defconfig.
Save the configuration and exit the tool.
Run
make buildroot-savedefconfig
to save the updated Buildroot configuration to the project.Run
make buildroot-linux-menuconfig
to open the kernel configuration menu.Make desired changes to the configuration.
Save the configuration and exit the tool.
Run
make buildroot-linux-update-defconfig
to update the kernel configuration file as set in Step 1.