-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Dell] [Z9100] Supporting PreEmphasis Settings for Optics (#2501)
1 parent
922fdc5
commit ed2d87a
Showing
6 changed files
with
1,620 additions
and
0 deletions.
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
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
4 changes: 4 additions & 0 deletions
4
platform/broadcom/sonic-platform-modules-dell/z9100/scripts/qsfp_monitor
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,4 @@ | ||
#!/bin/bash | ||
if [ -r /usr/local/bin/z9100_qsfp_monitor.py ]; then | ||
python /usr/local/bin/z9100_qsfp_monitor.py & | ||
fi |
1,076 changes: 1,076 additions & 0 deletions
1,076
platform/broadcom/sonic-platform-modules-dell/z9100/scripts/z9100_preemp_db.py
Large diffs are not rendered by default.
Oops, something went wrong.
522 changes: 522 additions & 0 deletions
522
platform/broadcom/sonic-platform-modules-dell/z9100/scripts/z9100_qsfp_monitor.py
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
platform/broadcom/sonic-platform-modules-dell/z9100/systemd/z9100-qsfp-monitor.service
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,11 @@ | ||
[Unit] | ||
Description=Dell Z9100 Qsfp Monitor | ||
DefaultDependencies=no | ||
|
||
[Service] | ||
Type=oneshot | ||
ExecStart=/usr/local/bin/qsfp_monitor start | ||
RemainAfterExit=yes | ||
|
||
[Install] | ||
WantedBy=multi-user.target |