From 7325f6cfdcf6cbc4fc5acf706b6cbcc786ae8db5 Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Wed, 25 Apr 2018 18:47:52 +0900 Subject: 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 --- doc/README.distro | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/README.distro b/doc/README.distro index 2af559009b..522deb3232 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: -- cgit