- 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)
26 lines
652 B
Bash
26 lines
652 B
Bash
#!/bin/sh
|
|
|
|
# This script is only needed to make sure /etc/X11/xserver-common
|
|
# can affect XSERVER, ARGS & DPI: otherwise systemd could just use
|
|
# /etc/default/xserver-nodm as EnvironmentFile and sysvinit could just
|
|
# source the same file
|
|
|
|
. /etc/profile
|
|
|
|
# load default values for XSERVER, ARGS, DISPLAY...
|
|
. /etc/default/xserver-nodm
|
|
|
|
# Allow xserver-common to override ARGS, XSERVER, DPI
|
|
if [ -e /etc/X11/xserver-common ] ; then
|
|
. /etc/X11/xserver-common
|
|
if [ ! -e $XSERVER ] ; then
|
|
XSERVER=$(which $XSERVER)
|
|
fi
|
|
fi
|
|
|
|
if [ -n "$DPI" ] ; then
|
|
ARGS="$ARGS -dpi $DPI"
|
|
fi
|
|
|
|
exec xinit /etc/X11/Xsession -- $XSERVER $DISPLAY $ARGS $*
|