942bef4475
Why I did it To include ONIE version in show platform firmware status command output in DellEMC S6100 and Z9332f platforms. How I did it Include ‘ONIE’ in the list of components provided by platform APIs in DellEMC S6100 and Z9332f. Unmount ONIE-BOOT if mounted using fast/soft/warm-reboot plugins in DellEMC S6100.
19 lines
514 B
Bash
Executable File
19 lines
514 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ONIE_PATH="/mnt/onie-boot"
|
|
|
|
# Unmount ONIE partition if mounted
|
|
if grep -qs ${ONIE_PATH} /proc/mounts; then
|
|
umount ${ONIE_PATH}
|
|
fi
|
|
|
|
if [[ -d /sys/devices/platform/SMF.512/hwmon/ ]]; then
|
|
cd /sys/devices/platform/SMF.512/hwmon/*
|
|
echo 0xcc > mb_poweron_reason
|
|
fi
|
|
|
|
io_rd_wr.py --set --val 40 --offset 0x131
|
|
io_rd_wr.py --set --val 06 --offset 210; io_rd_wr.py --set --val 0B --offset 211; io_rd_wr.py --set --val aa --offset 213
|
|
|
|
/usr/local/bin/s6100_platform_startup.sh deinit & > /dev/null
|