summaryrefslogtreecommitdiff
path: root/board/chromebook-x86/coreboot/coreboot.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-11-13 05:42:29 (GMT)
committerSimon Glass <sjg@chromium.org>2014-11-21 06:34:16 (GMT)
commitfe5b9b447c6eea3873833b1f3ba15c9854aa2ef8 (patch)
tree6da6e670a56e69be86ecdc4a28ad245c25e0b140 /board/chromebook-x86/coreboot/coreboot.c
parent65dd74a674d636afcc14594c8308ff516e95a445 (diff)
downloadu-boot-fe5b9b447c6eea3873833b1f3ba15c9854aa2ef8.tar.xz
x86: Rename chromebook-x86 to coreboot
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>
Diffstat (limited to 'board/chromebook-x86/coreboot/coreboot.c')
-rw-r--r--board/chromebook-x86/coreboot/coreboot.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/board/chromebook-x86/coreboot/coreboot.c b/board/chromebook-x86/coreboot/coreboot.c
deleted file mode 100644
index 0240c34..0000000
--- a/board/chromebook-x86/coreboot/coreboot.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * Copyright (C) 2013 Google, Inc
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <cros_ec.h>
-
-int arch_early_init_r(void)
-{
- if (cros_ec_board_init())
- return -1;
-
- return 0;
-}