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:
26
sources/poky/meta-poky/recipes-core/tiny-init/files/init
Normal file
26
sources/poky/meta-poky/recipes-core/tiny-init/files/init
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Mount the Linux kernel virtual filesystems
|
||||
mount none -t proc /proc
|
||||
mount none -t sysfs /sys
|
||||
|
||||
# Ensure devtmpfs is mounted, it must be done manually with initramfs
|
||||
mount none -t devtmpfs /dev
|
||||
|
||||
# Setup PTY infrastructure
|
||||
mkdir /dev/pts
|
||||
mount none -t devpts /dev/pts
|
||||
|
||||
ifup lo
|
||||
|
||||
# Allow for distro or local customizations
|
||||
if [ -f /etc/rc.local ] ; then
|
||||
. /etc/rc.local
|
||||
fi
|
||||
|
||||
# Become session leader and try to find a real tty (e.g. ttyS0)
|
||||
while true; do
|
||||
setsid cttyhack sh
|
||||
echo "Console sh exited with $?, respawning..."
|
||||
sleep 1
|
||||
done
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Start services and customize the boot process here.
|
||||
echo "Running /etc/rc.local..."
|
||||
|
||||
# Use init scripts included with packages such as dropbear
|
||||
#/etc/init.d/dropbear start
|
||||
|
||||
# Spawn a getty manually
|
||||
#setsid /sbin/getty 115200 ttyS2
|
||||
|
||||
# Print a banner
|
||||
#echo "You are running a poky-tiny image brought to you by the Yocto Project."
|
||||
|
||||
# Setup a debugging environment
|
||||
#mkdir /debugfs
|
||||
#mount none -t debugfs /debugfs
|
||||
|
||||
# Load modules (note: linux-yocto-tiny does not have module support by default)
|
||||
#modprobe yourdriver
|
||||
|
||||
# DO NOT run any long running tasks or loops as these will delay
|
||||
# the /init script and the console shell.
|
||||
31
sources/poky/meta-poky/recipes-core/tiny-init/tiny-init.bb
Normal file
31
sources/poky/meta-poky/recipes-core/tiny-init/tiny-init.bb
Normal file
@@ -0,0 +1,31 @@
|
||||
SUMMARY = "Poky-tiny init"
|
||||
DESCRIPTION = "Basic init system for poky-tiny"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
|
||||
PR = "r2"
|
||||
|
||||
RDEPENDS:${PN} = "busybox"
|
||||
|
||||
SRC_URI = "file://init \
|
||||
file://rc.local.sample \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}"
|
||||
|
||||
do_configure() {
|
||||
:
|
||||
}
|
||||
|
||||
do_compile() {
|
||||
:
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${sysconfdir}
|
||||
install -m 0755 ${WORKDIR}/init ${D}
|
||||
install -m 0755 ${WORKDIR}/rc.local.sample ${D}${sysconfdir}
|
||||
}
|
||||
|
||||
FILES:${PN} = "/init ${sysconfdir}/rc.local.sample"
|
||||
RCONFLICTS:${PN} = "systemd"
|
||||
Reference in New Issue
Block a user