- 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)
38 lines
906 B
Bash
Executable File
38 lines
906 B
Bash
Executable File
#!/bin/sh
|
|
mount /dev/mmcblk0p1 /mnt
|
|
echo "Image info snapshot" > /mnt/info.txt
|
|
|
|
echo >> /mnt/info.txt
|
|
echo "/etc/angstrom-version:" >> /mnt/info.txt
|
|
cat /etc/angstrom-version >> /mnt/info.txt
|
|
|
|
echo >> /mnt/info.txt
|
|
echo "/proc/cpuinfo:" >> /mnt/info.txt
|
|
cat /proc/cpuinfo >> /mnt/info.txt
|
|
|
|
echo >> /mnt/info.txt
|
|
echo "uname -a:" >> /mnt/info.txt
|
|
uname -a >> /mnt/info.txt
|
|
|
|
echo >> /mnt/info.txt
|
|
echo "/proc/cmdline:" >> /mnt/info.txt
|
|
cat /proc/cmdline >> /mnt/info.txt
|
|
|
|
echo >> /mnt/info.txt
|
|
echo "ifconfig:" >> /mnt/info.txt
|
|
ifconfig >> /mnt/info.txt
|
|
|
|
echo >> /mnt/info.txt
|
|
echo "/etc/angstrom-build-info:" >> /mnt/info.txt
|
|
cat /etc/angstrom-build-info >> /mnt/info.txt
|
|
|
|
echo >> /mnt/info.txt
|
|
echo "/etc/image-version-info:" >> /mnt/info.txt
|
|
cat /etc/image-version-info >> /mnt/info.txt
|
|
|
|
echo >> /mnt/info.txt
|
|
echo "opkg list-installed:" >> /mnt/info.txt
|
|
opkg list-installed >> /mnt/info.txt
|
|
|
|
umount /mnt
|