From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anup Patel Date: Thu, 21 Feb 2019 04:30:15 +0000 Subject: [U-Boot] [PATCH v9 01/15] riscv: Enable create symlink using kconfig In-Reply-To: <20190221042936.13441-1-anup.patel@wdc.com> References: <20190221042936.13441-1-anup.patel@wdc.com> Message-ID: <20190221042936.13441-2-anup.patel@wdc.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de We select CREATE_ARCH_SYMLINK for RISC-V so that we can have include/asm/arch linked to include/asm/arch-xyz. Signed-off-by: Anup Patel Reviewed-by: Bin Meng --- arch/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/Kconfig b/arch/Kconfig index 35e2712fce..4ebc66227e 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -61,6 +61,7 @@ config PPC config RISCV bool "RISC-V architecture" + select CREATE_ARCH_SYMLINK select SUPPORT_OF_CONTROL select OF_CONTROL select DM -- 2.17.1