it was reason for workaround rules already, and it's somewhat ugly:
authorStefan Reinauer <stepan@coresystems.de>
Tue, 16 Mar 2010 23:07:29 +0000 (23:07 +0000)
committerStefan Reinauer <stepan@openbios.org>
Tue, 16 Mar 2010 23:07:29 +0000 (23:07 +0000)
commit859e94a30420c726a0043a00a73abb946cfb94c3
tree37d7924bc8dbf8d28662f1d17c40acea811d9727
parent11b1eb994cedef869618bff5368859d9b3c99b1d
it was reason for workaround rules already, and it's somewhat ugly:
util/x86emu is the only part of coreboot that is linked into coreboot
itself that lives in util/.
It's not a utility and it does not really belong where it lives.

---> svn mv util/x86emu src/devices/oprom

plus necessary Makefile changes to get it building again

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5228 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
94 files changed:
Makefile
src/devices/Makefile.inc
src/devices/oprom/Makefile.inc [new file with mode: 0644]
src/devices/oprom/include/x86emu/fpu_regs.h [new file with mode: 0644]
src/devices/oprom/include/x86emu/regs.h [new file with mode: 0644]
src/devices/oprom/include/x86emu/types.h [new file with mode: 0644]
src/devices/oprom/include/x86emu/x86emu.h [new file with mode: 0644]
src/devices/oprom/x86.c [new file with mode: 0644]
src/devices/oprom/x86_asm.S [new file with mode: 0644]
src/devices/oprom/x86_interrupts.c [new file with mode: 0644]
src/devices/oprom/x86emu/LICENSE [new file with mode: 0644]
src/devices/oprom/x86emu/Makefile.inc [new file with mode: 0644]
src/devices/oprom/x86emu/debug.c [new file with mode: 0644]
src/devices/oprom/x86emu/debug.h [new file with mode: 0644]
src/devices/oprom/x86emu/decode.c [new file with mode: 0644]
src/devices/oprom/x86emu/decode.h [new file with mode: 0644]
src/devices/oprom/x86emu/fpu.c [new file with mode: 0644]
src/devices/oprom/x86emu/fpu.h [new file with mode: 0644]
src/devices/oprom/x86emu/ops.c [new file with mode: 0644]
src/devices/oprom/x86emu/ops.h [new file with mode: 0644]
src/devices/oprom/x86emu/ops2.c [new file with mode: 0644]
src/devices/oprom/x86emu/prim_asm.h [new file with mode: 0644]
src/devices/oprom/x86emu/prim_ops.c [new file with mode: 0644]
src/devices/oprom/x86emu/prim_ops.h [new file with mode: 0644]
src/devices/oprom/x86emu/sys.c [new file with mode: 0644]
src/devices/oprom/x86emu/x86emui.h [new file with mode: 0644]
src/devices/oprom/yabel/Makefile.inc [new file with mode: 0644]
src/devices/oprom/yabel/biosemu.c [new file with mode: 0644]
src/devices/oprom/yabel/biosemu.h [new file with mode: 0644]
src/devices/oprom/yabel/compat/Makefile.inc [new file with mode: 0644]
src/devices/oprom/yabel/compat/functions.c [new file with mode: 0644]
src/devices/oprom/yabel/compat/of.h [new file with mode: 0644]
src/devices/oprom/yabel/compat/rtas.h [new file with mode: 0644]
src/devices/oprom/yabel/compat/time.h [new file with mode: 0644]
src/devices/oprom/yabel/debug.c [new file with mode: 0644]
src/devices/oprom/yabel/debug.h [new file with mode: 0644]
src/devices/oprom/yabel/device.c [new file with mode: 0644]
src/devices/oprom/yabel/device.h [new file with mode: 0644]
src/devices/oprom/yabel/interrupt.c [new file with mode: 0644]
src/devices/oprom/yabel/interrupt.h [new file with mode: 0644]
src/devices/oprom/yabel/io.c [new file with mode: 0644]
src/devices/oprom/yabel/io.h [new file with mode: 0644]
src/devices/oprom/yabel/mem.c [new file with mode: 0644]
src/devices/oprom/yabel/mem.h [new file with mode: 0644]
src/devices/oprom/yabel/pmm.c [new file with mode: 0644]
src/devices/oprom/yabel/pmm.h [new file with mode: 0644]
src/devices/oprom/yabel/vbe.c [new file with mode: 0644]
src/devices/oprom/yabel/vbe.h [new file with mode: 0644]
util/x86emu/Makefile.inc [deleted file]
util/x86emu/include/x86emu/fpu_regs.h [deleted file]
util/x86emu/include/x86emu/regs.h [deleted file]
util/x86emu/include/x86emu/types.h [deleted file]
util/x86emu/include/x86emu/x86emu.h [deleted file]
util/x86emu/x86.c [deleted file]
util/x86emu/x86_asm.S [deleted file]
util/x86emu/x86_interrupts.c [deleted file]
util/x86emu/x86emu/LICENSE [deleted file]
util/x86emu/x86emu/Makefile.inc [deleted file]
util/x86emu/x86emu/debug.c [deleted file]
util/x86emu/x86emu/debug.h [deleted file]
util/x86emu/x86emu/decode.c [deleted file]
util/x86emu/x86emu/decode.h [deleted file]
util/x86emu/x86emu/fpu.c [deleted file]
util/x86emu/x86emu/fpu.h [deleted file]
util/x86emu/x86emu/ops.c [deleted file]
util/x86emu/x86emu/ops.h [deleted file]
util/x86emu/x86emu/ops2.c [deleted file]
util/x86emu/x86emu/prim_asm.h [deleted file]
util/x86emu/x86emu/prim_ops.c [deleted file]
util/x86emu/x86emu/prim_ops.h [deleted file]
util/x86emu/x86emu/sys.c [deleted file]
util/x86emu/x86emu/x86emui.h [deleted file]
util/x86emu/yabel/Makefile.inc [deleted file]
util/x86emu/yabel/biosemu.c [deleted file]
util/x86emu/yabel/biosemu.h [deleted file]
util/x86emu/yabel/compat/Makefile.inc [deleted file]
util/x86emu/yabel/compat/functions.c [deleted file]
util/x86emu/yabel/compat/of.h [deleted file]
util/x86emu/yabel/compat/rtas.h [deleted file]
util/x86emu/yabel/compat/time.h [deleted file]
util/x86emu/yabel/debug.c [deleted file]
util/x86emu/yabel/debug.h [deleted file]
util/x86emu/yabel/device.c [deleted file]
util/x86emu/yabel/device.h [deleted file]
util/x86emu/yabel/interrupt.c [deleted file]
util/x86emu/yabel/interrupt.h [deleted file]
util/x86emu/yabel/io.c [deleted file]
util/x86emu/yabel/io.h [deleted file]
util/x86emu/yabel/mem.c [deleted file]
util/x86emu/yabel/mem.h [deleted file]
util/x86emu/yabel/pmm.c [deleted file]
util/x86emu/yabel/pmm.h [deleted file]
util/x86emu/yabel/vbe.c [deleted file]
util/x86emu/yabel/vbe.h [deleted file]