Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SUA support fine grained API #174

Merged
merged 2 commits into from
Jun 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions meta-leda-bsp/dynamic-layers/linux-yocto/files/leda-bsp-rauc.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,17 @@
# * SPDX-License-Identifier: Apache-2.0
# ********************************************************************************/

# network block device
CONFIG_BLK_DEV_NBD=y

# device manager
CONFIG_BLK_DEV_DM=y

# Format for Rauc
CONFIG_DM_VERITY=y

# SHA256
CONFIG_CRYPTO_SHA256=y

# Optimization for qemuarm64
CONFIG_CRYPTO_SHA256_ARM64=y
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"container_id": "sua",
"container_name": "sua",
"image": {
"name": "ghcr.io/eclipse-leda/leda-contrib-self-update-agent/self-update-agent:build-66"
"name": "ghcr.io/eclipse-leda/leda-contrib-self-update-agent/self-update-agent:build-152"
},
"mount_points": [
{
Expand All @@ -12,7 +12,7 @@
},
{
"source": "/data/selfupdates",
"destination": "/RaucUpdate",
"destination": "/data/selfupdates",
"propagation_mode": "rprivate"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd

# Define image to be pulled
SDV_IMAGE_REF="ghcr.io/eclipse-leda/leda-contrib-self-update-agent/self-update-agent"
SDV_IMAGE_TAG="build-66"
SDV_IMAGE_TAG="build-152"

# Override container architecture. If not set, recipe tries autodetection for target machine architecture.
#CONTAINER_ARCH="arm64"
Expand Down
Loading