mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
ee164007b0
6a61b9a probe: fallback to libblkid.so.1 when libblkid.so does not exist
Also remove deprecation notices from init script while we're at it.
Fixes: FS#2274
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 517cb0b70b
)
21 lines
169 B
Bash
21 lines
169 B
Bash
#!/bin/sh /etc/rc.common
|
|
# (C) 2013 openwrt.org
|
|
|
|
START=40
|
|
|
|
boot() {
|
|
/sbin/block mount
|
|
}
|
|
|
|
start() {
|
|
return 0
|
|
}
|
|
|
|
restart() {
|
|
return 0
|
|
}
|
|
|
|
stop() {
|
|
/sbin/block umount
|
|
}
|