mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-06-04 14:10:01 +00:00
gem5/gem5-m5term-native: initial recipe
m5term enables users to connect to the simulated console. Useful in development environments. Change-Id: I6096be9fbf44da280272656f3e15d1ba19593e50 Signed-off-by: Adrian Herrera <adrian.herrera@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
committed by
Jon Mason
parent
568d4d7f9c
commit
460210f4a8
@@ -0,0 +1,24 @@
|
||||
require gem5-source_20.inc
|
||||
|
||||
SUMMARY = "m5term allows users to connect to gem5's simulated console"
|
||||
HOMEPAGE = "https://www.gem5.org/documentation/general_docs/fullsystem/m5term"
|
||||
LICENSE = "BSD"
|
||||
|
||||
inherit native
|
||||
|
||||
M5TERM_DIR = "util/term"
|
||||
|
||||
SRC_URI += "file://0001-add-makefile-flags.patch"
|
||||
|
||||
do_compile() {
|
||||
oe_runmake -C ${S}/${M5TERM_DIR}
|
||||
}
|
||||
|
||||
# The Makefile for m5term does not provide a "install" target
|
||||
# We do the install process within the recipe
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m 755 ${B}/${M5TERM_DIR}/m5term ${D}${bindir}
|
||||
}
|
||||
|
||||
addtask addto_recipe_sysroot before do_build
|
||||
@@ -0,0 +1,34 @@
|
||||
From 688f7103e08318edbd48cf830c0ab3a048761bbb Mon Sep 17 00:00:00 2001
|
||||
From: Adrian Herrera <adrian.herrera@arm.com>
|
||||
Date: Thu, 03 Dec 2020 16:45:59 +0000
|
||||
Subject: [PATCH] util: m5term, fix LDFLAGS, standard make variables
|
||||
|
||||
Enables build systems to provide necessary flags to build m5term.
|
||||
Useful specially if a different linker is intended to be used.
|
||||
|
||||
Change-Id: If7f867cc0965d6ad4627b5421e00a99cc3d64989
|
||||
Signed-off-by: Adrian Herrera <adrian.herrera@arm.com>
|
||||
|
||||
Upstream-Status: Accepted [https://gem5-review.googlesource.com/c/public/gem5/+/38256]
|
||||
Expected version: v20.2
|
||||
---
|
||||
|
||||
diff --git a/util/term/Makefile b/util/term/Makefile
|
||||
index 658b961..4aa1c52 100644
|
||||
--- a/util/term/Makefile
|
||||
+++ b/util/term/Makefile
|
||||
@@ -24,12 +24,12 @@
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
-CCFLAGS= -g -O0
|
||||
+CFLAGS ?= -g -O0
|
||||
|
||||
default: m5term
|
||||
|
||||
m5term: term.c
|
||||
- $(CC) $(LFLAGS) -o $@ $^
|
||||
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
||||
|
||||
install: m5term
|
||||
$(SUDO) install -o root -m 555 m5term /usr/local/bin
|
||||
Reference in New Issue
Block a user