- 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)
19 lines
450 B
Bash
19 lines
450 B
Bash
#!/bin/sh
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set -eu
|
|
|
|
# Create a temporary man_db.conf with paths to the rootfs, as mandb needs absolute paths
|
|
CONFIG=$(mktemp --tmpdir update-mandb.XXXXX)
|
|
sed "s:\(\s\)/:\1$D/:g" $D${sysconfdir}/man_db.conf > $CONFIG
|
|
|
|
mkdir -p $D${localstatedir}/cache/man/
|
|
|
|
PSEUDO_UNLOAD=1 ${binprefix}qemuwrapper -L $D $D${bindir}/mandb --config-file $CONFIG --create
|
|
|
|
rm -f $CONFIG
|
|
|
|
chown -R man:man $D${localstatedir}/cache/man/
|