mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-27 18:25:00 +00:00
16 lines
402 B
Clojure
Executable File
16 lines
402 B
Clojure
Executable File
#!/bin/sh
|
|
#
|
|
############################################################
|
|
#
|
|
# If any rc.boot scripts are present in any mounted
|
|
# partition they will be executed at boot time.
|
|
#
|
|
############################################################
|
|
for dir in boot config images data; do
|
|
script=/mnt/onl/$dir/rc.boot
|
|
if [ -x "$script" ]; then
|
|
echo "Executing $script..."
|
|
$script
|
|
fi
|
|
done
|