mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-25 17:27:01 +00:00
24 lines
490 B
Bash
Executable File
24 lines
490 B
Bash
Executable File
#!/bin/sh
|
|
############################################################
|
|
#
|
|
# Initial boot setup. Required before running
|
|
# any concurrent service initialization in rcS
|
|
#
|
|
# This is designed to support early setup, platform,
|
|
# and upgrade operations.
|
|
#
|
|
############################################################
|
|
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
|
export PATH
|
|
|
|
for script in `ls /etc/boot.d/[0-9]* | sort`; do
|
|
$script
|
|
done
|
|
|
|
#
|
|
# Wait for console to flush prior to starting rc.S
|
|
#
|
|
sleep 1
|
|
|
|
|