diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-09-01 11:33:52 +0300 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2020-09-01 17:00:27 +0800 |
commit | 365a581c1cbbb43c1d8da49d5bfd134530c1a621 (patch) | |
tree | a55389299b7fe2dd38c28c8f25a2b4a1d2c53984 /board/emulation/qemu-x86/start.S | |
parent | c2addf9fc171de55d99fcccd7e5622894f74fe18 (diff) |
x86: qemu: Remove dead code
start.S does nothing and can be safely removed. Makefile is still being used
by the build system, so simply replace the rule in it. We use stub C-file
like it's done for other boards.
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/emulation/qemu-x86/start.S')
-rw-r--r-- | board/emulation/qemu-x86/start.S | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/board/emulation/qemu-x86/start.S b/board/emulation/qemu-x86/start.S deleted file mode 100644 index e4bde561b2..0000000000 --- a/board/emulation/qemu-x86/start.S +++ /dev/null @@ -1,8 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ -/* - * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> - */ - -.globl early_board_init -early_board_init: - jmp early_board_init_ret |