| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
includes container-base, and adds image features to make development
tools/headers available.
Anything added to CORE_DEV_IMAGE_EXTRA_INSTALL will be installed into
the image in it's development variant.
The container shell is changed to bash from busybox.
package-management is added to this image type, but by default there
is no package feed configured (since it must be pointed at a build)
% root@qemuarm64-54:~# docker run -it zeddii/container-devtools bash
bash-5.2# du -sh .
399M . bash-5.2# rpm -qa | wc -l
308
bash-5.2# gcc --version
gcc (GCC) 14.2.0
Copyright (C) 2024 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
| |
Add some conditional distro feature checks for kubernetes flavours
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
| |
When debugging or configuration networking for CNI and
containerd we should ensure that support utilties are present.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When integrating into some container stacks (such as containerd),
the detailed configuration toml changes to change the container
runtime from runc to crun is not always trivial.
To avoid (for now) carrying configuration snippets as part of
the recipes, we can symlink runc to crun as crun is fully
compatible with runc.
Note: this means you can't have runc and crun installed on the
same image if the symlinking is done. Hence why this symlinking
is conditional.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When running a containerd-only stack, we need a CNI configuration
to be available.
When running containerd as part of something like K3S, we expect
the orchestration package will provide that configuration.
This commit makes a containerd-cni package available that contains
a starting point configuration.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
| |
containerd doesn't do native networking confguration, it relies
on CNI.
So ensure that CNI is specified in the containerd profile.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
| |
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
| |
Adapt the demonstration helloworld appliication to fix a warning
about UNPACKDIR not being correct.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
| |
These definitions are selected by setting: CONTAINER_PROFILE
Once selected the VIRTUAL_RUNTIME and other considerations for
the profile are configured and used by the images in meta-virt.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This image is a reference implementation to create a target platform
capable of running containers. This includes kernel configuration,
container runtimes, tools and other support applications.
The packages to install are largely described in the packagegroups
that are part of this layer. packagegroups are preferred as they can
easily be used to create similar images of different composition.
The recipes for the packages have their list of build and runtime
dependencies, as such, those dependencies are not part of the image
install or listed explicitly in the packgroups.
CNCF areas that have choices are described by VIRTUAL-RUNTIME
variables. These variables can be set individually (in a distro,
layer or local configuration file), or can be set by the setting of
a "CONTAINER_PROFILE". It is possible to select incompatible
packages if setting the VIRTUAL-RUNTIME variables individually.
container profiles have been created as valid / tested stacks of the
components in meta-virtualization.
The contents of the image are selected by testing the VIRTUAL-RUNTIME
values and mapping them to packagegroups.
The possible VIRTUAL-RUNTIME variables (and their values) are
currently:
engines: docker/docker-moby, virtual-containerd, cri-o, podman, lxc
VIRTUAL-RUNTIME_container_engine ??= "podman"
runtime: runc, crun, runv, runx
VIRTUAL-RUNTIME_container_runtime ??= "virtual-runc"
networking: cni, netavark
VIRTUAL-RUNTIME_container_networking ??= "cni"
dns: cni, aardvark-dns
VIRTUAL-RUNTIME_container_dns ??= "cni"
orchestration: k8s, k3s
VIRTUAL-RUNTIME_container_orchestration ??= "k3s"
Kubernetes terminology "components"
VIRTUAL-RUNTIME_cri ??= "virtual-containerd"
VIRTUAL-RUNTIME_cni ??= "cni"
To select a CONTAINER_PROFILE, set the variable in your local,
distro or layer configuration:
CONTAINER_PROFILE="<your value>"
The possible values for CONTAINER_PROFILE can be found in
conf/distro/include in the format of: meta-virt-container-<profile>.inc
default (docker)
containerd
podman
docker
k3s-host
k3s-node
This image will eventually be modified more as something that
can easily be inherited and re-used, but for now, it is a capture
of the best practices in a container host image.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
| |
This .inc file is no longer the active one by default, so we
will use it a reference for the possible values. To make that
more obvious, we comment out the current values.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
| |
nmap is not currently buidling for aarch64, so we disable it
as a ptest rdepends when that is our target arch. Some tests
may not work, but having a buildable stack is more important
than all tests working.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
| |
These are used to set configuration for container and virtualization
stacks. We set a default to ensure that sane values are always
present.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
| |
Allow aardvark-dns to be specified as a rdepends for podman
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
| |
Adding the following new pacakge groups:
packagegroup-cni
packagegroup-netavark
packagegroup-container-tools
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
| |
cri-tools aims to provide a series of debugging and validation
tools for Kubelet CRI, which includes:
crictl: CLI for kubelet CRI.
critest: validation test suites for kubelet CRI.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
| |
Bumping the SRCREV to pick up the following commits:
8650ed99 docker: enable ipvlan and build BRIDGE_VLAN_FILTERING into kernel
38e7c7aa docker: inherit base container and BPF configs
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
| |
We are showing one warning on check-config that isn't valid,
as the option has been changed in kernels 6.1+. We tweak
the check-config script to make that conditional
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
| |
qemu-system-i386 / firmware were added as RDEPENDS to xen.
While this is typically the right choice, we can make those
values defined by a variable in case other layers want to
override the default choice.
While we are at it, we change other references to qemu-system-i386
to allow a complete switch if the variable is changed.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
| |
The current RRRECOMMENDS can work, but isn't strong enough
since we explicitly configure system-i386 into 'xl' and
-system requires the bios files.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
| |
* master was renamed to main long time ago
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
| |
Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
| |
Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
| |
The settings of CFLAGS:arm overrides the previous CFLAGS settings,
causing buildpaths QA error for arm. Use CFLAGS:append:arm instead
to fix this issue.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The EGREP in ptest/tests/atlocal contains the build paths.
The CFLAGS in ptest/tests/atlocal contains the build paths.
This change set fixs:
- set EGREP to "grep -E" in ptest/tests/atlocal
- set CFLAGS to " " in ptest/tests/atlocal
by updating the patch
openvswitch-add-ptest-71d553b995d0bd527d3ab1e9fbaf5a2ae34de2f3.patch.
Signed-off-by: Bin Lan <bin.lan.cn@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
| |
Update registry list by removing 'registry.centos.org' entry.
This registry is no longer available.
Decommissioning of the registry was announced in the thread:
https://lists.centos.org/hyperkitty/list/devel@lists.centos.org/thread/EHGCQUHLDQ6LI474ZAB7MPRZFJD77P3S/
Signed-off-by: Lukasz Czechowski <lukasz.czechowski@thaumatec.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lxc-net enabled the IPv6 by default since v6.0.0[1], when named enabled on
system, the lxc-net which based on dnsmasq would fail to bind the IPv6
address on lxcbrX interface, that cause lxc cannot work correctly.
Add the lxc-net default v6 address to named.conf.option to tell named don't
bind and listen that address.
[1] https://github.com/lxc/lxc/commit/e8888344
Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumping upx to version v4.2.4-62-g44e4bd0b, which comprises the following commits:
44e4bd0b CI updates
1427b813 CI updates
a9cb3542 CI and cmake updates
b4db17ab cmake update
ba969fb9 CI updates
87ac252c CI updates
ada9081e CI updates
d6a29e58 CI updates
03c41840 all: misc cleanups
The upx repository has invalid git commits for SRCREVs
greater than 4.2.4 (and for commits that used to work).
This was reported on the mailing list by Javier Tia <javier.tia@linaro.org>
Older commits seem to work, but we'd have issues updating
the recipe to newer values (tip fo the tree is also broken
for gitsm fetching).
So for now, we switch back to individual fetches that we
can use to control the SRCREVs precisely.
SRCREVs are from:
git submodule status | awk '{ commit_hash = $1; sub(/vendor\//, "", $2); gsub("-", "_", $2); printf "SRCREV_vendor_%s = \"%s\"\n", $2, commit_hash }'
with two substitions for invalid SRCREVs (hence why the gitsm fetcher
has issues)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
| |
The meta-python is good enough for our needs.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When using externalsrc, the system will disable a number of tasks such as
do_validate_branches, do_unpack and do_patch. The do_kernel_metadata task
is configured to run after do_validate_branches do_unpack and before
do_patch. Since all of these have been removed, the task will never
run.
The do_kernel_metadata task is responsible for populating the
recipe-sysroot-native/kcfg directory via it's own dependency to
yocto-cfg-fragments-native:do_populate_sysroot.
Without do_kernel_metadata running, do_kernel_configme will fail to run
with errors like:
ERROR: linux-xlnx-6.6.40+git-r0 do_kernel_configme: Feature '../recipe-sysroot-native/kcfg/cfg/virtio.scc' not found, this will cause configuration failures.
ERROR: linux-xlnx-6.6.40+git-r0 do_kernel_configme: Check the SRC_URI for meta-data repositories or directories that may be missing
ERROR: linux-xlnx-6.6.40+git-r0 do_kernel_configme: Set KERNEL_DANGLING_FEATURES_WARN_ONLY to ignore this issue
Fix this issue by detecting if we're running with externalsrc, and then
adding the task do_kernel_metadata (from the current recipe) as a
dependency of do_kernel_configme.
To reproduce th original issue:
$ . ./oe-initbuild-env
$ bitbake linux-yocto -c patch
$ cp -r tmp/work-shared/<machine>/kernel-source linux-yocto
edit the conf/local.conf adding:
DISTRO_FEATURES:append = " virtualization"
INHERIT += "externalsrc"
EXTERNALSRC:pn-linux-yocto = "${TOPDIR}/linux-yocto"
$ rm -rf tmp
$ bitbake linux-yocto -c menuconfig
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
| |
Rename EXTRA_OVERLAYS to EXTRA_DT_INCLUDE_FILES as these variables
are renamed in https://github.com/Xilinx/meta-xilinx/blob/master/meta-xilinx-core/recipes-bsp/device-tree/device-tree.bb
recipe.
Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
| |
There's no sense adding a fragment dependency to kernels
that don't support merging. This commit restores the check
we previously had for an inherit of kernel-yocto before
adding the configuration fragmment dependency.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumping lopper to latest, which comprises the following commits:
a2abe17 lopper/device tree: variable sized records
fe60827 lopper: add heuristics to string format detection
00bd2e3 lopper: flush, unify and simplify output (print())
166d608 lopper/sanity: test both LopperTreePrinter and node print to file
6c4fd8e lopper: add warning/error checking framwork
55c415d lopper: make some warnings informational
2518125 lopper: improve output directory and output file handling
60357a6 lopper: assists: baremetal_xparameters_xlnx: In case of no valid lable don't generate defines
e0f6cd8 openamp: xlnx: rpmsg-native: update node names for shared mem and IPI
f84f204 lopper: assists: baremetal_gentestapp_xlnx: Add support for dependency files
08d1ac6 lopper: assists: gen_domain_dts: Remove unneeded properties while generating linux device-tree
4f22075 assists:baremetallinker: Avoid setting axi_emc as the default memory in linker sections
b4176e4 openamp: xlnx: Update handling for rpmsg-native
4644625 lopper: assists: xlnx_overlay_dt: Improvments in the assist
0866e1f lopper: assist: gen_domain_dts: Update the linux device-tree to delete unneeded nodes
7f909ed assists: baremetalconfig_xlnx: Remove the dead code from get_clock_prop()
ae9bcd4 lops:lop-a53-32bit.dts Add a new lops file to generate apu_map..... without 64bit addresses Add a new lops file to generate an apu_map without 64 bit addresses for a53 Signed-off-by: Dhriti Sree Rompicharla <drompich@amd.com>
1df1bad lopper: assists: bmcmake_metadata_xlnx: Update the driver example meta-data to take care of windows platform as well
8a67bb8 lopper_sanity: add openamp sanity test
f601286 lopper: add strict mode to nodes()
774ffc1 lops:lop-cpu-oslist Add a new lops file to get ai_engine as cpu
c3eae64 openamp: xlnx: fix syntax err
1b014ad lops: lop-microblaze-riscv: Update multilib mappings
3c69852 petalinuxconfig_xlnx.py:pass memory_type value to device_type
4d15e3e lops: mb-riscv: Add generic cpus_* pattern to re-use riscv lop file for asu
c649a70 openamp: xlnx: Validate reserved-mem regions
10efc21 isospec: add permissive flag for non-SMID devices
53db451 lopper/log: move basicConfig to init()
b5ae620 lopper: assists: gen_domain_dts: Add Audio formatter DT yaml
2be4756 lopper: assists: gen_domain_dts: Add SPDIF DT yaml
771dc82 lopper: assists: gen_domain_dts: Add I2S sound card DT yaml
18b9a7c lopper: assists: gen_domain_dts: Add SDI Rx Subsystem DT yaml
7d3726f lopper: assists: gen_domain_dts: Add SDI Tx Subsystem DT yaml
16dd23c assists: gen_domain_dts: Add support for MB-V zephyr
b6cd9f4 openamp: xlnx: Update property 'power-domain' to 'power-domains'
bcd9835 assists: gen_domain_dts: Hardcode DDR address for Zynq to always start from 0
19a29c3 lopper_sanity: add phandle selection test
7f80d1a assists/isospec: introduce base protections
042d1e6 lopper: fix property comparisions
edb1c8a lopper: assists: Initial support for Versal Gen2 pl configuration
4bab4d1 lopper: add --symbols command line flag
c900d73 lopper: update default phandle map definitions
b212b99 lopper/base: enhance node dereference field lookup
2fff711 lopper: assists: baremetal_xparameters_xlnx: Generate coherency defines to inline with old tool defines
4013600 lopper: assists: petalinuxconfig_xlnx: Add support for memory_type in the generated yaml file
81f6a45 lopper: assists: yaml_bindings: Documentation for switch and broadcaster
4f4b8e5 assists: gen_domain_dts: Add ocm IPs into linux ignore list
c13ea5d assists: gen_domain_dts: Add few Zynq specific IPs in Linux ignore list
a02e2e5 lopper: don't check the existence of cpp when LOPPER_CPP is set
52ba5b6 assists: baremetallinker: Add support for the memory sections with new taxonomy changes
0676d1a lopper: lops: lop-ttc-split: Rename the label names to inline with old tool
bcc1e08 lopper: assists: baremetal_xparameters_xlnx: remove references to duplicate SDT* defines
b405692 lopper: assists: baremetal_gentestapp_xlnx: Add support for override stdin configuration
9ee70bc lopper: assists: baremetal_gentestapp_xlnx: Fix race condition while making the Interrupt Controller example as the primary example
eb56358 lopper: assists: baremetal_bspconfig_xlnx: Add support for generating microblaze_exceptions_g.h header
8151269 lopper: assists: Add HLS IPs yaml documentation.
381a0c2 assists: baremetal_gentestapp: Pull the examples based on the hwproperties
fa615ba lopper: assists: gen_domain_dts: Add phandle to Video Phy Controller DT entry
c4ee0d0 lopper: assists: gen_domain_dts: Add DP1.4 Rx Subsystem DT yaml
6f7bd17 lopper: assists: gen_domain_dts: Add DP 1.4 Tx Subsystem DT yaml
fcfad51 assists: zuplus_xppu_default: fix syntax error
b4dd529 assists: baremetallinker: Fix ddr_default logic for memory tests
1d9afe6 assists: baremetallinker: Update the logic to find phandle in address msp
cac0985 lopper: assists: gen_domain_dts: Add mipi pipeline documentation
ae68834 lopper: lops: lop-ttc-split.dts: Add new lops file for baremetal ttc driver
697ce41 tree: fix phandle collision detection
cecdead isospec: read id from .iss and propagate to yaml
c895b6e lopper: assists: gen_domain_dts: Add HDMI Phy Controller DT yaml
5bbab83 modify: delete node before copy and rename
1cd1eaa assist-sanity: add node reordering self test
79d5457 tree: add API to reorder nodes
f9a3605 lopper: assists: gen_domain_dts: Add Video Phy Controller DT yaml
0e29b6a lopper: assists: gen_domain_dts: Add HDMI 2.0 Tx Subsystem DT yaml
10c162f lopper: assists: gen_domain_dts: Add HDMI 2.0 Rx Subsystem DT yaml
4c867f0 assists: linker_xlnx: Fix memory assignment to avoid build failure
e016f0e tree: remove extraneous output
0260f70 tree: fix property debug level and output
41d9d99 tree: simplfy node copy and update
c5aaab7 lopper: make print() more robust
25d080c lopper/tree: fix node addition and move robustness
9007c25 lopper_sanity: add external assist santy
2cfc2cd lopper: search configured paths for assists
8af3dfb tests: add selftest for assist sanity checking
626c472 lopper: assists: gen_domain_dts: Add HDMI 2.1 Tx Subsystem DT yaml
d141520 lopper: assists: gen_domain_dts: Add HDMI 2.1 Rx Subsystem DT yaml
df99632 lopper: assists: gen_domain_dts: Don't delete child nodes when pruning yaml files
a6a8907 lopper: assists: Initial support for zynq pl configuration
87f81b6 openamp: Add Validation for carveouts and linker
cecc083 assists: baremetallinker: Add HBM specific address ranges in axi_noc1 dictionary
2cc9ba4 lopper: assists: xlnx_overlay_dt: Add proper checks to add &amba node
93b1c56 lopper: assists: gen_domain_dts: Move the yaml bindings into a seperate folder
ae67899 assists: baremetal_xparameters: Generate Canonical definitions for IPI targets
699ecb3 lopper: assists: bmcmake_metadata_xlnx: Add proper checks
a8168be lops: lop-microblaze-riscv: Sync with Vitis riscv gnu lib installation
d90c10b assists: baremetal_gentestapp: Check the interrupt-parent of IPs before adding their intr example in peripheral test
4db8fdd lopper: assists: baremetal_gentestapp_xlnx: Don't pull uart examples if the hardware instance is configured as stdin
b3e6a55 assists: gentest_app: exclude last occurence of ttc node
c20b0cb assists:baremetal_validate_comp_xlnx: Avoid the hw check when device_type property is missing in YAML
285e063 lopper: assists: Add num-insts to rfdc node
f51e38d lopper: Update check to adjust DDR start and size address
855aaf2 lopper: fix incorrect warning log
90de8d0 lopper: assists: baremetallinker: Adjust heap size for microblaze lmb_bram designs having size less than 8k
1d9c628 openamp: xlnx: Add vc-p and vn-p models
4794bc9 openamp: xlnx: versal: match model parsing same as VNET
eec481d assists: generate_config_object: Enable user-driven customization of library options
79549ae assists: generate_config_object: Addressed the scenario where, not all masters are reset masters
f82ab8d lopper:assists:baremetallinker: Do not consider linear SPIs for memory tests
a73d564 lopper:assists:gen_domain_dts: Remove axi_noc and noc_ddr4 IPs from linux ignore list
021013d base: add expression to clock phandle description
48750bd openamp: xlnx: Update model parsing
60d8aa1 openamp: xlnx: remove a2197
7bd74a9 lopper: assists: gen_domain_dts: Update symbol node entry for gic_its node
cfb21da base/phandle: add resets and assigned-clocks
5d13874 lopper: assists: gen_domain_dts: Add option to keep TCM nodes
ebdfc57 lopper: assists: baremetal_validate_comp_xlnx: Update the assist to handle use cases where dev_type is missing in the driver yaml
ff72bf2 lopper: assists: baremetal_validate_comp_xlnx: Update mem_type check for microblaze_riscv
1eeeec3 lopper: assists: baremetal_xparameters_xlnx: Generate reg and interrupt defines for all possible ranges
064646a assists: gen_domain_dts: Remove BRAM memory nodes from linux device tree
624e91d assists: linker/domain: Add support for linear flash memories in linker script
5e68bc5 lopper: assists: baremetal_validate_comp_xlnx: Update memory test checks for zynq platform
818100c lopper: assists: baremetal_xparameters_xlnx: Fix whitespace after the marco name warning
01d33c4 assists: baremetal_xparameters_xlnx: Export defines needed by MB V BSP
442630a lops: lop-microblaze-riscv: Add support for library fallback mechanism
e8f8c80 lopper: assists: baremetal_gentestapp_xlnx: Fix the condition for selftest API declartion
136a11a setup.py: change minimum version to 3.8
4b68752 lopper: assists: xlnx_overlay_dt: Handle phandle properties in a specific way
8476601 assists:gen_domain_dts.py: Remove PL DDR from default linux device tree
57180b8 lopper: assists: gen_domain_dts: Prune clocking wizard
450b6ad setup: update description and python version
bd0aa2f version: update to v1.2.0
83b251f lops: lop-microblaze-riscv: Add support for bit-manipulation extensions
ef5524b lopper: assits: bmcmake_metadata_xlnx: Fix CMAKE_MACHINE value for versal platform
282ec07 lopper: assists: baremetal_validate_comp_xlnx: Add special handling for emacps
e4b61fc assists:baremetallinker: Correct the logic to set the start address of linker section for microblaze
538f6b5 assists: baremetallinker: Correct the start address for text and data sections for microblaze
4e00e10 assists: baremetalconfig: Correct the size for 32bit cell size boundary condition
026f7ad lopper: assists: baremetallinker_xlnx: Update default heap size for microblaze processor
bcd57e9 lopper: assists: baremetal_validate_comp_xlnx: Add assist to validate the hardware required for a given ESW component
c34ef01 lopper: assists: gen_domain_dts: Update don't delete properties list
bc99d2f lopper: assists: preserve the device-tree node order
212686c isspec: drop debug code
d01a174 openamp: xlnx: Update Platform handling to use model property
c747581 base/phandle: add reset-gpios
4451694 tree: return a list of nodes matching an address
1bf6728 Revert "lopper: assists: gen_domain_dts: Remove dupe TCM node"
9173c4c openamp: xlnx: VHK158: clean up compatible string
7b8fafc lopper: assists: xlnx_overlay_dt: fixed the closing bracket missing issue
bfbd55b domain_access: reference count memory nodes
6937a27 Revert "openamp: xlnx: Clean up TCM handling"
4e8c9a4 assists/domain_access: keep all matched regions
8a936b8 openamp: xlnx: Clean up TCM handling
7a16db0 lopper: assists: gen_domain_dts: Remove dupe TCM node
17cc815 lopper: assists: domain_access: Fix typo vebose
033a78f lopper: assists: barmetal*: Fix race condition in the version driver handling
ac63f30 openamp: xlnx: Add versal SOC's vhk158 and vek280
5b0289f lopper: assistes: Reduce dtb for sd-fec designs
6ce8ab4 lopper: assists: Enhance special proprety removal
d6eedf2 lopper: assists: Add special handling for xdma pcie
b658166 lopper:assists:baremetal*: Correct the steps to construct a 64 bit value from 2 32-bit cells
6525a7f assists/domain_access: update start and size of memory
843a5ea assists: remove overly verbose output
939b356 assists/domain_access: count indirect references
e2ed2f3 assists/isospec: output cpu specific label
56b34b2 assists/domain_access: fix memory node -> address-map updating
1709d94 yaml: update version check to use packaging module
bc86e1e assists: baremetal_xparameters_xlnx: Export MB V cpu parameters related defines
4af6ecd openamp: xlnx: Clean up SOC Parsing
5ba9f59 openamp: xlnx: Add support for more SOC's
f58a344 openamp: xlnx: Add VMK180 support
1fcbfed assists/isospec: add ss_permissions to valid access types
6b74788 lopper: assists: baremetal_xparameters_xlnx: Update IPI interrupt ID value to inline with vitis classic
b03b978 lopper: assists: baremetal_xparameters_xlnx: Generate interrupt ID for IPI
cf70679 lopper: assists: baremetalconfig_xlnx: Generate dummy config struct in case proprety is not present
f20667c assists/isospec: log new spec type ss_management
3b8462b lopper: assists: baremetal_xparameters_xlnx: Fix subnode_phandle property generation
b734b82 lopper: assists: xlnx_overlay_dt: Fix wrong gic_node referencing
9c8f055 setup.py: Add "packaging" module under YAML related requirements of Lopper
ed32a4a lops: lop-microblaze-riscv: Fix handling of use-muldiv and use-fpu
f4f4da8 lopper: assists: Remove domain specific code from the assist
a76048f xlnx_overlay_dt.py: Rename dfx-static to dfx
5446ee6 asists/subsystem: make processing more robust
d9f9621 isospec: ensure that memory and cpus are always lists
c4e1589 lopper: assists: baremetal*: Add provision to pass float numbers from SDT as is
738df8c yaml: support ruamel versions > 0.17.x
8e23822 lopper: assists: gen_domain_dts: Fix syntax issue in the code
8eaf027 lopper: assists: baremetal_xparams: Done generate interruptIDs for PS peripherals
54a8dbd isospec: refactor for speed and tracking
37b6217 tree: fix property iteration for json
f0a6873 isospec. WIP2. cleanedup prints
67cbf9b WIP: v2 unassigned devices and memory
d7fa5bb WIP: unreferenced devices can be addded, lots of address warnings
8b7df8c assist:baremetalconfig: Avoid the error when there is no serial mapped to the processor
5a3e037 xlnx_overlay_dt.py: Update script to support partial use cases
8ee72f0 openamp: xlnx: Enable Linux generated Device Tree to work for OpenAMP use cases
6b68ec5 lopper: assists: xlnx_overlay_dt: Update the interrupt-parent references in pl.dtsi
8ff2ef3 lopper: assists: gen_domain_dts: Update symbol node gic entries as per latest change
4314f3c lopper: assists: gen_domain_dts: Fix race condition for pl microblaze based system device-tree
9b9abce lopper: assists: gen_domain_dts: Update comments
c032056 lopper: assists: baremetalconfig_xlnx: Don't generate config file when it is not needed
4be33e3 assists: bmcmake_metadata_xlnx: Add check for interrupt property
f3cfd99 lopper: assists: xlnx_overlay_dt: Add outdir support for pl.dtsi generation
358e798 lopper: assists: gen_domain_dts: fix race condition in the size cells handling
49cb3df lops: openamp: Update lops to be scalable for Linux boot with latest Lopper outputs
292221c lopper: assists: baremetal_gentestapp_xlnx: make the Interrupt Controller example as the primary example
52d3310 openamp: xlnx: Update RPMsg kernel mailbox output
0721a60 lopper: assists: baremetalconfig_xlnx: Update the get_label() API to read xlnx,name property
029302d lopper: assists: Add support for VersalNet linux device-tree generation
cbf2a75 assists: baremetal_gentestapp_xlnx: Don't generate Instance names for selftest
9883a0b lopper: lops: Rename the interrupt-controller node to inline with existing linux device-tree entries
2a1b71f lopper: assists: gen_domain_dts: Add support for linux device-tree generation
236ba92 lopper: assists: correct memory size when the size crosses 32 bit
4411d8a lopper:assists:baremetal_config: Correct the pci range mapping
0733a51 xlnx_overlay_dt.py: Update script to support full and dfx-static
d9b0491 lopper:assists:baremetal_xparams Generate the Memory region names within NOC macros
6567bbf openamp: xlnx: Add IPI Helper code
9f79719 assists: introduce sample comparision assist
f638216 assists:baremetallinker_xlnx: Fix handling for lmb bram
08714b3 lops: Add lops file to generate Microblaze RISC-V compiler flags
e8d8670 lopper: assists: baremetal*: Add proper checks
0e640aa openamp: xlnx: Add support for Versal NET
c33273e assists:baremetalconfig_xlnx: Update logic to get correct PCI range
dafaa60 lopper: assists: baremetal_xlnx*: Add support for the Generic Interrupt ID
eab07ca lopper: assists: bmcmake_metadata_xlnx: Add support for XPAR_CPU_ID in cmake meta-data
c1f4c15 lopper: lops: Keep the status disabled nodes in the pruned tree
76f8b57 lopper: assists: xlnx_overlay_dt: Remove amba_pl references
26cfd97 assists:baremetal_xparameters_xlnx: Correct the string macros in xparameters
f7de8bb openamp: xlnx: Add new module flags for role, host and remote
74dcf15 lopper: assists: bmcmake_metadata_xlnx: Don't include IP subcores in the hw metadata
37e3181 openamp: xlnx: Update output file
6e06529 lopper: lops: lop-domain-linux-a72-prune: prune symbol node
2c42dc5 lopper: lops: lop-domain-a72-prune: Don't delete pl nodes
fb4aab3 lopper: assists: xlnx_overlay_dt: Migrate the DT overlays to sugar syntax
58972a7 lopper:assists:xparams: Provide an option to configure the xparam prefix
7877280 lopper:assists:xparams: Replace the node label name with the IP name in canonical entries
657c7d6 tree: count indexes for dropped records
07d5b55 spec: document extended yaml operators
d23e170 yaml: expand all chunks of json into numbered nodes
4430667 tree: improve phandle map variable field handling
294d238 yaml: resolve json properties after setting pclass
9ab64bd base/phandle: add expression to clock phandle description
3108937 lopper: assists: gen_domain_dts: Fix race condition in deleting the cluster cpu node
fcf7db3 lopper: assists: xlnx_overlay_dt: Remove deprecated lopper_tree imports
10460d8 lopper: assists: baremetalconfig_xlnx: Don't generate config file in case driver is compatible with the given sdt
a8e926b openamp: xlnx: Update channel check to account for 0
512fede openamp: xlnx: Enable multiple channels in YAML
5f6dec1 openamp: xlnx: remove old openamp zynq logic
885a446 openamp: xlnx: Enable Zynq Platform via updated module flow
7dddfe1 lopper: assists: Add support for pruned system device-tree
a43e3ee assists/domain: respect -t flag to lopper
d83c43b tree: enhance phandle handling for variable sized fields
c5fdcd5 lopper: assists: gen_domain_dts: Add assist for generating processor specific dts
d8f4baa tree: decreate duplicate node verbosity
eeb629c yaml: switch output to logging format
61c9105 assists/isospec: change no-flags/default for devices
c6bb68b tree: convert to logger and f-string format
4787e49 lopper: convert debug to logger and f-strings
5fe8c25 logging: ensure that the root logger has the same level as subloggers
8f0214a lopper: move logging to reusable location
9a55fdc lopper:assists:baremetallinker_xlnx Correcting logic to get the stack and heap data from yaml
a92c7d9 lopper:assists:baremetal_xparameters_xlnx: Removing the BOARD dependency on compatible string
bcfb72d docs: add 'output' lop operation documentation
950ed68 lopper: assists: If options has outdir option consider it as precedence
dc9cf68 lopper: __init__: Add support for optional outdir feature when assist called from lops
315bdb9 lopper: add "cond" property to lops
c4d8872 assists:baremetal_xparameters_xlnx: Fix for the wrong reuse of variable "index"
a2835e9 lopper: assists: Add proper checks for chosen node handling
240b9b7 lopper: assists: baremetal_xparameters_xlnx: Fix race condition in the additionalProperties handling
57e9a24 lopper:assists:baremetal_config : Add flexibility for padding number
c4c0b12 lopper:assists:baremetal_xparameters : Adding support to add a 64 bit property in xparameters
0dfdf0f lopper: assists: baremetal_xparameters_xlnx: Ignore Subnodes
7f0464d lopper:assists:baremetalconfig : Adding support to read a 64 bit property from a node on demand
8dc8be5 lopper: assists: baremetallinker_xlnx: Fix UnboundLocalError has_ocm
3e501d6 lopper: assists: baremetallinker_xlnx: Fix race condition in the memtest config
2824f18 lopper: assists: bmcmake_metadata_xlnx: fix type in driver name
4940c61 lopper: assists: baremetal_xparameters_xlnx: Add support for generating XSEM_CFRSCAN_EN and XSEM_NPISCAN_EN defines
d48e497 lopper: assists: baremetallinker_xlnx: Update the process checks for all cores instead of 0th instance
9b4a1b2 lopper: assists: baremetallinker_xlnx: Add support for linker_constraints
f053643 openamp: xlnx: Add Host specific values
791a368 lopper: assists: bmcmake_metadata_xlnx: Generate CMAKE_MACHINE variable for microblaze processor
068882c lopper: assists: baremetal_xparameters_xlnx: Fix IndexError in assist
2f022b5 lopper: assists: baremetal_gentestapp_xlnx: Update the assist to handle versioned drivers
807435a lopper: assists: Generate BOARD define inline with existing code
a41c9f2 lops: lop-microblaze.dts: Add check for model property
d6ea4ba lopper: assists: baremetalconfig_xlnx: Add support for variable size structs
55961c6 lopper: assists: baremetallinker_xlnx: Add support for ps7_ram
12994d4 lops:lop-microblaze: Fix generated library path
89de3b1 lopper: assists: Generate board information in the cmake meta-data
872a00e lopper: assists: baremetal_gentestapp_xlnx: check for all compatible strings in a node
07a7da5 lopper: assists: baremetal_getsupported_comp_xlnx: Use VerboseSafeDumper to remove the yaml anchor
e4cd719 lopper: assists: baremetalconfig_xlnx: Make sure node order is preserved
19e89c7 assists/baremetal/linker : Adding new memory nodes to the linker metadata to support versal net
3a1e67f lops/baremetal: Adding new lops file for supporting Versal Net imux use cases
a795ad9 lopper: assists: baremetal_xparameters_xlnx: Generate XPAR_MICROBLAZE_ADDR_SIZE define if xlnx,addr-size property is present
b5fbd62 lopper: assists: baremetal_xparameters_xlnx: Cleanup the try execpt blocks
95e8283 lopper: assists: bmcmake_metadata_xlnx: Fix the lwip topology index
14c4fad lopper: assists: bmcmake_metadata_xlnx: Fix race condition in the assist
f5050f4 lopper: assists: baremetal_xparameters_xlnx: Handle string property values
9110f94 lopper: assists: bmcmake_metadata_xlnx: remove duplicate node references
8e1bb57 lopper: assists: baremetallinker_xlnx: Add missing tcm memory section for versal a72 and r5 processors
f2c82ce lopper: assists: baremetal_gentestapp_xlnx: Fix race condition in the self test app declartion
bf43b8d lopper: assists: bmcmake_metadata_xlnx: Check for all compatible strings in the node
0db3eb5 lopper: assists: baremetalconfig_xlnx: Handle string property values
a1e5f4a assists/baremetal: Add handling for non homogeneous driver device trees
baee4f1 lopper: assists: baremetal_gentestapp_xlnx: Don't generate meta-data for the non mapped drivers
5d1cb8a openamp: xlnx: Enable module with host/remote role
96e6796 openamp: Enable assist to be invoked as module
d4eb9bf lopper: assists: baremetal_xparameters_xlnx: Generate PSS_REF_CLK define for all the processors
d4013c3 isospec: handle subdomains of default subystem
b69b557 lopper: assists: Generate device_id and slrcount information in the cmake meta-data
f429a84 isospec: format memory ranges in hex
9ea1d12 isospec: handle multiple memory ranges
98e25b6 lops: Add lops file to generate microblaze compiler flags
f4fc65c lopper: assists: Add support for mig7
b61d099 lopper: assists: Special handling for ps7 ddr controller
0d70ce1 lopper: assists: baremetalconfig_xlnx: Fix race condition in the cmake meta file name
8c9c847 bmconfig: Change in the logic to get the _g.c name for the drivers
3c59af4 lopper: assists: baremetaldrvlist_xlnx: Generate both xlnx,ip-name and xlnx,name variable meta-data in the ip_drv_map.yaml file
c7ab947 lopper: assists: baremetallinker_xlnx: Add default memory section for cortexr5 processor
3b4b710 lopper: lops: lop-domain-linux-a53-prune: prune symbol node
9caac31 lopper: assists: Update the assist as per latest repo yaml changes
457ad40 lopper: assists: bmcmake_metadata_xlnx: Handle versioned folders
227de35 openamp: xlnx: Update compatible string checks
bc85a14 lopper: merge inputs with domains to main device tree
81f11da lopper: assists: baremetal_xparameters_xlnx: Generate the XPAR_MICROBLAZE_DDR_RESERVE_SA define
e0e7200 lopper: assists: baremetalconfig_xlnx: Special handling for Handler-table property
5ba05a0 assists/domain_access: allow domain_access to function as a module
beffe48 subsystem: make processing more robust
6d911d3 yaml: fix output to not be list based
fe4fb6a yaml: allow files to be system device tree files
5ac6ae9 assists/isospec: update to json format v2
9f83eae assists/isospec: introduce reference domains.yaml generation
0f232f1 tree: add compatible string and address node searching
bad0783 yaml: override default anytree iterator generator
4c26d2f tree: add children() method
732c14c yaml: tweak output style
3169a71 lopper: handle json encoded strings in DTC
5d2b417 lopper/tree: create address() lookup on a node
b548dae lopper: allow input files to be stored for future use
a622afd lopper: allow .json files to be passed as tree inputs
6f15431 lopper: assists: Handle drivers which are part of sdt folder
9a21695 lopper: assists: baremetaldrvlist_xlnx: Update the ip_dict to use xlnx,name property instead of xlnx,ip-name
c524140 lopper: assists: bmcmake_metadata_xlnx: Update the assist to handle versioned libraries
34bcaf4 build(deps): bump flask from 1.1.2 to 2.2.5
addf5dd README: Fix loppper spell check
71ac299 lopper: assists: bmcmake_metadata_xlnx: Generate example list yaml
5536a45 lopper: assists: baremetal*: update the driver name variable to handle versioned drivers
1b9b56d lopper: assists: baremetalconfig_xlnx: Add support for subnode generation
dbd29ef lopper: assists: baremetal_xparameters_xlnx: Add support for additionalProperties schema
395f00d lopper: assists: baremetal_xparameters_xlnx: Add support for generating NUMBER_OF_SLRS define
6831950 lopper: assists: baremetallinker_xlnx: For memory tests configuration default memory should be ocm if available
a276bb7 lopper: assists: bmcmake_metadata_xlnx: Remove unneeded list set operation on node list
40d2d6f lopper: assists: baremetallinker_xlnx: Fix compare logic in hex strings
4fc81d4 lopper: assists: bmcmake_metadata_xlnx: Don't use hardcoded library name
f04afa2 lopper: lops: lop-domain-linux-a53-prune: Update memory nodes as per cpu cluster mapping
1bd16af dts: remove invalid space before label
df60538 lop-domain-linux-a53-prune: Removing all the unneeded sdfec properties from linux device tree
7abbe5f lopper: assists: generate_config_object: Add outdir option support
148dc1d lopper: assists: bmcmake_metadata_xlnx: Fix failed name 'compat_list' is not defined
a528f34 lopper: Delete unneeded processor node in a generic way
3871b4a baremetal_assists: Modifying baremetal assists to support use of multiple ESW repos
7c8bd82 lopper: assists: baremetal_xparameters_xlnx: Generate time stamp frequency define
5c73008 lops: fix comment style
9a303b6 specification: fix incorrect phandle
8c02dae specification: wrap long system-device-tree.dts lines
ac864c5 specification: migrate remaining .md documents to Sphinx
0cf0bbc specification: rework 'core' chapters
929aa91 specification: rework intro and add glossary/bibliography
4ecc1af lopper: create LopperJSON class
6ee8691 lopper: add json input/output file format
3e599b8 lopper: assists: petalinuxconfig_xlnx: Add device information in the meta-data
e9a5887 lopper: assists: bmcmake_metadata_xlnx: Add support for hardware ip name
46a9d81 lopper: lops: lop-domain-a72-prune.dts: Delete unneeded nodes from a72 domain
eb71824 sanity: make temporary file management cross platform safe
a476a33 lopper: Implementation of lopper plugin for generating config object
aa96fcc lopper: assists: baremetal_xparameters_xlnx: Fix whitespace after the marco name warning
ed171c2 lopper: lops: Remove R5 cpu nodes while generating linux dtb
146b2e8 lopper: assists: bmcmake_metadata_xlnx: Generate node label name instead of node name in the cmake meta-data
746a744 lopper: assists: Move get_label api to baremetalconfig_xlnx so that other baremetal assists can use it
098ba70 Revert "lopper: assists: baremetaldrvlist_xlnx: Generate CMakeLists.txt file"
2018c89 lopper: assists: bmcmake_metadata_xlnx: Add support for generating standalone bsp meta-data
b1a0443 lopper: assists: Add MEMORY_SECTION cmake variable
8146b45 lopper: assists: petalinuxconfig_xlnx: Remove the hardcoded processor name
37408dd Convert demo readme to markdown
0da7cbd specification: remove secure-bus and secure-reg
2cfea13 specification: fix incorrect usage of unit addresses
374fcdc specification: fix invalid dts in examples
22fcd01 lopper: lops: lop-domain-linux-a53-prune.dts: Fix undefined reference to valid_phandles in case of no domain file passed
bad1796 specification: convert to Sphinx
5eabf85 assists:gentest_app : Adding outdir support to periph test assist
a04f96c asists:baremetaldrvlist_xlnx : adding the usage of outdir option in baremetaldrvlist_xlnx assist
c8e9554 lopper:assists: Update assists to support outdir option and the changed yaml format in embeddedsw
932b574 lopper: assists: petalinuxconfig_xlnx: Update assist as per latest lopper changes
dfa5252 docs: Minor README.md fixes
cd47956 README: update and clarify Xen extraction demo
f91d5ef inputs: update host device tree to include interrupt-parent
d7b6962 inputs: update demo yaml to remove DOS formatting
4fb5339 demos: add openamp and Xen demo README and input files
94ce2d6 a53-prune: allow access specified devices to be retained
4f131aa tree: fix dref() parent tree lookup
54f9921 subsystem: use dref() instead of lnodes()
5bd964b openamp: update 3rd parameter to options list
da29be7 lopper: assists: baremetal_bspconfig_xlnx: Clean up the code
aa7c005 lopper: assists: Updated the assists to support for outdir option
5702589 lopper: assists: baremetaldrvlist_xlnx: Generate CMakeLists.txt file
ac1b419 lopper: assists: Remove hardcoded cpu to yocto machine mapping dictionary
1e9e7d0 lopper: lops: lop-cpulist: Add lops file for getting the processors list for a given System Device Tree
9670921 lopper: assists: baremetal_getsupported_comp_xlnx: Add assist for getting the baremetal supported components list for a given processor
41b08f5 lops: create phandles for modify operation references
0c9c95b Changing the bus name from amba to a valid bus name as per open source dts schema.
03e4ec9 fdt: Fix for the condition when an include file is defined inside a node
ce4e3c4 extract-xen: Copy sdt root compatibles into extracted node
de9dc53 extract-xen: Handle xen,reg properly
cdacef3 sanity: close memreserve tree before reading
11d1923 fdt: ensure new line after /memreserve/
534b3dc extract-xen: encode the virtual interrupt parent as string
cdb1a7b lopper/release: bump version to 1.1.0
f5ee4ae tree: fix 32bit value detection
19c83bb fdt: use hints to write single byte
2f389c8 tree/conditional: fix dtc 1.6.1+ support
6343c41 lopper/core: support 64 bit values
46e6505 libfdt: add 3.10 vendor
64482a5 lopper: lops: lop-domain-linux-a53: Remove duplicate psu_r5_tcm_ram_global node
79a3c3e lopper: assists: bmcmake_metadata_xlnx: Fix race condition in the code
b7d116f lops: fix comment style
093ef5a lopper: lops: lop-domain-linux-a53-prune: Don't delete the amba_pl node
e1429f5 Revert "base: add powerdomains to default phandle meta data"
9159040 lopper: assists: baremetallinker_xlnx: Fix race condition in memory domain handling
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
| |
When distro features include selinux, we should add that
configuration to our kernel.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
| |
Like docker, there is runc / OCI check-config.sh script that
is useful when determining if your kernel is properly
configured.
We can package it in a -check package, and install it to
a similar location as the docker variant.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
| |
The xen-tools patch for 4.20 was incorrectly using the 4.19
context version.
With this cleanup, we should be able to build 4.18, 4.19 and
4.20 out of master.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumping crun to version 1.17-5-g4b75c7c, which comprises the following commits:
4ea62f2 Disable criu support on riscv64
969fd2e Packit: Create missing path components in files_to_sync
000fa0d NEWS: tag 1.17
e3b5a26 Packit: Reuse Fedora targets wherever possible
556b808 Packit: separate out ELN build jobs
a5320ae Add debug logs for container creation
228ad7c container: remove manual dup operation
13ea475 libocispec: sync from upstream
3dbf152 error: do not write error twice to stderr
5e35dfe libcrun: vanity, color debug messages
2c4db99 linux: ignore EPIPE for hooks
7fcede6 RPM/Packit: Fix wasm conditionals, cleanup rpm spec, update packit config
0f556b7 build: force install symlinks
23d5e49 Fix warning around unused result on chdir("/")
6bf9e7c Report executable not found errors after tty has been setup
a295e70 Only log to stderr if `--log` is not provided
fb593fc fix getpwuid_r error handling
d29fdae tests: bump containerd version
f36c216 tests: bump ubuntu version
d065a5a Revert "Add `--log-stderr` option"
dc31069 src/libcrun: fix handling of device paths with trailing slashes
ab64a5c linux: fix recvfrom error handling
a32d433 Fix `additional_gids_size` on `process_user_dup`
b98e0dd Add `--log-stderr` option
544fe3f Allow passing an ID to journald log driver
6d92b28 Log only after crun context has been setup
29259e4 Add log options documentation
f72483a Fix double-free in crun exec
e4b4a21 src/libcrun: fix error handling in libcrun_kill_linux
83c1355 src/libcrun: improve error handling for the mnt namespace restoration
6fb1f08 src/libcrun: added custom error message for ESRCH case
9f06d3c Add autoPatchelfHook to static build
19b9893 Add `--log-level` option
fd7f50a tests: fix wasmedge build
0380369 Remove libcrun_setup_terminal_ptmx
1edf6d0 src/libcrun: ensure DefaultDependencies respects CRI-O annotation
42b0b99 configure.ac: fix condition for wasm detection
afa829c NEWS: tag 1.16.1
c6ecb3b linux: attempt to make rootfs private too
109f1e9 container: fix comment
f23aaa1 linux: fix error message
72b4eea Inherit user from original process on exec
cf1ec33 cgroup-utils: check for open error
a958fcd cgroup-systemd: fix comment
7112df4 cgroup: remove redundant check
3bcd26a Use write_file_at_with_flags in write_file_with_flags
2dc1598 NEWS: tag 1.16
bfa0640 Add more O_PATH flags
0613ec5 cgroup-systemd: check for sd_bus_message_append error
fcfac99 Fix sd-bus error handling for cpu quota and period props update.
6682432 linux: make_parent_mount_private uses fds
5943335 container: use relative path for rootfs if possible
27d7dd3 README: update podman demo
f916acf Enable systemd in s390x builds
e6eab76 wasmedge: access container environment variables for WasmEdge configuration
Bumping libocispec to latest, which comprises the following commits:
4b8feed common: make sizeof the last argument for calloc
2ba727a sources: silence compiler warning
3ec73ba generate: generate clone operations for deep-copy
d371222 ocispec: fix style
2236d50 github: test with the embedded yajl library
bed19ad configure.ac: --enable-embedded-yajl skips check for yajl
b633f89 Makefile.am: distribute the src/yajl symlink
Bumping image-spec to version v1.1.0-35-gda92727, which comprises the following commits:
716f83b Implementations should support zstd
7327da4 Add deprecation notices to nondistributable layers
1d3daab Update linter and Go releases
16101e2 Remove misleading "must" in `ref.name` requirements
65dea7a Remove IRC link
a977bd3 Remove validation warnings to stdout
4bbdd7f Switch jsonschema validation libraries
89fee07 MAINTAINERS: move jonboulle to EMERITUS
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumping k3s to version v1.31.1+k3s1, which comprises the following commits:
452dbbc14c update kubernetes to v1.31.1-k3s3 (#10910)
9ae2c39004 Update Kubernetes to v1.31.1 (#10895)
d926e69073 Fix hosts.toml header var
2caa785e17 Only clean up containerd hosts dirs managed by k3s
4c8ef7f477 Fix rotateca validation failures when not touching default self-signed CAs
0c8d3c0d58 Bump helm-controller for skip-verify/plain-http and updated tolerations
db3cf9370e Bump containerd to v1.7.21, runc to v1.1.14
28a1fd0302 Update coredns to 1.11.3 and metrics-server to 0.7.2
944b3b2830 Bump traefik to v2.11.8
703e7697b0 Tag PR image build as latest before scanning
88d5576be6 Fix /trivy action running against target branch instead of PR branch
9c537cb705 Bump aquasecurity/trivy-action from 0.20.0 to 0.24.0 (#10795)
be60661f18 Add trivy scanning trigger for PRs (#10758)
e0c4e60171 Update CNI plugins version
3923e0c699 Cover edge case when on new minor release for E2E upgrade test (#10781)
8bfcfd70cc Fix deploy latest commit on E2E tests (#10725)
e8de533e90 Remove secrets encryption controller (#10612)
34be6d96d1 Update kubernetes to v1.31.0-k3s3 (#10780)
c7468edbe7 Bump go dependencies to match upstream 1.31
ebbb109840 Update VERSION_K8S to handle any k3s revision
f5c6472b16 Bump Kine to v0.12.0
d358a89171 Fix secrets-encrypt metrics
178aadbe20 Add k3s-io/kubernetes tags
5087240e32 Downgrade Microsoft/hcsshim to v0.8.26
8cbcbcd044 go generate
20b50426ab Update to v1.31.0
876d54cf49 chore: Bump Trivy version (#10670)
518276fb77 adding MariaDB to README.md (#10717)
649678bd89 Fix k3s-killall.sh support for custom data dir
38df76708d Fix caching name for e2e vagrant box (#10695)
ae0d79c7ea Update to v1.30.3-k3s1 and Go 1.22.5 (#10536)
019b0afdd8 Fix: Add $SUDO prefix to transactional-update commands in install script (#10531)
22fb7049bd Add tolerations support for DaemonSet pods
daf0094cc7 Bump helm-controller to v0.16.3 to drop Helm v2 support
ac247d29cf Update to newer OS images for install testing (#10681)
0ee714d62b Bump containerd to v1.7.20 (#10659)
acb71ee379 Allow Amazon Linux 2 rpm installs
79ec016b6d Allow kylin V10 rpm installs
8ff7d162cc Allow fedora iot rpm installs
45c04f3502 Allow Amazon Linux 2023 rpm installs
3aceb85c22 Add a change for killall to not unmount server and agent directory
82ba778a86 bump docker/docker to v25.0.6
38e8b01b8f update stable channel to v1.30.3+k3s1 (#10647)
bffdf463e1 Fix cloudprovider controller name
e168438d44 Wire lasso metrics up to common gatherer
e2179aa957 Update pkg/cluster/managed.go
3ec086f6f7 Update pkg/secretsencrypt/config.go
e4f3cc7b54 remove deprecated use of wait functions
e514940020 Fix inconsistent loading of config dropins when config file does not exist
9111b1f77e Add K3S_DATA_DIR as env var for --data-dir flag
a26a5ab1d7 Don't set K3S_DATA_DIR env var
59e0761043 Use higher QPS for secrets reencryption (#10571)
a70157c12e Allow Pprof and Superisor metrics in standalone mode (#10576)
ecff337e00 Enhance E2E Hardened option (#10558)
d4c3422a85 Fix ipv6 sysctl required by non-ipv6 LoadBalancer service
21611c5665 Cap length of generated name used for servicelb daemonset
891e72f90f Update secretsencrypt pagination
c2216a62ad Use pagination when retrieving etcd snapshot list
37830fe170 Don't use server and token values from config file for etcd-snapshot commands
cb6bf74bc4 Add dial duration to debug error message
118acabec2 Fix IPv6 primary node-ip handling
9841517457 Fix agents removing configured supervisor address
9d0c2e0000 Fix reentrant rlock in loadbalancer.dialContext
b999a5b23d Bump kine to v0.11.11
58ab25927f For E2E upgrade test, automatically determine the channel to use (#10461)
c36db53e54 Add etcd s3 config secret implementation
5508589fae chore: Bump Trivy version
eb8bd15889 Ensure remotedialer kubelet connections use kubelet bind address
a0b374508e Bump Local Path Provisioner version (#10394)
0b417385a4 chore: Bump golang:alpine version
f6942f3de4 Bump github.com/hashicorp/go-retryablehttp from 0.7.4 to 0.7.7
b045465178 Add data-dir to uninstall and killall scripts
d1709d60ce Fix INSTALL_K3S_PR support
047664b610 Bump k3s-root to v0.14.0
4204248bc3 Check for bad token permissions when install via PR (#10387)
8f9ad1f992 Move test-compat to GHA (#10414)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Neither systemd nor seccomp is hard required by crun.
They can actually be disabled during configuration with
--disable-systemd or --disable-seccomp.
Introduce PACKAGECONFIG options for them and default them to presence
of corresponding entries in DISTRO_FEATURES.
Now REQUIRED_DISTRO_FEATURES and features_check can also be removed.
Similarly dependency on libcap can be made optional.
crun actually contains pregenerated manpages in the repository so
dependency on go-md2man-native can be made optional as well.
As there is a configuration option for embedding yajl I added an option
for that as well. However, as PACKAGECONFIG can only specify
dependencies when config is enabled I had to invert the options so the
config is for external-yajl.
I set default PACKAGECONFIG value to match previous state (except
detecting if systemd and seccomp are in DISTRO_FEATURES).
Signed-off-by: Michal Sieron <michalwsieron@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumping cni to version v0.8.0-307-g4c9ae43, which comprises the following commits:
692efbd libcni: set both GC valid attachment keys
6a68851 SPEC: use correct GC field name.
587837e libcni: remove use of Masterminds/semver
2c926b5 SPEC: add warning about preserving shared resources for GC
9d422db Fix faulty json.Marshal behavior for embeds types.NetConf
c283314 libcni: implement disableGC
1125b83 Spec: add disableGC flag
529bccb GetCachedAttachments should ignore missing directories
267db70 build(deps): bump github.com/onsi/ginkgo/v2 in the golang group
6ef5715 libcni: always delete the cache on conflist for CNI DEL
02ffd01 build(deps): bump alpine in /.github/actions/retest-action
1e7858f supplement ns building files for darwin os
52babb0 Update golangci-lint to v1.57.1
f5e23f5 build(deps): bump golangci/golangci-lint-action from 4 to 6
e34763a build(deps): bump the golang group with 2 updates
3d7be1b build(deps): bump the golang group across 1 directory with 2 updates
047255e spec: remove "-dev" tag
dd65e2d add version to cni interface
0036b62 cnitool CNI 1.1.0 support
a67dabb use errors package in golang v20 to join multiple errors
f846cb7 build(deps): bump the golang group with 2 updates
829ae61 Update golang to active supported version
56f11c6 types: add ValidAttachments to "base" NetConf struct
8eb1091 pkg/invoke: add DelegateStatus, DelegateGC methods
2e9688f Docs: remove obsolete information about building release artifacts
c45adb6 Add MTU to CNI result
2d04079 tolerate invalid cni caches for deletion
00576a2 Scope property as int pointer
a4d4a0d Add Scope property for routes
163db33 Add socket path and pciid to CNI interface result
94fc2b1 Table ID property as int pointer
3c4079b Add table ID property for routes
Bumping cni-plugins.git to version v1.1.0-313-g01b3db8e, which comprises the following commits:
01b3db8e SBR: option to pass the table id (#1088)
06ba001d Update containernetworking/cni to v1.2.3 for GC
deb8ef63 Update go-iptables
bdb6814f macvlan: add bcqueuelen setting
07bd3250 build(deps): bump the golang group across 1 directory with 4 updates
d924f05e build: update github.com/vishvananda/netlink to 1.3.0
6269f399 Fix unnecessary retrying when the link is down in dhcp.
675ca922 test: bump go version
30078e1c .github: fix double-triggering CI
352c8b7a Change chown to change current dir as well
d5f9ad99 build(deps): bump the golang group with 2 updates
508c94ca build(deps): bump the golang group across 1 directory with 3 updates
434e9b9e Fix release tar images' owner to root
0e87bccf build(deps): bump alpine in /.github/actions/retest-action
14cad164 build(deps): bump the golang group with 2 updates
5c95925a build(deps): bump golangci/golangci-lint-action from 4 to 6
dc8b8289 build(deps): bump the golang group across 1 directory with 4 updates
9397270f dependabot: don't automatically update cni packages
3656c69d build: bump release go version
427af863 Fix release script in github action
ada798a3 fix: close resolv.conf
eb49a034 ip: include peer name in error message
717b4337 build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0
ccc1cfaa Simplify unit test
78ebd8bf minor case change
c666d140 bandwidth plugin: split unit tests in several files
ab0b386b bandwidth: possibility to specify shaped subnets or to exclude some from shaping
52da39d3 bandwidth: possibility to exclude some subnets from traffic shaping
6f05dc32 build(deps): bump the golang group with 1 update
c4646743 build(deps): bump the golang group with 4 updates
ba5bdafe Use temporary name for netdevice when moving in/out of NS
d34720b5 Support DeviceID on Auxiliary Bus
8a3014f2 build(deps): bump actions/checkout from 3 to 4
352e0512 Update golangci-lint-action package to v4
9c016b5d Rename unused variables to resolve lint warnings
394ab0d1 build(deps): bump the golang group with 5 updates
47373d26 build(deps): bump actions/setup-go from 3 to 5
2bae9b67 Update to Go v1.22 in CI and release
cb244060 Fix version of golangci-lint
8b2b1d20 Add github action to build binaries for each platform at release
7e131a00 bridge: Enable disabling bridge interface
133a764c build(deps): bump alpine in /.github/actions/retest-action
e6099fb8 build(deps): bump actions/setup-go from 4 to 5
Bumping flannel-cni-plugin.git to version v1.5.1-flannel3, which comprises the following commits:
b691133 Bump github.com/onsi/gomega from 1.34.1 to 1.34.2
ce2b072 Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2
3bcc5a8 Bump go to 1.22
c5e4f4b Bump github.com/containernetworking/cni from 1.2.1 to 1.2.3
8a9a79d Bump github.com/onsi/ginkgo/v2 from 2.19.0 to 2.20.1
67765da Bump alpine from 20240606 to 20240807
6fe8827 Bump alpine from 20240329 to 20240606
3838eea Bump Go version
b60152b Bump github.com/containernetworking/cni from 1.2.0 to 1.2.1
957ab8a Bump github.com/containernetworking/plugins from 1.5.0 to 1.5.1
9aa349b Bump github.com/containernetworking/cni from 1.1.2 to 1.2.0
3260428 Bump github.com/onsi/ginkgo/v2 from 2.17.2 to 2.19.0
aab0543 Bump github.com/containernetworking/plugins from 1.4.1 to 1.5.0
5eaab45 Bump github.com/onsi/gomega from 1.33.0 to 1.33.1
9864944 Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2
2e28128 Bump github.com/onsi/gomega from 1.32.0 to 1.33.0
85206d1 Bump Go and plugins version
edfb6ce Bump alpine from 20231219 to 20240329
b3c6e9f Bump github.com/onsi/gomega from 1.31.1 to 1.32.0
6eec09d Bump google.golang.org/protobuf from 1.31.0 to 1.33.0
37b5025 Bump github.com/onsi/gomega from 1.30.0 to 1.31.1
0a6e942 Bump alpine from 20230901 to 20231219
92c06f2 Bump github.com/containerd/containerd from 1.6.23 to 1.6.26
da2c8ca Create dependabot.yml
28a4dca fix doc
78381fe fix wrong doc
45a7bb3 Update to plugins v1.4.0
9bd5e58 upload release artifact on the release page
f58497e set CGO_ENABLED=1 when GOARCH=amd64
8d52b1f simplify the packaging and releasing of flannel-cni
9f9ea24 Fix typo in flannel_linux_test.go
6214abd update Githb actions to stay up to date
1dfe98d Add support for riscv64
f50cfdc Set as latest the released image
6464faa Fixed release artifacts path
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumping runc to version v1.2.0-rc.3-3-gf9f57641, which comprises the following commits:
429e06a5 libct: Signal: honor RootlessCgroups
961b8031 VERSION: back to development
45471bc9 VERSION: release v1.2.0-rc.3
6c24b2e8 changelog: update to include 1.1.14 notes
63c29081 rootfs: try to scope MkdirAll to stay inside the rootfs
767bc008 Makefile: Don't read COMMIT, BUILDTAG, EXTRA_BUILDTAGS from env vars
2cd24a4d ci/gha: add all-done jobs
cc2078cc Makefile: Add EXTRA_VERSION
f76489f0 mv contrib/cmd tests/cmd (except memfd-bind)
f4cc3d83 Revert "allow overriding VERSION value in Makefile"
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumping containerd to version v2.0.0-rc.4-40-g19430264c, which comprises the following commits:
9037069da update to go1.23.1, go1.22.7
18725f010 integration: regression test for issue 10589
5f37a2c20 fifosync: cross-process synchronization
421a4b568 runc-shim: handle pending execs as running
299a9717f update runc binary to 1.1.14
f4529ace1 build(deps): bump the otel group with 8 updates
e7357916b runc-shim: refuse to start execs after init exits
def477b07 Bump crun to 1.16
3d7955bf7 remove duplicated descriptor from/to proto
93d6f0f92 remove duplicated sandbox to proto func
bfc1465a2 Reorganize mount/unmount code so it is easier to add Darwin-specific implementation
9c3400572 reduce ptypes.Empty creation by defining it in as a var
7f3bf993d runc-shim: remove misleading comment
f6677a4ec Cumulative stats can't decrease
94c163209 TestNewBinaryIOCleanup: fix a comment, minor rewrite
d83184ced avoid repeated calls in Tricolor gc
6b97a08ee add benchmark
1b03ca57c build(deps): bump github.com/prometheus/client_golang
9906fac59 build(deps): bump github.com/vishvananda/netlink
cdbfcc257 Prepare release notes for v2.0.0-rc.4
4ba502a03 Update api vendor to latest tag
a36d38fb4 Add mailmap entry for Michael Zappa
bf5fc240b build(deps): bump google-github-actions/upload-cloud-storage
faaafd6de build(deps): bump github.com/pelletier/go-toml/v2 from 2.2.2 to 2.2.3
47350982b build(deps): bump go.etcd.io/bbolt from 1.3.10 to 1.3.11
3cd8f9734 core/mount: use ptrace instead of go:linkname
35b029257 remove sha256-simd
1195b68eb build(deps): bump github.com/prometheus/client_golang
50b06182f Register local content plugin from separate package
021063c4a build(deps): bump the k8s group with 5 updates
1bff3bfed build(deps): bump dario.cat/mergo from 1.0.0 to 1.0.1
429085c84 build(deps): bump google-github-actions/upload-cloud-storage
93abc2fdd Update hcsshim to v0.12.6
bcdf50736 core/mount: add benchmark test for GetUsernsFD
6f3833f25 CRI: remove `disable_cgroup`
fc1637d16 Attest artifacts in release workflow
337d8c52c Update release job to generate artifacts attestation
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The routine calculating the -native depdenency for configuration
fragments had issues with variations in kernel PV definitions.
To avoid making the routine even more complex, this commit switches
to using the same variables that include the correct virtualization
include file. This way, if bitbake has located and included the
file that adds the -native dependency, we know that the variables
will find the correct recipe.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
| |
Podman requires /etc/sub[g]uid for rootless mode but the file is being deleted
if shadow is in ROOTFS_RO_UNNEEDED (even if different package like the
podman itself provides it) and rpm backend is used.
Signed-off-by: Pavel Zhukov <pavel@zhukoff.net>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumping xen to version 4.20-dev-288-gc23571fe31, which comprises the following commits:
57338346f2 x86/IRQ: avoid double unlock in map_domain_pirq()
1ddc8c1bad CI: Add Ubuntu 22.04 (Jammy) and 24.04 (Noble) testing
6db222eb1f CI: Refresh Ubuntu Focal container as 20.04-x86_64
51e5081c6e CI: Refresh Ubuntu Bionic container as 18.04-x86_64
1ab414b915 CI: Refresh Ubuntu Xenial container as 16.04-x86_64
e85ff1f1af CI: Refresh OpenSUSE Leap container
a8bc31be01 CI: Refresh OpenSUSE Tumbleweed container
1e66e18806 CI: Refresh and upgrade the GCC-IBT container
248200bd5b CI: Swap to debian for riscv64 build and test
a507bd7d1f CI: Introduce debian:11/12-riscv64 containers
d46e4264c3 CI: Refresh bullseye-ppc64le as debian:11-ppc64le
155c9d7f1b CI: Use debian:12-ppc64le for smoke testing
a2a0ee0eaf CI: Introduce a debian:12-ppc64le container
5e1773dc86 CI: Mark Archlinux/x86 as allowing failures
4b716647f7 CI: Drop Ubuntu Trusty testing
2617d2f141 CI: Drop Debian Stretch testing
aabccd1018 CI: Drop Debian Jessie dockerfiles
83754331a7 CI: Remove useless/misleading randconfig jobs
3420cc1a50 CI: Fix CONTAINER_UID0=1 scripts/containerize
5d3e2140bb automation: Use a different ImageBuilder repository URL
d49ba6bf8f build: Drop xorg-x11 as a build dependency
47f465d485 build: Drop libiconv as a build dependecy
cb3a371469 build: Drop openssl as a build dependency
37810b52d0 tools/libxs: Fix fcntl() invocation in set_cloexec()
8e7c08a336 stubdom: Remove more leftovers of caml-stubdom
c4ebeb79d1 CI: Refresh the Coverity Github Action configuration
64cee18837 build: Fix the version of python checked for by ./configure
7cc95f4166 build: Regenerate ./configure with Autoconf 2.71
0d2b87b5ad x86/physdev: Return pirq that irq was already mapped to
c2a66d0b58 CI: Rework the CentOS7 container
7878756565 CI: Adjust the usage of inline files
aa2b6e4d84 CI: Formalise the use of heredocs
56b77d7db0 build/mkheader: Fix Syntax/DeprecationWarnings
31618bf80e build/mkheader: Remove C-isms from the code
5d8c784783 tools/xs-clients: Fix `make clean` rule
7e3701b6ce xen/vmap: Document the vmap header
a771e02594 xen/riscv: use .insn with operands to support the older gas
63c66274d9 xen: Fix XEN_EXTRAVERSION after 4.19-rc1
fb76e08a8f cmdline: "extra_guest_irqs" is inapplicable to PVH
1f56accba3 amend 'cmdline: document and enforce "extra_guest_irqs" upper bounds'
08daa72cdc xen: avoid UB in guest handle field accessors
d2fe9ab304 x86/entry: don't clear DF when raising #UD for lack of syscall handler
17f6d398f7 cmdline: document and enforce "extra_guest_irqs" upper bounds
a2ff677852 tools/libxs: Fix CLOEXEC handling in xs_fileno()
1957dd6aff tools/libxs: Fix CLOEXEC handling in get_socket()
bf7c146470 tools/libxs: Fix CLOEXEC handling in get_dev()
4c3a618b0a tools/dombuilder: Correct the length calculation in xc_dom_alloc_segment()
9ec74bdb25 xen/common: fix build issue for common/trace.c
daa90dfea9 pirq_cleanup_check() leaks
4a73eb4c20 Update Xen version to 4.19-rc
7584e39986 Config.mk pin QEMU_UPSTREAM_REVISION (prep for Xen 4.19 RC1)
08f9b1dd9c MAINTAINERS: Step down as maintainer and committer
6d41f5b9e1 automation/eclair: add deviations agreed in MISRA meetings
402e473249 x86/traps: address violations of MISRA C Rule 20.7
bfea273b7b automation/eclair_analysis: clean ECLAIR configuration scripts
8f5581d7e1 x86/irq: address violations of MISRA C Rule 20.7
c7e195fac0 automation/eclair_analysis: address violations of MISRA C Rule 20.7
f39642c308 xen/guest_access: address violations of MISRA rule 20.7
4929fea7bd xen/self-tests: address violations of MISRA rule 20.7
0dca0f2b9a automation/eclair: address violations of MISRA C Rule 20.7
ecadd22a3d CHANGELOG: Add entries related to tracing
dde20e47af tools/xenalyze: Remove argp_program_bug_address
188e5f1a80 CHANGELOG.md: Fix indentation of "Removed" section
4712e3b376 Config.mk: update MiniOS commit
853f707cd9 automation/eclair_analysis: deviate and|or|xor|not for MISRA C Rule 21.2
0ac3b175e7 automation/eclair: configure Rule 13.6 and custom service B.UNEVALEFF
11ea49a3fd gnttab: fix compat query-size handling
735865f884 xen: re-add type checking to {,__}copy_from_guest_offset()
93db2f64f3 MAINTAINERS: Update my email address again
b14dae96c0 x86/pagewalk: Address MISRA R8.3 violation in guest_walk_tables()
6e07f41b27 common/unlzo: address violation of MISRA C Rule 7.3
c2f4ea4dc9 automation/eclair: add more guidelines to the monitored set
5add709cc6 automation/eclair: add deviations of MISRA C Rule 5.5
912412f97a automation/eclair: add deviation for MISRA C Rule 17.7
c56f1ef577 xen/arm: static-shmem: request host address to be specified for 1:1 domains
908407bf2b xen/riscv: Drop legacy __ro_after_init definition
8c3bb4d8ce xen/gnttab: Perform compat/native gnttab_query_size check
ebed411e7a xen/xlat: Sort structs per file
90c1520d4e xen/xlat: Sort out whitespace
6a17e11993 x86/shadow: Don't leave trace record field uninitialized
8765783434 x86/shadow: Rework trace_shadow_emulate_other() as sh_trace_gfn_va()
578066d82b x86/shadow: Introduce sh_trace_gl1e_va()
2e9f8a734e x86/shadow: Rework trace_shadow_gen() into sh_trace_va()
ba52b3b624 tools/xl: Open xldevd.log with O_CLOEXEC
9e7c26ad85 libelf: avoid UB in elf_xen_feature_{get,set}()
c5746b021e x86/ioapic: Fix signed shifts in io_apic.c
62071a1c16 livepatch: use appropriate type for buffer offset variables
e2bb28d621 x86/irq: forward pending interrupts to new destination in fixup_irqs()
74970165ba tools/libs/light: Fix nic->vlan memory allocation
f16ac12bd4 hotplug: Restore block-tap phy compatibility
43d5c5d5f7 xen: avoid UB in guest handle arithmetic
267122a24c x86/defns: Clean up X86_{XCR0,XSS}_* constants
71cacfb035 x86/cpuid: Fix handling of XSAVE dynamic leaves
fdb7e77fea x86/cpu-policy: Simplify recalculate_xstate()
df09dfb94d x86/xstate: Rework xstate_ctxt_size() as xstate_uncompressed_size()
a09022a09e x86/boot: Collect the Raw CPU Policy earlier on boot
d31a111940 x86/xstate: Cross-check dynamic XSTATE sizes at boot
9e6dbbe8bf x86/xstate: Fix initialisation of XSS cache
aba98c8d67 xen/arch: Centralise __read_mostly and __ro_after_init
82f4809447 xen/irq: Address MISRA Rule 8.3 violation
efa6e9f15b Revert "xen/arm: Alloc XenStore page for Dom0less DomUs from hypervisor"
443c488a0b Revert "docs/features/dom0less: Update the late XenStore init protocol"
988f1c7e1f xen/arm: static-shmem: fix "gbase/pbase used uninitialized" build failure
53c5c99e87 docs/features/dom0less: Update the late XenStore init protocol
6f9d90ea94 xen/arm: Alloc XenStore page for Dom0less DomUs from hypervisor
cb1ddafdc5 xen/arm/static-shmem: Static-shmem should be direct-mapped for direct-mapped domains
bd59af9970 xen/ubsan: Fix UB in type_descriptor declaration
369558924a x86/irq: handle moving interrupts in _assign_irq_vector()
817d1cd627 x86/irq: deal with old_cpu_mask for interrupts in movement in fixup_irqs()
fa4d026737 x86/Intel: unlock CPUID earlier for the BSP
77b1ed1d02 automation/eclair_analysis: add more clean MISRA guidelines
0f0235e9e9 automation/eclair_analysis: address remaining violations of MISRA C Rule 20.12
8b4243a9b5 xen/docs: Describe static shared memory when host address is not provided
3deac416a3 xen/arm: Implement the logic for static shared memory from Xen heap
a21bfc9126 xen/arm: Rework heap page allocation outside allocate_bank_memory
1544d355b5 xen/arm: Parse xen,shared-mem when host phys address is not provided
3e2121ce47 xen/p2m: put reference for level 2 superpage
79a43c8838 xen/arm: Wrap shared memory mapping code in one function
e90f8d562d xen/arm: Lookup bootinfo shm bank during the mapping
4fdd8d7556 x86/EPT: drop questionable mfn_valid() from epte_get_entry_emt()
777c71d313 x86/EPT: avoid marking non-present entries for re-configuring
5540b94e81 x86/EPT: correct special page checking in epte_get_entry_emt()
b490f470f5 xen/arm: ffa: support notification
452551c723 xen/arm: add and call tee_free_domain_ctx()
dd348eb005 xen/arm: add and call init_tee_secondary()
67ef3db45a xen/arm: allow dynamically assigned SGI handlers
282c33cec3 xen/arm: ffa: simplify ffa_handle_mem_share()
4d2b1b5d69 xen/arm: ffa: use ACCESS_ONCE()
66e6e47511 xen/arm: ffa: refactor ffa_handle_call()
401448f2d1 x86/physdev: replace physdev_{,un}map_pirq() checking against DOMID_SELF
c7564d7366 x86/irq: limit interrupt movement done by fixup_irqs()
0e8cde5884 x86/irq: describe how the interrupt CPU movement works
171c52fba5 x86/smp: do not use shorthand IPI destinations in CPU hot{,un}plug contexts
b0e5352c60 MAINTAINERS: alter EFI section
d05d97c090 MAINTAINERS: add me as scheduler maintainer
5ea7f2c9d7 CI: Update FreeBSD to 13.3
43de96a70f automation: add a test for HVM domU on PVH dom0
ea1cb444c2 x86/pvh: declare PVH dom0 supported with caveats
0a5b2ca32c x86/domain: deviate violation of MISRA C Rule 20.12
e63209d3ba x86/irq: remove offline CPUs from old CPU mask when adjusting move_cleanup_count
c2d5e63c73 xen: fix MISRA regressions on rule 20.9 and 20.12
5f7606c048 xen/bitops: Rearrange the top of xen/bitops.h
04e70af5f2 xen/bitops: Clean up ffs64()/fls64() definitions
54b10ef6c8 xen/bitops: Implement fls()/flsl() in common logic
5ed26fc076 xen/bitops: Implement ffsl() in common logic
989e5f08d3 x86/bitops: Improve arch_ffs() in the general case
ef1dd8dff4 xen/bitops: Implement ffs() in common logic
95ddb7e9b0 xen/bitops: Implement generic_ffsl()/generic_flsl() in lib/
ea59e7d780 xen/bitops: Cleanup and new infrastructure ahead of rearrangements
1408cf7a28 xen/bitops: Delete find_first_set_bit()
03147e6837 arch/irq: Centralise no_irq_type
8aeda4a241 arch/irq: Make irq_ack_none() mandatory
16884ac6c8 CI: Improve serial handling in qemu-smoke-ppc64le.sh
2ff6d17bc3 CI: Use a debug build of Xen for the Xilinx HW tests
1250c73c1a xen/riscv: Update Kconfig in preparation for a full Xen build
db04be9e7d x86/hvm: allow XENMEM_machine_memory_map
9a905d7dc6 xen/bitops: Replace find_first_set_bit() with ffs()/ffsl() - 1
1773a74469 xen/page_alloc: Coerce min(flsl(), foo) expressions to being unsigned
e807b137f7 ppc/boot: Run constructors on boot
6ef4fa1e7f tools: (Actually) drop libsystemd as a dependency
12f9599a3b Partial revert of "x86/MCE: optional build of AMD/Intel MCE code"
845a60b63b xen/x86: remove foreign mappings from the p2m on teardown
0291089f6e xen: enable altp2m at create domain domctl
8ef1e96a04 xen/x86: account number of foreign mappings in the p2m
0840bc5ea1 xen: Introduce CONFIG_SELF_TESTS
2bc462f645 x86: address violations of MISRA C Rule 8.4
19b6e9f914 x86/MCE: optional build of AMD/Intel MCE code
5effd810c6 x86/MCE: add default switch case in init_nonfatal_mce_checker()
498a4ded74 x86/intel: move vmce_has_lmce() routine to header
d27c2835e0 x86/svm: Rework VMCB_ACCESSORS() to use a plain type name
58b3437bae xen/x86: Address two misc MISRA 17.7 violations
2d082710f7 xen/x86: Drop useless non-Kconfig CONFIG_* variables
56d3b24979 xen/lzo: Implement COPY{4,8} using memcpy()
2d93f78bfe x86/traps: address violation of MISRA C Rule 8.4
8b977fe572 CHANGELOG: Mention libxl blktap/tapback support
96af090e33 automation/eclair_analysis: avoid an ECLAIR warning about escaping
841f437a8b docs/misra: exclude gdbsx from MISRA compliance
1eba1fe18d automation/eclair_analysis: add already clean rules to the analysis
4bc8dc01a3 automation/eclair_analysis: set MISRA C Rule 10.2 as clean
ac572152e5 docs: Add device tree overlay documentation
2c4fbadf73 tools: Introduce the "xl dt-overlay attach" command
4c733873b5 xen/arm: Add XEN_DOMCTL_dt_overlay and device attachment to domains
1c77496bc8 xen/arm/gic: Allow adding interrupt to running VMs
6f588194d9 tools/arm: Introduce the "nr_spis" xl config entry
1d2b4f3049 xen/arm, doc: Add a DT property to specify IOMMU for Dom0less domUs
c8cbc5eb1c tools/xl: Correct the help information and exit code of the dt-overlay command
2172a01c4c tools/xenalyze: Ignore HVM_EMUL events harder
320e644616 x86/hvm/trace: Use a different trace type for AMD processors
701190abb3 xen/arm: Set correct per-cpu cpu_core_mask
2a40b106e9 tools/xentrace: Remove xentrace_format
ae26101f6b tools: Drop libsystemd as a dependency
caf8644826 tools/{c,o}xenstored: Don't link against libsystemd
78510f3a15 tools: Import stand-alone sd_notify() implementation from systemd
219cdff3fb LICENSES: Add MIT-0 (MIT No Attribution)
9e58da32cc xen/arm: mem_access: Conditionally compile mem_access.c
d6a7fd8303 vpci: add initial support for virtual PCI bus topology
9c831e429c vpci/header: emulate PCI_COMMAND register for guests
7db7bd0f31 arm/vpci: honor access size when returning an error
2c15fa332e x86: detect PIT aliasing on ports other than 0x4[0-3]
249affc129 x86/PIT: supply and use #define-s
e6ed98863b xen/riscv: add required things to current.h
3cd46d4ec8 xen/riscv: introduce atomic.h
51dabd6312 xen/riscv: introduce cmpxchg.h
9f482c6a7e xen/x86: Simplify header dependencies in x86/hvm
212cb5effa iommu/x86: print RMRR/IVMD ranges using full addresses
3a3111d018 xen/livepatch: make .livepatch.funcs read-only for in-tree tests
ced21fbb28 x86_64/cpu_idle: address violations of MISRA C Rule 20.7
1b0b050bd6 x86_64/uaccess: address violations of MISRA C Rule 20.7
670b7ec65d x86/hvm: address violations of MISRA C Rule 20.7
1b9311da4b x86/vpmu: address violations of MISRA C Rule 20.7
bba4eb88fd xen/common/dt-overlay: Fix lock issue when add/remove the device
24dbf5bd03 x86/p2m: Add braces for better code clarity
ed1ac3e968 xen/riscv: introduce vm_event_*() functions
7e036f7e0c xen/riscv: introduce monitor.h
44b69e9c17 xen/x86: pretty print interrupt CPU affinity masks
9c5444b01a xen/trace: Drop old trace API
aa60520cd3 xen/trace: Removal final {__,}trace_var() users in favour of the new API
26da08059e xen: Switch to new TRACE() API
d64693df1a xen/sched: Clean up trace handling
df50666449 xen/rt: Clean up trace handling
ab8bc19850 xen/credit2: Clean up trace handling
e978b462ec xen/trace: Introduce new API
26b122e3bf tools/xen-cpuid: Drop old names
bbb5c171d7 tools/xen-cpuid: Use automatically generated feature names
e96fefdb06 tools/xen-cpuid: Rename decodes[] to leaf_info[]
f79189cb29 x86/gen-cpuid: Minor cleanup
54aa34fc89 tools/golang: Add missing golang bindings for vlan
594b22ca5b x86/msi: prevent watchdog triggering when dumping MSI state
21611c6870 include/ctype.h: fix MISRA R10.2 violation
53dc37829c xen/arm: Add DT reserve map regions to bootinfo.reserved_mem
d946787a27 xen/arm64: lib: Use the generic xen/linkage.h macros
fe1b97d321 xen/arm64: cache: Use the generic xen/linkage.h macros
c9906bd79e xen/arm64: mmu/head: Add missing code symbol annotations
8151fe503c xen/arm64: bpi: Add missing code symbol annotations
fdba3ff11f xen/arm64: debug: Add missing code symbol annotations
fba250ae60 xen/arm64: head: Add missing code symbol annotations
78ce1dc625 xen/arm64: sve: Add missing code symbol annotations
8d92a26a41 xen/arm64: smc: Add missing code symbol annotations
1125f3529c xen/arm64: entry: Add missing code symbol annotations
977d98e67c x86/ucode: Further fixes to identify "ucode already up to date"
ae7584f636 x86/p2m: move altp2m-related code to separate file
f1fa994d89 x86/MCE: guard {intel/amd}_mcheck_init() calls
71b5eccbdd x86/MCE: guard access to Intel/AMD-specific MCA MSRs
a3ec23a940 x86/vpmu: separate amd/intel vPMU code
6628bacc81 xen/bitops: put __ffs() into linux compatible header
d0c6114058 x86: detect PIC aliasing on ports other than 0x[2A][01]
c09960a1a2 x86: allow to suppress port-alias probing
762a848223 automation/eclair_analysis: deviate macro count_args_ for MISRA Rule 20.7
7fe9679db9 automation/eclair_analysis: fully deviate MISRA C Rules 21.9 and 21.10
abd00b037d x86/mtrr: avoid system wide rendezvous when setting AP MTRRs
0cc01c603f tools/xl: add vlan keyword to vif option
3bc14e4fa4 tools/libs/light: Add vlan field to libxl_device_nic
e27fc7d15e tools/xentop: Fix cpu% sort order
9b7d793889 tools/hvmloader: Further simplify SMP setup
8a78d89881 x86/cpufreq: Rename cpuid variable/parameters to cpu
7270fdc7a0 x86: respect mapcache_domain_init() failing
d104a07524 xen/sched: set all sched_resource data inside locked region for new cpu
319a5125ca xen/console: fix Rule 10.2 violation
46aa3031ae docs/misra: add R21.6 R21.9 R21.10 R21.14 R21.15 R21.16
9110072b76 x86/io: Don't cast away constness in read{b..q}()
2d8d7481ca Revert "evtchn: refuse EVTCHNOP_status for Xen-bound event channels"
90a1bc9e82 xen: Use -Wuninitialized and -Winit-self
0b01395c44 xen: Use -Wflex-array-member-not-at-end when available
d31d0665f1 automation/eclair_analysis: tag MISRA C Rule 1.1 as clean
531d3bea5e libxl: Fix handling XenStore errors in device creation
b2cd07a044 x86/hvm: Allow access to registers on the same page as MSI-X table
e9607d4061 x86/msi: Extend per-domain/device warning mechanism
5cc7347b04 libxl: fix population of the online vCPU bitmap for PVH
996576b965 xen: allow up to 16383 cpus
b0082b9083 automation/eclair: hide reports coming from adopted code in scheduled analysis
f4cd14e502 automation/eclair_analysis: amend configuration for some MISRA rules
93c27d54dd xen/arm: Fix MISRA regression on R1.1, flexible array member not at the end
1672df9ebd xen/kernel.h: Import __struct_group from Linux
53959cb830 x86/boot: Refactor pvh_load_kernel() to have an initrd_len local
49c810e867 x86/boot: Explain how moving mod[0] works
fcefb2a247 x86/IOMMU: address violations of MISRA C:2012 Rule 14.4
3d1033c911 automation/eclair: add deviation of MISRA C:2012 Rule 14.4
14424d90e1 xen/pci: address violations of MISRA C Rule 20.7
8e22c78e17 xen/unaligned: address violation of MISRA C Rule 20.7
1dd6b50dc4 x86/hvm: Defer the size calculation in hvm_save_cpu_xsave_states()
752ec9a9b1 tools/hvmloader: Wake APs with hypercalls rather than INIT+SIPI+SIPI
754a29cacf tools/hvmloader: Move various helpers to being static inlines
1c6112b8f5 xen/gunzip: Move crc state into gunzip_state
7a4483358f xen/gunzip: Move bitbuffer into gunzip_state
d386a383dd xen/gunzip: Move output count into gunzip_state
fd273a5690 xen/gunzip: Move input buffer handling into gunzip_state
461eacc76b xen/gunzip: Move window position into gunzip_state
02e32883f3 xen/gunzip: Introduce struct gunzip_state and refactor window
473156eec6 xen/gunzip: don't leak memory on error paths
648db37a15 x86/ucode: Distinguish "ucode already up to date"
3c228e24b2 automation/eclair_analysis: unblock pipelines from certain repositories
0c79b7bc9b automation/eclair_analysis: tag MISRA C Rule 8.2 as clean.
e8e8afee99 svm: Fix MISRA 8.2 violation
a2330b51df x86/cpu-policy: Fix migration from Ice Lake to Cascade Lake
f4f2f3402b tools/libxs: Open /dev/xen/xenbus fds as O_CLOEXEC
ebab808eb1 x86/platform: correct #undef in compat checking
d7032b4ca2 AMD/IOMMU: add helper to check whether ATS is to be used for a device
b5996ab284 VT-d: parse ACPI "SoC Integrated Address Translation Cache Reporting Structure"s
426dbf404e VT-d: tidy error handling of RMRR parsing
692f6199bd automation/eclair: add deviation for Rule 16.4
50a4f7c177 docs/misra: add Terms & Definitions section to rules.rst
6654248f22 ppc/riscv: fix arch_acquire_resource_check()
b801ccfe7e drivers/char: address violation of MISRA C Rule 20.7
04e31583ba VT-d: correct ATS checking for root complex integrated devices
f95cd010cb xen/Kconfig: Drop the final remnants of ---help---
2d4ba20559 tools/tests: let test-xenstore exit with non-0 status in case of error
642005e310 tools/tests: don't let test-xenstore write nodes exceeding default size
feb9158a62 automation/eclair: make explicit there are no adopted files by default
7556f46a9b automation: do not allow failure for triggered analyses
c1aa6fb5f6 automation/eclair: tag Rule 7.2 as clean and temporarily remove Rules 1.1 and 8.2
9e30bd8f4a x86/cpu-policy: Annotate the accumulated features
b819bd65f4 revert "x86/mm: re-implement get_page_light() using an atomic increment"
bf0059282d xen/riscv: improve check-extension() macro
08e79bba73 xen/x86: Fix Syntax warning in gen-cpuid.py
647f7e50eb xen/xsm: Wire up get_dom0_console
abc68e78a3 x86/MCE: guard call to Intel-specific intel_get_extended_msrs()
64b21662b1 x86/msi: passthrough all MSI-X vector ctrl writes to device model
be5b08dd6e xen-livepatch: fix --force option comparison
13893a58e2 xen/spinlock: use correct pointer
a505890d81 x86/entry: shrink insn size for some of our EFLAGS manipulation
fd4ff921f7 gzip: clean up comments and fix code alignment
232ee07c23 arm/vpci: make prefetchable mem 64 bit
a0e29b3163 CI: Drop glibc-i386 from the build containers
4edbbcd0c0 automation/eclair: reorganize pipelines
23cd1207e7 VMX: no open-coding in vmx_get_cpl()
7ea3a3e44f MAINTAINERS: Update my email address
656ae8f109 x86/spec: adjust logic that elides lfence
049ab0b2c9 x86/spec: fix reporting of BHB clearing usage from guest entry points
6d5111b10e tools/ocaml: Fix warnings in config.ml
524eee7ce0 x86/hap: Refactor boolean field assignments
bd5213384b x86/shadow: correct shadow_vcpu_init()'s comment
9a73b4e210 x86/paging: vCPU host mode is always set
8c01d0e336 x86/msr: add suffix 'U' to MSR_AMD_CSTATE_CFG macro
ea3272f845 x86/pci: add suffix 'U' to PCI_CONF_ADDRESS macro
62a72092a5 livepatch: introduce --force option
fb2716a191 xen-livepatch: fix parameter name parsing
4a75f2ffc0 x86/mm: address violations of MISRA C Rule 20.7
445f66fe00 x86/debugreg: address violation of MISRA C Rule 20.7
c717d52a5d x86/vhpet: address violations of MISRA C Rule 20.7
4f900035a4 x86/acpi: address violations of MISRA Rule 20.7
0440fcad2a x86/pci: address violation of MISRA C Rule 20.7
489d13da93 xen/spinlock: address violations of MISRA C Rule 20.7
0d02b75d7c xen/page-defs: address violation of MISRA C Rule 20.7
8189230d80 libelf: address violations of MISRA C Rule 20.7
d7c4d59b51 libxl: Support blktap with HVM device model
76a484193d hotplug: Update block-tap
31d6b5b4a7 automation: Add arm64 test for running Xen with GICv3
db49973411 automation: Add arm{64,32} earlyprintk jobs
c05b97fc7a automation: Drop some of the non-debug variants of the same Arm jobs
7846f7699f xen/arm: List static shared memory regions as /memory nodes
51a2b3f109 xen/arm: fix duplicate /reserved-memory node in Dom0
a0fee882c1 xen/arm: remove shm holes from extended regions
2b557af192 xen/arm: Reduce struct membank size on static shared memory
e5816ad4e8 xen/arm: Introduce helper for static memory pages
9f657d8832 xen/arm: Avoid code duplication in check_reserved_regions_overlap
b3e66aa1c2 xen/arm: Avoid code duplication in find_unallocated_memory
e13499b3c4 xen/arm: Conditional compilation of kernel_info.shm_mem member
2209c1e35b xen/arm: Introduce a generic way to access memory bank structures
8d5ff14477 xen/arm: Pass struct kernel_info parameter to make_{resv,shm}_memory_node
6d14a742f8 xen/arm: avoid repetitive checking in process_shm_node
ab327c8e8b xen/arm: remove stale addr_cells/size_cells in assign_shared_memory
6c04a0bf2c tools/golang: Run `go vet` as part of the build process
9c08a88ad0 golang/xenlight: Ensure comments aren't interpreted as docstrings
27c176d298 tools/golang: When returning pointers, actually allocate structrues
0d19d3aab0 svm/nestedsvm: Introduce nested capabilities bit
410ef33439 x86/monitor: allow fast-singlestepping without enabling singlestep monitor
77e25f0e30 x86/MTRR: correct inadvertently inverted WC check
f82c43a384 xen: introduce header file with section related symbols
70d46b51e2 docs/man: Add xenwatchdog manual page
9c872b5766 tools/misc: Add xenwatchdogd.c copyright notice
e906bfae48 tools/misc: xenwatchdogd enhancements
f0fa75c9ea tools/misc: xenwatchdogd: add parse_secs()
43a0706986 x86/rtc: Avoid UIP flag being set for longer than expected
cccb7878f3 x86/pvh: zero VGA information
c3b40c95da x86/video: add boot_video_info offset generation to asm-offsets
93d6e6efa8 automation/eclair_analysis: substitute deprecated service STD.emptrecd
bc5827fad1 xen/riscv: check whether the assembler has Zbb extension support
1fc166d6cd xen/domain: deviate MISRA C Rule 16.2 violation
480179bc26 x86/PVH: Use unsigned int for dom0 e820 index
09cb855f33 x86/svm: Add flushbyasid in the supported features
5495ed0cd2 eclair_analysis: deviate x86 emulator for Rule 16.2
1d2d283818 xen/riscv: add minimal stuff to page.h to build full Xen
58798e3f1f xen/riscv: introduce io.h
5b33845adf xen/ppc: mm-radix: Replace debug printing code with printk
78d980071a x86/MCE: move intel mcheck init code to separate file
8763eb782b xen/gzip: Drop huffman code table tracking
052cf1dcdf xen/gzip: Remove custom memory allocator
492fe0778b xen/gzip: Drop unused define checks
489a46c177 x86/emul: Simplify segment override prefix decoding
4cd66fb56d xen/efi: Rewrite DOS/PE magic checking without memcmp()
02fbb2d591 docs/misra: mark the gzip folder as adopted code
2a9a19be13 Revert "public: s/int/int32_t"
83e081b29e docs: arm: Update where Xen should be loaded in memory
afab29d088 public: s/int/int32_t
ad363fb17d docs/misra: add Rule 16.4
487838f13a docs/misra/rules.rst: add rule 5.5
c0f890cd9d docs/hypercall-abi: State that the hypercall page is optional
cfb922bb7d xen/gzip: Colocate gunzip code files
af4cd0a6a6 altcall: fix __alt_call_maybe_initdata so it's safe for livepatch
09abf1b61b libxl: devd: Spawn QEMU for 9pfs
3c7482b73c libxl: Use vkb=[] for HVMs
2b31a1f055 xen/include: move definition of ASM_INT() to xen/linkage.h
6cb501e3e6 MAINTAINERS: Update livepatch maintainers
86c008aa5d tools/misc: xenwatchdogd: add static qualifier
5d09f8cbdc tools/misc: rework xenwatchdogd signal handling
0668d35594 tools/misc: xenwatchdogd: use EXIT_* constants
c304bdf1e7 xen/acpi: Allow xen/acpi.h to be included on non-ACPI archs
2145512e21 xen/xsm: address violation of MISRA C Rule 16.2
bbbbd024e8 x86/hvm: address violations of MISRA C Rule 16.2
eeab8c4619 xen/domctl: address violations of MISRA C Rule 16.2
f509d39d5b x86/efi: tidy switch statement and address MISRA violation
24f204748e x86/irq: tidy switch statement and address MISRA violation
3b51a812e0 x86/cpuid: address violation of MISRA C Rule 16.2
6af626c1da x86/vlapic: tidy switch statement and address MISRA violation
478002370c x86/emul: Adjust X86EMUL_OPC_EXT_MASK to placate MISRA
761358b9eb xen/spinlock: Adjust LOCK_DEBUG_INITVAL to placate MISRA
e5b93b70d5 xen/vPCI: Remove shadowed variable
52bde26c1c xen/nospec: Remove unreachable code
d0a718a45f x86/hvm: Fix Misra Rule 19.1 regression
d37c184236 xen/virtual-region: Drop setup_virtual_regions()
038ba305fd xen/virtual-region: Link the list build time
3434518d05 xen/virtual-region: Rework how bugframe linkage works
337f11ea73 xen/link: Introduce a common BUGFRAMES definition
0e7ea8ca5f x86/Kconfig: Introduce CONFIG_{AMD,INTEL} and conditionalise ucode
2eea952b70 x86/ucode: Move vendor specifics back out of early_microcode_init()
f48299cad5 docs/misra: document the expected sizes of integer types
dfc9455b80 MAINTAINERS: Become a reviewer of iMX8Q{M,XP} related patches
2f85a6d9f5 xen/drivers: imx-lpuart: Replace iMX8QM compatible with iMX8QXP
71d4356544 xen/arm: Add imx8q{m,x} platform glue
a9fa825008 x86/entry: Fix build with older toolchains
d5887c0dec x86/spec-ctrl: Support the "long" BHB loop sequence
689ad48ce9 x86/spec-ctrl: Wire up the Native-BHI software sequences
954c983abc x86/spec-ctrl: Software BHB-clearing sequences
62a1106415 x86/spec-ctrl: Support BHI_DIS_S in order to mitigate BHI
c94e210592 x86/tsx: Expose RTM_ALWAYS_ABORT to guests
0b66d7ce3c x86: Drop INDIRECT_JMP
8e186f98ce x86: Use indirect calls in reset-stack infrastructure
45dac88e78 x86/spec-ctrl: Widen the {xen,last,default}_spec_ctrl fields
97c5b8b657 x86/vmx: Add support for virtualize SPEC_CTRL
40dea83b75 x86/spec-ctrl: Detail the safety properties in SPEC_CTRL_ENTRY_*
2378d16a93 x86/spec-ctrl: Simplify DO_COND_IBPB
9607aeb660 x86/spec_ctrl: Hold SCF in %ebx across SPEC_CTRL_ENTRY_{PV,INTR}
22390697bf x86/entry: Arrange for %r14 to be STACK_END across SPEC_CTRL_ENTRY_FROM_PV
94896de1a9 x86/spec-ctrl: Rework conditional safety for SPEC_CTRL_ENTRY_*
c62673c433 x86/spec-ctrl: Rename spec_ctrl_flags to scf
489d93cd0f x86/spec-ctrl: Fix BTC/SRSO mitigations
4b3da946ad x86/cpuid: Don't expose {IPRED,RRSBA,BHI}_CTRL to PV guests
4be1fef1e6 x86/alternatives: fix .init section reference in _apply_alternatives()
9926e692c4 hypercall_xlat_continuation: Replace BUG_ON with domain_crash
6a98383b08 x86/HVM: clear upper halves of GPRs upon entry from 32-bit code
672b26b66e drivers: char: Enable OMAP UART driver for TI K3 devices
c079823df6 xen/compiler: address violation of MISRA C Rule 20.9
dfc9fab003 x86/PVH: Support relocatable dom0 kernels
4d3b8669d8 libelf: Store maximum PHDR p_align
77b219f915 xen/rwlock: raise the number of possible cpus
c286bb93d2 xen/spinlock: support higher number of cpus
0b09531d21 xen/spinlock: let all is_locked and trylock variants return bool
bfbec024b8 xen/spinlock: split recursive spinlocks from normal ones
31be78285c xen/spinlock: add missing rspin_is_locked() and rspin_barrier()
ee1e133125 xen/spinlock: add another function level
3696a9f27d xen/spinlock: add explicit non-recursive locking functions
402c2d3e66 MISRA C Rule 17.1 states: "The features of `<stdarg.h>' shall not be used"
ea33a6e1e3 MISRA C:2012 Rule 17.1 states: The features of `<stdarg.h>' shall not be used
80d28865e1 automation/eclair: add deviations for Rule 20.7
6bdb67d19e arm/public: address violations of MISRA C Rule 20.7
e9b0f8b690 x86: Address MISRA Rule 13.6
b33f191e3c x86/tsx: Cope with RTM_ALWAYS_ABORT vs RTM mismatch
270588b9b2 char: lpuart: Drop useless variables from UART structure
4932163b35 drivers: char: Drop useless suspend/resume stubs in Arm drivers
6eeb3e86bd vsprintf: address violations of MISRA C:2012 Rule 16.3
226bdb155b xen/sched: address violations of MISRA C:2012 Rule 16.3
21e0c8fc0e tools: Move MB/GB() to common-macros.h
4c41749852 tools/init-xenstore-domain: Replace variable MB() usage
1e6cd4155d xen/riscv: introduce extension support check by compiler
7b02b505bb automation: introduce fixed randconfig for RISC-V
6117179dd9 docs/misra: add 13.6 to rules.rst
538ab07bad xen/arm: ffa: support FFA_FEATURES
be75f686eb xen/arm: ffa: separate rxtx buffer routines
bded3e6467 xen/arm: ffa: separate partition info get routines
8836867200 xen/arm: ffa: separate memory sharing routines
bb584ec036 xen/arm: ffa: move common things to ffa_private.h
b21cbaf6ba xen/arm: ffa: rename functions to use ffa_ prefix
ac682fbac1 xen/vm-event: address a violation of MISRA C:2012 Rule 16.3
cde0c58714 xen/evtchn: address a violation of MISRA C:2012 Rule 16.3
163ea7d9a8 console: address a violation of MISRA C:2012 Rule 16.3
2c205ce5c0 xen/domctl: address a violation of MISRA C:2012 Rule 16.3
795c4e367b x86/amd: address violations of MISRA C Rule 20.7
da88f434bc xen/mm: address violations of MISRA C Rule 20.7
5811fb4816 x86/hvm: address violations of MISRA C Rule 20.7
a9b2a72926 x86/vPMU: address violations of MISRA C Rule 20.7
dd5101a616 drivers/char: mark extra reserved device memory in memory map
7a09966e7b x86/spec-ctrl: Move __read_mostly data into __ro_after_init
3c9e76cd87 x86/mm: Refine address alignment checks in modify_xen_mappings_lite()
8f85af65af tools/oxenstored: Re-format
0cd50753eb nestedsvm: Disable TscRateMSR
4f8b0e94d7 x86: Move SVM features exposed to guest into hvm_max_cpu_policy
e3883336bb xen/efi: efibind: address violations of MISRA C Rule 20.7
853c71dfbf xen/elfnote: Specify ELF Notes are x86-specific
7d8c9b4e8d libelf: Expand ELF note printing
8802230bfa Revert "xen/x86: bzImage parse kernel_alignment"
f6a4139948 x86/public: address violations of MISRA C Rule 20.7
a65d9988ad x86/hvm: address violations of Rule 20.7
e2eeb1b753 xen/page_alloc: address violations of MISRA C Rule 20.7
cab6de6a95 xen: address MISRA C Rule 20.7 violation in generated hypercall
7757981d94 xentrace: address violation of MISRA C Rule 20.7
12a3b90c2a xen/list: address violations of MISRA C Rule 20.7
6f6de10ade xen/xsm: add parentheses to comply with MISRA C Rule 20.7
4b60085b6e xen/console: add comment about external console lock helper
03e484a4f6 x86/vcpu: relax VCPUOP_initialise restriction for non-PV vCPUs
d654612e98 xen/riscv: add minimal stuff to processor.h to build full Xen
5095b610df EFI: Introduce inline stub for efi_enabled on !X86 && !ARM
cbe393b709 Revert "xen/page_alloc: introduce preserved page flags macro"
ee973396f0 x86/cpuid: More AMD features
5205bda5f1 x86/p2m: Coding style cleanup
97b90f9bf2 xen/ppc: Ensure ELF sections' physical load addresses start at 0x0
10e8d824b7 AMD/IOMMU: drop remaining guest-IOMMU bits too
cc950c49ae x86/PoD: tie together P2M update and increment of entry count
f5c2b6da26 xen/page_alloc: introduce page flag to stop buddy merging
75214d5e53 xen/page_alloc: introduce preserved page flags macro
6eb13b6b1d tools/xl_parse: remove message for tsc mode string
eaafbd1134 docs/parse-support-md: Handle BulletList
188fa82305 xen/vpci: Improve code generation in mask_write()
131892e0dc x86/boot: Support the watchdog on newer AMD systems
f658321374 x86/boot: Fix setup_apic_nmi_watchdog() to fail more cleanly
9e18f33983 x86/boot: Improve the boot watchdog determination of stuck cpus
d2276b86e5 xen/nospec: Include <xen/stdbool.h>
d9e709e8c0 xen/wait: address violations of MISRA C Rule 20.7
239b72d874 xen/notifier: address violations of MISRA C Rule 20.7
88822d5fbd xen/arm: smmu: address violations of MISRA C Rule 20.7
8e7207d512 EFI: address violations of MISRA C Rule 20.7
b51d7f39dc xen/device_tree: address violations of MISRA C Rule 20.7
9979cc594a x86/cpufeature: add parentheses to comply with Rule 20.7
a02174c6c8 amd/iommu: clean up unused guest iommu related functions
b053075d1a xen/spinlock: make struct lock_profile rspinlock_t aware
cc3e8df542 xen/spinlock: add rspin_[un]lock_irq[save|restore]()
c9aca2a1f6 xen/spinlock: rename recursive lock functions
475080b6b2 xen/spinlock: introduce new type for recursive spinlocks
a97de92e76 IOMMU: store name for extra reserved device memory
62018f0870 x86/mm: use block_lock_speculation() in _mm_write_lock()
d92a67b60c xen/sched: address violations of MISRA C Rule 20.7
f93d8dd519 automation/eclair: allow parameter name "unused"
a5b90a90ee MAINTAINERS: remove myself from various positions
ad52857efc MAINTAINERS: drop AMD IOMMU and Intel VT-d sections
8a8d5c22af perfc: add pseudo-keyword fallthrough
53b5208de8 x86/svmdebug: Print np, sev and sev_es vmcb bits
2f09f797ba x86/svm: Drop the suffix _guest from vmcb bit
d638e304f1 SUPPORT.MD: Fix matrix generation after 43c416d0d819 and 77c39a53cf5b
77c39a53cf xen/arm: arm32: Add emulation of Debug Data Transfer Registers
43c416d0d8 xen/arm: arm64: Add emulation of Debug Data Transfer Registers
bd06cf74fc xen/arm: Introduce CONFIG_PARTIAL_EMULATION and "partial-emulation" cmd option
af7fed3fdf xen/spinlock: remove misra rule 21.1 violations
68e008db0c xen: avoid grep fodder define and undef
70e549fd44 MAINTAINERS: Remove myself from several subsystems
a6081d0176 x86/svm: Drop the _enabled suffix from vmcb bits
d2686bf964 xen/compiler: deviate the inline macro for MISRA C Rule 20.4
3945b61ddb xen/lz4: address violations of MISRA C:2012 Directive 4.10
ec2587ab4b x86/mtrr: address violations of MISRA C:2012 Directive 4.10
13a7b0f9f7 restrict concept of pIRQ to x86
4dc9a8b060 automation/eclair_analysis: deviate certain macros for Rule 20.12
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
| |
Matthis Mauschild <matthis.hauschild@airbus.com> noticed that
commit 3902ac8844a9868ab14f [libvirt: ensure sysusers.d path for
libvirt-qemu] does not universally work.
Adjusting the directory creation to be the same as other installs
in the recipe to ensure it works everywhere.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In 8138d9cc7e0c31171230110db0cfa881c46a821b the path to
/lib/sysusers.d might not exist, use install -d to ensure
it does.
Fixes:
install: cannot create regular file
'.../libvirt/v10.5.0+git/image/lib/sysusers.d/libvirt-qemu.conf':
No such file or directory
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Some versions of python/bitbake appear to allow 'true' and 'false',
but this is incorrect, True and False are the correct boolean variables.
Fixes:
ERROR: ExpansionError during parsing .../meta-xilinx/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-scr.bb
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
| |
When do_rootfs, the following error occured:
WARNING: do_rootfs: Group kvm has been defined with id (47) but sysusers.d expects gid (36)
WARNING: do_rootfs: Group qemu has been defined with id (975) but sysusers.d expects gid (107)
ERROR: do_rootfs: Error executing a python function in exec_func_python() autogenerated:
Create an empty file libvirt-qemu.conf to solve the issue of gid mismatch
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Xen related boot script offset was override from
meta-virtualization for non xen builds.
ERROR: RD image overlaps OS image (OS=0xe00000..0x2610000)
Add to include xen boot script only if ENABLE_XEN_UBOOT_SCR variable
set from the configuration file and xen enabled in DISTRO_FEATURES to
avoid override.
Signed-off-by: John Vicky Vykuntapu <johnvicky.vykuntapu@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|