diff options
author | RajithaY <rajithax.yerrumsetty@intel.com> | 2017-04-25 03:31:15 -0700 |
---|---|---|
committer | Rajitha Yerrumchetty <rajithax.yerrumsetty@intel.com> | 2017-05-22 06:48:08 +0000 |
commit | bb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch) | |
tree | ca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/qemu-palcode/Makefile | |
parent | a14b48d18a9ed03ec191cf16b162206998a895ce (diff) |
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to
kvmfornfv repo and make use of the updated latest qemu for the
execution of all testcase
Change-Id: I1280af507a857675c7f81d30c95255635667bdd7
Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/qemu-palcode/Makefile')
-rw-r--r-- | qemu/roms/qemu-palcode/Makefile | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/qemu/roms/qemu-palcode/Makefile b/qemu/roms/qemu-palcode/Makefile deleted file mode 100644 index 202559931..000000000 --- a/qemu/roms/qemu-palcode/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -CROSS = alphaev67-linux- -CC = $(CROSS)gcc -LD = $(CROSS)ld - -CORE = typhoon -SYSTEM = clipper - -ASFLAGS = -Wa,-m21264 -Wa,--noexecstack -OPT= -O2 -CFLAGS = $(OPT) -g1 -Wall -fvisibility=hidden -fno-strict-aliasing \ - -msmall-text -msmall-data -mno-fp-regs -mbuild-constants -CPPFLAGS = -DSYSTEM_H='"sys-$(SYSTEM).h"' - -CFLAGS += -mcpu=ev67 - -OBJS = pal.o sys-$(SYSTEM).o init.o crb.o uart.o console.o console-low.o \ - ps2port.o pci.o vgaio.o vgatables.o vgafonts.o \ - printf.o util.o memset.o memcpy.o strlen.o - -all: palcode-$(SYSTEM) - -palcode-$(SYSTEM): palcode.ld $(OBJS) - $(LD) -relax -o $@ -T palcode.ld -Map $@.map $(OBJS) - -clean: - rm -f *.o - rm -f palcode-* - -pal.o: pal.S osf.h sys-$(SYSTEM).h core-$(CORE).h -init.o: init.c hwrpb.h osf.h uart.h sys-$(SYSTEM).h core-$(CORE).h -printf.o: printf.c uart.h -uart.o: uart.c uart.h protos.h -crb.o: crb.c hwrpb.h protos.h console.h uart.h -console.o: console.c console.h protos.h -pci.o: pci.c protos.h pci.h pci_regs.h |