Changes between Version 29 and Version 30 of buildroot
- Timestamp:
- 09/18/2020 03:02:22 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
buildroot
v29 v30 130 130 If you wish to modify a file simply provide your version of it in your overlay and it will be copied over the original. If you wish to remove a file you can provide a 0-byte version of the file which may meet your needs. 131 131 132 Additionally you can use {{{BR2_ROOTFS_POST_BUILD_SCRIPT}}} to make any changes after buildroot builds but before the rootfs images are assembled. 133 134 132 135 [=#init] 133 136 == Create a custom init script … … 187 190 }}} 188 191 3. build with 'make' 192 193 194 195 [=#kernel] 196 == Kernel Configuration 197 If you are using buildroot to build a kernel {{{BR2_KERNEL}}}, you can choose where to get the kernel config (the in-kernel arch default, another in-kernel defconfig, or a custom kernel defconfig). Regardless of your initial kernel config choice you can later modify the kernel configuration via {{{make linux-menuconfig}}}. Following that you can use {{{make linux-savedefconfig}}} to create a defconfig file in the Linux build directory and {{{make linux-update-defconfig}}} to save the Linux defconfig to the path specified by {{{BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE}}}. 189 198 190 199