install debug files and crashlog

This commit is contained in:
Miguel Bernal Marin 2018-10-09 11:44:15 -05:00
parent 90723e58fb
commit 302bffbb19
3 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,36 @@
From 77476277d2bf933317f63994a2ff5dfaa2dc47ef Mon Sep 17 00:00:00 2001
From: Miguel Bernal Marin <miguel.bernal.marin@linux.intel.com>
Date: Tue, 9 Oct 2018 11:36:42 -0500
Subject: [PATCH 1/2] add install-debug target
---
hypervisor/Makefile | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/hypervisor/Makefile b/hypervisor/Makefile
index 7495565c..7830a611 100644
--- a/hypervisor/Makefile
+++ b/hypervisor/Makefile
@@ -235,11 +235,19 @@ efi: $(HV_OBJDIR)/$(HV_FILE).bin
install: efi
make -C bsp/uefi/efi HV_OBJDIR=$(HV_OBJDIR) install
+
+install-debug: $(HV_OBJDIR)/$(HV_FILE).map $(HV_OBJDIR)/$(HV_FILE).out
+ install -D $(HV_OBJDIR)/$(HV_FILE).out $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi.out
+ install -D $(HV_OBJDIR)/$(HV_FILE).map $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi.map
endif
ifeq ($(CONFIG_PLATFORM), sbl)
install: $(VERSION) $(HV_OBJDIR)/$(HV_FILE).32.out
install -D $(HV_OBJDIR)/$(HV_FILE).32.out $(DESTDIR)/usr/lib/acrn/$(HV_FILE).sbl
+
+install-debug: $(HV_OBJDIR)/$(HV_FILE).map $(HV_OBJDIR)/$(HV_FILE).out
+ install -D $(HV_OBJDIR)/$(HV_FILE).out $(DESTDIR)/usr/lib/acrn/$(HV_FILE).sbl.out
+ install -D $(HV_OBJDIR)/$(HV_FILE).map $(DESTDIR)/usr/lib/acrn/$(HV_FILE).sbl.map
endif
$(HV_OBJDIR)/$(HV_FILE).32.out: $(HV_OBJDIR)/$(HV_FILE).out
--
2.19.1

View File

@ -0,0 +1,22 @@
From b1dba35ed0950130ba46c348e7188277f3da8c6f Mon Sep 17 00:00:00 2001
From: Miguel Bernal Marin <miguel.bernal.marin@linux.intel.com>
Date: Tue, 9 Oct 2018 11:41:58 -0500
Subject: [PATCH 2/2] add RELEASE variable to make command
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 7da689dc..e45451d8 100644
--- a/Makefile
+++ b/Makefile
@@ -56,4 +56,4 @@ devicemodel-install:
make -C $(T)/devicemodel DM_OBJDIR=$(DM_OUT) install
tools-install:
- make -C $(T)/tools OUT_DIR=$(TOOLS_OUT) install
+ make -C $(T)/tools OUT_DIR=$(TOOLS_OUT) RELEASE=$(RELEASE) install
--
2.19.1

2
series Normal file
View File

@ -0,0 +1,2 @@
0001-add-install-debug-target.patch
0002-add-RELEASE-variable-to-make-command.patch