diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-04-25 18:47:52 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-04-28 10:42:35 -0400 |
commit | 7325f6cfdcf6cbc4fc5acf706b6cbcc786ae8db5 (patch) | |
tree | e0c9bc76ea30a3f35b551ab08372ad2b8cb91c2d /doc | |
parent | b60cfb6a01a23938245edb9e0910cc11dbeed789 (diff) | |
download | u-boot-7325f6cfdcf6cbc4fc5acf706b6cbcc786ae8db5.zip u-boot-7325f6cfdcf6cbc4fc5acf706b6cbcc786ae8db5.tar.gz u-boot-7325f6cfdcf6cbc4fc5acf706b6cbcc786ae8db5.tar.bz2 |
distro: use imply to enable DISTRO_DEFAULTS as SoC default
The default of DISTRO_DEFAULTS is messy. Using the 'imply' keyword
is equivalent and cleaner.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.distro | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/README.distro b/doc/README.distro index 2af5590..522deb3 100644 --- a/doc/README.distro +++ b/doc/README.distro @@ -165,8 +165,7 @@ Enabling the distro options In your board's defconfig, enable the DISTRO_DEFAULTS option by adding a line with "CONFIG_DISTRO_DEFAULTS=y". If you want to enable this from Kconfig itself, for e.g. all boards using a specific SoC then -add a "default y if ARCH_FOO" to the DISTRO_DEFAULTS section of -the Kconfig file in the root of the u-boot sources. +add a "imply DISTRO_DEFAULTS" to your SoC CONFIG option. In your board configuration file, include the following: |