mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-19 16:57:09 +00:00
Compare commits
83 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1cf8b975e1 | |||
| b8b0d88d58 | |||
| 02c6605216 | |||
| f7c5e7d509 | |||
| 78131b1bed | |||
| 68c43a96f8 | |||
| b634999990 | |||
| 3786692d6a | |||
| b760504b77 | |||
| d3263fceb5 | |||
| 49046a8af4 | |||
| 316d9318ee | |||
| ad51ecbe91 | |||
| 5b37926c76 | |||
| c316a25b54 | |||
| 38646ed13e | |||
| 2e759bee20 | |||
| 4758aec30a | |||
| d9471e4ced | |||
| 9502510a61 | |||
| 06c331c922 | |||
| a35a629c92 | |||
| c63ac9cf0e | |||
| 246ff54a93 | |||
| 1644922ac6 | |||
| f80387554c | |||
| e2b31d1894 | |||
| 0078d68b46 | |||
| c4f04f3fb6 | |||
| 35d3511266 | |||
| 104364df48 | |||
| 9b6a88dada | |||
| efcd8b225a | |||
| a0d4477bc2 | |||
| 6a0b2b0ebf | |||
| 84dc212d9d | |||
| e4c3de8a0a | |||
| 3d97786ae4 | |||
| 00e3238f87 | |||
| 69ac575db4 | |||
| 00fa6ce4e8 | |||
| 7904e364c3 | |||
| 8bb6d1b595 | |||
| 5b2d456093 | |||
| 8b7ec0affa | |||
| 96248a0eac | |||
| dcbabb25dd | |||
| 9fed81cd52 | |||
| 3055c179c4 | |||
| 3e8602af6f | |||
| 9ec7bd7866 | |||
| c576382359 | |||
| 8f82b6fce1 | |||
| b35308f607 | |||
| ada90a6cd3 | |||
| 2b8cd1b1c9 | |||
| 51d310c4ef | |||
| e9645fe03e | |||
| 8bd3600046 | |||
| ac0e929880 | |||
| 9af4348fa0 | |||
| d5bc2633f2 | |||
| dfafcf9ec2 | |||
| 24181d4708 | |||
| e6ff4eb1d6 | |||
| d13eb333bf | |||
| 9386db13df | |||
| 59ad28effc | |||
| 3e11c65ede | |||
| ce613023d2 | |||
| d7487f96d9 | |||
| 7df67747d5 | |||
| 0465b4c1e3 | |||
| 4ef8eae21c | |||
| 042b6c7aea | |||
| 43daf992a5 | |||
| d79ae6f8dd | |||
| 3eb27429fe | |||
| 530bd40794 | |||
| 426de565c3 | |||
| 0bd9c74026 | |||
| f8ea9ac3a0 | |||
| fa9abd9a6e |
+15
-104
@@ -3,47 +3,37 @@ image: $CI_REGISTRY/$CI_PROJECT_NAMESPACE/yocto-builder:master
|
|||||||
|
|
||||||
# First do a common bootstrap, and then build all the targets
|
# First do a common bootstrap, and then build all the targets
|
||||||
stages:
|
stages:
|
||||||
- prep
|
|
||||||
- bootstrap
|
- bootstrap
|
||||||
- build
|
- build
|
||||||
|
|
||||||
# Common job fragment to get a worker ready
|
# Common job fragment to get a worker ready
|
||||||
.setup:
|
.setup:
|
||||||
|
# Retry because the runner is flakey (see https://gitlab.com/gitlab-org/gitlab-runner/-/issues/2890)
|
||||||
|
retry: 2
|
||||||
stage: build
|
stage: build
|
||||||
variables:
|
variables:
|
||||||
KAS_WORK_DIR: $CI_PROJECT_DIR/work
|
KAS_WORK_DIR: $CI_PROJECT_DIR/work
|
||||||
KAS_REPO_REF_DIR: $CI_BUILDS_DIR/persist/repos
|
|
||||||
SSTATE_DIR: $CI_BUILDS_DIR/persist/sstate
|
SSTATE_DIR: $CI_BUILDS_DIR/persist/sstate
|
||||||
DL_DIR: $CI_BUILDS_DIR/persist/downloads
|
DL_DIR: $CI_BUILDS_DIR/persist/downloads
|
||||||
BB_LOGCONFIG: $CI_PROJECT_DIR/ci/logging.yml
|
BB_LOGCONFIG: $CI_PROJECT_DIR/kas/logging.yml
|
||||||
before_script:
|
before_script:
|
||||||
- echo KAS_WORK_DIR = $KAS_WORK_DIR
|
- echo KAS_WORK_DIR = $KAS_WORK_DIR
|
||||||
- echo SSTATE_DIR = $SSTATE_DIR
|
- echo SSTATE_DIR = $SSTATE_DIR
|
||||||
- echo DL_DIR = $DL_DIR
|
- echo DL_DIR = $DL_DIR
|
||||||
- mkdir --verbose --parents $KAS_WORK_DIR $KAS_REPO_REF_DIR $SSTATE_DIR $DL_DIR
|
- mkdir --verbose --parents $KAS_WORK_DIR $SSTATE_DIR $DL_DIR
|
||||||
|
|
||||||
# Generalised fragment to do a Kas build
|
# Generalised fragment to do a Kas build
|
||||||
.build:
|
.build:
|
||||||
extends: .setup
|
extends: .setup
|
||||||
script:
|
script:
|
||||||
- KASFILES=$(./ci/jobs-to-kas $CI_JOB_NAME)
|
- KASFILES=$(kas/jobs-to-kas $CI_JOB_NAME)
|
||||||
- kas shell --update --force-checkout $KASFILES -c 'cat conf/*.conf'
|
- kas shell --update --force-checkout $KASFILES -c 'cat conf/*.conf'
|
||||||
- kas build $KASFILES
|
- kas build $KASFILES
|
||||||
- ./ci/check-warnings $KAS_WORK_DIR/build/warnings.log
|
- ./kas/check-warnings $KAS_WORK_DIR/build/warnings.log
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Prep stage, update repositories once
|
# First phase, bootstrap and machine coverage
|
||||||
#
|
|
||||||
update-repos:
|
|
||||||
extends: .setup
|
|
||||||
stage: prep
|
|
||||||
script:
|
|
||||||
- flock --verbose --timeout 60 $KAS_REPO_REF_DIR ./ci/update-repos
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Bootstrap stage, bootstrap and machine coverage
|
|
||||||
#
|
#
|
||||||
|
|
||||||
# Build a number of native tools first to ensure the other builders don't race
|
# Build a number of native tools first to ensure the other builders don't race
|
||||||
@@ -56,60 +46,30 @@ n1sdp/bootstrap:
|
|||||||
machine-coverage:
|
machine-coverage:
|
||||||
stage: bootstrap
|
stage: bootstrap
|
||||||
script:
|
script:
|
||||||
- ./ci/check-machine-coverage
|
- ./kas/check-machine-coverage
|
||||||
coverage: '/Coverage: \d+/'
|
coverage: '/Coverage: \d+/'
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Build stage, the actual build jobs
|
# Second phase, the actual build jobs
|
||||||
#
|
#
|
||||||
|
|
||||||
corstone500:
|
a5ds:
|
||||||
extends: .build
|
extends: .build
|
||||||
|
|
||||||
corstone700-fvp:
|
foundation-armv8:
|
||||||
extends: .build
|
|
||||||
|
|
||||||
corstone700-mps3:
|
|
||||||
extends: .build
|
extends: .build
|
||||||
|
|
||||||
fvp-base:
|
fvp-base:
|
||||||
extends: .build
|
extends: .build
|
||||||
|
|
||||||
fvp-base-arm32:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
fvp-base-arm32/external-gcc-arm32:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
fvp-baser-aemv8r64:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
gem5-arm64:
|
gem5-arm64:
|
||||||
extends: .build
|
extends: .build
|
||||||
|
|
||||||
gem5-arm64-xen:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
gem5-atp-arm64:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
generic-arm64:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
juno:
|
juno:
|
||||||
extends: .build
|
extends: .build
|
||||||
|
|
||||||
juno/clang:
|
juno/musl:
|
||||||
extends: .build
|
|
||||||
|
|
||||||
microbit-v1:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
musca-b1:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
musca-s1:
|
|
||||||
extends: .build
|
extends: .build
|
||||||
|
|
||||||
n1sdp:
|
n1sdp:
|
||||||
@@ -118,33 +78,6 @@ n1sdp:
|
|||||||
n1sdp/armgcc:
|
n1sdp/armgcc:
|
||||||
extends: .build
|
extends: .build
|
||||||
|
|
||||||
qemu-cortex-a53:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
qemuarm:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
qemuarm64-sbsa:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
qemuarm64-secureboot:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
qemuarm64-secureboot/clang:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
qemuarm64-secureboot/clang/musl:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
qemuarm64-secureboot/musl:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
qemuarmv5:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
sgi575:
|
|
||||||
extends: .build
|
|
||||||
|
|
||||||
tc0:
|
tc0:
|
||||||
extends: .build
|
extends: .build
|
||||||
|
|
||||||
@@ -156,37 +89,15 @@ tc0:
|
|||||||
# Report on disk usage
|
# Report on disk usage
|
||||||
usage:
|
usage:
|
||||||
extends: .setup
|
extends: .setup
|
||||||
stage: prep
|
stage: bootstrap
|
||||||
when: manual
|
when: manual
|
||||||
script:
|
script:
|
||||||
- du -h -s $DL_DIR $SSTATE_DIR $KAS_REPO_REF_DIR
|
- du -h -s $DL_DIR $SSTATE_DIR
|
||||||
|
|
||||||
delete-dl-dir:
|
|
||||||
extends: .setup
|
|
||||||
stage: prep
|
|
||||||
when: manual
|
|
||||||
script:
|
|
||||||
- rm -rf $DL_DIR/*
|
|
||||||
|
|
||||||
delete-repo-dir:
|
|
||||||
extends: .setup
|
|
||||||
stage: prep
|
|
||||||
when: manual
|
|
||||||
script:
|
|
||||||
- rm -rf $KAS_REPO_REF_DIR/*
|
|
||||||
|
|
||||||
# Wipe out old sstate
|
# Wipe out old sstate
|
||||||
prune-sstate:
|
prune-sstate:
|
||||||
extends: .setup
|
extends: .setup
|
||||||
stage: prep
|
stage: bootstrap
|
||||||
when: manual
|
when: manual
|
||||||
script:
|
script:
|
||||||
- find $SSTATE_DIR -type f -atime +30 -delete
|
- find $SSTATE_DIR -type f -atime +30 -delete
|
||||||
|
|
||||||
# Delete all sstate
|
|
||||||
delete-sstate:
|
|
||||||
extends: .setup
|
|
||||||
stage: prep
|
|
||||||
when: manual
|
|
||||||
script:
|
|
||||||
- rm -rf $SSTATE_DIR/*
|
|
||||||
|
|||||||
@@ -25,26 +25,14 @@ Currently, we only accept patches from the meta-arm mailing list. For general
|
|||||||
information on how to submit a patch, please read
|
information on how to submit a patch, please read
|
||||||
https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded
|
https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded
|
||||||
|
|
||||||
E-mail meta-arm@lists.yoctoproject.org with patches created using this process. You can configure git-send-email to automatically use this address for the meta-arm repository with the following git command:
|
E-mail meta-arm@lists.yoctoproject.org with patches created using this process
|
||||||
|
|
||||||
$ git config --local --add sendemail.to meta-arm@lists.yoctoproject.org
|
|
||||||
|
|
||||||
Commits and patches added should follow the OpenEmbedded patch guidelines:
|
|
||||||
|
|
||||||
https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
|
|
||||||
|
|
||||||
The component being changed in the shortlog should be prefixed with the layer name (without the meta- prefix), for example:
|
|
||||||
|
|
||||||
arm-bsp/trusted-firmware-a: decrease frobbing level
|
|
||||||
|
|
||||||
arm-toolchain/gcc: enable foobar v2
|
|
||||||
|
|
||||||
Reporting bugs
|
Reporting bugs
|
||||||
--------------
|
--------------
|
||||||
E-mail meta-arm@lists.yoctoproject.org with the error encountered and the steps
|
E-mail meta-arm@lists.yoctoproject.org with the error encountered and the steps
|
||||||
to reproduce the issue.
|
to reproduce the issue
|
||||||
|
|
||||||
|
|
||||||
Maintainer(s)
|
Maintainer(s)
|
||||||
-------------
|
-------------
|
||||||
* Jon Mason <jon.mason@arm.com>
|
* Jon Mason <jon.mason@arm.com>
|
||||||
* Ross Burton <ross.burton@arm.com>
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
|
|
||||||
machine: corstone500
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
|
|
||||||
machine: corstone700-fvp
|
|
||||||
|
|
||||||
local_conf_header:
|
|
||||||
image: |
|
|
||||||
CORE_IMAGE_EXTRA_INSTALL = "corstone700-test-app"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- corstone700-fvp.yml
|
|
||||||
|
|
||||||
machine: corstone700-mps3
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
|
|
||||||
local_conf_header:
|
|
||||||
cc: |
|
|
||||||
PNBLACKLIST[gcc-cross-arm] = "Using external toolchain"
|
|
||||||
TCMODE = "external-arm"
|
|
||||||
EXTERNAL_TOOLCHAIN = "/usr/local/gcc-arm-10.2-2020.11-aarch64-arm-none-linux-gnueabihf"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
|
|
||||||
machine: fvp-base-arm32
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
|
|
||||||
machine: fvp-baser-aemv8r64
|
|
||||||
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
|
|
||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
- meta-python.yml
|
|
||||||
|
|
||||||
repos:
|
|
||||||
meta-arm:
|
|
||||||
layers:
|
|
||||||
meta-gem5:
|
|
||||||
meta-openembedded:
|
|
||||||
url: https://git.openembedded.org/meta-openembedded
|
|
||||||
layers:
|
|
||||||
meta-oe:
|
|
||||||
meta-filesystems:
|
|
||||||
meta-networking:
|
|
||||||
meta-virtualization:
|
|
||||||
url: git://git.yoctoproject.org/meta-virtualization
|
|
||||||
|
|
||||||
machine: gem5-arm64
|
|
||||||
|
|
||||||
local_conf_header:
|
|
||||||
meta-virt:
|
|
||||||
DISTRO_FEATURES_append = " virtualization xen"
|
|
||||||
|
|
||||||
target:
|
|
||||||
- xen-image-minimal
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
|
|
||||||
repos:
|
|
||||||
meta-arm:
|
|
||||||
layers:
|
|
||||||
meta-gem5:
|
|
||||||
|
|
||||||
meta-openembedded:
|
|
||||||
url: https://git.openembedded.org/meta-openembedded
|
|
||||||
layers:
|
|
||||||
meta-oe:
|
|
||||||
|
|
||||||
machine: gem5-arm64
|
|
||||||
|
|
||||||
target:
|
|
||||||
- core-image-minimal
|
|
||||||
- perf
|
|
||||||
- gem5-aarch64-native
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- gem5-arm64.yml
|
|
||||||
|
|
||||||
repos:
|
|
||||||
meta-arm:
|
|
||||||
layers:
|
|
||||||
meta-atp:
|
|
||||||
|
|
||||||
machine: gem5-atp-arm64
|
|
||||||
|
|
||||||
target:
|
|
||||||
- atp-native
|
|
||||||
- core-image-minimal
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
|
|
||||||
machine: generic-arm64
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
|
|
||||||
repos:
|
|
||||||
meta-openembedded:
|
|
||||||
url: https://git.openembedded.org/meta-openembedded
|
|
||||||
layers:
|
|
||||||
meta-oe:
|
|
||||||
meta-python:
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- meta-python.yml
|
|
||||||
|
|
||||||
repos:
|
|
||||||
meta-zephyr:
|
|
||||||
url: https://git.yoctoproject.org/git/meta-zephyr
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
- meta-zephyr.yml
|
|
||||||
|
|
||||||
machine: microbit-v1
|
|
||||||
|
|
||||||
target:
|
|
||||||
- zephyr-philosophers
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
- meta-zephyr.yml
|
|
||||||
|
|
||||||
machine: musca-b1
|
|
||||||
|
|
||||||
target:
|
|
||||||
- trusted-firmware-m
|
|
||||||
- zephyr-philosophers
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
- meta-python.yml
|
|
||||||
|
|
||||||
machine: musca-s1
|
|
||||||
|
|
||||||
target:
|
|
||||||
- trusted-firmware-m
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
- meta-zephyr.yml
|
|
||||||
|
|
||||||
machine: qemu-cortex-a53
|
|
||||||
|
|
||||||
target:
|
|
||||||
- zephyr-philosophers
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
|
|
||||||
machine: qemuarm64-sbsa
|
|
||||||
|
|
||||||
target:
|
|
||||||
- core-image-base
|
|
||||||
- perf
|
|
||||||
- sbsa-acs
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
|
|
||||||
machine: qemuarm64-secureboot
|
|
||||||
|
|
||||||
target:
|
|
||||||
- core-image-base
|
|
||||||
- perf
|
|
||||||
- optee-examples
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
includes:
|
|
||||||
- base.yml
|
|
||||||
|
|
||||||
machine: qemuarmv5
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
#! /usr/bin/env python3
|
|
||||||
|
|
||||||
# Update clones of the repositories we need in KAS_REPO_REF_DIR to speed up fetches
|
|
||||||
|
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
import pathlib
|
|
||||||
|
|
||||||
def repo_shortname(url):
|
|
||||||
# Taken from Kas (Repo.__getattr__) to ensure the logic is right
|
|
||||||
from urllib.parse import urlparse
|
|
||||||
url = urlparse(url)
|
|
||||||
return ('{url.netloc}{url.path}'
|
|
||||||
.format(url=url)
|
|
||||||
.replace('@', '.')
|
|
||||||
.replace(':', '.')
|
|
||||||
.replace('/', '.')
|
|
||||||
.replace('*', '.'))
|
|
||||||
|
|
||||||
repositories = (
|
|
||||||
"https://git.yoctoproject.org/git/poky",
|
|
||||||
"https://git.openembedded.org/meta-openembedded",
|
|
||||||
"https://git.yoctoproject.org/git/meta-virtualization",
|
|
||||||
"https://git.yoctoproject.org/git/meta-zephyr",
|
|
||||||
"https://github.com/kraj/meta-clang",
|
|
||||||
)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
if "KAS_REPO_REF_DIR" not in os.environ:
|
|
||||||
print("KAS_REPO_REF_DIR needs to be set")
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
base_repodir = pathlib.Path(os.environ["KAS_REPO_REF_DIR"])
|
|
||||||
|
|
||||||
for repo in repositories:
|
|
||||||
repodir = base_repodir / repo_shortname(repo)
|
|
||||||
if repodir.exists():
|
|
||||||
print("Updating %s..." % repo)
|
|
||||||
subprocess.run(["git", "-C", repodir, "fetch"], check=True)
|
|
||||||
else:
|
|
||||||
print("Cloning %s..." % repo)
|
|
||||||
subprocess.run(["git", "clone", "--bare", repo, repodir], check=True)
|
|
||||||
@@ -3,4 +3,4 @@ header:
|
|||||||
includes:
|
includes:
|
||||||
- base.yml
|
- base.yml
|
||||||
|
|
||||||
machine: sgi575
|
machine: a5ds
|
||||||
@@ -2,5 +2,5 @@ header:
|
|||||||
version: 9
|
version: 9
|
||||||
|
|
||||||
local_conf_header:
|
local_conf_header:
|
||||||
cc: |
|
libc: |
|
||||||
GCCVERSION = "arm-10.2"
|
GCCVERSION = "arm-9.2"
|
||||||
@@ -5,7 +5,7 @@ distro: poky
|
|||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
repos:
|
repos:
|
||||||
refspec: hardknott
|
refspec: dunfell
|
||||||
|
|
||||||
repos:
|
repos:
|
||||||
meta-arm:
|
meta-arm:
|
||||||
@@ -20,6 +20,11 @@ repos:
|
|||||||
meta:
|
meta:
|
||||||
meta-poky:
|
meta-poky:
|
||||||
|
|
||||||
|
meta-openembedded:
|
||||||
|
url: https://git.openembedded.org/meta-openembedded
|
||||||
|
layers:
|
||||||
|
meta-oe:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
BB_LOGCONFIG: ""
|
BB_LOGCONFIG: ""
|
||||||
|
|
||||||
@@ -32,13 +37,12 @@ local_conf_header:
|
|||||||
BB_NUMBER_THREADS = "16"
|
BB_NUMBER_THREADS = "16"
|
||||||
PARALLEL_MAKE = "-j16"
|
PARALLEL_MAKE = "-j16"
|
||||||
INHERIT += "rm_work"
|
INHERIT += "rm_work"
|
||||||
PACKAGECONFIG_append_pn-perf = " coresight"
|
|
||||||
ERROR_QA = "${WARN_QA}"
|
ERROR_QA = "${WARN_QA}"
|
||||||
noptest: |
|
ptest: |
|
||||||
DISTRO_FEATURES_remove = "ptest"
|
DISTRO_FEATURES_remove = "ptest"
|
||||||
|
|
||||||
machine: unset
|
machine: unset
|
||||||
|
|
||||||
target:
|
target:
|
||||||
- core-image-base
|
- core-image-base
|
||||||
- perf
|
# - perf
|
||||||
@@ -14,7 +14,7 @@ machines = metaarm.glob("meta-*/conf/machine/*.conf")
|
|||||||
machines = set(p.stem for p in machines)
|
machines = set(p.stem for p in machines)
|
||||||
|
|
||||||
# All kas files
|
# All kas files
|
||||||
kas = metaarm.glob("ci/*.yml")
|
kas = metaarm.glob("kas/*.yml")
|
||||||
kas = set(p.stem for p in kas)
|
kas = set(p.stem for p in kas)
|
||||||
|
|
||||||
missing = machines - kas
|
missing = machines - kas
|
||||||
@@ -3,4 +3,4 @@ header:
|
|||||||
includes:
|
includes:
|
||||||
- base.yml
|
- base.yml
|
||||||
|
|
||||||
machine: qemuarm
|
machine: foundation-armv8
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
header:
|
|
||||||
version: 9
|
|
||||||
|
|
||||||
distro: poky
|
|
||||||
machine: fvp-baser-aemv8r64
|
|
||||||
|
|
||||||
defaults:
|
|
||||||
repos:
|
|
||||||
refspec: hardknott
|
|
||||||
|
|
||||||
repos:
|
|
||||||
meta-arm:
|
|
||||||
layers:
|
|
||||||
meta-arm:
|
|
||||||
meta-arm-bsp:
|
|
||||||
meta-arm-toolchain:
|
|
||||||
|
|
||||||
poky:
|
|
||||||
url: https://git.yoctoproject.org/git/poky
|
|
||||||
layers:
|
|
||||||
meta:
|
|
||||||
meta-poky:
|
|
||||||
|
|
||||||
local_conf_header:
|
|
||||||
base: |
|
|
||||||
CONF_VERSION = "1"
|
|
||||||
PACKAGE_CLASSES = "package_ipk"
|
|
||||||
PACKAGECONFIG_remove_pn-qemu-system-native = "gtk+ sdl"
|
|
||||||
EXTRA_IMAGE_FEATURES_append = " debug-tweaks"
|
|
||||||
|
|
||||||
target:
|
|
||||||
- core-image-minimal
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
header:
|
||||||
|
version: 9
|
||||||
|
includes:
|
||||||
|
- base.yml
|
||||||
|
|
||||||
|
machine: gem5-arm64
|
||||||
|
|
||||||
|
target:
|
||||||
|
- core-image-minimal
|
||||||
|
- gem5-aarch64-native
|
||||||
@@ -8,8 +8,8 @@ set -e -u
|
|||||||
# Read Job namne from $1 and split on /
|
# Read Job namne from $1 and split on /
|
||||||
IFS=/ read -r -a PARTS<<<$1
|
IFS=/ read -r -a PARTS<<<$1
|
||||||
|
|
||||||
# Prefix each part with ci/
|
# Prefix each part with kas/
|
||||||
PARTS=("${PARTS[@]/#/ci/}")
|
PARTS=("${PARTS[@]/#/kas/}")
|
||||||
|
|
||||||
# Suffix each part with .yml
|
# Suffix each part with .yml
|
||||||
PARTS=("${PARTS[@]/%/.yml}")
|
PARTS=("${PARTS[@]/%/.yml}")
|
||||||
+18
-19
@@ -4,8 +4,8 @@ meta-arm-autonomy Yocto Layer
|
|||||||
Introduction
|
Introduction
|
||||||
------------
|
------------
|
||||||
This layer provides an hypervisor based solution (currently based on Xen) for
|
This layer provides an hypervisor based solution (currently based on Xen) for
|
||||||
autonomous system. It contains recipes and classes to build host and guest
|
autonomous system. It contains recipes and classes to build host and guests
|
||||||
images.
|
systems.
|
||||||
|
|
||||||
To start using this layer, please check the
|
To start using this layer, please check the
|
||||||
[Quick Start Guide](documentation/arm-autonomy-quickstart.md).
|
[Quick Start Guide](documentation/arm-autonomy-quickstart.md).
|
||||||
@@ -16,14 +16,13 @@ This layer depends on several other Yocto layers:
|
|||||||
* meta-openembedded (https://git.openembedded.org/meta-openembedded)
|
* meta-openembedded (https://git.openembedded.org/meta-openembedded)
|
||||||
* poky (https://git.yoctoproject.org/poky)
|
* poky (https://git.yoctoproject.org/poky)
|
||||||
* meta-virtualization (https://git.yoctoproject.org/meta-virtualization)
|
* meta-virtualization (https://git.yoctoproject.org/meta-virtualization)
|
||||||
* meta-networking (git://git.openembedded.org/meta-openembedded)
|
|
||||||
|
|
||||||
Distribution Features
|
Distribution Features
|
||||||
---------------------
|
---------------------
|
||||||
This layer adds the following Yocto DISTRO_FEATURES:
|
This layer is adding the following Yocto DISTRO_FEATURES:
|
||||||
|
|
||||||
* arm-autonomy-host: this feature activates functionalities required to build
|
* arm-autonomy-host: this feature activates functionalities required to build
|
||||||
an autonomy host system. It has the following effects:
|
an autonomy host system. It is doing the following:
|
||||||
- add 'xen' and 'ipv4' to DISTRO_FEATURES.
|
- add 'xen' and 'ipv4' to DISTRO_FEATURES.
|
||||||
- add xen backend drivers to linux kernel configuration.
|
- add xen backend drivers to linux kernel configuration.
|
||||||
- To reduce the root filesystem image size the kernel image is not installed.
|
- To reduce the root filesystem image size the kernel image is not installed.
|
||||||
@@ -44,40 +43,40 @@ its documentation.
|
|||||||
Those documentation files should be checked for variables:
|
Those documentation files should be checked for variables:
|
||||||
- [xen-devicetree](documentation/xen-devicetree.md)
|
- [xen-devicetree](documentation/xen-devicetree.md)
|
||||||
- [xenguest-manager](documentation/xenguest-manager.md)
|
- [xenguest-manager](documentation/xenguest-manager.md)
|
||||||
- [xenguest-network](documentation/xenguest-network.md)
|
- [xenguest-network-bridge](documentation/xenguest-network-bridge.md)
|
||||||
|
|
||||||
BSPs
|
BSPs
|
||||||
----
|
----
|
||||||
This layer adds the following machine:
|
This layer is adding the following machines:
|
||||||
|
|
||||||
* arm64-autonomy-guest: This machine creates a minimal BSP suitable to be used
|
* arm64-autonomy-guest: this machines creates a minimal BSP suitable to be used
|
||||||
as an autonomy guest. It is in fact only activating ARM64 architecture and
|
as an autonomy guest. It is in fact only activating ARM64 architecture and
|
||||||
SMP in the linux kernel and is enabling the DISTRO_FEATURE
|
SMP in the linux kernel and is enabling the DISTRO_FEATURE
|
||||||
'arm-autonomy-guest'.
|
arm-autonomy-guest.
|
||||||
|
|
||||||
Images
|
Images
|
||||||
------
|
------
|
||||||
This layer is adding the following images:
|
This layer is adding the following images:
|
||||||
|
|
||||||
* arm-autonomy-host-image-minimal: This image includes all elements required
|
* arm-autonomy-host-image-minimal: this image includes all elements required
|
||||||
to create a minimal arm-autonomy-host system. This includes xen, and tools to
|
to create a minimal arm-autonomy-host system. This includes xen and tools to
|
||||||
manage xen guests and xenguest images. This image depends on
|
manage xen guests. This image depends on 'arm-autonomy-host' distribution
|
||||||
'arm-autonomy-host' distribution feature.
|
feature.
|
||||||
|
|
||||||
Recipes and classes
|
Recipes and classes
|
||||||
-------------------
|
-------------------
|
||||||
This layer adds the following recipes and classes:
|
This layer is adding the following recipes and classes:
|
||||||
|
|
||||||
* [xen-devicetree](documentation/xen-devicetree.md): This is a recipe to modify
|
* [xen-devicetree](documentation/xen-devicetree.md): this is a recipe to modify
|
||||||
a device tree blob to add information required to boot xen and a Dom0 linux.
|
a device tree blob to add information required to boot xen and a Dom0 linux.
|
||||||
|
|
||||||
* [xenguest-mkimage](documentation/xenguest-mkimage.md): This is a tool used to
|
* [xenguest-mkimage](documentation/xenguest-mkimage.md): this is a tool to
|
||||||
create and modify images to be used as Xen guests.
|
create and modify images to be used as Xen guests.
|
||||||
|
|
||||||
* [xenguest-manager](documentation/xenguest-manager.md): This is a tool used to
|
* [xenguest-manager](documentation/xenguest-manager.md): this is a tool to
|
||||||
create/remove/start/stop xen guest generated using xenguest-mkimage.
|
create/remove/start/stop xen guest generated using xenguest-mkimage.
|
||||||
|
|
||||||
* [xenguest-network](documentation/xenguest-network.md): This
|
* [xenguest-network-bridge](documentation/xenguest-network-bridge.md): this
|
||||||
recipe add tools and init scripts to create a bridge connected to the
|
recipe add tools and init scripts to create a bridge connected to the
|
||||||
external network on the host and allow guests to be connected to it.
|
external network on the host and allow guests to be connected to it.
|
||||||
|
|
||||||
@@ -89,5 +88,5 @@ would like to contribute, please contact the maintainers
|
|||||||
|
|
||||||
Maintainer(s)
|
Maintainer(s)
|
||||||
-------------
|
-------------
|
||||||
* Diego Sueiro <diego.sueiro@arm.com>
|
|
||||||
* Bertrand Marquis <bertrand.marquis@arm.com>
|
* Bertrand Marquis <bertrand.marquis@arm.com>
|
||||||
|
* Filipe Rinaldi <filipe.rinaldi@arm.com>
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
# This class is to be inherited by image recipes that want to build and install
|
|
||||||
# an alternate kernel (set via PREFERRED_PROVIDER_alternate/kernel).
|
|
||||||
#
|
|
||||||
# It is mandatory to also set the KERNEL_PACKAGE_NAME for the alternate kernel
|
|
||||||
# recipe via KERNEL_PACKAGE_NAME_pn-${PREFERRED_PROVIDER_alternate/kernel} and
|
|
||||||
# its value needs to be different from "kernel" since this is the default set
|
|
||||||
# for PREFERRED_PROVIDER_virtual/kernel.
|
|
||||||
#
|
|
||||||
# An example of these settings can be found at meta-arm-autonomy/dynamic-layers/meta-arm-bsp/conf/machine/n1sdp-extra-settings.inc
|
|
||||||
#
|
|
||||||
# When building and installing an alternate kernel, the kernel-modules packages
|
|
||||||
# for both virtual/kernel and alternate/kernel will be installed.
|
|
||||||
|
|
||||||
PREFERRED_PROVIDER_alternate/kernel ??= ""
|
|
||||||
|
|
||||||
python () {
|
|
||||||
alternate_kernel = d.getVar('PREFERRED_PROVIDER_alternate/kernel')
|
|
||||||
if alternate_kernel:
|
|
||||||
alternate_kernel_pkg_name = d.getVar('KERNEL_PACKAGE_NAME_pn-%s' % alternate_kernel)
|
|
||||||
if alternate_kernel_pkg_name:
|
|
||||||
d.appendVar('EXTRA_IMAGEDEPENDS', ' ' + alternate_kernel)
|
|
||||||
d.appendVar('IMAGE_INSTALL', ' kernel-modules')
|
|
||||||
d.appendVar('IMAGE_INSTALL', ' ' + alternate_kernel_pkg_name + '-modules')
|
|
||||||
else:
|
|
||||||
raise bb.parse.SkipRecipe("No KERNEL_PACKAGE_NAME_pn-%s set" % alternate_kernel )
|
|
||||||
}
|
|
||||||
@@ -1,115 +0,0 @@
|
|||||||
# Docker Extern Containers
|
|
||||||
#
|
|
||||||
# This class allows docker image tarballs to be installed in the rootfs
|
|
||||||
#
|
|
||||||
# The images can be selected using the variable CONTAINER_IMAGE_FILES which
|
|
||||||
# should contain a space seperated list of absolute paths or yocto urls for
|
|
||||||
# docker images that have been exported using docker export:
|
|
||||||
# - https://docs.docker.com/engine/reference/commandline/export/
|
|
||||||
#
|
|
||||||
# src_uri_parse_var.bbclass is used to parse CONTAINER_IMAGE_FILES
|
|
||||||
#
|
|
||||||
# There are 4 supported formats for CONTAINER_IMAGE_FILES entries:
|
|
||||||
#
|
|
||||||
# - http/https url
|
|
||||||
# - CONTAINER_IMAGE_FILES = "https://[url]:[port]/alpine.tar;md5sum=..."
|
|
||||||
#
|
|
||||||
# - file:// absolute local path from root
|
|
||||||
# - CONTAINER_IMAGE_FILES = "file:///containers/alpine2.tar"
|
|
||||||
#
|
|
||||||
# - file:// path relative to FILESEXTRAPATHS
|
|
||||||
# - CONTAINER_IMAGE_FILES = "file://foo/alpine3.tar"
|
|
||||||
# FILESEXTRAPATHS .= "/containers:"
|
|
||||||
#
|
|
||||||
# - plain absolute local path from root
|
|
||||||
# - CONTAINER_IMAGE_FILES = "/containers/foo/bar/alpine4.tar"
|
|
||||||
#
|
|
||||||
# It is not recommended to use other yocto URL types, as they may result in
|
|
||||||
# undefined behaviour.
|
|
||||||
#
|
|
||||||
# A semicolon seperated list of install arguments can follow each image path:
|
|
||||||
# - conname : the name that will be attached when the image is imported
|
|
||||||
# (default: [filename, without extension])
|
|
||||||
# - contag : the tag that will be attached when the image is imported
|
|
||||||
# (default: local)
|
|
||||||
# - conkeep : Flag for whether the exported container image file should be
|
|
||||||
# kept once the import has been completed
|
|
||||||
# (default: 0)
|
|
||||||
#
|
|
||||||
# Any other arguments, for example an md5sum, will be assumed to be fetch
|
|
||||||
# arguments, and will be kept when the path is added to the SRC_URI
|
|
||||||
#
|
|
||||||
# e.g. CONTAINER_IMAGE_FILES = "\
|
|
||||||
# https://[url]:[port]/alpine.tar;md5sum=[checksum];conkeep=1 \
|
|
||||||
# file:///containers/alpine2.tar;contag=latest;conname=docker2 \
|
|
||||||
# file://foo/alpine3.tar \
|
|
||||||
# /containers/foo/bar/alpine4.tar;contag=1.0;conkeep=1 "
|
|
||||||
#
|
|
||||||
# Resulting Manifest:
|
|
||||||
# ARCHIVE NAME TAG KEEP
|
|
||||||
# alpine.tar alpine local 1
|
|
||||||
# alpine2.tar docker2 latest 0
|
|
||||||
# alpine3.tar alpine3 local 0
|
|
||||||
# alpine4.tar alpine4 1.0 1
|
|
||||||
#
|
|
||||||
# Other configurable variables:
|
|
||||||
# CONTAINERS_INSTALL_DIR : The folder underneath ${WORKDIR} where the docker
|
|
||||||
# images will be stored
|
|
||||||
# (default: "/usr/share/docker/images")
|
|
||||||
# CONTAINERS_MANIFEST : The name of the manifest file containing image
|
|
||||||
# parameters, also stored in CONTAINERS_INSTALL_DIR
|
|
||||||
# (default: "containers.manifest")
|
|
||||||
# CONTAINERS_TAG_DEFAULT : Use this to change the value that will be used as
|
|
||||||
# contag if no value is provided
|
|
||||||
# (default: "local")
|
|
||||||
# CONTAINERS_KEEP_DEFAULT : Use this to change the value that will be used for
|
|
||||||
# conkeep if no value is provided
|
|
||||||
# (default: "0")
|
|
||||||
#
|
|
||||||
|
|
||||||
inherit features_check
|
|
||||||
|
|
||||||
REQUIRED_DISTRO_FEATURES = "docker"
|
|
||||||
|
|
||||||
RDEPENDS_${PN} = "packagegroup-docker-runtime-minimal"
|
|
||||||
|
|
||||||
CONTAINER_IMAGE_FILES ??= ""
|
|
||||||
CONTAINERS_INSTALL_DIR ??= "${datadir}/docker/images"
|
|
||||||
CONTAINERS_MANIFEST ??= "containers.manifest"
|
|
||||||
CONTAINERS_TAG_DEFAULT ??= "local"
|
|
||||||
CONTAINERS_KEEP_DEFAULT ??= "0"
|
|
||||||
|
|
||||||
inherit set_src_uri_from_var
|
|
||||||
|
|
||||||
SRC_URI_FROM_VAR_NAME = "CONTAINER_IMAGE_FILES"
|
|
||||||
# Define installation params
|
|
||||||
SRC_URI_FROM_VAR_MANIFEST_PARAMS = "conname=[basename] \
|
|
||||||
contag=${CONTAINERS_TAG_DEFAULT} conkeep=${CONTAINERS_KEEP_DEFAULT}"
|
|
||||||
|
|
||||||
SRC_URI_FROM_VAR_UNPACK_DIR = "containers"
|
|
||||||
|
|
||||||
# Read manifest and install container images
|
|
||||||
do_install() {
|
|
||||||
local archive name tag keep
|
|
||||||
|
|
||||||
if [ -f "${WORKDIR}/${SRC_URI_FROM_VAR_UNPACK_DIR}/manifest" ]; then
|
|
||||||
|
|
||||||
install -d "${D}${CONTAINERS_INSTALL_DIR}"
|
|
||||||
install -m 644 \
|
|
||||||
"${WORKDIR}/${SRC_URI_FROM_VAR_UNPACK_DIR}/manifest" \
|
|
||||||
"${D}${CONTAINERS_INSTALL_DIR}/${CONTAINERS_MANIFEST}"
|
|
||||||
|
|
||||||
while read -r archive name tag keep _; do
|
|
||||||
[ -f "${WORKDIR}/${SRC_URI_FROM_VAR_UNPACK_DIR}/${archive}" ] ||
|
|
||||||
bbfatal "${archive} does not exist"
|
|
||||||
|
|
||||||
install -m 644 \
|
|
||||||
"${WORKDIR}/${SRC_URI_FROM_VAR_UNPACK_DIR}/${archive}" \
|
|
||||||
"${D}${CONTAINERS_INSTALL_DIR}/${archive}"
|
|
||||||
done < "${D}${CONTAINERS_INSTALL_DIR}/${CONTAINERS_MANIFEST}"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
do_install[vardeps] += "CONTAINER_IMAGE_FILES"
|
|
||||||
|
|
||||||
FILES_${PN} += "${CONTAINERS_INSTALL_DIR}"
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
# Create a xenguest image with kernel and filesystem produced by Yocto
|
# Create a xenguest image with kernel and filesystem produced by Yocto
|
||||||
# This will create a .xenguest file that the xenguest-manager can use.
|
# This will create a .xenguest file that the xenguest-manager can use.
|
||||||
|
|
||||||
inherit xenguest_image
|
inherit xenguest-image
|
||||||
|
|
||||||
# We are creating our guest in a local subdirectory
|
# We are creating our guest in a local subdirectory
|
||||||
# force the value so that we are not impacted if the user is changing it
|
# force the value so that we are not impacted if the user is changing it
|
||||||
@@ -63,67 +63,6 @@ IMAGE_TYPEDEP_xenguest ?= "tar"
|
|||||||
IMAGE_TYPES_MASKED += "xenguest"
|
IMAGE_TYPES_MASKED += "xenguest"
|
||||||
IMAGE_TYPES += "xenguest"
|
IMAGE_TYPES += "xenguest"
|
||||||
|
|
||||||
XENGUEST_IMAGE_RECIPE = "${PN}"
|
|
||||||
XENGUEST_IMAGE_VARS += "XENGUEST_IMAGE_RECIPE"
|
|
||||||
|
|
||||||
# Merge intermediate env files from all recipes into a single file
|
|
||||||
python do_merge_xenguestenv () {
|
|
||||||
|
|
||||||
import re
|
|
||||||
|
|
||||||
# Open final merged file in DEPLOY_DIR_IMAGE for writing, or create
|
|
||||||
outdir = d.getVar('DEPLOY_DIR_IMAGE')
|
|
||||||
with open(os.path.join(outdir,'xenguest.env'), 'w') as merged_file:
|
|
||||||
|
|
||||||
# Adds vars from xenguest_image to list
|
|
||||||
merged_env = []
|
|
||||||
xenguest_vars = d.getVar('XENGUEST_IMAGE_VARS')
|
|
||||||
for var in xenguest_vars.split():
|
|
||||||
value = d.getVar(var)
|
|
||||||
if value:
|
|
||||||
merged_env.append(var + "=" + " ".join(value.split()) + "\n")
|
|
||||||
|
|
||||||
# Resolve dependencies for this task to find names of intermediate
|
|
||||||
# .xenguestenv files
|
|
||||||
taskdepdata = d.getVar('BB_TASKDEPDATA')
|
|
||||||
task_mc = d.getVar('BB_CURRENT_MC')
|
|
||||||
task_file = d.getVar('FILE')
|
|
||||||
|
|
||||||
# See runqueue.py function build_taskdepdata
|
|
||||||
DEPS_INDEX = 3
|
|
||||||
|
|
||||||
depdata_key = task_file + ":do_merge_xenguestenv"
|
|
||||||
|
|
||||||
# If in a multiconfig, need to add that to the key
|
|
||||||
if task_mc != "default":
|
|
||||||
depdata_key = "mc:" + task_mc + ":" + depdata_key
|
|
||||||
|
|
||||||
# Retrieve filename using regex
|
|
||||||
get_filename = re.compile(r'/([^/]+\.bb):do_deploy_xenguestenv$')
|
|
||||||
env_dir = d.getVar('XENGUEST_ENV_STAGING_DIR')
|
|
||||||
|
|
||||||
for task_dep in taskdepdata[depdata_key][DEPS_INDEX]:
|
|
||||||
if task_dep.endswith(":do_deploy_xenguestenv"):
|
|
||||||
filename = re.search(get_filename, task_dep).group(1) + ".xenguestenv"
|
|
||||||
bb.note("Merging: " + filename)
|
|
||||||
try:
|
|
||||||
with open(env_dir + "/" + filename, 'r') as f:
|
|
||||||
# Eliminate duplicates
|
|
||||||
merged_env = list(set(merged_env + f.readlines()))
|
|
||||||
except (FileNotFoundError, IOError):
|
|
||||||
bb.note(" " + filename + " has no extra vars")
|
|
||||||
|
|
||||||
# Sort Alphabetically and write
|
|
||||||
merged_env.sort()
|
|
||||||
merged_file.write("".join(merged_env))
|
|
||||||
}
|
|
||||||
do_merge_xenguestenv[dirs] = "${DEPLOY_DIR_IMAGE}"
|
|
||||||
do_merge_xenguestenv[vardeps] += "${XENGUEST_IMAGE_VARS}"
|
|
||||||
do_merge_xenguestenv[vardepsexclude] += "BB_TASKDEPDATA"
|
|
||||||
do_merge_xenguestenv[recrdeptask] += "do_deploy_xenguestenv"
|
|
||||||
|
|
||||||
addtask merge_xenguestenv before do_populate_lic_deploy after do_image_complete
|
|
||||||
|
|
||||||
python __anonymous() {
|
python __anonymous() {
|
||||||
# Do not do anything if we are not in the want FSTYPES
|
# Do not do anything if we are not in the want FSTYPES
|
||||||
if bb.utils.contains_any('IMAGE_FSTYPES', 'xenguest', '1', '0', d):
|
if bb.utils.contains_any('IMAGE_FSTYPES', 'xenguest', '1', '0', d):
|
||||||
|
|||||||
@@ -3,10 +3,7 @@
|
|||||||
# This is done using kernel-fitimage as model
|
# This is done using kernel-fitimage as model
|
||||||
# To activate this, kernel-xenguest must be added to KERNEL_CLASSES
|
# To activate this, kernel-xenguest must be added to KERNEL_CLASSES
|
||||||
|
|
||||||
# Add a variable name to XENGUEST_IMAGE_VARS_EXTRA if you want it to
|
inherit xenguest-image
|
||||||
# appear in xenguest.env when the image is deployed
|
|
||||||
|
|
||||||
inherit xenguest_image
|
|
||||||
|
|
||||||
# use a local copy to pack all together
|
# use a local copy to pack all together
|
||||||
XENGUEST_IMAGE_DEPLOY_DIR = "${WORKDIR}/tmp-xenguest"
|
XENGUEST_IMAGE_DEPLOY_DIR = "${WORKDIR}/tmp-xenguest"
|
||||||
@@ -27,7 +24,7 @@ do_assemble_xenguest_initramfs() {
|
|||||||
rm -f ${B}/${KERNEL_OUTPUT_DIR}/Image-initramfs.xenguest
|
rm -f ${B}/${KERNEL_OUTPUT_DIR}/Image-initramfs.xenguest
|
||||||
call_xenguest_mkimage pack ${B}/${KERNEL_OUTPUT_DIR}/Image-initramfs.xenguest
|
call_xenguest_mkimage pack ${B}/${KERNEL_OUTPUT_DIR}/Image-initramfs.xenguest
|
||||||
}
|
}
|
||||||
do_assemble_xenguest_initramfs[depends] += "${INITRAMFS_IMAGE}:do_merge_xenguestenv"
|
do_assemble_xenguest_initramfs[depends] += "${INITRAMFS_IMAGE}:do_image_complete"
|
||||||
|
|
||||||
kernel_do_deploy_append() {
|
kernel_do_deploy_append() {
|
||||||
if [ -f "${B}/${KERNEL_OUTPUT_DIR}/Image-initramfs.xenguest" ]; then
|
if [ -f "${B}/${KERNEL_OUTPUT_DIR}/Image-initramfs.xenguest" ]; then
|
||||||
|
|||||||
@@ -1,224 +0,0 @@
|
|||||||
# Set SRC_URI from Variable
|
|
||||||
|
|
||||||
# This class parses a variable named in SRC_URI_FROM_VAR_NAME for entries that
|
|
||||||
# should be added to the SRC_URI
|
|
||||||
#
|
|
||||||
# There are 4 supported formats for entries:
|
|
||||||
#
|
|
||||||
# - http/https url
|
|
||||||
# - Note that a checksum (md5sum or sha256sum) must be provided for http(s)
|
|
||||||
#
|
|
||||||
# - file:// absolute local path from root
|
|
||||||
# - In this case the filename will be added to SRC_URI and the path from '/'
|
|
||||||
# added to FILESEXTRAPATHS
|
|
||||||
#
|
|
||||||
# - file:// path relative to FILESEXTRAPATHS
|
|
||||||
# - In this case the filename will be added to SRC_URI and the preceding path
|
|
||||||
# added to FILESOVERRIDES, so that the full path to the file will
|
|
||||||
# be available in FILESPATH when it is generated by combining
|
|
||||||
# FILESEXTRAPATHS and FILESOVERRIDES.
|
|
||||||
#
|
|
||||||
# - plain absolute local path from root
|
|
||||||
# - This will be treated the same as an file:// path from root. Plain paths
|
|
||||||
# must be absolute, and cannot be relative to FILESEXTRAPATHS
|
|
||||||
#
|
|
||||||
# It is not recommended to use other yocto URL types, as they may result in
|
|
||||||
# undefined behaviour.
|
|
||||||
#
|
|
||||||
# These entries will be added to the SRC_URI so that the yocto fetcher can
|
|
||||||
# unpack a copy into ${WORKDIR}/${SRC_URI_FROM_VAR_UNPACK_DIR}
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# A list of arguments can follow each entry in the input variable, seperated
|
|
||||||
# by semi-colons (;). Arguments may be FETCH arguments or MANIFEST arguments.
|
|
||||||
#
|
|
||||||
# FETCH arguments will be appended to the entry in SRC_URI, for example
|
|
||||||
# "downloadfilename" to specify the filename used when storing a
|
|
||||||
# downloaded file.
|
|
||||||
# Each SRC_URI entry will automatically have the arguments
|
|
||||||
# "unpack=0;subdir=${SRC_URI_FROM_VAR_UNPACK_DIR}" added to them, so do not
|
|
||||||
# attempt to set these options.
|
|
||||||
#
|
|
||||||
# MANIFEST arguments are defined in the variable
|
|
||||||
# SRC_URI_FROM_VAR_MANIFEST_PARAMS which should be a space seperated list of
|
|
||||||
# names, each optionally followed by an equals sign (=) and a default value.
|
|
||||||
#
|
|
||||||
# The values provided for the manifest arguments will be written to the manifest
|
|
||||||
# file in ${WORKDIR}/${SRC_URI_FROM_VAR_UNPACK_DIR} as columns, in the same
|
|
||||||
# order as they appear in SRC_URI_FROM_VAR_MANIFEST_PARAMS.
|
|
||||||
#
|
|
||||||
# For entries that do not provide a value for a manifest argument, the default
|
|
||||||
# value will be used if possible.
|
|
||||||
# If no default is availale, omitting the parameter on any item will cause
|
|
||||||
# an error.
|
|
||||||
#
|
|
||||||
# "[basename]" is a special case default that will set the value to
|
|
||||||
# the filename without the path or file extension.
|
|
||||||
#
|
|
||||||
# e.g.
|
|
||||||
# SRC_URI_FROM_VAR_MANIFEST_PARAMS="conname=[basename] contag=local conkeep"
|
|
||||||
#
|
|
||||||
# Any arguments that follow an entry in SRC_URI_FROM_VAR_NAME, that are not
|
|
||||||
# named in SRC_URI_FROM_VAR_MANIFEST_PARAMS are assumed to be FETCH arguments,
|
|
||||||
# so are added to the corresponding entry in the SRC_URI.
|
|
||||||
|
|
||||||
SRC_URI_FROM_VAR_NAME ??= ""
|
|
||||||
SRC_URI_FROM_VAR_MANIFEST_PARAMS ??= ""
|
|
||||||
SRC_URI_FROM_VAR_UNPACK_DIR ??= "items"
|
|
||||||
|
|
||||||
python __anonymous() {
|
|
||||||
|
|
||||||
parse_var = d.getVar('SRC_URI_FROM_VAR_NAME')
|
|
||||||
|
|
||||||
if not parse_var:
|
|
||||||
return
|
|
||||||
|
|
||||||
parse_var_items = d.getVar(parse_var)
|
|
||||||
|
|
||||||
if parse_var_items:
|
|
||||||
for item in parse_var_items.split(' '):
|
|
||||||
if not item:
|
|
||||||
continue
|
|
||||||
|
|
||||||
if item.startswith('/'):
|
|
||||||
# If not a Yocto URL, must be an absolute path
|
|
||||||
yocto_url = "file://" + item
|
|
||||||
else:
|
|
||||||
# Otherwise assume valid Yocto URL.
|
|
||||||
# Error case is caught later
|
|
||||||
yocto_url = item
|
|
||||||
|
|
||||||
fetcher = host = path = parm = None
|
|
||||||
try:
|
|
||||||
# Attempt to parse a Yocto URL
|
|
||||||
fetcher,host,path,_,_,parm = bb.fetch.decodeurl(yocto_url)
|
|
||||||
except:
|
|
||||||
# Something invalid is in the variable!
|
|
||||||
raise bb.parse.SkipRecipe(parse_var + \
|
|
||||||
" contains an invalid entry:\n'" + \
|
|
||||||
item + "'")
|
|
||||||
|
|
||||||
# This var is space seperated list of parameter names,
|
|
||||||
# with optional default value following an equals sign
|
|
||||||
# (name=default)
|
|
||||||
item_params_str = d.getVar('SRC_URI_FROM_VAR_MANIFEST_PARAMS')
|
|
||||||
|
|
||||||
# remove directories from path
|
|
||||||
filename = os.path.basename(path)
|
|
||||||
|
|
||||||
if "downloadfilename" in parm:
|
|
||||||
filename = parm["downloadfilename"]
|
|
||||||
|
|
||||||
item_manifest_args = {"filename": filename}
|
|
||||||
|
|
||||||
if item_params_str:
|
|
||||||
# required manifest arguments have been provided
|
|
||||||
|
|
||||||
# If no default is given add "=" for map parsing
|
|
||||||
item_params_list = [ arg + "=" if '=' not in arg
|
|
||||||
else arg
|
|
||||||
for arg in item_params_str.split(' ')
|
|
||||||
]
|
|
||||||
|
|
||||||
# Generate key value pairs of argument names and
|
|
||||||
# default values
|
|
||||||
item_params_map = dict( (name.strip(), val.strip())
|
|
||||||
for name, val in (arg.split('=')
|
|
||||||
for arg in item_params_list)
|
|
||||||
)
|
|
||||||
|
|
||||||
for argname in item_params_map:
|
|
||||||
# Iterate over required manifest arguments
|
|
||||||
|
|
||||||
argvalue = parm.pop(argname, None)
|
|
||||||
if argvalue:
|
|
||||||
# a value has been provided for this item
|
|
||||||
item_manifest_args[argname] = argvalue
|
|
||||||
|
|
||||||
else:
|
|
||||||
# No value provided, process default value
|
|
||||||
default = item_params_map[argname]
|
|
||||||
if default:
|
|
||||||
# A default value is provided
|
|
||||||
if default == "[basename]":
|
|
||||||
# use the filename without extension
|
|
||||||
default = os.path.splitext(filename)[0]
|
|
||||||
|
|
||||||
# store default value in dict
|
|
||||||
item_manifest_args[argname] = default
|
|
||||||
|
|
||||||
else:
|
|
||||||
# No default provided
|
|
||||||
raise bb.fatal(parse_var + \
|
|
||||||
" entry is missing a required parameter '" + \
|
|
||||||
argname + "':\n'" + item + "'")
|
|
||||||
|
|
||||||
# Write value to var flags to ensure data structure is preserved
|
|
||||||
# Each entry of parse_var will have a varflag where the value
|
|
||||||
# is a dictionary of argument names and values
|
|
||||||
d.setVarFlags(parse_var, {item: item_manifest_args})
|
|
||||||
|
|
||||||
src_uri_entry_suffix = ';'
|
|
||||||
|
|
||||||
# HTTP(S) fetcher must provide a checksum
|
|
||||||
if fetcher.startswith('http') and not \
|
|
||||||
( 'md5sum' in parm or 'sha256sum' in parm ):
|
|
||||||
# Ensure http/https fetchers get a checksum
|
|
||||||
raise bb.parse.SkipRecipe(parse_var + \
|
|
||||||
" entry is missing a checksum:\n'" + \
|
|
||||||
item + "'")
|
|
||||||
|
|
||||||
# add remaining fetch parameters including checksum
|
|
||||||
for arg in parm:
|
|
||||||
src_uri_entry_suffix += ";" + arg + "=" + parm[arg]
|
|
||||||
|
|
||||||
# Add default and extra parameters to SRC_URI entry
|
|
||||||
src_uri_entry_suffix += ';unpack=0;subdir=' + \
|
|
||||||
d.getVar('SRC_URI_FROM_VAR_UNPACK_DIR')
|
|
||||||
|
|
||||||
if fetcher == 'file':
|
|
||||||
# Prevent local fetcher from re-creating dir structure
|
|
||||||
filedir = os.path.split(path)[0]
|
|
||||||
if filedir.startswith('/'):
|
|
||||||
# Path is from the root
|
|
||||||
d.appendVar('FILESEXTRAPATHS', filedir + ':')
|
|
||||||
else:
|
|
||||||
# Path is relative to FILESEXTRAPATHS
|
|
||||||
d.appendVar('FILESOVERRIDES', ':' + filedir)
|
|
||||||
|
|
||||||
# Add filename without path to SRC_URI
|
|
||||||
d.appendVar('SRC_URI', ' file://' + \
|
|
||||||
filename + src_uri_entry_suffix)
|
|
||||||
else:
|
|
||||||
# Add full entry to SRC_URI
|
|
||||||
d.appendVar('SRC_URI', ' ' + fetcher + \
|
|
||||||
"://" + host + path + src_uri_entry_suffix)
|
|
||||||
}
|
|
||||||
|
|
||||||
python generate_manifest() {
|
|
||||||
|
|
||||||
parse_var = d.getVar('SRC_URI_FROM_VAR_NAME')
|
|
||||||
|
|
||||||
if not parse_var:
|
|
||||||
return
|
|
||||||
|
|
||||||
target_dir = os.path.join(d.getVar('WORKDIR'),
|
|
||||||
d.getVar('SRC_URI_FROM_VAR_UNPACK_DIR'))
|
|
||||||
|
|
||||||
# Write a manifest file containing the parameters so SRC_URI
|
|
||||||
# doesn't need to be parsed by do_install
|
|
||||||
with open (target_dir + "/manifest", 'w') as manifest_file:
|
|
||||||
manifest_args = d.getVarFlags(parse_var)
|
|
||||||
|
|
||||||
parse_var_items = d.getVar(parse_var)
|
|
||||||
|
|
||||||
if parse_var_items:
|
|
||||||
for item in parse_var_items.split():
|
|
||||||
|
|
||||||
manifest_file.write(" ".join(manifest_args[item].values())+"\n")
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
do_unpack[cleandirs] += "${WORKDIR}/${SRC_URI_FROM_VAR_UNPACK_DIR}"
|
|
||||||
do_unpack[postfuncs] += "generate_manifest"
|
|
||||||
do_unpack[vardeps] += "${SRC_URI_FROM_VAR_NAME}"
|
|
||||||
+10
-31
@@ -4,22 +4,14 @@
|
|||||||
# The class is extending deploy function so you recipe must inherit deploy and
|
# The class is extending deploy function so you recipe must inherit deploy and
|
||||||
# have a do_deploy function (even if it is empty)
|
# have a do_deploy function (even if it is empty)
|
||||||
|
|
||||||
# Add a variable name to XENGUEST_IMAGE_VARS_EXTRA if you want it to
|
# Use standard xenguest-image
|
||||||
# appear in xenguest.env when the image is deployed
|
inherit xenguest-image
|
||||||
|
|
||||||
# Use standard xenguest_image
|
|
||||||
inherit xenguest_image
|
|
||||||
|
|
||||||
# Add a DTB file for the guest
|
# Add a DTB file for the guest
|
||||||
# Only one file should be added, if this is set multiple times or in several
|
# Only one file should be added, if this is set multiple times or in several
|
||||||
# recipes, the last recipe setting it will prevail.
|
# recipes, the last recipe setting it will prevail.
|
||||||
XENGUEST_EXTRA_DTB ??= ""
|
XENGUEST_EXTRA_DTB ??= ""
|
||||||
|
|
||||||
# Add a ramdisk file for the guest
|
|
||||||
# Only one file should be added, if this is set multiple times or in several
|
|
||||||
# recipes, the last recipe setting it will prevail.
|
|
||||||
XENGUEST_EXTRA_RAMDISK ??= ""
|
|
||||||
|
|
||||||
# Append something to the guest xen configuration
|
# Append something to the guest xen configuration
|
||||||
# All files here will be merged together in the final xen configuration
|
# All files here will be merged together in the final xen configuration
|
||||||
# This can contain several files or be used in several recipes
|
# This can contain several files or be used in several recipes
|
||||||
@@ -42,12 +34,6 @@ XENGUEST_EXTRA_FILES ??= ""
|
|||||||
# dir1/file1 file in the disk content parameters).
|
# dir1/file1 file in the disk content parameters).
|
||||||
XENGUEST_EXTRA_DISK_FILES ??= ""
|
XENGUEST_EXTRA_DISK_FILES ??= ""
|
||||||
|
|
||||||
# Extra vars to be written to xenguest.env
|
|
||||||
XENGUEST_IMAGE_VARS_EXTRA += "\
|
|
||||||
XENGUEST_EXTRA_DTB XENGUEST_EXTRA_RAMDISK XENGUEST_EXTRA_XENCONFIG \
|
|
||||||
XENGUEST_EXTRA_INIT_PRE XENGUEST_EXTRA_INIT XENGUEST_EXTRA_INIT_POST \
|
|
||||||
XENGUEST_EXTRA_FILES XENGUEST_EXTRA_DISK_FILES"
|
|
||||||
|
|
||||||
do_deploy_append() {
|
do_deploy_append() {
|
||||||
if [ -z "${XENGUEST_IMAGE_DEPLOY_DIR}" -o \
|
if [ -z "${XENGUEST_IMAGE_DEPLOY_DIR}" -o \
|
||||||
-z "${XENGUEST_IMAGE_DEPLOY_SUBDIR}" ]; then
|
-z "${XENGUEST_IMAGE_DEPLOY_SUBDIR}" ]; then
|
||||||
@@ -58,22 +44,15 @@ do_deploy_append() {
|
|||||||
|
|
||||||
if [ -n "${XENGUEST_EXTRA_DTB}" ]; then
|
if [ -n "${XENGUEST_EXTRA_DTB}" ]; then
|
||||||
if [ ! -f ${XENGUEST_EXTRA_DTB} ]; then
|
if [ ! -f ${XENGUEST_EXTRA_DTB} ]; then
|
||||||
die "xenguest_image: DTB file ${XENGUEST_EXTRA_DTB} does not exist"
|
die "xenguest-image: DTB file ${XENGUEST_EXTRA_DTB} does not exist"
|
||||||
fi
|
fi
|
||||||
call_xenguest_mkimage partial --xen-device-tree=${XENGUEST_EXTRA_DTB}
|
call_xenguest_mkimage partial --xen-device-tree=${XENGUEST_EXTRA_DTB}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${XENGUEST_EXTRA_RAMDISK}" ]; then
|
|
||||||
if [ ! -f ${XENGUEST_EXTRA_RAMDISK} ]; then
|
|
||||||
die "xenguest_image: DTB file ${XENGUEST_EXTRA_RAMDISK} does not exist"
|
|
||||||
fi
|
|
||||||
call_xenguest_mkimage partial --xen-ramdisk=${XENGUEST_EXTRA_RAMDISK}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "${XENGUEST_EXTRA_XENCONFIG}" ]; then
|
if [ -n "${XENGUEST_EXTRA_XENCONFIG}" ]; then
|
||||||
for f in ${XENGUEST_EXTRA_XENCONFIG}; do
|
for f in ${XENGUEST_EXTRA_XENCONFIG}; do
|
||||||
if [ ! -f $f ]; then
|
if [ ! -f $f ]; then
|
||||||
die "xenguest_image: Xen config $f does not exist"
|
die "xenguest-image: Xen config $f does not exist"
|
||||||
fi
|
fi
|
||||||
call_xenguest_mkimage partial --xen-append=$f
|
call_xenguest_mkimage partial --xen-append=$f
|
||||||
done
|
done
|
||||||
@@ -81,21 +60,21 @@ do_deploy_append() {
|
|||||||
|
|
||||||
if [ -n "${XENGUEST_EXTRA_INIT_PRE}" ]; then
|
if [ -n "${XENGUEST_EXTRA_INIT_PRE}" ]; then
|
||||||
if [ ! -f ${XENGUEST_EXTRA_INIT_PRE} ]; then
|
if [ ! -f ${XENGUEST_EXTRA_INIT_PRE} ]; then
|
||||||
die "xenguest_image: Init script ${XENGUEST_EXTRA_INIT_PRE} does not exist"
|
die "xenguest-image: Init script ${XENGUEST_EXTRA_INIT_PRE} does not exist"
|
||||||
fi
|
fi
|
||||||
call_xenguest_mkimage partial --init-pre=${XENGUEST_EXTRA_INIT_PRE}
|
call_xenguest_mkimage partial --init-pre=${XENGUEST_EXTRA_INIT_PRE}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${XENGUEST_EXTRA_INIT}" ]; then
|
if [ -n "${XENGUEST_EXTRA_INIT}" ]; then
|
||||||
if [ ! -f ${XENGUEST_EXTRA_INIT} ]; then
|
if [ ! -f ${XENGUEST_EXTRA_INIT} ]; then
|
||||||
die "xenguest_image: Init script ${XENGUEST_EXTRA_INIT} does not exist"
|
die "xenguest-image: Init script ${XENGUEST_EXTRA_INIT} does not exist"
|
||||||
fi
|
fi
|
||||||
call_xenguest_mkimage partial --init-script=${XENGUEST_EXTRA_INIT}
|
call_xenguest_mkimage partial --init-script=${XENGUEST_EXTRA_INIT}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${XENGUEST_EXTRA_INIT_POST}" ]; then
|
if [ -n "${XENGUEST_EXTRA_INIT_POST}" ]; then
|
||||||
if [ ! -f ${XENGUEST_EXTRA_INIT_POST} ]; then
|
if [ ! -f ${XENGUEST_EXTRA_INIT_POST} ]; then
|
||||||
die "xenguest_image: Init script ${XENGUEST_EXTRA_INIT_POST} does not exist"
|
die "xenguest-image: Init script ${XENGUEST_EXTRA_INIT_POST} does not exist"
|
||||||
fi
|
fi
|
||||||
call_xenguest_mkimage partial --init-post=${XENGUEST_EXTRA_INIT_POST}
|
call_xenguest_mkimage partial --init-post=${XENGUEST_EXTRA_INIT_POST}
|
||||||
fi
|
fi
|
||||||
@@ -103,7 +82,7 @@ do_deploy_append() {
|
|||||||
if [ -n "${XENGUEST_EXTRA_FILES}" ]; then
|
if [ -n "${XENGUEST_EXTRA_FILES}" ]; then
|
||||||
for f in ${XENGUEST_EXTRA_FILES}; do
|
for f in ${XENGUEST_EXTRA_FILES}; do
|
||||||
if [ ! -f $f ]; then
|
if [ ! -f $f ]; then
|
||||||
die "xenguest_image: Xen file $f does not exist"
|
die "xenguest-image: Xen file $f does not exist"
|
||||||
fi
|
fi
|
||||||
call_xenguest_mkimage partial --xen-add-file=$f
|
call_xenguest_mkimage partial --xen-add-file=$f
|
||||||
done
|
done
|
||||||
@@ -112,12 +91,12 @@ do_deploy_append() {
|
|||||||
if [ -n "${XENGUEST_EXTRA_DISK_FILES}" ]; then
|
if [ -n "${XENGUEST_EXTRA_DISK_FILES}" ]; then
|
||||||
for f in ${XENGUEST_EXTRA_DISK_FILES}; do
|
for f in ${XENGUEST_EXTRA_DISK_FILES}; do
|
||||||
if [ ! -f $f ]; then
|
if [ ! -f $f ]; then
|
||||||
die "xenguest_image: Disk file $f does not exist"
|
die "xenguest-image: Disk file $f does not exist"
|
||||||
fi
|
fi
|
||||||
call_xenguest_mkimage partial --disk-add-file=$f
|
call_xenguest_mkimage partial --disk-add-file=$f
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
# Need to have xenguest_image tool
|
# Need to have xenguest-image tool
|
||||||
do_deploy[depends] += "xenguest-base-image:do_deploy"
|
do_deploy[depends] += "xenguest-base-image:do_deploy"
|
||||||
|
|
||||||
+28
-84
@@ -30,7 +30,7 @@ XENGUEST_IMAGE_ROOT ??= "/dev/xvda1"
|
|||||||
# Guest kernel command line arguments
|
# Guest kernel command line arguments
|
||||||
XENGUEST_IMAGE_CMDLINE ??= "earlyprintk=xenboot console=hvc0 rw"
|
XENGUEST_IMAGE_CMDLINE ??= "earlyprintk=xenboot console=hvc0 rw"
|
||||||
|
|
||||||
# Extra commands to add to xenguest_image when creating the image
|
# Extra commands to add to xenguest-image when creating the image
|
||||||
XENGUEST_IMAGE_EXTRA_CMD ??= ""
|
XENGUEST_IMAGE_EXTRA_CMD ??= ""
|
||||||
|
|
||||||
# Kernel binary
|
# Kernel binary
|
||||||
@@ -43,17 +43,14 @@ XENGUEST_IMAGE_KERNEL ??= "Image"
|
|||||||
# be included in the xenguest image)
|
# be included in the xenguest image)
|
||||||
XENGUEST_IMAGE_DISK_SIZE ??= "${@ '4' if not d.getVar('INITRAMFS_IMAGE') else '0'}"
|
XENGUEST_IMAGE_DISK_SIZE ??= "${@ '4' if not d.getVar('INITRAMFS_IMAGE') else '0'}"
|
||||||
|
|
||||||
# set empty partition to be used by xenguest-manager for this image
|
|
||||||
XENGUEST_IMAGE_DISK_DEVICE ??= ""
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# XENGUEST_IMAGE_DISK_PARTITIONS is used to describe the partitions to setup
|
# XENGUEST_IMAGE_DISK PARTITIONS is used to describe the partitions to setup
|
||||||
# and their content.
|
# and their content.
|
||||||
# It must be set to a space separated list of entries with each entry having
|
# It must be set to a space separated list of entries with each entry having
|
||||||
# the format num:sz:[fs]:[file] where:
|
# the format num:sz:fs:[file] where:
|
||||||
# - num is a partition number
|
# - num is a partition number
|
||||||
# - sz is the partition size in MB or GB(default), e.g 1000M or 1[G]
|
# - sz is the partition size in Gigabit
|
||||||
# - fs is optional filesystem to use for the partition
|
# - fs is the filesystem to use for the partition
|
||||||
# - file is optionally pointing to a file to use as content of the partition
|
# - file is optionally pointing to a file to use as content of the partition
|
||||||
# Please check image_types_xenguest.bbclass for rootfs handling of files
|
# Please check image_types_xenguest.bbclass for rootfs handling of files
|
||||||
#
|
#
|
||||||
@@ -61,14 +58,10 @@ XENGUEST_IMAGE_DISK_DEVICE ??= ""
|
|||||||
# and containing the root filesystem produced by Yocto
|
# and containing the root filesystem produced by Yocto
|
||||||
XENGUEST_IMAGE_DISK_PARTITIONS ??= "1:${XENGUEST_IMAGE_DISK_SIZE}:ext4:rootfs.tar.gz"
|
XENGUEST_IMAGE_DISK_PARTITIONS ??= "1:${XENGUEST_IMAGE_DISK_SIZE}:ext4:rootfs.tar.gz"
|
||||||
|
|
||||||
# XENGUEST_IMAGE_NETWORK_TYPE can be set to "bridge", "nat" or "none".
|
# XENGUEST_IMAGE_NETWORK_BRIDGE can be set to 1 to have a network interface
|
||||||
# The "bridge" type will share the physical eth interface from dom0 with the
|
# on the guest connected to host bridged network. This will provide the guest
|
||||||
# domU. This will allow the domU to have access to the external network.
|
# with a network interface connected directly to the external network
|
||||||
# The "nat" type will setup a virtual network between dom0 and domU and also
|
XENGUEST_IMAGE_NETWORK_BRIDGE ??= "1"
|
||||||
# configure and run the kea dhcp4 server on dom0 to serve the domU.
|
|
||||||
# The "none" type will not affect any networking setting between on dom0 and
|
|
||||||
# domU.
|
|
||||||
XENGUEST_IMAGE_NETWORK_TYPE ??= "bridge"
|
|
||||||
|
|
||||||
# Sub-directory in wich the guest is created. This is create in deploy as a
|
# Sub-directory in wich the guest is created. This is create in deploy as a
|
||||||
# subdirectory and must be coherent between all components using this class so
|
# subdirectory and must be coherent between all components using this class so
|
||||||
@@ -83,18 +76,6 @@ XENGUEST_IMAGE_DEPLOY_SUBDIR ?= "xenguest"
|
|||||||
# - something in ${WORKDIR} if you need to clone and manipulate an image
|
# - something in ${WORKDIR} if you need to clone and manipulate an image
|
||||||
XENGUEST_IMAGE_DEPLOY_DIR ??= "${DEPLOYDIR}"
|
XENGUEST_IMAGE_DEPLOY_DIR ??= "${DEPLOYDIR}"
|
||||||
|
|
||||||
# These vars are used by image_types_xenguest.bbclass to generate the
|
|
||||||
# xenguest.env file. In a recipe that inherits this class and extra variables
|
|
||||||
# that should be included in xenguest.env need to be added to
|
|
||||||
# XENGUEST_IMAGE_VARS_EXTRA
|
|
||||||
XENGUEST_IMAGE_VARS ?= "\
|
|
||||||
MACHINE DISTRO DISTRO_VERSION DISTRO_FEATURES TUNE_FEATURES TARGET_FPU \
|
|
||||||
IMAGE_FEATURES INITRAMFS_IMAGE_BUNDLE INITRAMFS_IMAGE \
|
|
||||||
XENGUEST_IMAGE_MEMORY_SIZE XENGUEST_IMAGE_NUM_VCPUS XENGUEST_IMAGE_AUTOBOOT \
|
|
||||||
XENGUEST_IMAGE_ROOT XENGUEST_IMAGE_CMDLINE XENGUEST_IMAGE_EXTRA_CMD \
|
|
||||||
XENGUEST_IMAGE_KERNEL XENGUEST_IMAGE_DISK_SIZE XENGUEST_IMAGE_DISK_DEVICE \
|
|
||||||
XENGUEST_IMAGE_DISK_PARTITIONS XENGUEST_IMAGE_NETWORK_TYPE"
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Wrapper to call xenguest-mkimage
|
# Wrapper to call xenguest-mkimage
|
||||||
# It is using XENGUEST_IMAGE_DEPLOY_DIR and XENGUEST_IMAGE_DEPLOY_SUBDIR
|
# It is using XENGUEST_IMAGE_DEPLOY_DIR and XENGUEST_IMAGE_DEPLOY_SUBDIR
|
||||||
@@ -144,27 +125,21 @@ xenguest_image_create() {
|
|||||||
|
|
||||||
# create disk if needed
|
# create disk if needed
|
||||||
disksize="${XENGUEST_IMAGE_DISK_SIZE}"
|
disksize="${XENGUEST_IMAGE_DISK_SIZE}"
|
||||||
case ${disksize:=0} in
|
if [ -z "$disksize" ]; then
|
||||||
0|0M|0G)
|
disksize="0"
|
||||||
;;
|
fi
|
||||||
*)
|
if [ $disksize -gt 0 ]; then
|
||||||
# setup disk size
|
# setup disk size
|
||||||
call_xenguest_mkimage update --disk-reset-config --disk-size=$disksize
|
call_xenguest_mkimage update --disk-reset-config --disk-size=$disksize
|
||||||
|
|
||||||
diskparts="${XENGUEST_IMAGE_DISK_PARTITIONS}"
|
|
||||||
if [ -n "$diskparts" ]; then
|
|
||||||
for arg in $diskparts; do
|
|
||||||
call_xenguest_mkimage update --disk-add-part=$arg
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
diskdevice="${XENGUEST_IMAGE_DISK_DEVICE}"
|
|
||||||
if [ -n "$diskdevice" ]; then
|
|
||||||
call_xenguest_mkimage update --disk-device="${diskdevice}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
|
diskparts="${XENGUEST_IMAGE_DISK_PARTITIONS}"
|
||||||
|
if [ -n "$diskparts" ]; then
|
||||||
|
for arg in $diskparts; do
|
||||||
|
call_xenguest_mkimage update --disk-add-part=$arg
|
||||||
|
partnum="$(expr $partnum + 1)"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "${XENGUEST_IMAGE_AUTOBOOT}" = "1" ]; then
|
if [ "${XENGUEST_IMAGE_AUTOBOOT}" = "1" ]; then
|
||||||
call_xenguest_mkimage update --set-param=GUEST_AUTOBOOT=1
|
call_xenguest_mkimage update --set-param=GUEST_AUTOBOOT=1
|
||||||
@@ -172,45 +147,14 @@ xenguest_image_create() {
|
|||||||
call_xenguest_mkimage update --set-param=GUEST_AUTOBOOT=0
|
call_xenguest_mkimage update --set-param=GUEST_AUTOBOOT=0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${XENGUEST_IMAGE_NETWORK_TYPE}" ]; then
|
if [ "${XENGUEST_IMAGE_NETWORK_BRIDGE}" = "1" ]; then
|
||||||
call_xenguest_mkimage update --set-param=XENGUEST_NETWORK_TYPE="${XENGUEST_IMAGE_NETWORK_TYPE}"
|
call_xenguest_mkimage update --set-param=NETWORK_BRIDGE=1
|
||||||
else
|
else
|
||||||
call_xenguest_mkimage update --set-param=XENGUEST_NETWORK_TYPE="none"
|
call_xenguest_mkimage update --set-param=NETWORK_BRIDGE=0
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
XENGUEST_ENV_STAGING_DIR ??= "${STAGING_DIR}/${MACHINE}/xenguestenv"
|
#
|
||||||
|
|
||||||
# Create an intermediary file containing all variables used to by a
|
|
||||||
# particular recipe that inherits this class
|
|
||||||
|
|
||||||
# File will contain the values of all variables listed in:
|
|
||||||
# XENGUEST_IMAGE_VARS_EXTRA
|
|
||||||
python do_deploy_xenguestenv () {
|
|
||||||
xenguest_vars = d.getVar('XENGUEST_IMAGE_VARS_EXTRA')
|
|
||||||
if not xenguest_vars:
|
|
||||||
return
|
|
||||||
|
|
||||||
outdir = d.getVar('XENGUEST_ENV_STAGING_DIR')
|
|
||||||
|
|
||||||
# Writes file to tmp/sysroots/${MACHINE}/xenguestenv/ by default
|
|
||||||
filename = os.path.basename(d.getVar('FILE')) + '.xenguestenv'
|
|
||||||
with open(os.path.join(outdir, filename), 'w') as envf:
|
|
||||||
for var in xenguest_vars.split():
|
|
||||||
value = d.getVar(var)
|
|
||||||
if value:
|
|
||||||
# Write value only if set
|
|
||||||
envf.write('%s="%s"\n' % (var, " ".join(value.split())))
|
|
||||||
envf.close()
|
|
||||||
}
|
|
||||||
|
|
||||||
# Since the intermediary file is deleted by do_merge_xenguestenv it
|
|
||||||
# must be re-created every time
|
|
||||||
do_deploy_xenguestenv[vardeps] += "${XENGUEST_IMAGE_VARS_EXTRA}"
|
|
||||||
do_deploy_xenguestenv[dirs] = "${XENGUEST_ENV_STAGING_DIR}"
|
|
||||||
|
|
||||||
addtask deploy_xenguestenv before do_populate_sysroot
|
|
||||||
|
|
||||||
# Clone the current xenguest from deploy to manipulate it locally
|
# Clone the current xenguest from deploy to manipulate it locally
|
||||||
# This is required if you need to change things before packing an image
|
# This is required if you need to change things before packing an image
|
||||||
# To set the local directory where to clone you must set
|
# To set the local directory where to clone you must set
|
||||||
@@ -224,7 +168,7 @@ xenguest_image_clone() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f ${DEPLOY_DIR_IMAGE}/${XENGUEST_IMAGE_DEPLOY_SUBDIR}/guest.cfg ]; then
|
if [ ! -f ${DEPLOY_DIR_IMAGE}/${XENGUEST_IMAGE_DEPLOY_SUBDIR}/guest.cfg ]; then
|
||||||
die "xenguest_image: ${DEPLOY_DIR_IMAGE}/${XENGUEST_IMAGE_DEPLOY_SUBDIR} does not contain a valid guest"
|
die "xenguest-image: ${DEPLOY_DIR_IMAGE}/${XENGUEST_IMAGE_DEPLOY_SUBDIR} does not contain a valid guest"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm -rf ${XENGUEST_IMAGE_DEPLOY_DIR}/${XENGUEST_IMAGE_DEPLOY_SUBDIR}
|
rm -rf ${XENGUEST_IMAGE_DEPLOY_DIR}/${XENGUEST_IMAGE_DEPLOY_SUBDIR}
|
||||||
@@ -9,7 +9,3 @@ IMAGE_FSTYPES += "xenguest"
|
|||||||
|
|
||||||
# xenguest kernel extension to handle initramfs
|
# xenguest kernel extension to handle initramfs
|
||||||
KERNEL_CLASSES += "kernel-xenguest"
|
KERNEL_CLASSES += "kernel-xenguest"
|
||||||
|
|
||||||
IMAGE_INSTALL_append = "${@bb.utils.contains('DISTRO_FEATURES', 'docker', \
|
|
||||||
' packagegroup-docker-runtime-minimal', \
|
|
||||||
'', d)}"
|
|
||||||
|
|||||||
@@ -4,23 +4,7 @@
|
|||||||
DISTRO_FEATURES_append = " xen ipv4"
|
DISTRO_FEATURES_append = " xen ipv4"
|
||||||
DISTRO_FEATURES_NATIVE_append = " arm-autonomy-host"
|
DISTRO_FEATURES_NATIVE_append = " arm-autonomy-host"
|
||||||
|
|
||||||
# Since meta-virtualization master branch bumped to 4.15+stable we need to
|
|
||||||
# force the 4.14+stable selection until we validate the new version
|
|
||||||
PREFERRED_VERSION_xen = "4.14+stable%"
|
|
||||||
PREFERRED_VERSION_xen-tools = "4.14+stable%"
|
|
||||||
|
|
||||||
# Don't include kernels in standard images when building arm-autonomy-host
|
# Don't include kernels in standard images when building arm-autonomy-host
|
||||||
# If the kernel image is needed in the rootfs the following should be set from
|
# If the kernel image is needed in the rootfs the following should be set from
|
||||||
# a bbappend: RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "${KERNEL_PACKAGE_NAME}-image"
|
# a bbappend: RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "${KERNEL_PACKAGE_NAME}-image"
|
||||||
RDEPENDS_${KERNEL_PACKAGE_NAME}-base ?= ""
|
RDEPENDS_${KERNEL_PACKAGE_NAME}-base ?= ""
|
||||||
|
|
||||||
# Require extra machine specific settings from meta-arm-bsp dynamic-layers only
|
|
||||||
# if meta-arm-bsp is in the bblayers.conf
|
|
||||||
# Directory for meta-arm-autonomy/dynamic-layers/meta-arm-bsp machine extra settings
|
|
||||||
ARM_AUTONOMY_ARM_BSP_DYNAMIC_EXTRA_CFGDIR = "${ARM_AUTONOMY_ARM_BSP_DYNAMIC_DIR}/conf/machine"
|
|
||||||
ARM_AUTONOMY_MACHINE_EXTRA_REQUIRE ?= \
|
|
||||||
"${ARM_AUTONOMY_ARM_BSP_DYNAMIC_EXTRA_CFGDIR}/arm-autonomy-machine-extra-settings.inc"
|
|
||||||
|
|
||||||
require ${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-arm-bsp', \
|
|
||||||
'${ARM_AUTONOMY_MACHINE_EXTRA_REQUIRE}' , \
|
|
||||||
'', d)}
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ BBFILES += " \
|
|||||||
|
|
||||||
BBFILE_COLLECTIONS += "meta-arm-autonomy"
|
BBFILE_COLLECTIONS += "meta-arm-autonomy"
|
||||||
BBFILE_PATTERN_meta-arm-autonomy = "^${LAYERDIR}/"
|
BBFILE_PATTERN_meta-arm-autonomy = "^${LAYERDIR}/"
|
||||||
BBFILE_PRIORITY_meta-arm-autonomy = "5"
|
BBFILE_PRIORITY_meta-arm-autonomy = "6"
|
||||||
LAYERDEPENDS_meta-arm-autonomy = " \
|
LAYERDEPENDS_meta-arm-autonomy = " \
|
||||||
core \
|
core \
|
||||||
yocto \
|
yocto \
|
||||||
@@ -17,23 +17,19 @@ LAYERDEPENDS_meta-arm-autonomy = " \
|
|||||||
networking-layer \
|
networking-layer \
|
||||||
virtualization-layer \
|
virtualization-layer \
|
||||||
"
|
"
|
||||||
LAYERSERIES_COMPAT_meta-arm-autonomy = "hardknott"
|
LAYERSERIES_COMPAT_meta-arm-autonomy = "dunfell"
|
||||||
|
|
||||||
# We don't activate virtualization feature from meta-virtualization as it
|
# We don't activate virtualization feature from meta-virtualization as it
|
||||||
# brings in lots of stuff we don't need. We need to disable the sanity check
|
# brings in lots of stuff we don't need. We need to disable the sanity check
|
||||||
# otherwise the user will see a warning on each build.
|
# otherwise the user will see a warning on each build.
|
||||||
SKIP_META_VIRT_SANITY_CHECK = "1"
|
SKIP_META_VIRT_SANITY_CHECK = "1"
|
||||||
|
|
||||||
ARM_AUTONOMY_LAYERDIR := "${LAYERDIR}"
|
|
||||||
# Directory of our distro config files
|
# Directory of our distro config files
|
||||||
ARM_AUTONOMY_DISTRO_CFGDIR = "${ARM_AUTONOMY_LAYERDIR}/conf/distro/include/"
|
ARM_AUTONOMY_DISTRO_CFGDIR = "${LAYERDIR}/conf/distro/include/"
|
||||||
|
|
||||||
# Add class to handle arm-autonomy distro extensions
|
# Add class to handle arm-autonomy distro extensions
|
||||||
USER_CLASSES_append = " arm-autonomy-features"
|
USER_CLASSES_append = " arm-autonomy-features"
|
||||||
|
|
||||||
BBFILES_DYNAMIC += " \
|
BBFILES_DYNAMIC += " \
|
||||||
meta-arm-bsp:${LAYERDIR}/dynamic-layers/meta-arm-bsp/*/*/*.bbappend \
|
meta-arm-bsp:${LAYERDIR}/dynamic-layers/meta-arm-bsp/*/*/*.bbappend \
|
||||||
meta-arm-bsp:${LAYERDIR}/dynamic-layers/meta-arm-bsp/*/*/*.bb \
|
|
||||||
"
|
"
|
||||||
# Root directory for the meta-arm-autonomy/dynamic-layers/meta-arm-bsp
|
|
||||||
ARM_AUTONOMY_ARM_BSP_DYNAMIC_DIR = "${ARM_AUTONOMY_LAYERDIR}/dynamic-layers/meta-arm-bsp"
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ KERNEL_IMAGETYPE = "Image"
|
|||||||
IMAGE_FSTYPES += "tar.bz2"
|
IMAGE_FSTYPES += "tar.bz2"
|
||||||
|
|
||||||
PREFERRED_PROVIDER_virtual/kernel = "linux-yocto"
|
PREFERRED_PROVIDER_virtual/kernel = "linux-yocto"
|
||||||
PREFERRED_VERSION_linux-yocto ?= "5.10%"
|
PREFERRED_VERSION_linux-yocto ?= "5.4%"
|
||||||
|
|
||||||
DISTRO_FEATURES += "arm-autonomy-guest"
|
DISTRO_FEATURES += "arm-autonomy-guest"
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
# This file will be required by different xenguest recipes to provide
|
|
||||||
# common variables, which can be configured in local.conf
|
|
||||||
|
|
||||||
# Xenguest image file install location
|
|
||||||
XENGUEST_MANAGER_GUEST_DIR ?= "${datadir}/guests/"
|
|
||||||
@@ -1,226 +0,0 @@
|
|||||||
arm-autonomy Multiconfig Build Environment Instructions
|
|
||||||
==================
|
|
||||||
|
|
||||||
This documentation explains how to simplify the process of building hosts
|
|
||||||
and guests in a single bitbake command, rather than in seperate build
|
|
||||||
folders. You can read more about multiconfig in the bitbake documentation:
|
|
||||||
|
|
||||||
- [bitbake user manual](https://www.yoctoproject.org/docs/latest/bitbake-user-manual/bitbake-user-manual.html)
|
|
||||||
|
|
||||||
To achieve a multiconfig build, a number of different config files need to
|
|
||||||
be created in a single build directory.
|
|
||||||
|
|
||||||
Create a new project
|
|
||||||
----------------
|
|
||||||
|
|
||||||
Before you start, you will need to follow the instructions in
|
|
||||||
"Create a project" from the quickstart guide, to create a new project
|
|
||||||
directory with
|
|
||||||
```
|
|
||||||
oe-init-build-env my-mc-project
|
|
||||||
```
|
|
||||||
Ensure it has all the required layers in bblayers.conf as listed in
|
|
||||||
`arm-autonomy-quickstart.md`. The result should be a directory containing:
|
|
||||||
|
|
||||||
```
|
|
||||||
-- conf
|
|
||||||
| -- bblayers.conf
|
|
||||||
| -- local.conf
|
|
||||||
| -- templateconf.cfg
|
|
||||||
```
|
|
||||||
|
|
||||||
Add multiconfig
|
|
||||||
----------------
|
|
||||||
|
|
||||||
The steps required to make the project build both the host and any
|
|
||||||
number of guests as required are:
|
|
||||||
|
|
||||||
1. Create a new directory under `conf/` named `multiconfig/`
|
|
||||||
|
|
||||||
2. Create two new files in this directory:
|
|
||||||
`multiconfig/host.conf`
|
|
||||||
`multiconfig/guest.conf`
|
|
||||||
These files will contain any configurations that are specific to either the
|
|
||||||
host or the guest. The resulting directory tree should be:
|
|
||||||
|
|
||||||
```
|
|
||||||
-- conf
|
|
||||||
| -- bblayers.conf
|
|
||||||
| -- local.conf
|
|
||||||
| -- templateconf.cfg
|
|
||||||
| -- multiconfig
|
|
||||||
| -- host.conf
|
|
||||||
| -- guest.conf
|
|
||||||
```
|
|
||||||
|
|
||||||
3. In `local.conf` the following config variables must be added:
|
|
||||||
|
|
||||||
```
|
|
||||||
MACHINE ?= "fvp-base"
|
|
||||||
|
|
||||||
# ---Guest Config Start--- #
|
|
||||||
MC_GUEST = "guest"
|
|
||||||
|
|
||||||
MC_GUEST_NAME = "guest1"
|
|
||||||
|
|
||||||
MC_GUEST_IMAGERECIPE = "core-image-minimal"
|
|
||||||
MC_GUEST_MACHINE = "arm64-autonomy-guest"
|
|
||||||
|
|
||||||
MC_GUEST_INITRAMFS_IMAGE_BUNDLE ?= ""
|
|
||||||
MC_GUEST_INITRAMFS_IMAGE ?= ""
|
|
||||||
|
|
||||||
# Uncomment for initramfs
|
|
||||||
#MC_GUEST_INITRAMFS_IMAGE_BUNDLE = "1"
|
|
||||||
#MC_GUEST_INITRAMFS_IMAGE = "${MC_GUEST_IMAGERECIPE}"
|
|
||||||
|
|
||||||
# These variables are set automatically, don't override them!
|
|
||||||
MC_GUEST_FILENAME_PREFIX = "${@ 'Image-initramfs' if d.getVar('MC_GUEST_INITRAMFS_IMAGE_BUNDLE',d) else '${MC_GUEST_IMAGERECIPE}' }"
|
|
||||||
|
|
||||||
MC_GUEST_FILENAME = "${MC_GUEST_FILENAME_PREFIX}-${MC_GUEST_MACHINE}.xenguest"
|
|
||||||
|
|
||||||
MC_GUEST_DEP = "${@ 'virtual/kernel:do_deploy' if d.getVar('MC_GUEST_INITRAMFS_IMAGE_BUNDLE',d) else '${MC_GUEST_IMAGERECIPE}:do_merge_xenguestenv'}"
|
|
||||||
|
|
||||||
MC_DOIMAGE_MCDEPENDS += "mc:${MC_HOST}:${MC_GUEST}:${MC_GUEST_DEP} "
|
|
||||||
|
|
||||||
BBMULTICONFIG += "${MC_GUEST} "
|
|
||||||
|
|
||||||
ARM_AUTONOMY_HOST_IMAGE_EXTERN_GUESTS += "file://${TOPDIR}/${MC_GUEST}/deploy/images/${MC_GUEST_MACHINE}/${MC_GUEST_FILENAME};guestname=${MC_GUEST_NAME} "
|
|
||||||
# ---Guest Config End--- #
|
|
||||||
|
|
||||||
# ---Host Config Start--- #
|
|
||||||
MC_HOST = "host"
|
|
||||||
|
|
||||||
BBMULTICONFIG += "${MC_HOST} "
|
|
||||||
# ---Host Config End--- #
|
|
||||||
```
|
|
||||||
|
|
||||||
These variables will be used in both of the multiconf files. `MC_HOST` and
|
|
||||||
`MC_GUEST` should not be altered without renaming the conf files, but most
|
|
||||||
`MC_GUEST_*` variables can be customised if you desire.
|
|
||||||
|
|
||||||
4. Next set the contents of `multiconfig/guest.conf`:
|
|
||||||
|
|
||||||
```
|
|
||||||
TMPDIR = "${TOPDIR}/${MC_GUEST}"
|
|
||||||
|
|
||||||
MACHINE = "${MC_GUEST_MACHINE}"
|
|
||||||
DISTRO_FEATURES += " arm-autonomy-guest"
|
|
||||||
|
|
||||||
INITRAMFS_IMAGE_BUNDLE = "${MC_GUEST_INITRAMFS_IMAGE_BUNDLE}"
|
|
||||||
INITRAMFS_IMAGE = "${MC_GUEST_INITRAMFS_IMAGE}"
|
|
||||||
|
|
||||||
IMAGE_FSTYPES += "${@ 'cpio' if d.getVar('MC_GUEST_INITRAMFS_IMAGE_BUNDLE',d) else ''}"
|
|
||||||
|
|
||||||
# ANY OTHER GUEST CONFIG
|
|
||||||
```
|
|
||||||
|
|
||||||
To modify the MACHINE or INITRAMFS variables change the equivalent
|
|
||||||
config in local.conf rather than modifying this file directly. You can also
|
|
||||||
append any other config desired for the guest after "ANY OTHER GUEST CONFIG",
|
|
||||||
for example `XENGUEST_IMAGE_DISK_SIZE`.
|
|
||||||
|
|
||||||
Make sure not to change `${DEPLOY_DIR_IMAGE}` to anything other than
|
|
||||||
`${TMPDIR}/deploy/images`, as this is assumed by local.conf.
|
|
||||||
|
|
||||||
5. Lastly set the contents of `multiconfig/host.conf`:
|
|
||||||
|
|
||||||
```
|
|
||||||
TMPDIR = "${TOPDIR}/${MC_HOST}"
|
|
||||||
|
|
||||||
DISTRO_FEATURES += " arm-autonomy-host"
|
|
||||||
|
|
||||||
# ANY OTHER HOST CONFIG
|
|
||||||
```
|
|
||||||
|
|
||||||
Building the image
|
|
||||||
----------------
|
|
||||||
|
|
||||||
To build the multiconfig image the command is:
|
|
||||||
```
|
|
||||||
bitbake mc:host:arm-autonomy-host-image-minimal
|
|
||||||
```
|
|
||||||
|
|
||||||
The first time this is run you may see a warning related to the SRC_URI:
|
|
||||||
```
|
|
||||||
Unable to get checksum for xenguest-extern-guests SRC_URI entry foo.xenguest: file could not be found
|
|
||||||
```
|
|
||||||
|
|
||||||
This is expected, and only indicates that the guest image has not yet been
|
|
||||||
generated when the host parses the SRC_URI. By the time it is needed by the
|
|
||||||
host recipe fetch task it will be present.
|
|
||||||
|
|
||||||
During the build you should see that guest tasks are also being executed in
|
|
||||||
parallel. Once the build completes the guest will already be in the rootfs of
|
|
||||||
the host thanks to `ARM_AUTONOMY_HOST_IMAGE_EXTERN_GUEST`
|
|
||||||
|
|
||||||
The final host image including the guests will be deployed in
|
|
||||||
`host/deploy/images/`
|
|
||||||
|
|
||||||
|
|
||||||
Multiple Guests
|
|
||||||
----------------
|
|
||||||
|
|
||||||
To have multiple guests with the same config the line which appends to
|
|
||||||
`ARM_AUTONOMY_HOST_IMAGE_EXTERN_GUESTS` just needs to pass the argument
|
|
||||||
'guestcount=#' to install symlink copies of the xenguest file on the host.
|
|
||||||
Documentation for the guestcount parameter can be found in
|
|
||||||
documentation/arm-autonomy-quickstart.md in the section titled
|
|
||||||
'Include guests directly in the host image'. This will ensure that the guest
|
|
||||||
is still only built once, despite resulting in multiple copies on the target.
|
|
||||||
|
|
||||||
If guests are required to have different configurations, each will need its own
|
|
||||||
config file, e.g. 'netguest.conf'. Ensure that the name of the conf file does
|
|
||||||
not contain any hyphens, as this will create errors when it becomes part of a
|
|
||||||
function name. In this file the values of TMPDIR, MACHINE, DISTRO_FEATURES etc.
|
|
||||||
should be the same as above, but with the prefix "MC_GUEST_*" modified to
|
|
||||||
something different to avoid collisions (e.g. MC_GUEST_2_*).
|
|
||||||
|
|
||||||
As before, your additional config for the guest type should
|
|
||||||
follow "ANY OTHER GUEST CONFIG"
|
|
||||||
|
|
||||||
In your local.conf, everything between `---Guest Config Start---` and
|
|
||||||
`---Guest Config End---` will need to be duplicated for each desired guest type.
|
|
||||||
All copies of variables that start `MC_GUEST` must be modified with the same
|
|
||||||
prefix as in the new guest config file (e.g. `MC_GUEST_2_*`).
|
|
||||||
|
|
||||||
Each chunk of guest config in local.conf has automatic guest variables
|
|
||||||
(found after the line "These variables are set automatically...").
|
|
||||||
These should all use the same prefix as their chunk in their values,
|
|
||||||
for example:
|
|
||||||
```
|
|
||||||
MC_GUEST_2_FILENAME_PREFIX = "${@ 'Image-initramfs' if d.getVar('MC_GUEST_2_INITRAMFS_IMAGE_BUNDLE',d) else '${MC_GUEST_2_IMAGERECIPE}' }"
|
|
||||||
```
|
|
||||||
|
|
||||||
Guest with provisioned disk
|
|
||||||
----------------
|
|
||||||
|
|
||||||
To add guest rootfs partition to host wic image,
|
|
||||||
set `AUTONOMY_HOST_EXTRA_PARTITION` with proper wks partition entry, e.g:
|
|
||||||
|
|
||||||
```
|
|
||||||
AUTONOMY_HOST_EXTRA_PARTITION = "part --label provisioned-guest --source rawcopy --fstype=ext4 --ondisk sda --align 1024 \
|
|
||||||
--sourceparams=file=${TOPDIR}/${MC_GUEST}/deploy/images/${MC_GUEST_MACHINE}/${MC_GUEST_FILENAME_PREFIX}-${MC_GUEST_MACHINE}.ext4"
|
|
||||||
```
|
|
||||||
|
|
||||||
inside your host.conf file.
|
|
||||||
|
|
||||||
The rest of the configuration has to be appended to guest.conf file:
|
|
||||||
|
|
||||||
```
|
|
||||||
# ANY OTHER GUEST CONFIG
|
|
||||||
XENGUEST_IMAGE_DISK_SIZE = "0"
|
|
||||||
XENGUEST_IMAGE_SRC_URI_XEN_CONFIG = "file://\${TOPDIR}/path/to/rootdisk.cfg"
|
|
||||||
XENGUEST_IMAGE_DISK_DEVICE = "_GUEST_DISK_DEVICE_"
|
|
||||||
XENGUEST_IMAGE_ROOT = "/dev/xvda"
|
|
||||||
IMAGE_ROOTFS_SIZE = "102400"
|
|
||||||
IMAGE_FSTYPES = "ext4"
|
|
||||||
```
|
|
||||||
|
|
||||||
Example content of rootdisk.cfg:
|
|
||||||
|
|
||||||
```
|
|
||||||
disk = ["phy:_GUEST_DISK_DEVICE_,xvda,w"]
|
|
||||||
```
|
|
||||||
|
|
||||||
`_GUEST_DISK_DEVICE_` should be substituted with `/dev/sdaX`,
|
|
||||||
according to wks file.
|
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
arm-autonomy Quick Start
|
arm-autonomy Quick Start
|
||||||
==================
|
==================
|
||||||
|
|
||||||
This documentation explains how to quickly start with the arm-autonomy layer,
|
This documentation is explaining how to quickly start with arm-autonomy layer
|
||||||
and the main features provided.
|
and the main features provided.
|
||||||
In the documentation directory you will find some more detailed documentation
|
You will find in the documentation directory some more detailed documentation
|
||||||
for each of the functionalites provided by this layer.
|
for each of the functionalites provided by this layer.
|
||||||
|
|
||||||
What to use this layer for?
|
What to use this layer for?
|
||||||
@@ -29,7 +29,7 @@ First you must download the Yocto layers needed:
|
|||||||
- all other layers you might want to use
|
- all other layers you might want to use
|
||||||
|
|
||||||
For each of the downloaded layer make sure you checkout the release of Yocto
|
For each of the downloaded layer make sure you checkout the release of Yocto
|
||||||
you want to use (for example hardknott using `git checkout hardknott`).
|
you want to use (for example zeus using `git checkout zeus`).
|
||||||
|
|
||||||
Please follow [Yocto documentation](https://www.yoctoproject.org/docs/latest/brief-yoctoprojectqs/brief-yoctoprojectqs.html)
|
Please follow [Yocto documentation](https://www.yoctoproject.org/docs/latest/brief-yoctoprojectqs/brief-yoctoprojectqs.html)
|
||||||
in order to have the required dependencies.
|
in order to have the required dependencies.
|
||||||
@@ -56,8 +56,8 @@ Here are the main steps to create an arm-autonomy project:
|
|||||||
bitbake-layers add-layer $LAYERDIR_BASE/meta-poky $LAYERDIR_BASE/meta-yocto-bsp \
|
bitbake-layers add-layer $LAYERDIR_BASE/meta-poky $LAYERDIR_BASE/meta-yocto-bsp \
|
||||||
$LAYERDIR_BASE/meta-openembedded/meta-oe $LAYERDIR_BASE/meta-openembedded/meta-python \
|
$LAYERDIR_BASE/meta-openembedded/meta-oe $LAYERDIR_BASE/meta-openembedded/meta-python \
|
||||||
$LAYERDIR_BASE/meta-openembedded/meta-filesystems $LAYERDIR_BASE/meta-openembedded/meta-networking \
|
$LAYERDIR_BASE/meta-openembedded/meta-filesystems $LAYERDIR_BASE/meta-openembedded/meta-networking \
|
||||||
$LAYERDIR_BASE/meta-arm/meta-arm $LAYERDIR_BASE/meta-arm/meta-arm-toolchain \
|
$LAYERDIR_BASE/meta-virtualization $LAYERDIR_BASE/meta-arm/meta-arm-autonomy \
|
||||||
$LAYERDIR_BASE/meta-arm/meta-arm-bsp $LAYERDIR_BASE/meta-arm/meta-arm-autonomy \
|
$LAYERDIR_BASE/meta-arm/meta-arm $LAYERDIR_BASE/meta-arm/meta-arm-bsp
|
||||||
```
|
```
|
||||||
|
|
||||||
Example of a `conf/bblayers.conf`:
|
Example of a `conf/bblayers.conf`:
|
||||||
@@ -71,16 +71,12 @@ Here are the main steps to create an arm-autonomy project:
|
|||||||
/home/user/arm-autonomy/meta-openembedded/meta-filesystems \
|
/home/user/arm-autonomy/meta-openembedded/meta-filesystems \
|
||||||
/home/user/arm-autonomy/meta-openembedded/meta-networking \
|
/home/user/arm-autonomy/meta-openembedded/meta-networking \
|
||||||
/home/user/arm-autonomy/meta-virtualization \
|
/home/user/arm-autonomy/meta-virtualization \
|
||||||
/home/user/arm-autonomy/meta-arm/meta-arm \
|
|
||||||
/home/user/arm-autonomy/meta-arm/meta-arm-toolchain \
|
|
||||||
/home/user/arm-autonomy/meta-arm/meta-arm-bsp \
|
|
||||||
/home/user/arm-autonomy/meta-arm/meta-arm-autonomy \
|
/home/user/arm-autonomy/meta-arm/meta-arm-autonomy \
|
||||||
|
/home/user/arm-autonomy/meta-arm/meta-arm \
|
||||||
|
/home/user/arm-autonomy/meta-arm/meta-arm-bsp \
|
||||||
"
|
"
|
||||||
```
|
```
|
||||||
|
|
||||||
Be aware that changing the order may break some dependencies if editing the
|
|
||||||
config file manually.
|
|
||||||
|
|
||||||
Those steps will have to be done for each project you will have to create.
|
Those steps will have to be done for each project you will have to create.
|
||||||
|
|
||||||
Host project
|
Host project
|
||||||
@@ -110,8 +106,7 @@ The project will generate a Linux kernel, a root filesystem, a Xen binary and
|
|||||||
a DTB modified to include the required entries to boot Xen and Linux as Dom0
|
a DTB modified to include the required entries to boot Xen and Linux as Dom0
|
||||||
(this DTB has the extension `-xen.dtb`).
|
(this DTB has the extension `-xen.dtb`).
|
||||||
|
|
||||||
To boot the system using a u-boot base board for machines other than FVP-Base
|
To boot the system using an u-boot base board you will need to:
|
||||||
you will need to:
|
|
||||||
- Load the kernel (by default at 0x80080000 unless you modify
|
- Load the kernel (by default at 0x80080000 unless you modify
|
||||||
XEN_DEVICETREE_DOM0_ADDR value)
|
XEN_DEVICETREE_DOM0_ADDR value)
|
||||||
- Load the xen device tree (for example at 0x83000000)
|
- Load the xen device tree (for example at 0x83000000)
|
||||||
@@ -120,88 +115,50 @@ you will need to:
|
|||||||
|
|
||||||
In this example the addresses might need to be adapted depending on your board.
|
In this example the addresses might need to be adapted depending on your board.
|
||||||
|
|
||||||
For arm-autonomy host on FVP-Base, u-boot has been modified such that
|
For arm-autonomy host on FVP-Base u-boot has been modified such that
|
||||||
`booti 0x84000000 - 0x83000000` is the default boot command. If FVP-Base is your
|
`booti 0x84000000 - 0x83000000` is the default boot command. If FVP-Base is your
|
||||||
MACHINE target there should be no need to interfere with u-boot.
|
MACHINE target there should be no need to interfere with u-boot.
|
||||||
|
|
||||||
Guest project
|
Guest project
|
||||||
-------------
|
-------------
|
||||||
The guest projects are not target specific and will instead use a Yocto MACHINE
|
The guest projects are not target specific and will use a Yocto MACHINE defined
|
||||||
defined in meta-arm-autonomy to include only the Linux configuration required to
|
in meta-arm-autonomy to include only the Linux configuration required to run
|
||||||
run a xen guest.
|
a xen guest.
|
||||||
|
|
||||||
To create a guest project:
|
To create a guest project:
|
||||||
|
|
||||||
1. Follow the steps of "Create a project"
|
1. Follow the steps of "Create a project"
|
||||||
|
|
||||||
2. Optionally add layers required to build the guest image, and any features you
|
2. Optionaly add layers required to build the image and features you need.
|
||||||
need.
|
|
||||||
|
|
||||||
3. Edit conf/local.conf to add `arm-autonomy-guest` to the DISTRO_FEATURES and
|
3. edit conf/local.conf to add `arm-autonomy-guest` to the DISTRO_FEATURES and
|
||||||
set MACHINE to `arm64-autonomy-guest`:
|
set MACHINE to `arm64-autonomy-guest`:
|
||||||
```
|
```
|
||||||
MACHINE = "arm64-autonomy-guest"
|
MACHINE = "arm64-autonomy-guest"
|
||||||
DISTRO_FEATURES += "arm-autonomy-guest"
|
DISTRO_FEATURES += "arm-autonomy-guest"
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Build the image you want.
|
4. build the image you want.
|
||||||
For example `bitbake core-image-minimal`
|
For example `bitbake core-image-minimal`
|
||||||
|
|
||||||
The build will create a ".xenguest" image that can be use on an host project
|
The build will create a ".xenguest" image that can be use on an host project
|
||||||
with the xenguest-manager, as well as a file "xenguest.env" containing the
|
with the xenguest-manager.
|
||||||
variables used to configure and generate the guest image.
|
|
||||||
|
|
||||||
The guest can also be built as a 'multiconfig' sub project of the host, see
|
|
||||||
`meta-arm-autonomy/documentation/arm-autonomy-multiconfig.md` for more
|
|
||||||
information
|
|
||||||
|
|
||||||
Include guests directly in the host image
|
Include guests directly in the host image
|
||||||
-----------------------------------------
|
-----------------------------------------
|
||||||
The layer provides a way to directly include one or more images generated by
|
The layer provides a way to directly include in the host project one or several
|
||||||
guest projects in the host project.
|
images generated by guest projects.
|
||||||
|
|
||||||
To use this feature, you must edit your host project `local.conf` file and
|
To use this feature, you must edit your host project `local.conf` file and
|
||||||
add set the value of 'ARM_AUTONOMY_HOST_IMAGE_EXTERN_GUESTS' to the list of
|
add set ARM_AUTONOMY_HOST_IMAGE_EXTERN_GUESTS to the list of xenguest images
|
||||||
paths to xenguest images you want to include in your host.
|
you want to include in your host. Each xenguest image must be given using a
|
||||||
|
full path to it.
|
||||||
There are 4 supported formats for ARM_AUTONOMY_HOST_IMAGE_EXTERN_GUESTS
|
|
||||||
entries:
|
|
||||||
|
|
||||||
- http/https url
|
|
||||||
- "https://[url]:[port]/foo.xenguest;md5sum=..."
|
|
||||||
|
|
||||||
- file:// absolute local path from root
|
|
||||||
- "file:///xenguests/bar.xenguest"
|
|
||||||
|
|
||||||
- file:// path relative to FILESEXTRAPATHS
|
|
||||||
- "file://relative/baz.xenguest"
|
|
||||||
|
|
||||||
- plain absolute local path from root
|
|
||||||
- "/xenguests/absolute/xyzzy.xenguest"
|
|
||||||
|
|
||||||
It is not recommended to use other bitbake URL types, as they may result in
|
|
||||||
undefined behaviour.
|
|
||||||
|
|
||||||
A semicolon seperated list of install arguments can follow each image path:
|
|
||||||
- guestname : the name that will be attached when the image is imported
|
|
||||||
(default: [filename, without extension])
|
|
||||||
- guestcount : the number of copies of the guest to install, with
|
|
||||||
incrementing numbers appended to the name
|
|
||||||
(default: 1)
|
|
||||||
|
|
||||||
Any other arguments, for example an md5sum, will be assumed to be fetch
|
|
||||||
arguments, and will be appended to the path in the SRC_URI.
|
|
||||||
For example:
|
For example:
|
||||||
```
|
```
|
||||||
ARM_AUTONOMY_HOST_IMAGE_EXTERN_GUESTS = "\
|
ARM_AUTONOMY_HOST_IMAGE_EXTERN_GUESTS = "/home/user/guest-project/tmp/deploy/images/arm64-autonomy-guest/core-image-minimal-arm64-autonomy-guest.xenguest;guestname=myguest"
|
||||||
https://[url]:[port]/base.xenguest;md5sum=[checksum];guestname=http \
|
|
||||||
file:///guests/base.xenguest;guestname=file_abs \
|
|
||||||
file://foo/base.xenguest;guestname=file_rel;guestcount=2 \
|
|
||||||
/guests/foo/bar/base.xenguest;guestname=no_fetcher \ "
|
|
||||||
```
|
```
|
||||||
|
This will add the guest and name it `myguest` on the host project image and
|
||||||
Documentation for setting up a multiconfig build can be found in:
|
the xenguest-manager will automatically boot it during startup.
|
||||||
meta-arm-autonomy/documentation/arm-autonomy-multiconfig.md
|
|
||||||
|
|
||||||
Add support for your board
|
Add support for your board
|
||||||
--------------------------
|
--------------------------
|
||||||
@@ -222,7 +179,7 @@ started). You can find the complete list of the kernel configuration elements
|
|||||||
required in `recipes-kernel/linux/arm-autonomy-kmeta/features/arm-autonomy/xen-host.cfg`.
|
required in `recipes-kernel/linux/arm-autonomy-kmeta/features/arm-autonomy/xen-host.cfg`.
|
||||||
|
|
||||||
### Define the drive and partition to use for the LVM volume
|
### Define the drive and partition to use for the LVM volume
|
||||||
The xenguest-manager creates guest storage drives using LVM on an empty
|
The xenguest-manager is creating disk hard drive using LVM on an empty
|
||||||
partition. The default value is set to use /dev/sda2.
|
partition. The default value is set to use /dev/sda2.
|
||||||
You can change this for your board by setting XENGUEST_MANAGER_VOLUME_DEVICE.
|
You can change this for your board by setting XENGUEST_MANAGER_VOLUME_DEVICE.
|
||||||
|
|
||||||
@@ -231,37 +188,37 @@ Check `recipes-extended/xenguest/xenguest-manager.bbappend` for examples.
|
|||||||
Please also read xenguest-manager.md.
|
Please also read xenguest-manager.md.
|
||||||
|
|
||||||
### Define the interface to add to xenguest network bridge
|
### Define the interface to add to xenguest network bridge
|
||||||
xenguest-network bridge creates a bridge on the host and adds network
|
xenguest-network bridge is creating a bridge on the host and adds network
|
||||||
interfaces to it so that guests connected to it have access to external network.
|
interfaces to it so that guest connected to it have access to external network.
|
||||||
By default `eth0` is set as the list of interfaces to be added to the bridge.
|
By default `eth0` is set as the list of interfaces to be added to the bridge.
|
||||||
Depending on your board or use case you might want to use an other interface
|
Depending on your board or use case you might want to use an other interface
|
||||||
or use multiple interfaces.
|
or use multiple interfaces.
|
||||||
You can change this for your board by setting XENGUEST_NETWORK_BRIDGE_MEMBERS.
|
You can change this for your board by setting XENGUEST_NETWORK_BRIDGE_MEMBERS.
|
||||||
|
|
||||||
Check `recipes-extended/xenguest/xenguest-network.bbappend` for
|
Check `recipes-extended/xenguest/xenguest-network-bridge.bbappend` for
|
||||||
exmaples.
|
exmaples.
|
||||||
|
|
||||||
Please also read xenguest-network-bridge.md.
|
Please also read xenguest-network-bridge.md.
|
||||||
|
|
||||||
### Define the network configuration of the xenguest network bridge
|
### Define the network configuration of the xenguest network bridge
|
||||||
xenguest-network puts the host network interfaces in a bridge and configures it
|
xenguest network bridge is putting the host network interfaces in a bridge
|
||||||
by default to use dhcp.
|
and is configuring it by default to use dhcp.
|
||||||
If you need a different type of configuration you can set
|
If you need a different type of configuration you can set
|
||||||
XENGUEST_NETWORK_BRIDGE_CONFIG in your xenguest-network-bridge.bbappend to use
|
XENGUEST_NETWORK_BRIDGE_CONFIG in a xenguest-network-bridge.bbappend to use
|
||||||
a different file.
|
a different file.
|
||||||
The recipe will look for the file in ${WORKDIR}, so you will need to add it to
|
The recipe will look for the file in ${WORKDIR} so you will need to add it to
|
||||||
the SRC_URI in your bbappend.
|
SRC_URI in your bbappend.
|
||||||
The recipe will also substitute `###BRIDGE_NAME###` with the bridge name
|
The recipe will also substitute `###BRIDGE_NAME###` with the bridge name
|
||||||
configured in ${XENGUEST_NETWORK_BRIDGE_NAME} when the config file is installed.
|
configured in ${XENGUEST_NETWORK_BRIDGE_NAME}.
|
||||||
|
|
||||||
You can find an example configuration file in
|
You can find an example configuration file in
|
||||||
`recipes-extended/xenguest/files/xenguest-network-bridge-dhcp.cfg.in`.
|
`recipes-extended/xenguest/files/xenguest-network-bridge-dhcp.cfg.in`.
|
||||||
|
|
||||||
Please also read xenguest-network.md.
|
Please also read xenguest-network-bridge.md.
|
||||||
|
|
||||||
### Customize Dom0 and Xen boot arguments for you board
|
### Customize Dom0 and Xen boot arguments for you board
|
||||||
xen-devicetree modifies the generated DTB Xen and Linux boot arguments,
|
xen-devicetree is writting inside the generated DTB Xen and Linux boot
|
||||||
as long as the address where Dom0 Linux kernel can be found.
|
arguments as long as the address where Dom0 Linux kernel can be found.
|
||||||
You might need to have different values for your board or depending on your
|
You might need to have different values for your board or depending on your
|
||||||
use case.
|
use case.
|
||||||
|
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
Customizing Arm Autonomy Host image layout for N1SDP
|
|
||||||
====================================================
|
|
||||||
|
|
||||||
When buiding with `DISTRO_FEATURES += "arm-autonomy-host"` the user can
|
|
||||||
perform a couple of customizations in the generated wic image:
|
|
||||||
|
|
||||||
1. Set the guest partition size (default: 4iG) via `GUEST_PART_SIZE` and
|
|
||||||
`GUEST_PART_SIZE_UNIT` (M or G) variables to be set in any conf file. The
|
|
||||||
value of these variables should be aligned with the sum of all
|
|
||||||
XENGUEST_IMAGE_DISK_SIZE set for the guests. By default, LVM2 metadata is
|
|
||||||
1 MiB per physical volume, hence it needs to be taken into account when
|
|
||||||
setting GUEST_PART_SIZE.
|
|
||||||
|
|
||||||
2. Set the boot partition size (default: 100M) via `BOOT_PART_SIZE` and
|
|
||||||
`BOOT_PART_SIZE_UNIT` (M or G) variables in any conf file. The default
|
|
||||||
bootimg is ~44M so 100M leaves just over 50M of free space.
|
|
||||||
|
|
||||||
3. The wic image partition layout and contents with a custom wks file via
|
|
||||||
`ARM_AUTONOMY_WKS_FILE` variable (default:
|
|
||||||
arm-autonomy-n1sdp-efidisk.wks.in which is affected by GUEST_PART_SIZE,
|
|
||||||
GUEST_PART_SIZE_UNIT, BOOT_PART_SIZE, BOOT_PART_SIZE_UNIT and
|
|
||||||
GRUB_CFG_FILE variables).
|
|
||||||
|
|
||||||
4. Custom grub.cfg file via `GRUB_CFG_FILE` (default:
|
|
||||||
arm-autonomy-n1sdp-grub.cfg) variable to be set in any conf file. The full
|
|
||||||
path or relative to `ARM_AUTONOMY_WKS_FILE` should be set.
|
|
||||||
|
|
||||||
The `arm-autonomy-n1sdp-efidisk.wks.in` and `arm-autonomy-n1sdp-grub.cfg` files
|
|
||||||
are located at `meta-arm-autonomy/dynamic-layers/meta-arm-bsp/wic`.
|
|
||||||
|
|
||||||
Other variables can also be customized to set what files need to be included
|
|
||||||
in the wic image boot partition. Please refer to
|
|
||||||
`meta-arm-autonomy/dynamic-layers/meta-arm-bsp/conf/machine/n1sdp-extra-settings.inc`
|
|
||||||
for more details.
|
|
||||||
@@ -56,8 +56,7 @@ The following parameters are available:
|
|||||||
the xen devicetrees are properly regenerated if the source DTBs are changed.
|
the xen devicetrees are properly regenerated if the source DTBs are changed.
|
||||||
This variable is set by default to "virtual/kernel:do_deploy" to use DTBs
|
This variable is set by default to "virtual/kernel:do_deploy" to use DTBs
|
||||||
generated during the compilation of the Linux kernel. This must be changed
|
generated during the compilation of the Linux kernel. This must be changed
|
||||||
if the machine you are using is not using a DTB listed in
|
if the machine your are using is not using a DTB listed in KERNEL_DEVICETREE.
|
||||||
KERNEL_DEVICETREE.
|
|
||||||
|
|
||||||
- XEN_DEVICETREE_DTBS: This should be set to the list of DTBs you want to be
|
- XEN_DEVICETREE_DTBS: This should be set to the list of DTBs you want to be
|
||||||
modified by xen-devicetree. Those must be files that xen-devicetree can find
|
modified by xen-devicetree. Those must be files that xen-devicetree can find
|
||||||
@@ -71,10 +70,7 @@ The following parameters are available:
|
|||||||
This variable is only used if XEN_DEVICETREE_XEN_BOOTARGS has a value
|
This variable is only used if XEN_DEVICETREE_XEN_BOOTARGS has a value
|
||||||
containing "dom0_mem=${XEN_DEVICETREE_DOM0_MEM}" as the memory assigned to
|
containing "dom0_mem=${XEN_DEVICETREE_DOM0_MEM}" as the memory assigned to
|
||||||
dom0 is defined using Xen boot arguments.
|
dom0 is defined using Xen boot arguments.
|
||||||
This variable is set by default to "1024M,max:1024", and cannot be empty.
|
This variable is set by default to "1024M".
|
||||||
The value can simply specify a size, e.g. "1024M", but best practice is to
|
|
||||||
also provide a max, documented here:
|
|
||||||
https://wiki.xenproject.org/wiki/Xen_Project_Best_Practices
|
|
||||||
|
|
||||||
- XEN_DEVICETREE_DOM0_BOOTARGS: Boot arguments to pass to Dom0 Linux when
|
- XEN_DEVICETREE_DOM0_BOOTARGS: Boot arguments to pass to Dom0 Linux when
|
||||||
booting it.
|
booting it.
|
||||||
@@ -88,8 +84,7 @@ The following parameters are available:
|
|||||||
- XEN_DEVICETREE_DOM0_ADDR: This is the address from which the Linux kernel to
|
- XEN_DEVICETREE_DOM0_ADDR: This is the address from which the Linux kernel to
|
||||||
be used for Dom0 will be copied. When using u-boot, this is the address at
|
be used for Dom0 will be copied. When using u-boot, this is the address at
|
||||||
which you will load the kernel Image before starting Xen.
|
which you will load the kernel Image before starting Xen.
|
||||||
This variable is set by default to "0x80080000", and cannot be empty.
|
This variable is set by default to "0x80080000".
|
||||||
Values for this variable can be in hex (prefixed with '0x') or in decimal.
|
|
||||||
|
|
||||||
- XEN_DEVICETREE_DOM0_SIZE: This is the size of the kernel loaded at
|
- XEN_DEVICETREE_DOM0_SIZE: This is the size of the kernel loaded at
|
||||||
${XEN_DEVICETREE_DOM0_ADDR}. Xen will copy this amount of data inside the
|
${XEN_DEVICETREE_DOM0_ADDR}. Xen will copy this amount of data inside the
|
||||||
@@ -97,8 +92,7 @@ The following parameters are available:
|
|||||||
size but can be bigger. You must be careful not to have a value too big as it
|
size but can be bigger. You must be careful not to have a value too big as it
|
||||||
could slow down boot or copy other parts with it (like the DTB).
|
could slow down boot or copy other parts with it (like the DTB).
|
||||||
You might need to increase this if you use a kernel with a bundled initramfs.
|
You might need to increase this if you use a kernel with a bundled initramfs.
|
||||||
This variable is set by default to "0x01000000" and cannot be empty.
|
This variable is set by default to "0x01000000".
|
||||||
Values for this variable can be in hex (prefixed with '0x') or in decimal.
|
|
||||||
|
|
||||||
- XEN_DEVICETREE_DTSI_MERGE: This variable contains the list of dtsi files that
|
- XEN_DEVICETREE_DTSI_MERGE: This variable contains the list of dtsi files that
|
||||||
must be included inside the generated DTB file. By default the only one
|
must be included inside the generated DTB file. By default the only one
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ Introduction
|
|||||||
xenguest-manager is a tool to manage Xenguest images generated by
|
xenguest-manager is a tool to manage Xenguest images generated by
|
||||||
[xenguest-mkimage](xenguest-mkimage.md).
|
[xenguest-mkimage](xenguest-mkimage.md).
|
||||||
|
|
||||||
On a Xen Dom0 system it can:
|
On a Xen Dom0 system it will:
|
||||||
- create a xen guest from a xenguest image: extract its components, create a
|
- create a xen guest from a xenguest image: extract its components, create a
|
||||||
disk for the guest using LVM volumes.
|
disk for the guest using LVM volumes.
|
||||||
- start/stop a xen guest (during init or using xenguest-manager directly).
|
- start/stop a xen guest (during init or using xenguest-manager directly).
|
||||||
@@ -23,7 +23,7 @@ Usage
|
|||||||
-----
|
-----
|
||||||
|
|
||||||
xenguest-manager must be called like this:
|
xenguest-manager must be called like this:
|
||||||
`xenguest-manager [-v(v)] OPERATION [OPTIONS]`
|
`xenguest-manager OPERATION [OPTIONS]`
|
||||||
The following operations are available:
|
The following operations are available:
|
||||||
- create XENGUEST_IMAGE [GUESTNAME]: create a guest from a xenguest image file
|
- create XENGUEST_IMAGE [GUESTNAME]: create a guest from a xenguest image file
|
||||||
as guest GUESTNAME. If GUESTNAME is not given the image file name is used
|
as guest GUESTNAME. If GUESTNAME is not given the image file name is used
|
||||||
@@ -37,9 +37,6 @@ The following operations are available:
|
|||||||
- status [GUESTNAME]: print the current status of GUESTNAME. If GUESTNAME is
|
- status [GUESTNAME]: print the current status of GUESTNAME. If GUESTNAME is
|
||||||
not given, print the status of all guests.
|
not given, print the status of all guests.
|
||||||
|
|
||||||
Passing -v or -vv will increase the logging written to the logfile.
|
|
||||||
The terminal will always show only error messages, regardless of the logfile.
|
|
||||||
|
|
||||||
For a detailed help on available options please use:
|
For a detailed help on available options please use:
|
||||||
`xenguest-manager --help`
|
`xenguest-manager --help`
|
||||||
|
|
||||||
@@ -48,20 +45,19 @@ Bitbake parameters
|
|||||||
|
|
||||||
Several parameters are available to configure the xenguest manager during Yocto
|
Several parameters are available to configure the xenguest manager during Yocto
|
||||||
project compilation (those can be set in your project local.conf, for example).
|
project compilation (those can be set in your project local.conf, for example).
|
||||||
This config will be written to a file xenguest-manager.conf in /etc/xenguest/.
|
|
||||||
|
|
||||||
The following parameters are available:
|
The following parameters are available:
|
||||||
|
|
||||||
- XENGUEST_MANAGER_VOLUME_DEVICE: This is the device path used by the
|
- XENGUEST_MANAGER_VOLUME_DEVICE: This is the device path used by the
|
||||||
xenguest-manager on the device to create LVM disks when guests have a disk
|
xenguest-manager on the device to create LVM disks when guests have a disk
|
||||||
configuration.
|
configuration.
|
||||||
This is set by default to "/dev/sda2".
|
This is set by default to "/dev/sda2".
|
||||||
|
|
||||||
- XENGUEST_MANAGER_VOLUME_NAME: This is the LVM volume name that the
|
- XENGUEST_MANAGER_VOLUME_NAME: This is the LVM volume name that the
|
||||||
xenguest-manager will create and use to create guest LVM disks.
|
xenguest-manager will create and use to create guest LVM disks.
|
||||||
This is set by default to "vg-xen".
|
This is set by default to "vg-xen".
|
||||||
|
|
||||||
- XENGUEST_MANAGER_GUEST_DIR: This is the directory on Dom0 where the
|
- XENGUEST_MANAGER_GUEST_DIR: This is the directory on Dom0 where the
|
||||||
xenguest-manager will look for xenguest images to create during init. That's
|
xenguest-manager will look for xenguest images to create during init. That's
|
||||||
the place where xenguest images can be added to have them automatically
|
the place where xenguest images can be added to have them automatically
|
||||||
created during next Dom0 boot. The xenguests found there will only be created
|
created during next Dom0 boot. The xenguests found there will only be created
|
||||||
@@ -69,76 +65,3 @@ The following parameters are available:
|
|||||||
name).
|
name).
|
||||||
This is set by default to "/usr/share/guests".
|
This is set by default to "/usr/share/guests".
|
||||||
|
|
||||||
- XENGUEST_MANAGER_LOG_LEVEL: Set the default log level for xenguest manager.
|
|
||||||
Must be one of ERROR, INFO, VERBOSE (default: ERROR). The logs will be
|
|
||||||
written to /var/log/xenguest.
|
|
||||||
|
|
||||||
If a verbosity argument (-v or -vv) is passed to xenguest-manager directly, it
|
|
||||||
will override the setting in xenguest-manager.conf
|
|
||||||
|
|
||||||
Since /var/log is by default a volatile location, extra configuration is
|
|
||||||
required if logs are desired to be kept between reboots:
|
|
||||||
VOLATILE_LOG_DIR="no"
|
|
||||||
|
|
||||||
Read more here: https://www.yoctoproject.org/docs/latest/mega-manual/mega-manual.html#var-VOLATILE_LOG_DIR
|
|
||||||
|
|
||||||
When this is enabled, logrotate will monitor the file to ensure it does not
|
|
||||||
grow excessively large. See recipes-extended/xenguest/files/logrotate-xenguest
|
|
||||||
|
|
||||||
Init scripts
|
|
||||||
------------
|
|
||||||
|
|
||||||
Shell scripts can be executed on the host when a guest is started. Depending on
|
|
||||||
when the script should be executed it should be installed in a different
|
|
||||||
directory on the target:
|
|
||||||
|
|
||||||
- /etc/xenguest/init.pre : Executed first, prior to guest creation
|
|
||||||
|
|
||||||
- /etc/xenguest/init.d : Executed after guest creation, but before it is started
|
|
||||||
|
|
||||||
- /etc/xenguest/init.post : Executed after starting the guest
|
|
||||||
|
|
||||||
Inside the directory, scripts will be executed in alphabetical order.
|
|
||||||
|
|
||||||
Since these scripts are sourced by xenguest-manager, they can acccess functions
|
|
||||||
and variables from the parent file's scope, including:
|
|
||||||
|
|
||||||
- ${guestname} : The name of the guest being created
|
|
||||||
|
|
||||||
- ${guestdir} : The path to the guest directory
|
|
||||||
|
|
||||||
- ${guestcfgfile} : The name of the config file for the starting guest
|
|
||||||
|
|
||||||
- log() : Used to write a log to the logfile, default level INFO.
|
|
||||||
Takes an optional log level and a message body
|
|
||||||
e.g. log ERROR "blah"
|
|
||||||
|
|
||||||
Options for log level: ERROR, INFO, VERBOSE,
|
|
||||||
and FATAL which will call exit 1 immediately after logging
|
|
||||||
the message at level ERROR.
|
|
||||||
|
|
||||||
- log_command() : Used to call a shell command and log that it has been
|
|
||||||
called, as well as capturing both stdout and stderr.
|
|
||||||
|
|
||||||
By default the command output is dumped to the logfile as an
|
|
||||||
error if the command returns a status > 0, or as a verbose
|
|
||||||
message if the whole script is running in verbose mode.
|
|
||||||
|
|
||||||
An optional log level can be passed to alter the level the
|
|
||||||
log should be if the command returns a status >0, which may
|
|
||||||
be useful if the command is expected to return a non-zero
|
|
||||||
result.
|
|
||||||
e.g. log_command INFO "ls -lh ~"
|
|
||||||
|
|
||||||
Options for log level: ERROR, INFO, and VERBOSE
|
|
||||||
|
|
||||||
Attempting to call any other functions from xenguest_manager in an init script
|
|
||||||
may result in a fatal error, from which cleanup is not guarenteed.
|
|
||||||
|
|
||||||
|
|
||||||
Init scripts also have access to config variables defined in params.cfg.
|
|
||||||
|
|
||||||
An example of how to create the directory and install an init shell script can
|
|
||||||
be found in:
|
|
||||||
recipes-extended/xenguest/xenguest-network.bb
|
|
||||||
Where network-bridge.sh is installed from network-bridge.sh.in
|
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ Xenguest mkimage
|
|||||||
Introduction
|
Introduction
|
||||||
------------
|
------------
|
||||||
|
|
||||||
xenguest-mkimage is a tool to create and modify images to be used as a Guest
|
xenguest-mkimage is a tool to create and modify images to be used as Guest with
|
||||||
with Xen. It defines a format to store completely defined guests as a file or as
|
Xen. It defines a format to store completely defined guests as a file or as
|
||||||
a directory, and provides options to create and modify those images.
|
a directory and provides options to create and modify those images.
|
||||||
|
|
||||||
A xenguest image contains all elements required to create a xen guest.
|
A xenguest image contains all elements required to create a xen guest.
|
||||||
This is the base elements like a Xen configuration and a Linux kernel binary
|
This is the base elements like a Xen configuration and a Linux kernel binary
|
||||||
@@ -15,8 +15,8 @@ but also some more advanced elements like init scripts or a disk definition.
|
|||||||
The format is made to be deployable easily by storing everything in a single
|
The format is made to be deployable easily by storing everything in a single
|
||||||
file and provide tools to easily manipulate the images. It can also easily be
|
file and provide tools to easily manipulate the images. It can also easily be
|
||||||
extended to have features like encryption or signature of images, updates or
|
extended to have features like encryption or signature of images, updates or
|
||||||
complex configurations by providing the ability to have init scripts embedded
|
complex configurations by providing features to have init script that will be
|
||||||
inside the image that will be executed on the host when the guest is started.
|
executed on the host embedded inside the image.
|
||||||
|
|
||||||
Xenguest images content
|
Xenguest images content
|
||||||
-----------------------
|
-----------------------
|
||||||
@@ -35,7 +35,7 @@ before starting the guest.
|
|||||||
|
|
||||||
### files
|
### files
|
||||||
This directory contains files that can be used by the xen configuration, for
|
This directory contains files that can be used by the xen configuration, for
|
||||||
example the kernel image referenced in xen configuration.
|
example the binary of the kernel referenced in xen configuration).
|
||||||
This is where the kernel binary, the dtb or a ramdisk will be stored.
|
This is where the kernel binary, the dtb or a ramdisk will be stored.
|
||||||
|
|
||||||
### init.pre, init.d and init.post
|
### init.pre, init.d and init.post
|
||||||
@@ -47,7 +47,7 @@ contains scripts called at a different time:
|
|||||||
generate part of the xen configuration dynamically.
|
generate part of the xen configuration dynamically.
|
||||||
- init.d: scripts executed when the guest has been created but before it is
|
- init.d: scripts executed when the guest has been created but before it is
|
||||||
started. This can be used to do some xenstore operations or configure the
|
started. This can be used to do some xenstore operations or configure the
|
||||||
guest behaviour, using xl for example.
|
guest behaviour using xl, for example.
|
||||||
- init.post: scripts executed just after starting the guest. This can be
|
- init.post: scripts executed just after starting the guest. This can be
|
||||||
used to configure things created by xen for the guest like network
|
used to configure things created by xen for the guest like network
|
||||||
network interfaces.
|
network interfaces.
|
||||||
@@ -58,19 +58,12 @@ order.
|
|||||||
### disk.cfg and disk-files
|
### disk.cfg and disk-files
|
||||||
disk.cfg contains the guest disk description (disk size and disk partitions).
|
disk.cfg contains the guest disk description (disk size and disk partitions).
|
||||||
The file contains the following entries:
|
The file contains the following entries:
|
||||||
- `DISK_SIZE=X`: size of the disk to create in MB or GB(default),
|
- `DISK_SIZE=X`: size of the disk to create in GB
|
||||||
e.g. 1000M or 4[G]
|
|
||||||
- `DISK_PARTX=SIZE:FS:CONTENT`: create a partition number X (1 to 4) with a
|
- `DISK_PARTX=SIZE:FS:CONTENT`: create a partition number X (1 to 4) with a
|
||||||
size of SIZE MB or GB(default), e.g 1000M or 2[G].
|
size of SIZE GB, format it with filesystem FS (can be ext2, ext3, ext4, vfat
|
||||||
Format it with filesystem FS (can be ext2, ext3, ext4, vfat or swap)
|
or swap) and extract CONTENT as initial partition content
|
||||||
and extract CONTENT as initial partition content (.tar[.gz|.xz|.bz2] file
|
(.tar[.gz|.xz|.bz2] file or img[.gz|.bz2] file to be dumped in the partition). FS and
|
||||||
or img[.gz|.bz2] file to be dumped in the partition).
|
CONTENT can be empty.
|
||||||
FS and CONTENT can be empty.
|
|
||||||
- `DISK_DEVICE=X`: disk or partition to be used by lvm. Setting this option
|
|
||||||
allows to bind guest disk with any partition or disk available on host,
|
|
||||||
e.g. /dev/sda3 or /dev/sdb.
|
|
||||||
This variable is not set by default, but if set, it overrides disk settings
|
|
||||||
inside xenguest-manager.conf - 'XENGUEST_VOLUME_DEVICE'.
|
|
||||||
|
|
||||||
The disk-files contain files to be used for initializing the disk partitions
|
The disk-files contain files to be used for initializing the disk partitions
|
||||||
content. Those should be used to create a LVM or a physical disk and initialize
|
content. Those should be used to create a LVM or a physical disk and initialize
|
||||||
@@ -106,18 +99,16 @@ For a detailed help on available operations, please use:
|
|||||||
times to add several command line options.
|
times to add several command line options.
|
||||||
- --xen-device-tree=FILE: add dtb FILE as device tree. This both adding the
|
- --xen-device-tree=FILE: add dtb FILE as device tree. This both adding the
|
||||||
file to the image and modifying the xen configuration to use it.
|
file to the image and modifying the xen configuration to use it.
|
||||||
- --xen-ramdisk=FILE: add ramdisk FILE as guest ramdisk. This both adding the
|
|
||||||
file to the image and modifying the xen configuration to use it.
|
|
||||||
- --init-script=FILE: add guest init script. The script is embedded inside the
|
- --init-script=FILE: add guest init script. The script is embedded inside the
|
||||||
image file. Several script can be added and the basename of FILE is used to
|
image file. Several script can be added and the basename of FILE is used to
|
||||||
distinguish them (calling the option twice with the same file will update the
|
distinguish them (calling the option twice with the same file will update the
|
||||||
script in the image with the second one).
|
script in the image with the second one).
|
||||||
--disk-size=SIZE: set the guest disk size to SIZE in MB or GB(default),
|
--disk-size=SIZE: set the guest disk size to SIZE in GB. Calling this with 0
|
||||||
e.g 1000M or 2[G]. Calling this with 0 disable the guest disk.
|
disable the guest disk.
|
||||||
- --disk-add-part=NUM:SIZE:FS:CONTENT: This is adding a partition to the
|
- --disk-add-part=NUM:SIZE:FS:CONTENT: This is adding a partition to the
|
||||||
xenguest image disk. The partition is described with the arguments:
|
xenguest image disk. The partition is described with the arguments:
|
||||||
- NUM: partition number.
|
- NUM: partition number.
|
||||||
- SIZE: partition size in MB or GB(default), e.g 1000M or 2[G].
|
- SIZE: partition size in GB.
|
||||||
- FS: filesystem to format the partition with. This can be ext2, ext3, ext4,
|
- FS: filesystem to format the partition with. This can be ext2, ext3, ext4,
|
||||||
vfat of swap. If empty the partition is not formated.
|
vfat of swap. If empty the partition is not formated.
|
||||||
- CONTENT: tar of img file to use to initialize the partition. The file must
|
- CONTENT: tar of img file to use to initialize the partition. The file must
|
||||||
|
|||||||
@@ -0,0 +1,49 @@
|
|||||||
|
xenguest network bridge
|
||||||
|
=======================
|
||||||
|
|
||||||
|
Introduction
|
||||||
|
------------
|
||||||
|
|
||||||
|
xenguest-network-bridge is creating a network bridge to allow some guests to
|
||||||
|
have a direct connection to the external network.
|
||||||
|
To do this, a bridge is created on the host using brctl with the network
|
||||||
|
interfaces added to it so that the bridge is connected to the external network.
|
||||||
|
It is also adding a guest init script which will, for guests configured to use
|
||||||
|
it, create a virtual network interface for the guest and connect it to the
|
||||||
|
network bridge on the host.
|
||||||
|
|
||||||
|
Usage
|
||||||
|
-----
|
||||||
|
|
||||||
|
On the host the package xenguest-network-bridge must be included in your image.
|
||||||
|
|
||||||
|
On the xenguest image of your guest, the parameter NETWORK_BRIDGE must be set
|
||||||
|
to 1 (using xenguest-mkimage --set-param=NETWORK_BRIDGE=1).
|
||||||
|
|
||||||
|
Bitbake parameters
|
||||||
|
------------------
|
||||||
|
Several parameters are available to configure the xenguest network bridge
|
||||||
|
during Yocto project compilation (those can be set in your project local.conf,
|
||||||
|
for example).
|
||||||
|
|
||||||
|
The following parameters are available:
|
||||||
|
|
||||||
|
- XENGUEST_NETWORK_BRIDGE_NAME: This variable defines the name of the network
|
||||||
|
bridge that is created on the host during init.
|
||||||
|
This is set by default to "xenbr0".
|
||||||
|
|
||||||
|
- XENGUEST_NETWORK_BRIDGE_MEMBERS: This variable defines the list of network
|
||||||
|
interfaces that are added to the bridge when it is created on the host during
|
||||||
|
init.
|
||||||
|
This is set by default to "eth0".
|
||||||
|
|
||||||
|
- XENGUEST_NETWORK_BRIDGE_CONFIG: This variable defines the configuration file
|
||||||
|
to use to configure the bridge network. By default it points to have file
|
||||||
|
configuring the network using dhcp.
|
||||||
|
You can provide a different file using a bbappend and make this variable
|
||||||
|
point to it if you want to customize your network configuration.
|
||||||
|
|
||||||
|
- XENGUEST_IMAGE_NETWORK_BRIDGE: This variable can be set to 0 or 1 on guest
|
||||||
|
projects to enable or not the connection of the guest to the host bridge.
|
||||||
|
This is set by default to "1".
|
||||||
|
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
Xenguest Network
|
|
||||||
================
|
|
||||||
|
|
||||||
Introduction
|
|
||||||
------------
|
|
||||||
|
|
||||||
The xenguest-network package is primarly creating a network bridge to share
|
|
||||||
the host eth physical interfaces with the guests virtual interfaces (vif).
|
|
||||||
This way the guests can have access to the external network.
|
|
||||||
|
|
||||||
At the moment 3 types of network arrangements are provided:
|
|
||||||
|
|
||||||
- Bridge: where the guest vif is added to the created bridge interface;
|
|
||||||
|
|
||||||
- NAT: where a private subnet is created for the guest,
|
|
||||||
a kea dhcp4 server is started on the host to serve the guest
|
|
||||||
and the proper iptables rules are created
|
|
||||||
to allow the guest to access the external network;
|
|
||||||
|
|
||||||
- None: the guest vif is not connected to the bridge.
|
|
||||||
|
|
||||||
Usage
|
|
||||||
-----
|
|
||||||
|
|
||||||
On the host project the package xenguest-network must be included in your
|
|
||||||
image, and on the guest project the XENGUEST_NETWORK_TYPE needs to be set to
|
|
||||||
"bridge", "nat" or "none".
|
|
||||||
|
|
||||||
Bitbake parameters
|
|
||||||
------------------
|
|
||||||
|
|
||||||
Several parameters are available to configure the xenguest network bridge
|
|
||||||
during Yocto project compilation (those can be set in your project local.conf
|
|
||||||
or xenguest-network.bbappend, for example).
|
|
||||||
|
|
||||||
The following parameters are available:
|
|
||||||
|
|
||||||
- XENGUEST_NETWORK_BRIDGE_NAME: This variable defines the name of the network
|
|
||||||
bridge that is created on the host during init.
|
|
||||||
This is set by default to "xenbr0".
|
|
||||||
|
|
||||||
- XENGUEST_NETWORK_BRIDGE_MEMBERS: This variable defines the list of the
|
|
||||||
physical network interfaces that are added to the bridge when it is created
|
|
||||||
on the host during init.
|
|
||||||
By default no physical interfaces are added.
|
|
||||||
|
|
||||||
- XENGUEST_NETWORK_BRIDGE_CONFIG: This variable defines the configuration file
|
|
||||||
to use to configure the bridge network. By default it points to have file
|
|
||||||
configuring the network using dhcp.
|
|
||||||
You can provide a different file using a bbappend and make this variable
|
|
||||||
point to it if you want to customize your network configuration.
|
|
||||||
|
|
||||||
- XENGUEST_IMAGE_NETWORK_TYPE: This variable can be set to "bridge" (default),
|
|
||||||
"nat" or "none".
|
|
||||||
The **bridge** type will add the domU vif interface to a bridge which also
|
|
||||||
contains the dom0 physical interface giving the guest direct access to the
|
|
||||||
external network.
|
|
||||||
The **nat** type will setup a private network between dom0 and domU, setup
|
|
||||||
the appropriate routing table, configure and run the kea dhcp4 server
|
|
||||||
on dom0 to serve the domU and apply the iptables rules to allow the guest
|
|
||||||
to acess the external network. The kea dhcp4 server configuration for
|
|
||||||
the guest can be customised by replacing the
|
|
||||||
"meta-arm-autonomy/recipes-extended/xenguest/files/kea-subnet4.json" file
|
|
||||||
in a xenguest-network.bbappend. The kea-subnet4.json file is installed in
|
|
||||||
the xenguest image and copied to
|
|
||||||
"/etc/xenguest/guests/${guestname}/files/kea-subnet4.json" when the guest
|
|
||||||
image is created. It will be consumed by the
|
|
||||||
"/etc/xen/scripts/vif-post.d/00-vif-xenguest.hook" script which is called by
|
|
||||||
"/etc/xen/scripts/vif-nat" script when starting/stopping the xenguest.
|
|
||||||
After guest start, "/etc/xenguest/init.post/xenguest-network-init-post.sh"
|
|
||||||
script is called to reload kea dhcp4 server with updated configuration,
|
|
||||||
after virtual network interface is ready.
|
|
||||||
In the guest project, the NAT port forward can be customised by changing
|
|
||||||
the XENGUEST_IMAGE_HOST_PORT (default: "1000 + ${domid}") and
|
|
||||||
XENGUEST_IMAGE_GUEST_PORT (default: "22") variables in local.conf or
|
|
||||||
xenguest-base-image.bbappend. This configuration is implemented and installed
|
|
||||||
in "/etc/xenguest/guests/${guestname}/files/00-xenguest-nat-port-forward.hook"
|
|
||||||
script which is called by "/etc/xen/scripts/vif-post.d/00-vif-xenguest.hook".
|
|
||||||
The **none** type will not affect any networking setting between on dom0 and
|
|
||||||
domU.
|
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
# Require extra machine specific settings
|
|
||||||
ARM_BSP_DYN_MACHINE_EXTRA_REQUIRE ?= ""
|
|
||||||
ARM_BSP_DYN_MACHINE_EXTRA_REQUIRE_n1sdp = "n1sdp-extra-settings.inc"
|
|
||||||
ARM_BSP_DYN_MACHINE_EXTRA_REQUIRE_fvp-base = "fvp-base-extra-settings.inc"
|
|
||||||
ARM_BSP_DYN_MACHINE_EXTRA_REQUIRE_juno = "juno-extra-settings.inc"
|
|
||||||
|
|
||||||
require ${ARM_BSP_DYN_MACHINE_EXTRA_REQUIRE}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# Extra machine settings for fvp-base
|
|
||||||
|
|
||||||
# FVP uses vda as hard drive and partition 2 is the
|
|
||||||
# default rootfs, so use vda3 for guest lvm
|
|
||||||
XENGUEST_MANAGER_VOLUME_DEVICE ?= "/dev/vda3"
|
|
||||||
|
|
||||||
XENGUEST_NETWORK_BRIDGE_MEMBERS ?= "eth0"
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# Extra machine settings for juno
|
|
||||||
KERNEL_ALT_IMAGETYPE = "Image.lzma"
|
|
||||||
|
|
||||||
# Juno board has 2 network interfaces, add both of them to the bridge
|
|
||||||
XENGUEST_NETWORK_BRIDGE_MEMBERS ?= "eth0 eth1"
|
|
||||||
XEN_DEVICETREE_DOM0_SIZE ?= "0x02400000"
|
|
||||||
|
|
||||||
# We need to extend the wks search path to be able to find the wks file set in
|
|
||||||
# ARM_AUTONOMY_WKS_FILE.
|
|
||||||
WKS_SEARCH_PATH_prepend := "${ARM_AUTONOMY_ARM_BSP_DYNAMIC_DIR}/wic:"
|
|
||||||
|
|
||||||
ARM_AUTONOMY_WKS_FILE ?= "arm-autonomy-juno-disk.wks.in"
|
|
||||||
# set wks file only if INITRAMFS_IMAGE_BUNDLE is not set
|
|
||||||
WKS_FILE = "${@bb.utils.contains('INITRAMFS_IMAGE_BUNDLE', '1', '',\
|
|
||||||
'${ARM_AUTONOMY_WKS_FILE}', d)}"
|
|
||||||
|
|
||||||
# Set the wks guest partition size and unit. It must be aligned with the sum of
|
|
||||||
# all XENGUEST_IMAGE_DISK_SIZE set for the guests. By default, LVM2 metadata is
|
|
||||||
# 1 MiB per physical volume, hence it needs to be taken into account when
|
|
||||||
# setting GUEST_PART_SIZE. The XENGUEST_IMAGE_DISK_SIZE default value is 4GiB.
|
|
||||||
GUEST_PART_SIZE ?= "4097"
|
|
||||||
GUEST_PART_SIZE_UNIT ?= "M"
|
|
||||||
|
|
||||||
# set wic image type only if INITRAMFS_IMAGE_BUNDLE is not set
|
|
||||||
IMAGE_FSTYPES += "${@bb.utils.contains('INITRAMFS_IMAGE_BUNDLE', '1', '',\
|
|
||||||
'wic wic.gz wic.bmap', d)}"
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
# Extra machine settings for n1sdp
|
|
||||||
|
|
||||||
# We need to extent the wks search path to be able to find the wks file set in
|
|
||||||
# ARM_AUTONOMY_WKS_FILE.
|
|
||||||
WKS_SEARCH_PATH_prepend := "${ARM_AUTONOMY_ARM_BSP_DYNAMIC_DIR}/wic:"
|
|
||||||
|
|
||||||
ARM_AUTONOMY_WKS_FILE ?= "arm-autonomy-n1sdp-efidisk.wks.in"
|
|
||||||
WKS_FILE = "${ARM_AUTONOMY_WKS_FILE}"
|
|
||||||
|
|
||||||
# Set the wks guest partition size and unit. It must be aligned with the sum of
|
|
||||||
# all XENGUEST_IMAGE_DISK_SIZE set for the guests. By default, LVM2 metadata is
|
|
||||||
# 1 MiB per physical volume, hence it needs to be taken into account when
|
|
||||||
# setting GUEST_PART_SIZE. The XENGUEST_IMAGE_DISK_SIZE default value is 4GiB.
|
|
||||||
GUEST_PART_SIZE ?= "4097"
|
|
||||||
GUEST_PART_SIZE_UNIT ?= "M"
|
|
||||||
|
|
||||||
# Set default boot partition size and unit
|
|
||||||
BOOT_PART_SIZE ?= "100"
|
|
||||||
BOOT_PART_SIZE_UNIT ?= "M"
|
|
||||||
|
|
||||||
# The GRUB_CFG_FILE affects arm-autonomy-n1sdp-efidisk.wks.in file
|
|
||||||
#
|
|
||||||
# When alternate-kernel DISTRO_FEATURE is present we set the
|
|
||||||
# arm-autonomy-n1sdp-rt-grub.cfg by default. This GRUB config file has
|
|
||||||
# additional entries for booting with the PREEMPT_RT kernel.
|
|
||||||
GRUB_CFG_FILE ?= "${@bb.utils.contains('DISTRO_FEATURES','alternate-kernel', \
|
|
||||||
'${ARM_AUTONOMY_ARM_BSP_DYNAMIC_DIR}/wic/arm-autonomy-n1sdp-rt-grub.cfg', \
|
|
||||||
'${ARM_AUTONOMY_ARM_BSP_DYNAMIC_DIR}/wic/arm-autonomy-n1sdp-grub.cfg' \
|
|
||||||
, d)}"
|
|
||||||
|
|
||||||
# From arm-autonomy-n1sdp-efidisk.wks.in, the /boot partition is /dev/sda1, and
|
|
||||||
# the "/" partition is /dev/sda2.
|
|
||||||
XENGUEST_MANAGER_VOLUME_DEVICE ?= "/dev/sda3"
|
|
||||||
|
|
||||||
XENGUEST_NETWORK_BRIDGE_MEMBERS ?= "eth0"
|
|
||||||
|
|
||||||
# The XEN_DEVICETREE_DEPEND and XEN_DEVICETREE_DTBS variables aftect the
|
|
||||||
# xen-devicetree.bb recipe
|
|
||||||
XEN_DEVICETREE_DEPEND = "virtual/trusted-firmware-a:do_deploy"
|
|
||||||
XEN_DEVICETREE_DTBS ?= "n1sdp-single-chip.dtb"
|
|
||||||
# XEN_MOD_DEVICETREE_DTBS are the generated devicetrees for Xen. By default the
|
|
||||||
# xen-devicetree.bb recipe adds '-xen' suffix to it
|
|
||||||
XEN_MOD_DEVICETREE_DTBS ?= "n1sdp-single-chip-xen.dtb"
|
|
||||||
|
|
||||||
# When generating the wic image we need to have the xen deployed
|
|
||||||
do_image_wic[depends] += "xen:do_deploy"
|
|
||||||
|
|
||||||
# Select the extra files to be included in the boot partition
|
|
||||||
IMAGE_EFI_BOOT_FILES += "xen-n1sdp.efi;xen.efi"
|
|
||||||
IMAGE_EFI_BOOT_FILES += "${XEN_MOD_DEVICETREE_DTBS}"
|
|
||||||
|
|
||||||
# When alternate-kernel DISTRO_FEATURE is present we set the linux-yocto-rt
|
|
||||||
# by default
|
|
||||||
PREFERRED_PROVIDER_alternate/kernel ?= "\
|
|
||||||
${@bb.utils.contains('DISTRO_FEATURES', 'alternate-kernel', \
|
|
||||||
'linux-yocto-rt', '', d)}"
|
|
||||||
|
|
||||||
KERNEL_PACKAGE_NAME_alternate/kernel ?= "kernel-rt"
|
|
||||||
# When alternate-kernel DISTRO_FEATURE is present we set the kernel-rt by
|
|
||||||
# default
|
|
||||||
KERNEL_PACKAGE_NAME_pn-linux-yocto-rt = "\
|
|
||||||
${@ d.getVar('KERNEL_PACKAGE_NAME_alternate/kernel') \
|
|
||||||
if bb.utils.contains('DISTRO_FEATURES', 'alternate-kernel', True, False, d) \
|
|
||||||
else 'kernel' }"
|
|
||||||
|
|
||||||
# Relative path from DEPLOY_DIR_IMAGE of the Kernel PREEMPT_RT deployed Image
|
|
||||||
KERNEL_RT_IMAGE ?= "kernel-rt/Image-n1sdp.bin;Image-preempt-rt"
|
|
||||||
# Only include the Kernel PREEMPT_RT Image if we are building with
|
|
||||||
# alternate-kernel DISTRO_FEATURE
|
|
||||||
IMAGE_EFI_BOOT_FILES += "\
|
|
||||||
${@ d.getVar('KERNEL_RT_IMAGE',d) or '' \
|
|
||||||
if bb.utils.contains('DISTRO_FEATURES', 'alternate-kernel', True, False, d) and \
|
|
||||||
d.getVar('PREFERRED_PROVIDER_alternate/kernel') else ''}"
|
|
||||||
|
|
||||||
|
|
||||||
EFIDIR ?= "/EFI/BOOT"
|
|
||||||
GRUB_CFG_EXTRA_FILE ?= "${ARM_AUTONOMY_ARM_BSP_DYNAMIC_DIR}/wic/arm-autonomy-n1sdp-grub.cfg;.${EFIDIR}}"
|
|
||||||
|
|
||||||
# When alternate-kernel DISTRO_FEATURE is present we set the
|
|
||||||
# arm-autonomy-n1sdp-rt-grub.cfg by default. This GRUB config file has
|
|
||||||
# additional entries for booting with the PREEMPT_RT kernel and also includes
|
|
||||||
# the main GRUB config file set by GRUB_CFG_EXTRA_FILE.
|
|
||||||
IMAGE_EFI_BOOT_FILES += "\
|
|
||||||
${@ d.getVar('GRUB_CFG_EXTRA_FILE',d) or '' \
|
|
||||||
if bb.utils.contains('DISTRO_FEATURES', 'alternate-kernel', True, False, d) and \
|
|
||||||
d.getVar('PREFERRED_PROVIDER_alternate/kernel') else ''}"
|
|
||||||
+9
-38
@@ -1,50 +1,21 @@
|
|||||||
# Use OVERRIDES to minimize the usage of
|
# Use OVERRIDES to minimize the usage of
|
||||||
# ${@bb.utils.contains('DISTRO_FEATURES', 'autonomy-host', ...
|
# ${@bb.utils.contains('DISTRO_FEATURES', 'xen', ...
|
||||||
OVERRIDES_append = "${@bb.utils.contains('DISTRO_FEATURES', 'arm-autonomy-host', ':autonomy-host', '', d)}"
|
OVERRIDES_append = "${@bb.utils.contains('DISTRO_FEATURES', 'xen', ':xen', '', d)}"
|
||||||
|
|
||||||
FILESEXTRAPATHS_prepend_autonomy-host := "${THISDIR}/${PN}:"
|
FILESEXTRAPATHS_prepend_xen := "${THISDIR}/${PN}:"
|
||||||
|
|
||||||
DEPENDS_append_autonomy-host = " dos2unix-native"
|
|
||||||
|
|
||||||
SRC_URI_append_autonomy-host = " file://add-xen-support.patch;patchdir=../"
|
|
||||||
|
|
||||||
do_install_append_autonomy-host() {
|
|
||||||
mv -v ${D}/${UNPACK_DIR}/SOFTWARE/uEnv.txt \
|
|
||||||
${D}/${UNPACK_DIR}/SOFTWARE/uenvfile
|
|
||||||
for dir in $(ls ${D}/${UNPACK_DIR}/SITE1/)
|
|
||||||
do
|
|
||||||
unix2dos ${D}/${UNPACK_DIR}/SITE1/${dir}/images.txt
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
DEPLOY_EXTRA_DEPS ??= ""
|
DEPLOY_EXTRA_DEPS ??= ""
|
||||||
DEPLOY_EXTRA_DEPS_autonomy-host = "xen:do_deploy xen-devicetree:do_deploy"
|
DEPLOY_EXTRA_DEPS_xen = "xen:do_deploy xen-devicetree:do_deploy"
|
||||||
|
|
||||||
do_deploy[depends] += "${DEPLOY_EXTRA_DEPS}"
|
do_deploy[depends] += "${DEPLOY_EXTRA_DEPS}"
|
||||||
|
|
||||||
do_deploy_prepend_autonomy-host() {
|
do_deploy_prepend_xen() {
|
||||||
# To avoid dependency loop between firmware-image-juno:do_install,
|
# To avoid dependency loop between firmware-image-juno:do_install,
|
||||||
# xen:do_deploy and xen-devicetree:do_deploy when
|
# xen:do_deploy and xen-devicetree:do_deploy when
|
||||||
# INITRAMFS_IMAGE_BUNDLE = "1", we need to handle the xen and
|
# INITRAMFS_IMAGE_BUNDLE = "1", we need to handle the xen and
|
||||||
# xen-devicetree binaries copying in the do_deploy task.
|
# xen-devicetree binaries copying in the do_deploy task.
|
||||||
|
cp ${DEPLOY_DIR_IMAGE}/xen-${COMPATIBLE_MACHINE}.efi \
|
||||||
mkdir -p ${D}/${UNPACK_DIR}/SOFTWARE/XEN
|
${D}/${UNPACK_DIR}/SOFTWARE/xen
|
||||||
cp -v ${DEPLOY_DIR_IMAGE}/xen-${COMPATIBLE_MACHINE}.efi \
|
cp ${DEPLOY_DIR_IMAGE}/*xen.dtb \
|
||||||
${D}/${UNPACK_DIR}/SOFTWARE/XEN/xen
|
${D}/${UNPACK_DIR}/SOFTWARE/
|
||||||
|
|
||||||
for dtb in $(basename -s .dtb ${KERNEL_DEVICETREE})
|
|
||||||
do
|
|
||||||
cp -v ${DEPLOY_DIR_IMAGE}/${dtb}-xen.dtb \
|
|
||||||
${D}/${UNPACK_DIR}/SOFTWARE/XEN/${dtb}.dtb
|
|
||||||
done
|
|
||||||
|
|
||||||
bbnote "Xen binaries added under SOFTWARE/XEN directory"
|
|
||||||
|
|
||||||
if [ "${INITRAMFS_IMAGE_BUNDLE}" != "1" -a "${KERNEL_ALT_IMAGETYPE}" = "Image.lzma" ]; then
|
|
||||||
# KERNEL_ALT_IMAGETYPE is expected to be Image.lzma,
|
|
||||||
# however NOR flash filesystem is DOS compatible with 8.3 naming,
|
|
||||||
# so we need to replace ".lzma" with ".lzm"
|
|
||||||
cp -L -f ${DEPLOY_DIR_IMAGE}/${KERNEL_ALT_IMAGETYPE} \
|
|
||||||
${D}/${UNPACK_DIR}/SOFTWARE/Image.lzm
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|||||||
-173
@@ -1,173 +0,0 @@
|
|||||||
arm-bsp/firmware-image-juno: add xen support
|
|
||||||
|
|
||||||
This patch adds xen and dtbs binaries entries to images-r[012].txt files.
|
|
||||||
These images-r[012].txt files contain NOR filesystem entries details,
|
|
||||||
like file offset, name, path etc.
|
|
||||||
|
|
||||||
It also adds customization for uEnv.txt file, that allows to autoboot xen.
|
|
||||||
|
|
||||||
Upstream-Status: Inappropriate [configuration]
|
|
||||||
Signed-off-by: Kamil Dziezyk <kamil.dziezyk@arm.com>
|
|
||||||
|
|
||||||
diff -u a/images-r0.txt b/images-r0.txt
|
|
||||||
--- a/images-r0.txt 2020-11-25 20:25:38.677687712 +0100
|
|
||||||
+++ b/images-r0.txt 2020-11-25 20:36:55.482194294 +0100
|
|
||||||
@@ -1,7 +1,7 @@
|
|
||||||
TITLE: Versatile Express Images Configuration File
|
|
||||||
|
|
||||||
[IMAGES]
|
|
||||||
-TOTALIMAGES: 10 ;Number of Images (Max: 32)
|
|
||||||
+TOTALIMAGES: 11 ;Number of Images (Max: 32)
|
|
||||||
|
|
||||||
NOR0UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR0ADDRESS: 0x00000000 ;Image Flash Address
|
|
||||||
@@ -17,14 +17,14 @@
|
|
||||||
|
|
||||||
NOR2UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR2ADDRESS: 0x00500000 ;Image Flash Address
|
|
||||||
-NOR2FILE: \SOFTWARE\Image ;Image File Name
|
|
||||||
-NOR2NAME: norkern ;Rename kernel to norkern
|
|
||||||
+NOR2FILE: \SOFTWARE\Image.lzm ;Image File Name
|
|
||||||
+NOR2NAME: norkern.lzm ;Rename kernel to norkern.lzm
|
|
||||||
NOR2LOAD: 00000000 ;Image Load Address
|
|
||||||
NOR2ENTRY: 00000000 ;Image Entry Point
|
|
||||||
|
|
||||||
NOR3UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR3ADDRESS: 0x02900000 ;Image Flash Address
|
|
||||||
-NOR3FILE: \SOFTWARE\juno.dtb ;Image File Name
|
|
||||||
+NOR3FILE: \SOFTWARE\XEN\juno.dtb ;Image File Name
|
|
||||||
NOR3NAME: board.dtb ;Specify target filename to preserve file extension
|
|
||||||
NOR3LOAD: 00000000 ;Image Load Address
|
|
||||||
NOR3ENTRY: 00000000 ;Image Entry Point
|
|
||||||
@@ -64,8 +64,13 @@
|
|
||||||
NOR9UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR9ADDRESS: 0x02A80000 ;Image Flash Address
|
|
||||||
NOR9NAME: uEnv.txt
|
|
||||||
-NOR9FILE: \SOFTWARE\uEnv.txt ;Image File Name
|
|
||||||
+NOR9FILE: \SOFTWARE\uenvfile ;Image File Name
|
|
||||||
NOR9LOAD: 00000000 ;Image Load Address
|
|
||||||
NOR9ENTRY: 00000000 ;Image Entry Point
|
|
||||||
|
|
||||||
-
|
|
||||||
+NOR10UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
+NOR10ADDRESS: 0x03000000 ;Image Flash Address
|
|
||||||
+NOR10FILE: \SOFTWARE\XEN\xen ;Image File Name
|
|
||||||
+NOR10NAME: xen
|
|
||||||
+NOR10LOAD: 00000000 ;Image Load Address
|
|
||||||
+NOR10ENTRY: 00000000 ;Image Entry Point
|
|
||||||
diff -u a/images-r1.txt b/images-r1.txt
|
|
||||||
--- a/images-r1.txt 2020-11-25 20:40:19.005177152 +0100
|
|
||||||
+++ b/images-r1.txt 2020-11-25 20:41:17.500886263 +0100
|
|
||||||
@@ -1,7 +1,7 @@
|
|
||||||
TITLE: Versatile Express Images Configuration File
|
|
||||||
|
|
||||||
[IMAGES]
|
|
||||||
-TOTALIMAGES: 10 ;Number of Images (Max: 32)
|
|
||||||
+TOTALIMAGES: 11 ;Number of Images (Max: 32)
|
|
||||||
|
|
||||||
NOR0UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR0ADDRESS: 0x00000000 ;Image Flash Address
|
|
||||||
@@ -17,14 +17,14 @@
|
|
||||||
|
|
||||||
NOR2UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR2ADDRESS: 0x00500000 ;Image Flash Address
|
|
||||||
-NOR2FILE: \SOFTWARE\Image ;Image File Name
|
|
||||||
-NOR2NAME: norkern ;Rename kernel to norkern
|
|
||||||
+NOR2FILE: \SOFTWARE\Image.lzm ;Image File Name
|
|
||||||
+NOR2NAME: norkern.lzm ;Rename kernel to norkern.lzm
|
|
||||||
NOR2LOAD: 00000000 ;Image Load Address
|
|
||||||
NOR2ENTRY: 00000000 ;Image Entry Point
|
|
||||||
|
|
||||||
NOR3UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR3ADDRESS: 0x02900000 ;Image Flash Address
|
|
||||||
-NOR3FILE: \SOFTWARE\juno-r1.dtb ;Image File Name
|
|
||||||
+NOR3FILE: \SOFTWARE\XEN\juno-r1.dtb ;Image File Name
|
|
||||||
NOR3NAME: board.dtb ;Specify target filename to preserve file extension
|
|
||||||
NOR3LOAD: 00000000 ;Image Load Address
|
|
||||||
NOR3ENTRY: 00000000 ;Image Entry Point
|
|
||||||
@@ -64,8 +64,13 @@
|
|
||||||
NOR9UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR9ADDRESS: 0x02A80000 ;Image Flash Address
|
|
||||||
NOR9NAME: uEnv.txt
|
|
||||||
-NOR9FILE: \SOFTWARE\uEnv.txt ;Image File Name
|
|
||||||
+NOR9FILE: \SOFTWARE\uenvfile ;Image File Name
|
|
||||||
NOR9LOAD: 00000000 ;Image Load Address
|
|
||||||
NOR9ENTRY: 00000000 ;Image Entry Point
|
|
||||||
|
|
||||||
-
|
|
||||||
+NOR10UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
+NOR10ADDRESS: 0x03000000 ;Image Flash Address
|
|
||||||
+NOR10FILE: \SOFTWARE\XEN\xen ;Image File Name
|
|
||||||
+NOR10NAME: xen
|
|
||||||
+NOR10LOAD: 00000000 ;Image Load Address
|
|
||||||
+NOR10ENTRY: 00000000 ;Image Entry Point
|
|
||||||
diff -u a/images-r2.txt b/images-r2.txt
|
|
||||||
--- a/images-r2.txt 2020-11-25 20:40:30.625119321 +0100
|
|
||||||
+++ b/images-r2.txt 2020-11-25 20:41:30.720820597 +0100
|
|
||||||
@@ -1,7 +1,7 @@
|
|
||||||
TITLE: Versatile Express Images Configuration File
|
|
||||||
|
|
||||||
[IMAGES]
|
|
||||||
-TOTALIMAGES: 10 ;Number of Images (Max: 32)
|
|
||||||
+TOTALIMAGES: 11 ;Number of Images (Max: 32)
|
|
||||||
|
|
||||||
NOR0UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR0ADDRESS: 0x00000000 ;Image Flash Address
|
|
||||||
@@ -17,14 +17,14 @@
|
|
||||||
|
|
||||||
NOR2UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR2ADDRESS: 0x00500000 ;Image Flash Address
|
|
||||||
-NOR2FILE: \SOFTWARE\Image ;Image File Name
|
|
||||||
-NOR2NAME: norkern ;Rename kernel to norkern
|
|
||||||
+NOR2FILE: \SOFTWARE\Image.lzm ;Image File Name
|
|
||||||
+NOR2NAME: norkern.lzm ;Rename kernel to norkern.lzm
|
|
||||||
NOR2LOAD: 00000000 ;Image Load Address
|
|
||||||
NOR2ENTRY: 00000000 ;Image Entry Point
|
|
||||||
|
|
||||||
NOR3UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR3ADDRESS: 0x02900000 ;Image Flash Address
|
|
||||||
-NOR3FILE: \SOFTWARE\juno-r2.dtb ;Image File Name
|
|
||||||
+NOR3FILE: \SOFTWARE\XEN\juno-r2.dtb ;Image File Name
|
|
||||||
NOR3NAME: board.dtb ;Specify target filename to preserve file extension
|
|
||||||
NOR3LOAD: 00000000 ;Image Load Address
|
|
||||||
NOR3ENTRY: 00000000 ;Image Entry Point
|
|
||||||
@@ -64,8 +64,13 @@
|
|
||||||
NOR9UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
NOR9ADDRESS: 0x02A80000 ;Image Flash Address
|
|
||||||
NOR9NAME: uEnv.txt
|
|
||||||
-NOR9FILE: \SOFTWARE\uEnv.txt ;Image File Name
|
|
||||||
+NOR9FILE: \SOFTWARE\uenvfile ;Image File Name
|
|
||||||
NOR9LOAD: 00000000 ;Image Load Address
|
|
||||||
NOR9ENTRY: 00000000 ;Image Entry Point
|
|
||||||
|
|
||||||
-
|
|
||||||
+NOR10UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
|
||||||
+NOR10ADDRESS: 0x03000000 ;Image Flash Address
|
|
||||||
+NOR10FILE: \SOFTWARE\XEN\xen ;Image File Name
|
|
||||||
+NOR10NAME: xen
|
|
||||||
+NOR10LOAD: 00000000 ;Image Load Address
|
|
||||||
+NOR10ENTRY: 00000000 ;Image Entry Point
|
|
||||||
diff -u a/uEnv.txt b/uEnv.txt
|
|
||||||
--- a/uEnv.txt 2020-11-20 13:48:31.845078690 +0100
|
|
||||||
+++ b/uEnv.txt 2020-11-25 20:30:00.572306675 +0100
|
|
||||||
@@ -1,11 +1,16 @@
|
|
||||||
+xen_name=xen
|
|
||||||
+xen_addr=0x84000000
|
|
||||||
uenvcmd=run mybootcmd
|
|
||||||
+kernel_alt_name=norkern.lzm
|
|
||||||
+kernel_comp_addr_r=0x88080000
|
|
||||||
mybootcmd=echo Loading custom boot command; \
|
|
||||||
echo Loading kernel; \
|
|
||||||
afs load ${kernel_name} ${kernel_addr_r} ; \
|
|
||||||
-if test $? -eq 1; then echo Loading ${kernel_alt_name} instead of ${kernel_name}; afs load ${kernel_alt_name} ${kernel_addr_r}; fi; \
|
|
||||||
+if test $? -eq 1; then echo Loading ${kernel_alt_name} instead of ${kernel_name}; afs load ${kernel_alt_name} ${kernel_comp_addr_r}; lzmadec ${kernel_comp_addr_r} ${kernel_addr_r}; fi; \
|
|
||||||
echo Loading device tree; \
|
|
||||||
afs load ${fdtfile} ${fdt_addr_r}; \
|
|
||||||
if test $? -eq 1; then echo Loading ${fdt_alt_name} instead of ${fdtfile}; \
|
|
||||||
afs load ${fdt_alt_name} ${fdt_addr_r}; fi; fdt addr ${fdt_addr_r}; fdt resize; \
|
|
||||||
-booti ${kernel_addr_r} - ${fdt_addr_r};
|
|
||||||
-
|
|
||||||
+echo Loading Xen; \
|
|
||||||
+afs load ${xen_name} ${xen_addr}; \
|
|
||||||
+if test $? -eq 0; then echo Booting Xen; bootefi ${xen_addr} ${fdt_addr_r}; fi;
|
|
||||||
|
|
||||||
+78
@@ -0,0 +1,78 @@
|
|||||||
|
TITLE: Versatile Express Images Configuration File
|
||||||
|
|
||||||
|
[IMAGES]
|
||||||
|
TOTALIMAGES: 11 ;Number of Images (Max: 32)
|
||||||
|
|
||||||
|
NOR0UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR0ADDRESS: 0x00000000 ;Image Flash Address
|
||||||
|
NOR0FILE: \SOFTWARE\fip.bin ;Image File Name
|
||||||
|
NOR0LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR0ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR1UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR1ADDRESS: 0x03EC0000 ;Image Flash Address
|
||||||
|
NOR1FILE: \SOFTWARE\bl1.bin ;Image File Name
|
||||||
|
NOR1LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR1ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR2UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR2ADDRESS: 0x00500000 ;Image Flash Address
|
||||||
|
NOR2FILE: \SOFTWARE\Image ;Image File Name
|
||||||
|
NOR2NAME: norkern ;Rename kernel to norkern
|
||||||
|
NOR2LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR2ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR3UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR3ADDRESS: 0x02700000 ;Image Flash Address
|
||||||
|
NOR3FILE: \SOFTWARE\juno-xen.dtb ;Image File Name
|
||||||
|
NOR3NAME: board.dtb ;Specify target filename to preserve file extension
|
||||||
|
NOR3LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR3ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR4UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR4ADDRESS: 0x01D00000 ;Image Flash Address
|
||||||
|
NOR4FILE: \SOFTWARE\xen ;Image File Name
|
||||||
|
NOR4NAME: xen
|
||||||
|
NOR4LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR4ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR5UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR5ADDRESS: 0x025C0000 ;Image Flash Address
|
||||||
|
NOR5FILE: \SOFTWARE\hdlcdclk.dat ;Image File Name
|
||||||
|
NOR5LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR5ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR6UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR6ADDRESS: 0x03E40000 ;Image Flash Address
|
||||||
|
NOR6FILE: \SOFTWARE\scp_bl1.bin ;Image File Name
|
||||||
|
NOR6LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR6ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR7UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR7ADDRESS: 0x0BF00000 ;Image Flash Address
|
||||||
|
NOR7FILE: \SOFTWARE\startup.nsh ;Image File Name
|
||||||
|
NOR7NAME: startup.nsh
|
||||||
|
NOR7LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR7ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR8UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR8ADDRESS: 0x0BFC0000 ;Image Flash Address
|
||||||
|
NOR8FILE: \SOFTWARE\blank.img ;Image File Name
|
||||||
|
NOR8NAME: BOOTENV
|
||||||
|
NOR8LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR8ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR9UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR9ADDRESS: 0x02600000 ;Image Flash Address
|
||||||
|
NOR9FILE: \SOFTWARE\selftest ;Image File Name
|
||||||
|
NOR9LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR9ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR10UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR10ADDRESS: 0x02780000 ;Image Flash Address
|
||||||
|
NOR10NAME: uEnv.txt
|
||||||
|
NOR10FILE: \SOFTWARE\uEnv.txt ;Image File Name
|
||||||
|
NOR10LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR10ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
|
||||||
+78
@@ -0,0 +1,78 @@
|
|||||||
|
TITLE: Versatile Express Images Configuration File
|
||||||
|
|
||||||
|
[IMAGES]
|
||||||
|
TOTALIMAGES: 11 ;Number of Images (Max: 32)
|
||||||
|
|
||||||
|
NOR0UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR0ADDRESS: 0x00000000 ;Image Flash Address
|
||||||
|
NOR0FILE: \SOFTWARE\fip.bin ;Image File Name
|
||||||
|
NOR0LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR0ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR1UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR1ADDRESS: 0x03EC0000 ;Image Flash Address
|
||||||
|
NOR1FILE: \SOFTWARE\bl1.bin ;Image File Name
|
||||||
|
NOR1LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR1ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR2UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR2ADDRESS: 0x00500000 ;Image Flash Address
|
||||||
|
NOR2FILE: \SOFTWARE\Image ;Image File Name
|
||||||
|
NOR2NAME: norkern ;Rename kernel to norkern
|
||||||
|
NOR2LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR2ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR3UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR3ADDRESS: 0x02700000 ;Image Flash Address
|
||||||
|
NOR3FILE: \SOFTWARE\juno-r1-xen.dtb ;Image File Name
|
||||||
|
NOR3NAME: board.dtb ;Specify target filename to preserve file extension
|
||||||
|
NOR3LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR3ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR4UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR4ADDRESS: 0x01D00000 ;Image Flash Address
|
||||||
|
NOR4FILE: \SOFTWARE\xen ;Image File Name
|
||||||
|
NOR4NAME: xen
|
||||||
|
NOR4LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR4ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR5UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR5ADDRESS: 0x025C0000 ;Image Flash Address
|
||||||
|
NOR5FILE: \SOFTWARE\hdlcdclk.dat ;Image File Name
|
||||||
|
NOR5LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR5ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR6UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR6ADDRESS: 0x03E40000 ;Image Flash Address
|
||||||
|
NOR6FILE: \SOFTWARE\scp_bl1.bin ;Image File Name
|
||||||
|
NOR6LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR6ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR7UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR7ADDRESS: 0x0BF00000 ;Image Flash Address
|
||||||
|
NOR7FILE: \SOFTWARE\startup.nsh ;Image File Name
|
||||||
|
NOR7NAME: startup.nsh
|
||||||
|
NOR7LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR7ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR8UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR8ADDRESS: 0x0BFC0000 ;Image Flash Address
|
||||||
|
NOR8FILE: \SOFTWARE\blank.img ;Image File Name
|
||||||
|
NOR8NAME: BOOTENV
|
||||||
|
NOR8LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR8ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR9UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR9ADDRESS: 0x02600000 ;Image Flash Address
|
||||||
|
NOR9FILE: \SOFTWARE\selftest ;Image File Name
|
||||||
|
NOR9LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR9ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR10UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR10ADDRESS: 0x02780000 ;Image Flash Address
|
||||||
|
NOR10NAME: uEnv.txt
|
||||||
|
NOR10FILE: \SOFTWARE\uEnv.txt ;Image File Name
|
||||||
|
NOR10LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR10ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
|
||||||
+78
@@ -0,0 +1,78 @@
|
|||||||
|
TITLE: Versatile Express Images Configuration File
|
||||||
|
|
||||||
|
[IMAGES]
|
||||||
|
TOTALIMAGES: 11 ;Number of Images (Max: 32)
|
||||||
|
|
||||||
|
NOR0UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR0ADDRESS: 0x00000000 ;Image Flash Address
|
||||||
|
NOR0FILE: \SOFTWARE\fip.bin ;Image File Name
|
||||||
|
NOR0LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR0ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR1UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR1ADDRESS: 0x03EC0000 ;Image Flash Address
|
||||||
|
NOR1FILE: \SOFTWARE\bl1.bin ;Image File Name
|
||||||
|
NOR1LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR1ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR2UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR2ADDRESS: 0x00500000 ;Image Flash Address
|
||||||
|
NOR2FILE: \SOFTWARE\Image ;Image File Name
|
||||||
|
NOR2NAME: norkern ;Rename kernel to norkern
|
||||||
|
NOR2LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR2ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR3UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR3ADDRESS: 0x02700000 ;Image Flash Address
|
||||||
|
NOR3FILE: \SOFTWARE\juno-r2-xen.dtb ;Image File Name
|
||||||
|
NOR3NAME: board.dtb ;Specify target filename to preserve file extension
|
||||||
|
NOR3LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR3ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR4UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR4ADDRESS: 0x01D00000 ;Image Flash Address
|
||||||
|
NOR4FILE: \SOFTWARE\xen ;Image File Name
|
||||||
|
NOR4NAME: xen
|
||||||
|
NOR4LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR4ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR5UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR5ADDRESS: 0x025C0000 ;Image Flash Address
|
||||||
|
NOR5FILE: \SOFTWARE\hdlcdclk.dat ;Image File Name
|
||||||
|
NOR5LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR5ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR6UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR6ADDRESS: 0x03E40000 ;Image Flash Address
|
||||||
|
NOR6FILE: \SOFTWARE\scp_bl1.bin ;Image File Name
|
||||||
|
NOR6LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR6ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR7UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR7ADDRESS: 0x0BF00000 ;Image Flash Address
|
||||||
|
NOR7FILE: \SOFTWARE\startup.nsh ;Image File Name
|
||||||
|
NOR7NAME: startup.nsh
|
||||||
|
NOR7LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR7ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR8UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR8ADDRESS: 0x0BFC0000 ;Image Flash Address
|
||||||
|
NOR8FILE: \SOFTWARE\blank.img ;Image File Name
|
||||||
|
NOR8NAME: BOOTENV
|
||||||
|
NOR8LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR8ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR9UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR9ADDRESS: 0x02600000 ;Image Flash Address
|
||||||
|
NOR9FILE: \SOFTWARE\selftest ;Image File Name
|
||||||
|
NOR9LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR9ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
NOR10UPDATE: AUTO ;Image Update:NONE/AUTO/FORCE
|
||||||
|
NOR10ADDRESS: 0x02780000 ;Image Flash Address
|
||||||
|
NOR10NAME: uEnv.txt
|
||||||
|
NOR10FILE: \SOFTWARE\uEnv.txt ;Image File Name
|
||||||
|
NOR10LOAD: 00000000 ;Image Load Address
|
||||||
|
NOR10ENTRY: 00000000 ;Image Entry Point
|
||||||
|
|
||||||
|
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
xen_name=xen
|
||||||
|
xen_addr=0x84000000
|
||||||
|
uenvcmd=run mybootcmd
|
||||||
|
mybootcmd=echo Loading custom boot command; \
|
||||||
|
echo Loading kernel; \
|
||||||
|
afs load ${kernel_name} ${kernel_addr} ; \
|
||||||
|
if test $? -eq 1; then echo Loading ${kernel_alt_name} instead of ${kernel_name}; afs load ${kernel_alt_name} ${kernel_addr}; fi; \
|
||||||
|
echo Loading device tree; \
|
||||||
|
afs load ${fdtfile} ${fdt_addr}; \
|
||||||
|
if test $? -eq 1; then echo Loading ${fdt_alt_name} instead of ${fdtfile}; \
|
||||||
|
afs load ${fdt_alt_name} ${fdt_addr}; fi; fdt addr ${fdt_addr}; fdt resize; \
|
||||||
|
echo Loading Xen; \
|
||||||
|
afs load ${xen_name} ${xen_addr}; \
|
||||||
|
if test $? -eq 0; then echo Booting Xen; bootefi ${xen_addr} ${fdt_addr}; fi;
|
||||||
|
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
# When booting gem5-arm64 with Xen we need to set the cpu as Cortex A53 and
|
# When booting gem5-arm64 with Xen we need to set the cpu as Cortex A53 and
|
||||||
# remove support for pointer authentification
|
# remove support for pointer authentification
|
||||||
GEM5_RUN_EXTRA_append = " \
|
GEM5_RUN_EXTRA_append = " \
|
||||||
${@bb.utils.contains('DISTRO_FEATURES_NATIVE', 'xen', \
|
${@bb.utils.contains('DISTRO_FEATURES_NATIVE', 'arm-autonomy-host', \
|
||||||
'--param=system.cpu_cluster[0].cpus[0].isa[0].midr=0x410fd030 \
|
'--param=system.cpu_cluster[0].cpus[0].isa[0].midr=0x410fd030 \
|
||||||
--param=system.cpu_cluster[0].cpus[0].isa[0].id_aa64isar1_el1=0x0', \
|
--param=system.cpu_cluster[0].cpus[0].isa[0].id_aa64isar1_el1=0x0', \
|
||||||
'', d)}"
|
'', d)}"
|
||||||
+22
-24
@@ -11,31 +11,29 @@
|
|||||||
/delete-node/ pmu;
|
/delete-node/ pmu;
|
||||||
/delete-node/ spe-pmu;
|
/delete-node/ spe-pmu;
|
||||||
|
|
||||||
soc {
|
/*
|
||||||
/*
|
* disable IOMMU until we have a proper support in xen
|
||||||
* disable IOMMU until we have a proper support in xen
|
*/
|
||||||
*/
|
/delete-node/ iommu@4f000000;
|
||||||
/delete-node/ iommu@4f000000;
|
/delete-node/ iommu@4f400000;
|
||||||
/delete-node/ iommu@4f400000;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set extra registers required for PCI quirks to communicate with SCP
|
* Set extra registers required for PCI quirks to communicate with SCP
|
||||||
* and remove invalid properties due to removal
|
* and remove invalid properties due to removal
|
||||||
*/
|
*/
|
||||||
pcie@68000000 {
|
pcie@68000000 {
|
||||||
reg = <0 0x68000000 0 0x1200000>,
|
reg = <0 0x68000000 0 0x1200000>,
|
||||||
<0 0x06000000 0 0x80000>,
|
<0 0x06000000 0 0x80000>,
|
||||||
<0 0x62000000 0 0x80000>;
|
<0 0x62000000 0 0x80000>;
|
||||||
/delete-property/ msi-map;
|
/delete-property/ msi-map;
|
||||||
/delete-property/ iommu-map;
|
/delete-property/ iommu-map;
|
||||||
};
|
};
|
||||||
|
|
||||||
pcie@70000000 {
|
pcie@70000000 {
|
||||||
reg = <0 0x70000000 0 0x1200000>,
|
reg = <0 0x70000000 0 0x1200000>,
|
||||||
<0 0x06000000 0 0x80000>,
|
<0 0x06000000 0 0x80000>,
|
||||||
<0 0x60000000 0 0x80000>;
|
<0 0x60000000 0 0x80000>;
|
||||||
/delete-property/ msi-map;
|
/delete-property/ msi-map;
|
||||||
/delete-property/ iommu-map;
|
/delete-property/ iommu-map;
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
+5
-3
@@ -9,15 +9,17 @@ XEN_DEVICETREE_DTSI_MERGE_append_juno = " xen-juno.dtsi"
|
|||||||
# Add a dtb snippet to remove pmu and iommu in dom0 on N1SDP
|
# Add a dtb snippet to remove pmu and iommu in dom0 on N1SDP
|
||||||
SRC_URI_append_n1sdp = " file://xen-n1sdp.dtsi"
|
SRC_URI_append_n1sdp = " file://xen-n1sdp.dtsi"
|
||||||
XEN_DEVICETREE_DTSI_MERGE_append_n1sdp = " xen-n1sdp.dtsi"
|
XEN_DEVICETREE_DTSI_MERGE_append_n1sdp = " xen-n1sdp.dtsi"
|
||||||
# For N1SDP, the XEN_DEVICETREE_DEPEND and XEN_DEVICETREE_DTBS variables are
|
|
||||||
# being set in meta-arm-autonomy/dynamic-layers/meta-arm-bsp/conf/machine/n1sdp-extra-settings.inc
|
|
||||||
|
|
||||||
# Board specific configs
|
# Board specific configs
|
||||||
XEN_DEVICETREE_DOM0_BOOTARGS_append_juno = " root=/dev/sda1 rootwait"
|
XEN_DEVICETREE_DOM0_BOOTARGS_append_juno = " root=/dev/sda1 rootwait"
|
||||||
XEN_DEVICETREE_XEN_BOOTARGS_append_juno = " console=dtuart dtuart=serial0 bootscrub=0 iommu=no"
|
XEN_DEVICETREE_XEN_BOOTARGS_append_juno = " console=dtuart dtuart=serial0 bootscrub=0 iommu=no"
|
||||||
|
|
||||||
XEN_DEVICETREE_DOM0_BOOTARGS_append_n1sdp = " root=/dev/sda2 rootwait"
|
XEN_DEVICETREE_DOM0_BOOTARGS_append_n1sdp = " root=/dev/sda1 rootwait"
|
||||||
XEN_DEVICETREE_XEN_BOOTARGS_append_n1sdp = " console=dtuart dtuart=serial0 bootscrub=0 iommu=no"
|
XEN_DEVICETREE_XEN_BOOTARGS_append_n1sdp = " console=dtuart dtuart=serial0 bootscrub=0 iommu=no"
|
||||||
|
|
||||||
XEN_DEVICETREE_DOM0_BOOTARGS_append_fvp-base = " root=/dev/vda2"
|
XEN_DEVICETREE_DOM0_BOOTARGS_append_fvp-base = " root=/dev/vda2"
|
||||||
XEN_DEVICETREE_XEN_BOOTARGS_append_fvp-base = " console=dtuart dtuart=serial0 bootscrub=0"
|
XEN_DEVICETREE_XEN_BOOTARGS_append_fvp-base = " console=dtuart dtuart=serial0 bootscrub=0"
|
||||||
|
|
||||||
|
XEN_DEVICETREE_DOM0_BOOTARGS_append_foundation-armv8 = " root=/dev/vda2"
|
||||||
|
XEN_DEVICETREE_XEN_BOOTARGS_append_foundation-armv8 = " console=dtuart dtuart=serial0 bootscrub=0"
|
||||||
|
|
||||||
|
|||||||
+44
@@ -0,0 +1,44 @@
|
|||||||
|
From a41feccdb6c03f12bddb4fb650a0465f0ed6eeca Mon Sep 17 00:00:00 2001
|
||||||
|
From: Lukas Juenger <juenger@ice.rwth-aachen.de>
|
||||||
|
Date: Fri, 5 Apr 2019 15:54:04 +0200
|
||||||
|
Subject: [PATCH] xen/arm: Cap the number of interrupt lines for dom0
|
||||||
|
|
||||||
|
Dom0 vGIC will use the same number of interrupt lines as the hardware GIC.
|
||||||
|
While the hardware GIC can support up to 1020 interrupt lines,
|
||||||
|
the vGIC is only supporting up to 992 interrupt lines.
|
||||||
|
This means that Xen will not be able to boot on platforms where the hardware
|
||||||
|
GIC supports more than 992 interrupt lines.
|
||||||
|
While it would make sense to increase the limits in the vGICs, this is not
|
||||||
|
trivial because of the design choices.
|
||||||
|
At the moment, only models seem to report the maximum of interrupt lines.
|
||||||
|
They also do not have any interrupt wired above the 992 limit.
|
||||||
|
So it should be fine to cap the number of interrupt lines for dom0 to 992 lines.
|
||||||
|
|
||||||
|
Signed-off-by: Lukas Juenger <juenger@ice.rwth-aachen.de>
|
||||||
|
Acked-by: Julien Grall <julien.grall@arm.com>
|
||||||
|
---
|
||||||
|
xen/arch/arm/setup.c | 8 +++++++-
|
||||||
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/xen/arch/arm/setup.c b/xen/arch/arm/setup.c
|
||||||
|
index 444857a967..ccb0f181ea 100644
|
||||||
|
--- a/xen/arch/arm/setup.c
|
||||||
|
+++ b/xen/arch/arm/setup.c
|
||||||
|
@@ -888,7 +888,13 @@ void __init start_xen(unsigned long boot_phys_offset,
|
||||||
|
/* Create initial domain 0. */
|
||||||
|
/* The vGIC for DOM0 is exactly emulating the hardware GIC */
|
||||||
|
dom0_cfg.arch.gic_version = XEN_DOMCTL_CONFIG_GIC_NATIVE;
|
||||||
|
- dom0_cfg.arch.nr_spis = gic_number_lines() - 32;
|
||||||
|
+ /*
|
||||||
|
+ * Xen vGIC supports a maximum of 992 interrupt lines.
|
||||||
|
+ * 32 are substracted to cover local IRQs.
|
||||||
|
+ */
|
||||||
|
+ dom0_cfg.arch.nr_spis = min(gic_number_lines(), (unsigned int) 992) - 32;
|
||||||
|
+ if ( gic_number_lines() > 992 )
|
||||||
|
+ printk(XENLOG_WARNING "Maximum number of vGIC IRQs exceeded.\n");
|
||||||
|
dom0_cfg.max_vcpus = dom0_max_vcpus();
|
||||||
|
|
||||||
|
dom0 = domain_create(0, &dom0_cfg, true);
|
||||||
|
--
|
||||||
|
2.17.1
|
||||||
|
|
||||||
-2
@@ -1,2 +0,0 @@
|
|||||||
CONFIG_DEBUG=y
|
|
||||||
CONFIG_EARLY_PRINTK_FASTMODEL=y
|
|
||||||
+73
@@ -0,0 +1,73 @@
|
|||||||
|
#
|
||||||
|
# Automatically generated file; DO NOT EDIT.
|
||||||
|
# Xen/arm 4.12.0 Configuration
|
||||||
|
#
|
||||||
|
CONFIG_64BIT=y
|
||||||
|
CONFIG_ARM_64=y
|
||||||
|
CONFIG_ARM=y
|
||||||
|
CONFIG_ARCH_DEFCONFIG="arch/arm/configs/arm64_defconfig"
|
||||||
|
|
||||||
|
#
|
||||||
|
# Architecture Features
|
||||||
|
#
|
||||||
|
CONFIG_NR_CPUS=128
|
||||||
|
CONFIG_GICV3=y
|
||||||
|
CONFIG_HVM=y
|
||||||
|
# CONFIG_NEW_VGIC is not set
|
||||||
|
CONFIG_SBSA_VUART_CONSOLE=y
|
||||||
|
CONFIG_ARM_SSBD=y
|
||||||
|
CONFIG_HARDEN_BRANCH_PREDICTOR=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM errata workaround via the alternative framework
|
||||||
|
#
|
||||||
|
CONFIG_ARM64_ERRATUM_827319=y
|
||||||
|
CONFIG_ARM64_ERRATUM_824069=y
|
||||||
|
CONFIG_ARM64_ERRATUM_819472=y
|
||||||
|
CONFIG_ARM64_ERRATUM_832075=y
|
||||||
|
CONFIG_ARM64_ERRATUM_834220=y
|
||||||
|
CONFIG_ARM64_HARDEN_BRANCH_PREDICTOR=y
|
||||||
|
CONFIG_ALL_PLAT=y
|
||||||
|
# CONFIG_QEMU is not set
|
||||||
|
# CONFIG_RCAR3 is not set
|
||||||
|
# CONFIG_MPSOC is not set
|
||||||
|
# CONFIG_NO_PLAT is not set
|
||||||
|
CONFIG_ALL64_PLAT=y
|
||||||
|
# CONFIG_ALL32_PLAT is not set
|
||||||
|
CONFIG_MPSOC_PLATFORM=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Common Features
|
||||||
|
#
|
||||||
|
CONFIG_HAS_ALTERNATIVE=y
|
||||||
|
CONFIG_HAS_DEVICE_TREE=y
|
||||||
|
CONFIG_MEM_ACCESS=y
|
||||||
|
CONFIG_HAS_PDX=y
|
||||||
|
# CONFIG_XSM is not set
|
||||||
|
CONFIG_SCHED_CREDIT=y
|
||||||
|
CONFIG_SCHED_CREDIT2=y
|
||||||
|
CONFIG_SCHED_RTDS=y
|
||||||
|
# CONFIG_SCHED_ARINC653 is not set
|
||||||
|
CONFIG_SCHED_NULL=y
|
||||||
|
CONFIG_SCHED_DEFAULT="credit2"
|
||||||
|
# CONFIG_LIVEPATCH is not set
|
||||||
|
CONFIG_SUPPRESS_DUPLICATE_SYMBOL_WARNINGS=y
|
||||||
|
CONFIG_CMDLINE=""
|
||||||
|
CONFIG_DOM0_MEM=""
|
||||||
|
|
||||||
|
#
|
||||||
|
# Device Drivers
|
||||||
|
#
|
||||||
|
CONFIG_HAS_NS16550=y
|
||||||
|
CONFIG_HAS_CADENCE_UART=y
|
||||||
|
CONFIG_HAS_MVEBU=y
|
||||||
|
CONFIG_HAS_PL011=y
|
||||||
|
CONFIG_HAS_SCIF=y
|
||||||
|
CONFIG_HAS_PASSTHROUGH=y
|
||||||
|
CONFIG_ARM_SMMU=y
|
||||||
|
CONFIG_DEFCONFIG_LIST="arch/arm/configs/arm64_defconfig"
|
||||||
|
|
||||||
|
#
|
||||||
|
# Debugging Options
|
||||||
|
#
|
||||||
|
# CONFIG_DEBUG is not set
|
||||||
+73
@@ -0,0 +1,73 @@
|
|||||||
|
#
|
||||||
|
# Automatically generated file; DO NOT EDIT.
|
||||||
|
# Xen/arm 4.12.0 Configuration
|
||||||
|
#
|
||||||
|
CONFIG_64BIT=y
|
||||||
|
CONFIG_ARM_64=y
|
||||||
|
CONFIG_ARM=y
|
||||||
|
CONFIG_ARCH_DEFCONFIG="arch/arm/configs/arm64_defconfig"
|
||||||
|
|
||||||
|
#
|
||||||
|
# Architecture Features
|
||||||
|
#
|
||||||
|
CONFIG_NR_CPUS=128
|
||||||
|
CONFIG_GICV3=y
|
||||||
|
CONFIG_HVM=y
|
||||||
|
# CONFIG_NEW_VGIC is not set
|
||||||
|
CONFIG_SBSA_VUART_CONSOLE=y
|
||||||
|
CONFIG_ARM_SSBD=y
|
||||||
|
CONFIG_HARDEN_BRANCH_PREDICTOR=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM errata workaround via the alternative framework
|
||||||
|
#
|
||||||
|
CONFIG_ARM64_ERRATUM_827319=y
|
||||||
|
CONFIG_ARM64_ERRATUM_824069=y
|
||||||
|
CONFIG_ARM64_ERRATUM_819472=y
|
||||||
|
CONFIG_ARM64_ERRATUM_832075=y
|
||||||
|
CONFIG_ARM64_ERRATUM_834220=y
|
||||||
|
CONFIG_ARM64_HARDEN_BRANCH_PREDICTOR=y
|
||||||
|
CONFIG_ALL_PLAT=y
|
||||||
|
# CONFIG_QEMU is not set
|
||||||
|
# CONFIG_RCAR3 is not set
|
||||||
|
# CONFIG_MPSOC is not set
|
||||||
|
# CONFIG_NO_PLAT is not set
|
||||||
|
CONFIG_ALL64_PLAT=y
|
||||||
|
# CONFIG_ALL32_PLAT is not set
|
||||||
|
CONFIG_MPSOC_PLATFORM=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Common Features
|
||||||
|
#
|
||||||
|
CONFIG_HAS_ALTERNATIVE=y
|
||||||
|
CONFIG_HAS_DEVICE_TREE=y
|
||||||
|
CONFIG_MEM_ACCESS=y
|
||||||
|
CONFIG_HAS_PDX=y
|
||||||
|
# CONFIG_XSM is not set
|
||||||
|
CONFIG_SCHED_CREDIT=y
|
||||||
|
CONFIG_SCHED_CREDIT2=y
|
||||||
|
CONFIG_SCHED_RTDS=y
|
||||||
|
# CONFIG_SCHED_ARINC653 is not set
|
||||||
|
CONFIG_SCHED_NULL=y
|
||||||
|
CONFIG_SCHED_DEFAULT="credit2"
|
||||||
|
# CONFIG_LIVEPATCH is not set
|
||||||
|
CONFIG_SUPPRESS_DUPLICATE_SYMBOL_WARNINGS=y
|
||||||
|
CONFIG_CMDLINE=""
|
||||||
|
CONFIG_DOM0_MEM=""
|
||||||
|
|
||||||
|
#
|
||||||
|
# Device Drivers
|
||||||
|
#
|
||||||
|
CONFIG_HAS_NS16550=y
|
||||||
|
CONFIG_HAS_CADENCE_UART=y
|
||||||
|
CONFIG_HAS_MVEBU=y
|
||||||
|
CONFIG_HAS_PL011=y
|
||||||
|
CONFIG_HAS_SCIF=y
|
||||||
|
CONFIG_HAS_PASSTHROUGH=y
|
||||||
|
CONFIG_ARM_SMMU=y
|
||||||
|
CONFIG_DEFCONFIG_LIST="arch/arm/configs/arm64_defconfig"
|
||||||
|
|
||||||
|
#
|
||||||
|
# Debugging Options
|
||||||
|
#
|
||||||
|
# CONFIG_DEBUG is not set
|
||||||
-2
@@ -1,2 +0,0 @@
|
|||||||
CONFIG_DEBUG=y
|
|
||||||
CONFIG_EARLY_PRINTK_JUNO=y
|
|
||||||
+100
@@ -0,0 +1,100 @@
|
|||||||
|
#
|
||||||
|
# Automatically generated file; DO NOT EDIT.
|
||||||
|
# Xen/arm 4.12.2 Configuration
|
||||||
|
#
|
||||||
|
CONFIG_64BIT=y
|
||||||
|
CONFIG_ARM_64=y
|
||||||
|
CONFIG_ARM=y
|
||||||
|
CONFIG_ARCH_DEFCONFIG="arch/arm/configs/arm64_defconfig"
|
||||||
|
|
||||||
|
#
|
||||||
|
# Architecture Features
|
||||||
|
#
|
||||||
|
CONFIG_NR_CPUS=128
|
||||||
|
CONFIG_ACPI=y
|
||||||
|
CONFIG_GICV3=y
|
||||||
|
CONFIG_HAS_ITS=y
|
||||||
|
CONFIG_HVM=y
|
||||||
|
# CONFIG_NEW_VGIC is not set
|
||||||
|
CONFIG_SBSA_VUART_CONSOLE=y
|
||||||
|
CONFIG_ARM_SSBD=y
|
||||||
|
CONFIG_HARDEN_BRANCH_PREDICTOR=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# ARM errata workaround via the alternative framework
|
||||||
|
#
|
||||||
|
CONFIG_ARM64_ERRATUM_827319=y
|
||||||
|
CONFIG_ARM64_ERRATUM_824069=y
|
||||||
|
CONFIG_ARM64_ERRATUM_819472=y
|
||||||
|
CONFIG_ARM64_ERRATUM_832075=y
|
||||||
|
CONFIG_ARM64_ERRATUM_834220=y
|
||||||
|
CONFIG_ARM64_HARDEN_BRANCH_PREDICTOR=y
|
||||||
|
CONFIG_ALL_PLAT=y
|
||||||
|
# CONFIG_QEMU is not set
|
||||||
|
# CONFIG_RCAR3 is not set
|
||||||
|
# CONFIG_MPSOC is not set
|
||||||
|
# CONFIG_NO_PLAT is not set
|
||||||
|
CONFIG_ALL64_PLAT=y
|
||||||
|
# CONFIG_ALL32_PLAT is not set
|
||||||
|
CONFIG_MPSOC_PLATFORM=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Common Features
|
||||||
|
#
|
||||||
|
CONFIG_HAS_ALTERNATIVE=y
|
||||||
|
CONFIG_HAS_DEVICE_TREE=y
|
||||||
|
# CONFIG_MEM_ACCESS is not set
|
||||||
|
CONFIG_HAS_PDX=y
|
||||||
|
# CONFIG_TMEM is not set
|
||||||
|
CONFIG_XSM=y
|
||||||
|
CONFIG_XSM_FLASK=y
|
||||||
|
CONFIG_XSM_FLASK_AVC_STATS=y
|
||||||
|
# CONFIG_XSM_FLASK_POLICY is not set
|
||||||
|
CONFIG_XSM_SILO=y
|
||||||
|
# CONFIG_XSM_DUMMY_DEFAULT is not set
|
||||||
|
# CONFIG_XSM_FLASK_DEFAULT is not set
|
||||||
|
CONFIG_XSM_SILO_DEFAULT=y
|
||||||
|
# CONFIG_ARGO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Schedulers
|
||||||
|
#
|
||||||
|
CONFIG_SCHED_CREDIT=y
|
||||||
|
CONFIG_SCHED_CREDIT2=y
|
||||||
|
CONFIG_SCHED_RTDS=y
|
||||||
|
# CONFIG_SCHED_ARINC653 is not set
|
||||||
|
CONFIG_SCHED_NULL=y
|
||||||
|
# CONFIG_SCHED_CREDIT_DEFAULT is not set
|
||||||
|
CONFIG_SCHED_CREDIT2_DEFAULT=y
|
||||||
|
# CONFIG_SCHED_RTDS_DEFAULT is not set
|
||||||
|
# CONFIG_SCHED_NULL_DEFAULT is not set
|
||||||
|
CONFIG_SCHED_DEFAULT="credit2"
|
||||||
|
# CONFIG_LIVEPATCH is not set
|
||||||
|
CONFIG_SUPPRESS_DUPLICATE_SYMBOL_WARNINGS=y
|
||||||
|
CONFIG_CMDLINE=""
|
||||||
|
CONFIG_DOM0_MEM=""
|
||||||
|
|
||||||
|
#
|
||||||
|
# Device Drivers
|
||||||
|
#
|
||||||
|
CONFIG_HAS_NS16550=y
|
||||||
|
CONFIG_HAS_CADENCE_UART=y
|
||||||
|
CONFIG_HAS_MVEBU=y
|
||||||
|
CONFIG_HAS_PL011=y
|
||||||
|
CONFIG_HAS_SCIF=y
|
||||||
|
CONFIG_HAS_PASSTHROUGH=y
|
||||||
|
CONFIG_ARM_SMMU=y
|
||||||
|
CONFIG_DEFCONFIG_LIST="arch/arm/configs/arm64_defconfig"
|
||||||
|
|
||||||
|
#
|
||||||
|
# Debugging Options
|
||||||
|
#
|
||||||
|
# CONFIG_DEBUG is not set
|
||||||
|
CONFIG_DEBUG_INFO=y
|
||||||
|
# CONFIG_FRAME_POINTER is not set
|
||||||
|
# CONFIG_COVERAGE is not set
|
||||||
|
# CONFIG_LOCK_PROFILE is not set
|
||||||
|
# CONFIG_PERF_COUNTERS is not set
|
||||||
|
CONFIG_VERBOSE_DEBUG=y
|
||||||
|
# CONFIG_DEVICE_TREE_DEBUG is not set
|
||||||
|
# CONFIG_SCRUB_DEBUG is not set
|
||||||
-3
@@ -1,3 +0,0 @@
|
|||||||
CONFIG_DEBUG=y
|
|
||||||
CONFIG_EARLY_UART_CHOICE_PL011=y
|
|
||||||
CONFIG_EARLY_UART_BASE_ADDRESS=0x2a400000
|
|
||||||
-5
@@ -1,5 +0,0 @@
|
|||||||
CONFIG_EXPERT=y
|
|
||||||
# Enable ACPI support
|
|
||||||
CONFIG_ACPI=y
|
|
||||||
# Enable ARM Interrupt Translation Service (ITS) emulation
|
|
||||||
CONFIG_HAS_ITS=y
|
|
||||||
@@ -1,15 +1,32 @@
|
|||||||
|
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
||||||
|
|
||||||
|
# Machine specific settings
|
||||||
|
XEN_CONFIG_EARLY_PRINTK_juno = "juno"
|
||||||
|
XEN_CONFIG_EARLY_PRINTK_gem5-arm64 = "vexpress"
|
||||||
|
XEN_CONFIG_EARLY_PRINTK_fvp-base = "fastmodel"
|
||||||
|
XEN_CONFIG_EARLY_PRINTK_foundation-armv8 = "fastmodel"
|
||||||
|
XEN_CONFIG_EARLY_PRINTK_n1sdp = "pl011,0x2a400000"
|
||||||
|
|
||||||
|
# Foundation-armv8 support
|
||||||
|
COMPATIBLE_MACHINE_foundation-armv8 = "foundation-armv8"
|
||||||
|
|
||||||
|
SRC_URI_append_foundation-armv8 = " file://fvp/defconfig"
|
||||||
|
|
||||||
# FVP Base support
|
# FVP Base support
|
||||||
COMPATIBLE_MACHINE_fvp-base = "fvp-base"
|
COMPATIBLE_MACHINE_fvp-base = "fvp-base"
|
||||||
FILESEXTRAPATHS_prepend_fvp-base := "${THISDIR}/files:"
|
|
||||||
SRC_URI_append_fvp-base = " file://early-printk.cfg"
|
SRC_URI_append_fvp-base = " file://fvp/defconfig"
|
||||||
|
|
||||||
# Juno support
|
# Juno support
|
||||||
COMPATIBLE_MACHINE_juno = "juno"
|
COMPATIBLE_MACHINE_juno = "juno"
|
||||||
FILESEXTRAPATHS_prepend_juno := "${THISDIR}/files:"
|
|
||||||
SRC_URI_append_juno = " file://early-printk.cfg"
|
SRC_URI_append_juno = " file://juno/defconfig"
|
||||||
|
|
||||||
|
# Gem5 support
|
||||||
|
# Fix problem with number of interrupts on gem5
|
||||||
|
SRC_URI_append_gem5-arm64 = " file://4.12.0/0001-xen-arm-Cap-the-number-of-interrupt-lines-for-dom0.patch"
|
||||||
|
|
||||||
# N1SDP support
|
# N1SDP support
|
||||||
COMPATIBLE_MACHINE_n1sdp = "n1sdp"
|
COMPATIBLE_MACHINE_n1sdp = "n1sdp"
|
||||||
FILESEXTRAPATHS_prepend_n1sdp := "${THISDIR}/files:"
|
|
||||||
SRC_URI_append_n1sdp = " file://n1sdp.cfg \
|
SRC_URI_append_n1sdp = " file://n1sdp/defconfig"
|
||||||
file://early-printk.cfg"
|
|
||||||
|
|||||||
+6
@@ -0,0 +1,6 @@
|
|||||||
|
# Board specific configuration for the manager
|
||||||
|
|
||||||
|
# FVP and Foundation are using vda as hard drive and partition 2 is the
|
||||||
|
# default rootfs, so use vda3 for guest lvm
|
||||||
|
XENGUEST_MANAGER_VOLUME_DEVICE_foundation-armv8 ?= "/dev/vda3"
|
||||||
|
XENGUEST_MANAGER_VOLUME_DEVICE_fvp-base ?= "/dev/vda3"
|
||||||
+10
@@ -0,0 +1,10 @@
|
|||||||
|
XENGUEST_NETWORK_BRIDGE_MEMBERS_n1sdp ?= "eth0"
|
||||||
|
|
||||||
|
XENGUEST_NETWORK_BRIDGE_MEMBERS_fvp-base ?= "eth0"
|
||||||
|
|
||||||
|
XENGUEST_NETWORK_BRIDGE_MEMBERS_foundation-armv8 ?= "eth0"
|
||||||
|
|
||||||
|
XENGUEST_NETWORK_BRIDGE_MEMBERS_gem5-arm64 ?= "eth0"
|
||||||
|
|
||||||
|
# Juno board has 2 network interfaces, add both of them to the bridge
|
||||||
|
XENGUEST_NETWORK_BRIDGE_MEMBERS_juno ?= "eth0 eth1"
|
||||||
-6
@@ -1,6 +0,0 @@
|
|||||||
define KMACHINE n1sdp
|
|
||||||
define KTYPE preempt-rt
|
|
||||||
define KARCH arm64
|
|
||||||
|
|
||||||
kconf non-hardware ktypes/developer/developer.cfg
|
|
||||||
kconf non-hardware ktypes/preempt-rt/preempt-rt.cfg
|
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
# Yocto kernel-cache sets CONFIG_NLS_CODEPAGE_437=m for LINUX_KERNEL_TYPR=preempt-rt
|
|
||||||
CONFIG_NLS_CODEPAGE_437=y
|
|
||||||
# Yocto kernel-cache sets CONFIG_NLS_ISO8859_1=m for LINUX_KERNEL_TYPR=preempt-rt
|
|
||||||
CONFIG_NLS_ISO8859_1=y
|
|
||||||
|
|
||||||
# Set the timer interrupt run at 1000 Hz to have a fast response
|
|
||||||
CONFIG_HZ_1000=y
|
|
||||||
-3
@@ -1,3 +0,0 @@
|
|||||||
define KFEATURE_DESCRIPTION "Extra kernel configs when building with PREEMPT_RT"
|
|
||||||
|
|
||||||
kconf non-hardware preempt-rt-extras.cfg
|
|
||||||
@@ -12,4 +12,6 @@ LINUX_ARM_AUTONOMY_DISABLE_ARM64_SVE = "${@bb.utils.contains_any('DISTRO_FEATURE
|
|||||||
'arm-autonomy-host arm-autonomy-guest', \
|
'arm-autonomy-host arm-autonomy-guest', \
|
||||||
' features/arm-autonomy/disable-arm64-sve.scc','',d)}"
|
' features/arm-autonomy/disable-arm64-sve.scc','',d)}"
|
||||||
|
|
||||||
|
KERNEL_FEATURES_append_gem5-arm64 = "${LINUX_ARM_AUTONOMY_DISABLE_ARM64_SVE}"
|
||||||
KERNEL_FEATURES_append_fvp-base = "${LINUX_ARM_AUTONOMY_DISABLE_ARM64_SVE}"
|
KERNEL_FEATURES_append_fvp-base = "${LINUX_ARM_AUTONOMY_DISABLE_ARM64_SVE}"
|
||||||
|
KERNEL_FEATURES_append_foundation-armv8 = "${LINUX_ARM_AUTONOMY_DISABLE_ARM64_SVE}"
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
# short-description: Create a disk image
|
|
||||||
# long-description: Creates a partitioned disk image that the user
|
|
||||||
# can directly dd to boot media.
|
|
||||||
|
|
||||||
# For Juno first partition is rootfs normally populated as /dev/sda1
|
|
||||||
part / --source rootfs --ondisk sda --fstype=ext4 --label root --align 1024
|
|
||||||
|
|
||||||
# Second partition to accomodate guests images normally populated as /dev/sda2 (used by XENGUEST_MANAGER_VOLUME_DEVICE)
|
|
||||||
part --label guests --source empty --ondisk sda --size="${GUEST_PART_SIZE}${GUEST_PART_SIZE_UNIT}" --system-id 8e --align 1024
|
|
||||||
|
|
||||||
# Third partition is user defined entry normally populated as /dev/sda3
|
|
||||||
${AUTONOMY_HOST_EXTRA_PARTITION}
|
|
||||||
|
|
||||||
bootloader --ptable msdos
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
# short-description: Create an EFI disk image
|
|
||||||
# long-description: Creates a partitioned EFI disk image that the user
|
|
||||||
# can directly dd to boot media. Uses a custom grub.cfg file to configure the boot.
|
|
||||||
|
|
||||||
# First boot partition normally populated as /dev/sda1
|
|
||||||
part /boot --source bootimg-efi --sourceparams="loader=grub-efi" --ondisk sda --size="${BOOT_PART_SIZE}${BOOT_PART_SIZE_UNIT}" --label msdos --active --align 1024
|
|
||||||
|
|
||||||
# Second rootfs partition normally populated as /dev/sda2
|
|
||||||
part / --source rootfs --ondisk sda --fstype=ext4 --label root --align 1024
|
|
||||||
|
|
||||||
# Third partition to accomodate guests images normally populated as /dev/sda3 (used by XENGUEST_MANAGER_VOLUME_DEVICE)
|
|
||||||
part --label guests --source empty --ondisk sda --size="${GUEST_PART_SIZE}${GUEST_PART_SIZE_UNIT}" --system-id 8e --align 1024
|
|
||||||
|
|
||||||
# Fourth partition is user defined entry normally populated as /dev/sda4
|
|
||||||
${AUTONOMY_HOST_EXTRA_PARTITION}
|
|
||||||
|
|
||||||
bootloader --ptable msdos --configfile="${GRUB_CFG_FILE}"
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
set term="vt100"
|
|
||||||
set default="3"
|
|
||||||
set timeout="5"
|
|
||||||
|
|
||||||
set kernel_cmdline="earlycon=pl011,0x2A400000 console=ttyAMA0,115200 root=/dev/sda2 rootwait"
|
|
||||||
|
|
||||||
menuentry 'N1SDP ACPI Boot' {
|
|
||||||
linux /Image $kernel_cmdline acpi=force
|
|
||||||
}
|
|
||||||
|
|
||||||
menuentry 'N1SDP Single-Chip Boot (Device Tree)' {
|
|
||||||
devicetree /n1sdp-single-chip.dtb
|
|
||||||
linux /Image $kernel_cmdline
|
|
||||||
}
|
|
||||||
|
|
||||||
menuentry 'N1SDP Multi-Chip Boot (Device Tree)' {
|
|
||||||
devicetree /n1sdp-multi-chip.dtb
|
|
||||||
linux /Image $kernel_cmdline
|
|
||||||
}
|
|
||||||
|
|
||||||
menuentry 'N1SDP Arm Autonomy (Xen) Single-Chip Boot (Device Tree)' {
|
|
||||||
# no_argumants under here is a workaround for a bug
|
|
||||||
# also any kernel or dom0 cmdline arguments has to be passed via dtb
|
|
||||||
# because any arguments put here will be ignored by xen
|
|
||||||
xen_hypervisor /xen.efi no_arguments=use_dtb_for_xen_or_kernel_cmdline
|
|
||||||
xen_module /Image
|
|
||||||
devicetree /n1sdp-single-chip-xen.dtb
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
set term="vt100"
|
|
||||||
set default="3"
|
|
||||||
set timeout="5"
|
|
||||||
|
|
||||||
source $prefix/arm-autonomy-n1sdp-grub.cfg
|
|
||||||
|
|
||||||
menuentry 'N1SDP PREEMPT_RT ACPI Boot' {
|
|
||||||
linux /Image-preempt-rt $kernel_cmdline acpi=force
|
|
||||||
}
|
|
||||||
|
|
||||||
menuentry 'N1SDP PREEMPT_RT Single-Chip Boot (Device Tree)' {
|
|
||||||
devicetree /n1sdp-single-chip.dtb
|
|
||||||
linux /Image-preempt-rt $kernel_cmdline
|
|
||||||
}
|
|
||||||
|
|
||||||
menuentry 'N1SDP PREEMPT_RT Multi-Chip Boot (Device Tree)' {
|
|
||||||
devicetree /n1sdp-multi-chip.dtb
|
|
||||||
linux /Image-preempt-rt $kernel_cmdline
|
|
||||||
}
|
|
||||||
|
|
||||||
menuentry 'N1SDP PREEMPT_RT Arm Autonomy (Xen) Single-Chip Boot (Device Tree)' {
|
|
||||||
# no_argumants under here is a workaround for a bug
|
|
||||||
# also any kernel or dom0 cmdline arguments has to be passed via dtb
|
|
||||||
# because any arguments put here will be ignored by xen
|
|
||||||
xen_hypervisor /xen.efi no_arguments=use_dtb_for_xen_or_kernel_cmdline
|
|
||||||
xen_module /Image-preempt-rt
|
|
||||||
devicetree /n1sdp-single-chip-xen.dtb
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
GRUB_BUILDIN += "${@bb.utils.contains('DISTRO_FEATURES', 'arm-autonomy-host', 'xen_boot', '', d)}"
|
|
||||||
-70
@@ -1,70 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
INSTALL_DIR="###CONTAINERS_INSTALL_DIR###"
|
|
||||||
MANIFEST="${INSTALL_DIR}/###CONTAINERS_MANIFEST###"
|
|
||||||
|
|
||||||
INIT_DIR="/etc/init.d"
|
|
||||||
DOCKER_INIT="docker.init"
|
|
||||||
|
|
||||||
find_docker_init() {
|
|
||||||
if [ -f "$INIT_DIR/$DOCKER_INIT" ]; then
|
|
||||||
$INIT_DIR/$DOCKER_INIT "start"
|
|
||||||
else
|
|
||||||
echo "ERROR: Couldn't find docker init script! ($INIT_DIR/$DOCKER_INIT)"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
is_docker_started() {
|
|
||||||
if ! docker info > /dev/null 2>&1; then
|
|
||||||
find_docker_init
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
check_manifest() {
|
|
||||||
if [ ! -f ${MANIFEST} ]; then
|
|
||||||
echo "No manifest found!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
has_docker_image() {
|
|
||||||
docker image inspect "$1" >/dev/null 2>&1
|
|
||||||
}
|
|
||||||
|
|
||||||
start() {
|
|
||||||
check_manifest
|
|
||||||
is_docker_started
|
|
||||||
|
|
||||||
while read -r archive name tag keep _; do
|
|
||||||
|
|
||||||
CONTAINER_IMAGE_NAME_AND_TAG="${name}:${tag}"
|
|
||||||
|
|
||||||
# Image does not exist and image file exists: Import the image.
|
|
||||||
if ! has_docker_image "${CONTAINER_IMAGE_NAME_AND_TAG}" && \
|
|
||||||
[ -f "${INSTALL_DIR}/${archive}" ]; then
|
|
||||||
echo "Importing ${CONTAINER_IMAGE_NAME_AND_TAG} container image..."
|
|
||||||
docker import "${INSTALL_DIR}/${archive}" \
|
|
||||||
"${CONTAINER_IMAGE_NAME_AND_TAG}" 2>&1 || {
|
|
||||||
echo "Import ${CONTAINER_IMAGE_NAME_AND_TAG} container image: Failed."
|
|
||||||
exit $?
|
|
||||||
}
|
|
||||||
echo "Import ${CONTAINER_IMAGE_NAME_AND_TAG} container image: Done."
|
|
||||||
|
|
||||||
if [ "${keep}" != "1" ]; then
|
|
||||||
rm "${INSTALL_DIR}/${archive}"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done < ${MANIFEST}
|
|
||||||
}
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
start)
|
|
||||||
start && exit 0
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Usage: $0 {start}"
|
|
||||||
exit 2
|
|
||||||
esac
|
|
||||||
|
|
||||||
exit $?
|
|
||||||
-36
@@ -1,36 +0,0 @@
|
|||||||
#
|
|
||||||
# This recipe adds an init script to import the containers added by
|
|
||||||
# docker_extern_containers.bbclass at boot time
|
|
||||||
# Notes:
|
|
||||||
# docker_extern_containers.bbclass creates a manifest file which contains
|
|
||||||
# the columns: archive name tag keep
|
|
||||||
# for each container. This file is read by the import_containers
|
|
||||||
# script to determine the parameters of the import
|
|
||||||
#
|
|
||||||
# Since the script needs knowledge of the values of $CONTAINERS_INSTALL_DIR
|
|
||||||
# and $CONTAINERS_MANIFEST these are substituted for placeholder strings when
|
|
||||||
# the script is installed.
|
|
||||||
|
|
||||||
DESCRIPTION = "Add init script to import docker images at boot"
|
|
||||||
LICENSE = "MIT"
|
|
||||||
|
|
||||||
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
||||||
|
|
||||||
inherit docker_extern_containers
|
|
||||||
|
|
||||||
SRC_URI = "file://import_containers.sh"
|
|
||||||
|
|
||||||
inherit update-rc.d
|
|
||||||
INITSCRIPT_PARAMS = "start 30 2 3 4 5 ."
|
|
||||||
INITSCRIPT_NAME = "import_containers.sh"
|
|
||||||
|
|
||||||
S = "${WORKDIR}"
|
|
||||||
do_install_append() {
|
|
||||||
install -d ${D}${sysconfdir}/init.d
|
|
||||||
install -m 755 import_containers.sh ${D}${sysconfdir}/init.d
|
|
||||||
|
|
||||||
sed -i "s,###CONTAINERS_INSTALL_DIR###,${CONTAINERS_INSTALL_DIR}," \
|
|
||||||
${D}${sysconfdir}/init.d/import_containers.sh
|
|
||||||
sed -i "s,###CONTAINERS_MANIFEST###,${CONTAINERS_MANIFEST}," \
|
|
||||||
${D}${sysconfdir}/init.d/import_containers.sh
|
|
||||||
}
|
|
||||||
-19
@@ -1,19 +0,0 @@
|
|||||||
# SPDX-License-Identifier: MIT
|
|
||||||
#
|
|
||||||
# Copyright (c) 2020 Arm Limited
|
|
||||||
#
|
|
||||||
|
|
||||||
SUMMARY = "Docker runtime minimal requirements"
|
|
||||||
DESCRIPTION = "The minimal set of packages required for running Docker"
|
|
||||||
|
|
||||||
inherit packagegroup
|
|
||||||
|
|
||||||
RDEPENDS_${PN} = "\
|
|
||||||
docker-ce \
|
|
||||||
docker-ce-contrib \
|
|
||||||
kernel-module-xt-nat \
|
|
||||||
kernel-module-xt-masquerade \
|
|
||||||
kernel-module-xt-addrtype \
|
|
||||||
kernel-module-xt-conntrack \
|
|
||||||
kernel-module-xt-ipvs \
|
|
||||||
"
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
CONFIG_FEATURE_TAR_LONG_OPTIONS=y
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user