[DellEMC] S6100 Platform Service optimization porting in 202205 (#11329)
To reduce rc.local script execution time. Porting changes from [DellEMC] S6100 Platform Service optimization #10989 Changes: Moving platform-modules-s6100.service and s6100-lpc-monitor.service asynchronous to rc.local script.
This commit is contained in:
parent
6771f44f5c
commit
79e014efcb
@ -1,40 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
### BEGIN INIT INFO
|
|
||||||
# Provides: setup-board
|
|
||||||
# Required-Start:
|
|
||||||
# Required-Stop:
|
|
||||||
# Should-Start:
|
|
||||||
# Should-Stop:
|
|
||||||
# Default-Start: S
|
|
||||||
# Default-Stop: 0 6
|
|
||||||
# Short-Description: Setup S6100 board.
|
|
||||||
### END INIT INFO
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
start)
|
|
||||||
echo -n "Setting up board... "
|
|
||||||
|
|
||||||
/usr/local/bin/iom_power_on.sh
|
|
||||||
/usr/local/bin/s6100_platform.sh init
|
|
||||||
|
|
||||||
echo "done."
|
|
||||||
;;
|
|
||||||
|
|
||||||
stop)
|
|
||||||
/usr/local/bin/s6100_platform.sh deinit
|
|
||||||
echo "done."
|
|
||||||
|
|
||||||
;;
|
|
||||||
|
|
||||||
force-reload|restart)
|
|
||||||
echo "Not supported"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "Usage: /etc/init.d/platform-modules-s6100.init {start|stop}"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
exit 0
|
|
@ -1,11 +1,7 @@
|
|||||||
# postinst script for S6100
|
# postinst script for S6100
|
||||||
|
|
||||||
# Enable Dell-S6100-platform-service
|
# Enable Dell-S6100-platform-service
|
||||||
depmod -a
|
|
||||||
systemctl enable platform-modules-s6100.service
|
systemctl enable platform-modules-s6100.service
|
||||||
systemctl start platform-modules-s6100.service
|
systemctl start --no-block platform-modules-s6100.service
|
||||||
|
|
||||||
systemctl enable s6100-lpc-monitor.service
|
|
||||||
systemctl start s6100-lpc-monitor.service
|
|
||||||
|
|
||||||
#DEBHELPER#
|
#DEBHELPER#
|
||||||
|
@ -90,6 +90,9 @@ override_dh_auto_install:
|
|||||||
|
|
||||||
override_dh_usrlocal:
|
override_dh_usrlocal:
|
||||||
|
|
||||||
|
override_dh_installmodules:
|
||||||
|
dh_installmodules --no-scripts;
|
||||||
|
|
||||||
override_dh_clean:
|
override_dh_clean:
|
||||||
dh_clean
|
dh_clean
|
||||||
set -e; \
|
set -e; \
|
||||||
|
@ -3,6 +3,30 @@
|
|||||||
#platform init script for Dell S6100
|
#platform init script for Dell S6100
|
||||||
|
|
||||||
if [[ "$1" == "init" ]]; then
|
if [[ "$1" == "init" ]]; then
|
||||||
|
depmod -a
|
||||||
|
case "$(cat /proc/cmdline)" in
|
||||||
|
*SONIC_BOOT_TYPE=warm*)
|
||||||
|
TYPE='warm'
|
||||||
|
;;
|
||||||
|
*SONIC_BOOT_TYPE=fastfast*)
|
||||||
|
TYPE='fastfast'
|
||||||
|
;;
|
||||||
|
*SONIC_BOOT_TYPE=fast*|*fast-reboot*)
|
||||||
|
TYPE='fast'
|
||||||
|
;;
|
||||||
|
*SONIC_BOOT_TYPE=soft*)
|
||||||
|
TYPE='soft'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
TYPE='cold'
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [[ "$TYPE" == "cold" ]]; then
|
||||||
|
/usr/local/bin/iom_power_on.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
systemctl enable s6100-lpc-monitor.service
|
||||||
|
systemctl start --no-block s6100-lpc-monitor.service
|
||||||
|
|
||||||
pericom="/sys/bus/pci/devices/0000:08:00.0"
|
pericom="/sys/bus/pci/devices/0000:08:00.0"
|
||||||
modprobe i2c-dev
|
modprobe i2c-dev
|
||||||
@ -24,23 +48,6 @@ if [[ "$1" == "init" ]]; then
|
|||||||
|
|
||||||
systemctl start --no-block s6100-ssd-upgrade-status.service
|
systemctl start --no-block s6100-ssd-upgrade-status.service
|
||||||
|
|
||||||
case "$(cat /proc/cmdline)" in
|
|
||||||
*SONIC_BOOT_TYPE=warm*)
|
|
||||||
TYPE='warm'
|
|
||||||
;;
|
|
||||||
*SONIC_BOOT_TYPE=fastfast*)
|
|
||||||
TYPE='fastfast'
|
|
||||||
;;
|
|
||||||
*SONIC_BOOT_TYPE=fast*|*fast-reboot*)
|
|
||||||
TYPE='fast'
|
|
||||||
;;
|
|
||||||
*SONIC_BOOT_TYPE=soft*)
|
|
||||||
TYPE='soft'
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
TYPE='cold'
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [[ "$TYPE" == "cold" ]]; then
|
if [[ "$TYPE" == "cold" ]]; then
|
||||||
systemctl start s6100-platform-startup.service
|
systemctl start s6100-platform-startup.service
|
||||||
else
|
else
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Dell S6100 Platform modules
|
Description=Dell S6100 Platform modules
|
||||||
Before=pmon.service determine-reboot-cause.service
|
Before=pmon.service determine-reboot-cause.service pcie-check.service system-health.service watchdog-control.service
|
||||||
DefaultDependencies=no
|
DefaultDependencies=no
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Dell S6100 Platform Startup Service
|
Description=Dell S6100 Platform Startup Service
|
||||||
Before=pmon.service determine-reboot-cause.service
|
Before=pmon.service determine-reboot-cause.service pcie-check.service system-health.service watchdog-control.service
|
||||||
DefaultDependencies=no
|
DefaultDependencies=no
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
|
Reference in New Issue
Block a user