* Automount should load filesystem modules before mounting filesystems as they are not always available early.
* Only create tempfiles for games during automount startup.
This commit is contained in:
parent
d3d668b5f5
commit
9a0473365d
2 changed files with 17 additions and 2 deletions
|
@ -17,6 +17,17 @@ then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
load_modules() {
|
||||||
|
for MODULE in exfat vfat
|
||||||
|
do
|
||||||
|
lsmod | grep ${MODULE} 2>/dev/null
|
||||||
|
if [ ! $? = 0 ]
|
||||||
|
then
|
||||||
|
modprobe ${MODULE} 2>/dev/null
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
mount_games() {
|
mount_games() {
|
||||||
NULL=$(cat /proc/mounts | grep -v -e "/var/media" 2>/dev/null | grep ${1})
|
NULL=$(cat /proc/mounts | grep -v -e "/var/media" 2>/dev/null | grep ${1})
|
||||||
if [ ! "$?" = "0" ] && \
|
if [ ! "$?" = "0" ] && \
|
||||||
|
@ -24,7 +35,7 @@ mount_games() {
|
||||||
[ ! -e "/storage/.please_resize_me" ]
|
[ ! -e "/storage/.please_resize_me" ]
|
||||||
then
|
then
|
||||||
log $0 "Mounting ${1} on /storage/roms"
|
log $0 "Mounting ${1} on /storage/roms"
|
||||||
mount ${1} /storage/roms >/dev/null 2>&1
|
/usr/bin/busybox mount ${1} /storage/roms >/dev/null 2>&1
|
||||||
/usr/bin/systemd-tmpfiles --create /usr/lib/tmpfiles.d/jelos-dirs.conf >/dev/null 2>&1
|
/usr/bin/systemd-tmpfiles --create /usr/lib/tmpfiles.d/jelos-dirs.conf >/dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -66,6 +77,8 @@ find_games() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
load_modules
|
||||||
|
|
||||||
if [ -e "${GAMES_DEVICE}" ]
|
if [ -e "${GAMES_DEVICE}" ]
|
||||||
then
|
then
|
||||||
mount_games ${GAMES_DEVICE}
|
mount_games ${GAMES_DEVICE}
|
||||||
|
|
|
@ -6,7 +6,9 @@ After=systemd-tmpfiles-setup.service
|
||||||
[Service]
|
[Service]
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
Environment=HOME=/storage
|
Environment=HOME=/storage
|
||||||
ExecStart=-/bin/sh -c ". /etc/profile; exec /bin/sh /usr/bin/automount; exec systemd-tmpfiles --create"
|
EnvironmentFile=/etc/profile
|
||||||
|
ExecStart=/usr/bin/automount
|
||||||
|
ExecStartPost=systemd-tmpfiles --create /usr/lib/tmpfiles.d/jelos-dirs.conf
|
||||||
RemainAfterExit=yes
|
RemainAfterExit=yes
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
|
|
Loading…
Reference in a new issue