summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOliver Schib <lich000king@yahoo.de>2018-04-20 22:30:54 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2018-04-21 17:22:53 +0100
commit5af48dfb5855e2e54d9c4dd1973ac8096c85c74b (patch)
tree34813a49045416c0f8935455449d82c43bf254e2 /docs
parent1b31199484e548472463bb042a3f1b60f2d149e8 (diff)
fix symbols in docs
Signed-off-by: Oliver Schib <lich000king@yahoo.de>
Diffstat (limited to 'docs')
-rw-r--r--docs/adding-boards.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/adding-boards.txt b/docs/adding-boards.txt
index 4f18dbc08..df102a5e6 100644
--- a/docs/adding-boards.txt
+++ b/docs/adding-boards.txt
@@ -110,22 +110,22 @@ If your system boots up fine to a shell, you can add the driver configuration.
For example if you add SD card driver support to Raspberry PI 2 you
would add following to target/linux/config/Config.in.block
------------------------
-config ADK_KERNEL_MMC_BCM2835
+config ADK_LINUX_KERNEL_MMC_BCM2835
bool "SD card support for BCM2835 boards"
- select ADK_KERNEL_SCSI
- select ADK_KERNEL_MMC
- select ADK_KERNEL_MMC_BLOCK
- select ADK_KERNEL_BLK_DEV
- select ADK_KERNEL_BLK_DEV_SD
- select ADK_KERNEL_MMC_SDHCI
- select ADK_KERNEL_MMC_SDHCI_PLTFM
- select ADK_KERNEL_MMC_BCM2835_DMA
+ select ADK_LINUX_KERNEL_SCSI
+ select ADK_LINUX_KERNEL_MMC
+ select ADK_LINUX_KERNEL_MMC_BLOCK
+ select ADK_LINUX_KERNEL_BLK_DEV
+ select ADK_LINUX_KERNEL_BLK_DEV_SD
+ select ADK_LINUX_KERNEL_MMC_SDHCI
+ select ADK_LINUX_KERNEL_MMC_SDHCI_PLTFM
+ select ADK_LINUX_KERNEL_MMC_BCM2835_DMA
depends on ADK_TARGET_BOARD_BCM28XX
default y if ADK_TARGET_BOARD_BCM28XX
default n
------------------------
-We use the symbol prefix ADK_KERNEL instead of CONFIG. Otherwise the symbols are
+We use the symbol prefix ADK_LINUX_KERNEL instead of CONFIG. Otherwise the symbols are
matching the kernel symbol names.
Get again into the menu based system, enable the driver you added and recompile.