M7350v1_en_gpl

This commit is contained in:
T
2024-09-09 08:52:07 +00:00
commit f9cc65cfda
65988 changed files with 26357421 additions and 0 deletions

View File

@ -0,0 +1,23 @@
DESCRIPTION = "MSM init scripts"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
PR = "r1"
RCONFLICTS_${PN} = "initscripts"
SRC_URI = "file://mountall.sh"
do_install () {
#
# Create directories and install device independent scripts
#
install -d ${D}${sysconfdir}/init.d
install -d ${D}${sysconfdir}/rcS.d
install -m 0755 ${WORKDIR}/mountall.sh ${D}${sysconfdir}/init.d
#
# Create runlevel links
#
ln -sf ../init.d/mountall.sh ${D}${sysconfdir}/rcS.d/S35mountall.sh
}

View File

@ -0,0 +1,18 @@
#
# mountall.sh Mount all filesystems.
#
# Version: @(#)mountall.sh 2.83-2 01-Nov-2001 miquels@cistron.nl
#
. /etc/default/rcS
if test -f /etc/default/mountall; then
. /etc/default/mountall
fi
#
# Mount local filesystems in /etc/fstab.
#
test "$VERBOSE" != no && echo "Mounting local filesystems..."
mount -a $MOUNTALL
ln -fs /media/card /sdcard
: exit 0