-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DellEMC: Z9332f - Graceful platform reboot (#10240)
Why I did it To gracefully unmount filesystems and stop containers while performing a cold reboot. Unmount ONIE-BOOT if mounted during fast/soft/warm reboot How I did it Override systemd-reboot service to perform a cold reboot. Unmount ONIE-BOOT if mounted using fast/soft/warm-reboot plugins. How to verify it On reboot, verify that the container stop and filesystem unmount services have completed execution before the platform reboot.
- Loading branch information
1 parent
cf69206
commit 092e039
Showing
6 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
platform/broadcom/sonic-platform-modules-dell/z9332f/scripts/fast-reboot_plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
ONIE_PATH="/mnt/onie-boot" | ||
|
||
# Unmount ONIE partition if mounted | ||
if grep -qs ${ONIE_PATH} /proc/mounts; then | ||
umount ${ONIE_PATH} | ||
fi |
3 changes: 3 additions & 0 deletions
3
platform/broadcom/sonic-platform-modules-dell/z9332f/scripts/override.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[Service] | ||
ExecStart= | ||
ExecStart=/usr/share/sonic/device/x86_64-dellemc_z9332f_d1508-r0/platform_reboot_override |
23 changes: 23 additions & 0 deletions
23
platform/broadcom/sonic-platform-modules-dell/z9332f/scripts/platform_reboot_override
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/python3 | ||
import os | ||
import struct | ||
|
||
PORT_RES = '/dev/port' | ||
|
||
|
||
def portio_reg_write(resource, offset, val): | ||
fd = os.open(resource, os.O_RDWR) | ||
if(fd < 0): | ||
print('file open failed %s' % resource) | ||
return | ||
if(os.lseek(fd, offset, os.SEEK_SET) != offset): | ||
print('lseek failed on %s' % resource) | ||
return | ||
ret = os.write(fd, struct.pack('B', val)) | ||
if(ret != 1): | ||
print('write failed %d' % ret) | ||
return | ||
os.close(fd) | ||
|
||
if __name__ == "__main__": | ||
portio_reg_write(PORT_RES, 0xcf9, 0xe) |
1 change: 1 addition & 0 deletions
1
platform/broadcom/sonic-platform-modules-dell/z9332f/scripts/soft-reboot_plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fast-reboot_plugin |
1 change: 1 addition & 0 deletions
1
platform/broadcom/sonic-platform-modules-dell/z9332f/scripts/warm-reboot_plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fast-reboot_plugin |