| 123 | | make kernel_menuconfig # this will do a 'make menuconfig; make savedefconfig' in the kernel directory |
| 124 | | }}} |
| 125 | | - your modified defconfig is now in linux/defconfig if you want to save it away somewhere |
| 126 | | * copy your modified defconfig over the newport_defconfig (because 'make kernel_image' will always revert to newport_defconfig) |
| 127 | | {{{#!bash |
| 128 | | cp linux/.config linux/arch/arm64/configs/newport_defconfig |
| | 123 | make -C linux menuconfig # make your changes |
| | 124 | make -C linux defconfig # once satisfied create a defconfig |
| | 125 | cp linux/defconfig linux/arch/arm64/configs/newport_defconfig # and copy it to the newport_defconfig |