Changes between Version 6 and Version 7 of linux/kernel
- Timestamp:
- 07/25/2018 10:38:36 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
linux/kernel
v6 v7 192 192 5. 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. 193 193 * 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: 195 195 {{{ 196 196 #!bash 197 197 make imx_v6_v7_defconfig # Ventana/IMX6 198 make defconfig # Newport/CN80XX 198 make menuconfig 199 }}} 200 * for the mainline Newport/CN80XX: 201 {{{ 202 #!bash 203 make defconfig # ARM64 defconfig 204 make menuconfig 199 205 }}} 200 206 - for the Gateworks Newport kernel: 201 207 {{{#!bash 202 make newport_defconfig 208 make newport_defconfig # Gateworks default config 203 209 make menuconfig 204 210 }}} 205 211 - for the Gateworks Linux 3.14.x based downstream vendor kernel: 206 212 {{{#!bash 207 make gwventana_defconfig 213 make gwventana_defconfig # Gateworks default config 208 214 make menuconfig 209 215 }}}