mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-01-12 03:10:15 +00:00
Add Yocto support for Gem5: - add kernel configuration - add recipes to build an image using boot-wrapper-aarch64 - add recipes to build Gem5 native to run the produced image - add script to start image using gem5 - add recipe to create a dtb using gem5 - add recipe to build an image using gem5 boot wrapper - add dts to linux kernel for gem5 for arm64 - add scons for python2 as this is required to build gem5 (until gem5 will support python3) - add xen patch to limit number of interrupts if hardware is claiming to have to more interrupts then the number supported by xen When an image has been built it can be directly started using gem5 using this command (console is available using telnet localhost 3456): ./tmp/deploy/tools/start-gem5.sh Change-Id: Iec5ef735fc22643685e29ffbdaf63a55b1111c60 Signed-off-by: Bertrand Marquis <bertrand.marquis@arm.com>
22 lines
595 B
BlitzBasic
22 lines
595 B
BlitzBasic
SUMMARY = "Software Construction tool (make/autotools replacement)"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=46ddf66004e5be5566367cb525a66fc6"
|
|
|
|
SRC_URI[md5sum] = "b6a292e251b34b82c203b56cfa3968b3"
|
|
SRC_URI[sha256sum] = "24475e38d39c19683bc88054524df018fe6949d70fbd4c69e298d39a0269f173"
|
|
|
|
UPSTREAM_CHECK_URI = "http://scons.org/pages/download.html"
|
|
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar"
|
|
|
|
inherit pypi setuptools
|
|
|
|
RDEPENDS_${PN} = "\
|
|
python-fcntl \
|
|
python-io \
|
|
python-json \
|
|
python-subprocess \
|
|
python-shell \
|
|
python-pprint \
|
|
"
|