diff options
author | Tom Rini <trini@konsulko.com> | 2024-01-22 17:39:18 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-02-27 14:18:30 -0500 |
commit | 4be2311bf4af0a3e0ee0ca745c0227319322f897 (patch) | |
tree | 8cfc2ad6682e04ba358176f2820e19e5c895f830 | |
parent | f7913054e91f70daf00013bc6dc9ca0dbe263319 (diff) | |
download | u-boot-4be2311bf4af0a3e0ee0ca745c0227319322f897.zip u-boot-4be2311bf4af0a3e0ee0ca745c0227319322f897.tar.gz u-boot-4be2311bf4af0a3e0ee0ca745c0227319322f897.tar.bz2 |
slimbootloader: Remove empty config header
Now that we support having CONFIG_SYS_CONFIG_NAME be unset to indicate a
lack of board.h file, unset this on the slimbootloader platform and remove
the otherwise empty file.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | board/intel/slimbootloader/Kconfig | 3 | ||||
-rw-r--r-- | board/intel/slimbootloader/MAINTAINERS | 1 | ||||
-rw-r--r-- | include/configs/slimbootloader.h | 4 |
3 files changed, 0 insertions, 8 deletions
diff --git a/board/intel/slimbootloader/Kconfig b/board/intel/slimbootloader/Kconfig index 015ed51..11e6cb3 100644 --- a/board/intel/slimbootloader/Kconfig +++ b/board/intel/slimbootloader/Kconfig @@ -13,9 +13,6 @@ config SYS_VENDOR config SYS_SOC default "slimbootloader" -config SYS_CONFIG_NAME - default "slimbootloader" - config TEXT_BASE default 0x00100000 diff --git a/board/intel/slimbootloader/MAINTAINERS b/board/intel/slimbootloader/MAINTAINERS index e693551..0208a38 100644 --- a/board/intel/slimbootloader/MAINTAINERS +++ b/board/intel/slimbootloader/MAINTAINERS @@ -2,5 +2,4 @@ Intel Slim Bootloader Payload M: Aiden Park <aiden.park@intel.com> S: Maintained F: board/intel/slimbootloader -F: include/configs/slimbootloader.h F: configs/slimbootloader_defconfig diff --git a/include/configs/slimbootloader.h b/include/configs/slimbootloader.h deleted file mode 100644 index 85f6a96..0000000 --- a/include/configs/slimbootloader.h +++ /dev/null @@ -1,4 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ -/* - * Copyright (C) 2019 Intel Corporation <www.intel.com> - */ |