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/Makefile | |
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/Makefile')
-rw-r--r-- | board/emulation/qemu-x86/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/emulation/qemu-x86/Makefile b/board/emulation/qemu-x86/Makefile index 782e298b74..ff4aaa51c5 100644 --- a/board/emulation/qemu-x86/Makefile +++ b/board/emulation/qemu-x86/Makefile @@ -2,4 +2,4 @@ # # Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> -obj-y += start.o +obj-y += qemu-x86.o |