aboutsummaryrefslogtreecommitdiff
path: root/board/coreboot
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2020-08-20 13:02:23 +0300
committerBin Meng <bmeng.cn@gmail.com>2020-09-01 13:38:38 +0800
commit85759d04cf04c8541e36b7def334f37c3d42e088 (patch)
tree82badc533c5d6e2a57ed68d8ad10876bbe8efdc0 /board/coreboot
parentebb2818bcb87a4be8bf47182030547d33d7a8ef2 (diff)
downloadu-boot-85759d04cf04c8541e36b7def334f37c3d42e088.zip
u-boot-85759d04cf04c8541e36b7def334f37c3d42e088.tar.gz
u-boot-85759d04cf04c8541e36b7def334f37c3d42e088.tar.bz2
x86: coreboot: Remove dead code
start.S does nothing and can be safely removed. Makefile is still being used by the build system, so simply drop the rule from it. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'board/coreboot')
-rw-r--r--board/coreboot/coreboot/Makefile2
-rw-r--r--board/coreboot/coreboot/start.S12
2 files changed, 1 insertions, 13 deletions
diff --git a/board/coreboot/coreboot/Makefile b/board/coreboot/coreboot/Makefile
index 8db7cc6..d292b70 100644
--- a/board/coreboot/coreboot/Makefile
+++ b/board/coreboot/coreboot/Makefile
@@ -10,4 +10,4 @@
# (C) Copyright 2002
# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
-obj-y += start.o coreboot.o
+obj-y += coreboot.o
diff --git a/board/coreboot/coreboot/start.S b/board/coreboot/coreboot/start.S
deleted file mode 100644
index aa702622..0000000
--- a/board/coreboot/coreboot/start.S
+++ /dev/null
@@ -1,12 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0+ */
-/*
- * Copyright (c) 2011 The Chromium OS Authors.
- * (C) Copyright 2008
- * Graeme Russ, graeme.russ@gmail.com.
- */
-
-/* board early intialization */
-.globl early_board_init
-early_board_init:
- /* No 32-bit board specific initialisation */
- jmp early_board_init_ret