Changes between Version 36 and Version 37 of newport/bsp


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

update linux kernel config process

Legend:

Unmodified
Added
Removed
Modified
  • newport/bsp

    v36 v37  
    121121 * Modify Kernel configuration (enabling modules etc):
    122122{{{#!bash
    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
     123make -C linux menuconfig # make your changes
     124make -C linux defconfig # once satisfied create a defconfig
     125cp linux/defconfig linux/arch/arm64/configs/newport_defconfig # and copy it to the newport_defconfig
    129126}}}
    130127 * Build kernel tarball: