Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
6
sources/meta-rauc/recipes-core/rauc/files/ca.cert.pem
Normal file
6
sources/meta-rauc/recipes-core/rauc/files/ca.cert.pem
Normal file
@@ -0,0 +1,6 @@
|
||||
# This is a dummy keyring file. Please overwrite this with one that matches
|
||||
# your X509 infrastructure if you intend to use RAUC for secure updates!
|
||||
#
|
||||
# If you really do not intend to actively use the security features or for
|
||||
# testing you may create a self-signed development certificate by executing the
|
||||
# script `openssl-ca.sh` from the `scripts` folder.
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
### BEGIN INIT INFO
|
||||
# Provides: rauc-mark-good
|
||||
# Required-Start:
|
||||
# Required-Stop:
|
||||
# Default-Start: 2 3 4 5
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: Rauc Good-marking Service
|
||||
### END INIT INFO
|
||||
# Author: <ejo@pengutronix.de>
|
||||
|
||||
# Aktionen
|
||||
case "$1" in
|
||||
start)
|
||||
rauc status mark-good
|
||||
;;
|
||||
stop)
|
||||
;;
|
||||
restart)
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
@@ -0,0 +1,15 @@
|
||||
[Unit]
|
||||
Description=RAUC Good-marking Service
|
||||
ConditionKernelCommandLine=|bootchooser.active
|
||||
ConditionKernelCommandLine=|rauc.slot
|
||||
After=boot-complete.target
|
||||
Requires=boot-complete.target
|
||||
DefaultDependencies=no
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
RemainAfterExit=yes
|
||||
ExecStart=@BINDIR@/rauc status mark-good
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
36
sources/meta-rauc/recipes-core/rauc/files/system.conf
Normal file
36
sources/meta-rauc/recipes-core/rauc/files/system.conf
Normal file
@@ -0,0 +1,36 @@
|
||||
## This is an example RAUC system configuration. This file will be installed
|
||||
## into /etc/rauc/system.conf on your target and describes your system from the
|
||||
## perspective of the RAUC update service.
|
||||
##
|
||||
## Adapt and extend the below configuration to your needs and place it in the
|
||||
## BSP layer of you project. Create a rauc .bbappend file that adds this file
|
||||
## to your build:
|
||||
##
|
||||
## FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
||||
##
|
||||
## ---
|
||||
##
|
||||
# [system]
|
||||
# compatible=My Example System
|
||||
# bootloader=<barebox|uboot|grub>
|
||||
# bundle-formats=-plain
|
||||
#
|
||||
# [slot.rootfs.0]
|
||||
# device=/dev/mmcblkXp1
|
||||
# type=ext4
|
||||
# bootname=system0
|
||||
#
|
||||
# [slot.rootfs.1]
|
||||
# device=/dev/mmcblkXp2
|
||||
# type=ext4
|
||||
# bootname=system1
|
||||
#
|
||||
# [slot.appfs.0]
|
||||
# device=/dev/mmcblkXp3
|
||||
# type=ext4
|
||||
# parent=rootfs.0
|
||||
#
|
||||
# [slot.appfs.1]
|
||||
# device=/dev/mmcblkXp4
|
||||
# type=ext4
|
||||
# parent=rootfs.1
|
||||
Reference in New Issue
Block a user