Skip to content

Commit

Permalink
Merge pull request #42 from SoftwareDefinedVehicle/raspi-growdisk
Browse files Browse the repository at this point in the history
Recipe fix raspi growdisk license checksum
  • Loading branch information
mikehaller authored Nov 22, 2022
2 parents 4ed46ca + 9952da7 commit 628938c
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ meta-rauc
meta-kanto
meta-rauc-community
meta-virtualization
meta-raspberrypi
meta-rust
poky

# BitBake Hash Equivalence Server database
bitbake
hashserv.db*
azure-sstate-cache
azure-downloads-cache
bitbake
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"git.ignoreLimitWarning": true
}
4 changes: 4 additions & 0 deletions docs/manual-bitbake-dryrun.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,7 @@ Dry-run a build of one of the Leda recipes:
Perform a real build of one of the targets, e.g. the Eclipse Kanto Container Management recipe:

DISTRO=leda bitbake container-management

To build a specific machine, set the KAS_MACHINE environment variable:

KAS_MACHINE=raspberrypi4-64 kas build kas/.config-kirkstone-rpi4.yaml:kas/mirrors.yaml --target sdv-raspberry-growdisk
74 changes: 74 additions & 0 deletions kas/.config-kirkstone-rpi4.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# /********************************************************************************
# * Copyright (c) 2022 Contributors to the Eclipse Foundation
# *
# * See the NOTICE file(s) distributed with this work for additional
# * information regarding copyright ownership.
# *
# * This program and the accompanying materials are made available under the
# * terms of the Apache License 2.0 which is available at
# * https://www.apache.org/licenses/LICENSE-2.0
# *
# * SPDX-License-Identifier: Apache-2.0
# ********************************************************************************/
# Every file needs to contain a header, that provides kas with information
# about the context of this file.
header:
# The `version` entry in the header describes for which configuration
# format version this file was created for. It is used by kas to figure
# out if it is compatible with this file. The version is an integer that
# is increased on every format change.
version: 12
# The machine as it is written into the `local.conf` of bitbake.
machine: raspberrypi4-64
# The distro name as it is written into the `local.conf` of bitbake.
distro: leda
target: sdv-image-all
local_conf_header:
meta-leda: |
INHERIT:append = " rm_work"
INHERIT:remove = " archiver"
INHERIT:remove = " cve-check"
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
meta-rauc: |
RAUC_KEY_FILE = "${COREBASE}/../examples/rauc/development-1.key.pem"
RAUC_CERT_FILE = "${COREBASE}/../examples/rauc/development-1.cert.pem"
repos:
# This entry includes the repository where the config file is located
# to the bblayers.conf:
# Here we include a list of layers from the poky repository to the
# bblayers.conf:
poky:
url: "https://git.yoctoproject.org/git/poky"
refspec: kirkstone
layers:
meta:
meta-poky:
meta-yocto-bsp:
meta-rauc-community:
url: "https://github.com/rauc/meta-rauc-community.git"
refspec: kirkstone
layers:
meta-rauc-raspberrypi:
meta-rauc:
url: "https://github.com/rauc/meta-rauc.git"
refspec: kirkstone
meta-virtualization:
url: "https://git.yoctoproject.org/meta-virtualization"
refspec: kirkstone
meta-openembedded:
url: "https://git.openembedded.org/meta-openembedded"
refspec: kirkstone
layers:
meta-oe:
meta-filesystems:
meta-python:
meta-networking:
meta-raspberrypi:
url: "https://git.yoctoproject.org/meta-raspberrypi"
refspec: kirkstone
meta-leda:
path: ./
layers:
meta-leda-bsp:
meta-leda-components:
meta-leda-distro:
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ SRC_URI = " \
file://raspberry-growdisk/ \
"

LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=d9fc0efef5228704e7f5b37f27192723"

NATIVE_SYSTEMD_SUPPORT = "1"
SYSTEMD_PACKAGES = "${PN}"
Expand Down

0 comments on commit 628938c

Please sign in to comment.