103 | | make kernel_menuconfig # this will do a 'make menuconfig; make savedefconfig' in the kernel directory |
104 | | }}} |
105 | | - your modified defconfig is now in linux/defconfig if you want to save it away somewhere |
106 | | * copy your modified defconfig over the venice_defconfig (because 'make kernel_image' will always revert to venice_defconfig) |
107 | | {{{#!bash |
108 | | cp linux/.config linux/arch/arm64/configs/venice_defconfig |
| 103 | make -C linux menuconfig # make your changes |
| 104 | make -C linux defconfig # once satisfied create a defconfig |
| 105 | cp linux/defconfig linux/arch/arm64/configs/venice_defconfig |