Skip to content

Commit

Permalink
Merge branch 'master' of github.com:45Drives/tools
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanKeo45 committed Jan 10, 2025
2 parents d9675fb + ac4ff8c commit 8b9f655
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
## 45drives-tools 3.0.14-1
## 45drives-tools 3.0.15-1

* Adds support for HL4/8 and 45Professional
* Fixes sata addressing for HL4/8
* reverse mapping order pro4/pro8
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "45drives-tools",
"title": "45drives-tools",
"prerelease": false,
"version": "3.0.14",
"version": "3.0.15",
"buildVersion": "1",
"author": "Brett Kelly <[email protected]>",
"url": "https://github.com/45Drives/tools",
Expand Down Expand Up @@ -65,7 +65,7 @@
],
"changelog": {
"urgency": "medium",
"version": "3.0.14",
"version": "3.0.15",
"buildVersion": "1",
"ignore": [],
"date": null,
Expand Down
2 changes: 2 additions & 0 deletions packaging/el7/main.spec
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ fi
/usr/lib/udev/rules.d/*

%changelog
* Tue Jan 07 2025 Brett Kelly <[email protected]> 3.0.15-1
- reverse mapping order pro4/pro8
* Mon Dec 16 2024 Jordan Keough <[email protected]> 3.0.14-1
- Adds support for HL4/8 and 45Professional
- Fixes sata addressing for HL4/8
Expand Down
2 changes: 2 additions & 0 deletions packaging/el8/main.spec
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ fi
/usr/lib/udev/rules.d/*

%changelog
* Tue Jan 07 2025 Brett Kelly <[email protected]> 3.0.15-1
- reverse mapping order pro4/pro8
* Mon Dec 16 2024 Jordan Keough <[email protected]> 3.0.14-1
- Adds support for HL4/8 and 45Professional
- Fixes sata addressing for HL4/8
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 @@
45drives-tools (3.0.15-1focal) focal; urgency=medium

* reverse mapping order pro4/pro8

-- Brett Kelly <[email protected]> Tue, 07 Jan 2025 08:16:07 -0400

45drives-tools (3.0.14-1focal) focal; urgency=medium

* Adds support for HL4/8 and 45Professional
Expand Down
6 changes: 3 additions & 3 deletions tools/dmap
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ def alias_hl8():
###############################################################################
def alias_pro4():
vdev_id_str = ""
pro4_order = [1,2,3,4]
pro4_order = [4,3,2,1]

for i in range(0,len(pro4_order)):
vdev_id_str += (
Expand All @@ -818,8 +818,8 @@ def alias_pro4():
###############################################################################
def alias_pro8():
vdev_id_str = ""
pro8_order1 = [1,2,3,4]
pro8_order2 = [5,6,7,8]
pro8_order1 = [4,3,2,1]
pro8_order2 = [8,7,6,5]

for i in range(0,len(pro8_order1)):
vdev_id_str += (
Expand Down

0 comments on commit 8b9f655

Please sign in to comment.