diff options
Diffstat (limited to 'documentation/kernel-dev/kernel-dev-common.xml')
-rw-r--r-- | documentation/kernel-dev/kernel-dev-common.xml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/documentation/kernel-dev/kernel-dev-common.xml b/documentation/kernel-dev/kernel-dev-common.xml index 579a03537b..c1c2d6d703 100644 --- a/documentation/kernel-dev/kernel-dev-common.xml +++ b/documentation/kernel-dev/kernel-dev-common.xml | |||
@@ -948,12 +948,14 @@ | |||
948 | <literallayout class='monospaced'> | 948 | <literallayout class='monospaced'> |
949 | KBUILD_DEFCONFIG_<replaceable>KMACHINE</replaceable> ?= <replaceable>defconfig_file</replaceable> | 949 | KBUILD_DEFCONFIG_<replaceable>KMACHINE</replaceable> ?= <replaceable>defconfig_file</replaceable> |
950 | </literallayout> | 950 | </literallayout> |
951 | Here is an example that appends the | 951 | Here is an example that assigns the |
952 | <filename>KBUILD_DEFCONFIG</filename> variable with | 952 | <filename>KBUILD_DEFCONFIG</filename> variable based on |
953 | "common-pc" and provides the path to the "in-tree" | 953 | "raspberrypi2" and provides the path to the "in-tree" |
954 | <filename>defconfig</filename> file: | 954 | <filename>defconfig</filename> file |
955 | to be used for a Raspberry Pi 2, | ||
956 | which is based on the Broadcom 2708/2709 chipset: | ||
955 | <literallayout class='monospaced'> | 957 | <literallayout class='monospaced'> |
956 | KBUILD_DEFCONFIG_common-pc ?= "/home/scottrif/configfiles/my_defconfig_file" | 958 | KBUILD_DEFCONFIG_raspberrypi2 ?= "bcm2709_defconfig" |
957 | </literallayout> | 959 | </literallayout> |
958 | </para> | 960 | </para> |
959 | 961 | ||