/usr/share/tcos/hooks-addons/40etc2300 is in initramfs-tools-tcos 0.89.86.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # hook addon for EPATEC eTC2300
cat << EOF > ${DESTDIR}/scripts/tcos-bottom/15etc2300
#!/bin/sh
#
# new header not using prereqs
if [ "\$1" = "prereqs" ]; then
echo ""
exit 0
fi
quiet=n
. /conf/tcos.conf
. /conf/tcos-run-functions
test1=\$(grep -c "10395315" /proc/bus/pci/devices)
if [ "\$test1" = "0" ]; then
# no client with chip Silicon Integrated Systems [SiS] 550 PCI/AGP VGA Display Adapter
exit 0
fi
echo "#/scripts/tcos-bottom/15etc2300" >> /conf/tcos.conf
echo "TCOS_XORG_VIDEO_DRIVER=auto" >> /conf/tcos.conf
EOF
chmod +x ${DESTDIR}/scripts/tcos-bottom/15etc2300
stat_before
manual_add_modules sis5513
if [ "$(modprobe --set-version="${TCOS_KERNEL}" -l| grep -c snd-sis7019)" = "0" ]; then
manual_add_modules ac97_codec
manual_add_modules sis7019
else
manual_add_modules snd-sis7019
fi
stat_after "eTC2300 thin client hacks"
|