
Rename this vendor since it is intended to be used on any platform where coreboot runs at reset and then loads U-Boot.
So far it is only tested on link. When other boards are supported it is likely that we will need to move to multiple board names, all under the 'coreboot' vendor. So while it would be possible to remove the vendor for now, that would be short-sighted.
Suggested-by: Bin Meng bmeng.cn@gmail.com Signed-off-by: Simon Glass sjg@chromium.org ---
Changes in v2: - Add new patch to rename chromebook-x86 to coreboot
arch/x86/Kconfig | 2 +- board/{chromebook-x86 => coreboot}/coreboot/Kconfig | 2 +- board/{chromebook-x86 => coreboot}/coreboot/MAINTAINERS | 2 +- board/{chromebook-x86 => coreboot}/coreboot/Makefile | 0 board/{chromebook-x86 => coreboot}/coreboot/coreboot.c | 0 board/{chromebook-x86 => coreboot}/coreboot/coreboot_start.S | 0 6 files changed, 3 insertions(+), 3 deletions(-) rename board/{chromebook-x86 => coreboot}/coreboot/Kconfig (86%) rename board/{chromebook-x86 => coreboot}/coreboot/MAINTAINERS (78%) rename board/{chromebook-x86 => coreboot}/coreboot/Makefile (100%) rename board/{chromebook-x86 => coreboot}/coreboot/coreboot.c (100%) rename board/{chromebook-x86 => coreboot}/coreboot/coreboot_start.S (100%)
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 46e316f..f913b0c 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -67,7 +67,7 @@ config ROM_SIZE
source "arch/x86/cpu/ivybridge/Kconfig"
-source "board/chromebook-x86/coreboot/Kconfig" +source "board/coreboot/coreboot/Kconfig"
source "board/google/chromebook_link/Kconfig"
diff --git a/board/chromebook-x86/coreboot/Kconfig b/board/coreboot/coreboot/Kconfig similarity index 86% rename from board/chromebook-x86/coreboot/Kconfig rename to board/coreboot/coreboot/Kconfig index 83385c7..6ca6ced 100644 --- a/board/chromebook-x86/coreboot/Kconfig +++ b/board/coreboot/coreboot/Kconfig @@ -4,7 +4,7 @@ config SYS_BOARD default "coreboot"
config SYS_VENDOR - default "chromebook-x86" + default "coreboot"
config SYS_SOC default "coreboot" diff --git a/board/chromebook-x86/coreboot/MAINTAINERS b/board/coreboot/coreboot/MAINTAINERS similarity index 78% rename from board/chromebook-x86/coreboot/MAINTAINERS rename to board/coreboot/coreboot/MAINTAINERS index 3b2fb52..6ce66f5 100644 --- a/board/chromebook-x86/coreboot/MAINTAINERS +++ b/board/coreboot/coreboot/MAINTAINERS @@ -1,6 +1,6 @@ COREBOOT BOARD M: Simon Glass sjg@chromium.org S: Maintained -F: board/chromebook-x86/coreboot/ +F: board/coreboot/coreboot/ F: include/configs/coreboot.h F: configs/coreboot-x86_defconfig diff --git a/board/chromebook-x86/coreboot/Makefile b/board/coreboot/coreboot/Makefile similarity index 100% rename from board/chromebook-x86/coreboot/Makefile rename to board/coreboot/coreboot/Makefile diff --git a/board/chromebook-x86/coreboot/coreboot.c b/board/coreboot/coreboot/coreboot.c similarity index 100% rename from board/chromebook-x86/coreboot/coreboot.c rename to board/coreboot/coreboot/coreboot.c diff --git a/board/chromebook-x86/coreboot/coreboot_start.S b/board/coreboot/coreboot/coreboot_start.S similarity index 100% rename from board/chromebook-x86/coreboot/coreboot_start.S rename to board/coreboot/coreboot/coreboot_start.S