Skip to content

Commit

Permalink
added support for X11SPi-TF Motherboards
Browse files Browse the repository at this point in the history
  • Loading branch information
markdhooper committed Sep 15, 2021
1 parent 17f8e90 commit 5b4b2d1
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Serial45d 1.0.1-4
## Serial45d 1.0.1-5

* added 45drives-tools > 2.0.1 as a dependency
* added support for X11SPi-TF Motherboards
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Serial45d",
"prerelease": false,
"version": "1.0.1",
"buildVersion": "4",
"buildVersion": "5",
"author": "Mark Hooper <mhooper@45drives.com>",
"url": "https://github.com/45Drives/serial45d",
"category": "utils",
Expand Down Expand Up @@ -51,7 +51,7 @@
"changelog": {
"urgency": "medium",
"version": "1.0.1",
"buildVersion": "4",
"buildVersion": "5",
"ignore": [],
"date": null,
"packager": "Mark Hooper <mhooper@45drives.com>",
Expand Down
2 changes: 2 additions & 0 deletions packaging/el7/main.spec
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ fi
%{_bindir}/*

%changelog
* Wed Sep 15 2021 Mark Hooper <mhooper@45drives.com> 1.0.1-5
- added support for X11SPi-TF Motherboards
* Mon Aug 30 2021 Mark Hooper <mhooper@45drives.com> 1.0.1-4
- added 45drives-tools > 2.0.1 as a dependency
* Wed Aug 25 2021 Mark Hooper <mhooper@45drives.com> 1.0.1-3
Expand Down
2 changes: 2 additions & 0 deletions packaging/el8/main.spec
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ fi
%{_bindir}/*

%changelog
* Wed Sep 15 2021 Mark Hooper <mhooper@45drives.com> 1.0.1-5
- added support for X11SPi-TF Motherboards
* Mon Aug 30 2021 Mark Hooper <mhooper@45drives.com> 1.0.1-4
- added 45drives-tools > 2.0.1 as a dependency
* Wed Aug 25 2021 Mark Hooper <mhooper@45drives.com> 1.0.1-3
Expand Down
6 changes: 6 additions & 0 deletions packaging/focal/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
serial45d (1.0.1-5focal) focal; urgency=medium

* added support for X11SPi-TF Motherboards

-- Mark Hooper <mhooper@45drives.com> Wed, 15 Sep 2021 06:52:23 -0300

serial45d (1.0.1-4focal) focal; urgency=medium

* added 45drives-tools > 2.0.1 as a dependency
Expand Down
1 change: 1 addition & 0 deletions src/fakeroot/opt/45drives/serial45d/configs/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Motherboard:X11DPL-i
Motherboard:X11SPL-F
Motherboard:X11SSH-CTF
Motherboard:X11SSM-F
Motherboard:X11SPi-TF
CPU:Intel(R) Xeon(R) Silver 4210 CPU @ 2.20GHz
CPU:Intel(R) Xeon(R) CPU E3-1220 v5 @ 3.00GHz
CPU:Intel(R) Xeon(R) Bronze 3204 CPU @ 1.90GHz
Expand Down
5 changes: 3 additions & 2 deletions src/fakeroot/opt/45drives/serial45d/serial45d
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,8 @@ def manualSelect(auto_detect_fields,fru_fields):
"X11DPL-i": "Turbo",
"X11SSM-F": "Base",
"H11SSL-i": "Enhanced-AMD",
"X11DPH-T": "Turbo"
"X11DPH-T": "Turbo",
"X11SPi-TF": "Enhanced"
}

cpu_substr_to_version_lut = {
Expand All @@ -459,7 +460,7 @@ def manualSelect(auto_detect_fields,fru_fields):
#see if we can determine base, enhanced, turbo or enhanced-AMD type
if auto_detect_fields["board_model"] in mobo_to_version_lut.keys():
# we have a known motherboard model
if auto_detect_fields["board_model"] == "X11SPL-F":
if auto_detect_fields["board_model"] == "X11SPL-F" or auto_detect_fields["board_model"] == "X11SPi-TF":
# we need to see if the cpu is a gold, silver or bronze model
for substr in cpu_substr_to_version_lut.keys():
if substr in auto_detect_fields["cpu_model"]:
Expand Down

0 comments on commit 5b4b2d1

Please sign in to comment.