Changes between Version 6 and Version 7 of linux/kernel


Ignore:
Timestamp:
07/25/2018 10:38:36 PM (6 years ago)
Author:
Shiv Khanna
Comment:

clarified kernel mainline examples

Legend:

Unmodified
Added
Removed
Modified
  • linux/kernel

    v6 v7  
    1921925. Configure the kernel. Often you will want to start with an existing defconfig file followed by doing a 'make kernel menuconfig' to change any options you desire to modify.
    193193 * Examples:
    194   - for mainline start with either 'imx_v6_v7_defconfig' for Ventana/IMX6 or 'defconfig' for Newport/CN80XX:
     194  * for the mainline Ventana/IMX6:
    195195{{{
    196196#!bash
    197197make imx_v6_v7_defconfig # Ventana/IMX6
    198 make defconfig # Newport/CN80XX
     198make menuconfig
     199}}}
     200  * for the mainline Newport/CN80XX:
     201{{{
     202#!bash
     203make defconfig # ARM64 defconfig
     204make menuconfig
    199205}}}
    200206  - for the Gateworks Newport kernel:
    201207{{{#!bash
    202 make newport_defconfig
     208make newport_defconfig # Gateworks default config
    203209make menuconfig
    204210}}}
    205211  - for the Gateworks Linux 3.14.x based downstream vendor kernel:
    206212{{{#!bash
    207 make gwventana_defconfig
     213make gwventana_defconfig # Gateworks default config
    208214make menuconfig
    209215}}}