Changes between Version 7 and Version 8 of venice/bsp


Ignore:
Timestamp:
09/20/2021 04:53:59 PM (3 years ago)
Author:
Tim Harvey
Comment:

update kernel config instructions

Legend:

Unmodified
Added
Removed
Modified
  • venice/bsp

    v7 v8  
    101101 * Modify Kernel configuration (enabling modules etc):
    102102{{{#!bash
    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
     103make -C linux menuconfig # make your changes
     104make -C linux defconfig # once satisfied create a defconfig
     105cp linux/defconfig linux/arch/arm64/configs/venice_defconfig
    109106}}}
    110107 * Build kernel tarball: