mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-09 17:03:35 -09:00
17 lines
275 B
Bash
Executable File
17 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Mount all filesystems. We don't mess with
|
|
# fsck, since we don't need it here...
|
|
|
|
echo -n "Mounting local file systems: "
|
|
/bin/mount / -o remount,rw > /dev/null 2>&1
|
|
/bin/mount -a > /dev/null 2>&1
|
|
if [ $? = 0 ] ; then
|
|
echo "ok"
|
|
else
|
|
echo "failed"
|
|
fi
|
|
|
|
exit 0
|
|
|