diff options
author | Tom Rini <trini@konsulko.com> | 2024-01-22 14:38:33 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-01-22 14:38:33 -0500 |
commit | 340e438e1cf46761799aba0c03a7f1fc7fcedf2c (patch) | |
tree | 467e4cc496258c1357664c6023d44a8b0626d502 | |
parent | afbd18382156efa02b24dcceb1b3610b379d3685 (diff) | |
download | u-boot-WIP/optional-sys-config-name.zip u-boot-WIP/optional-sys-config-name.tar.gz u-boot-WIP/optional-sys-config-name.tar.bz2 |
xilinx_mbv: Remove empty config headerWIP/optional-sys-config-name
Now that we support having CONFIG_SYS_CONFIG_NAME be unset to indicate a
lack of board.h file, unset this on the xilinx_mbv platforms and remove
the otherwise empty file.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
Cc: Michal Simek <michal.simek@amd.com>
-rw-r--r-- | board/xilinx/mbv/Kconfig | 3 | ||||
-rw-r--r-- | include/configs/xilinx_mbv.h | 6 |
2 files changed, 0 insertions, 9 deletions
diff --git a/board/xilinx/mbv/Kconfig b/board/xilinx/mbv/Kconfig index 4bc9f72..d2dec39 100644 --- a/board/xilinx/mbv/Kconfig +++ b/board/xilinx/mbv/Kconfig @@ -9,9 +9,6 @@ config SYS_VENDOR config SYS_CPU default "generic" -config SYS_CONFIG_NAME - default "xilinx_mbv" - config TEXT_BASE default 0x80000000 if !RISCV_SMODE default 0x80400000 if RISCV_SMODE && ARCH_RV32I diff --git a/include/configs/xilinx_mbv.h b/include/configs/xilinx_mbv.h deleted file mode 100644 index dba398a..0000000 --- a/include/configs/xilinx_mbv.h +++ /dev/null @@ -1,6 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -/* - * (C) Copyright 2023, Advanced Micro Devices, Inc. - * - * Michal Simek <michal.simek@amd.com> - */ |