diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f24085..cc98682 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ -## 45drives-tools 2.2.3-1 +## 45drives-tools 2.2.3-2 -* added hotfix for aliasing MI4 servers that use X11SPi-TF Motherboards \ No newline at end of file +* updated bus address used when aliasing MI4 server with X11SPi-TF Motherboards \ No newline at end of file diff --git a/manifest.json b/manifest.json index da0375a..9ede90c 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "title": "45drives-tools", "prerelease": false, "version": "2.2.3", - "buildVersion": "1", + "buildVersion": "2", "author": "Mark Hooper ", "url": "https://github.com/45Drives/tools", "category": "utils", @@ -65,7 +65,7 @@ "changelog": { "urgency": "medium", "version": "2.2.3", - "buildVersion": "1", + "buildVersion": "2", "ignore": [], "date": null, "packager": "Mark Hooper ", diff --git a/packaging/el7/main.spec b/packaging/el7/main.spec index d826eba..2e81207 100644 --- a/packaging/el7/main.spec +++ b/packaging/el7/main.spec @@ -55,6 +55,8 @@ fi %{_bindir}/* %changelog +* Wed Sep 06 2023 Mark Hooper 2.2.3-2 +- updated bus address used when aliasing MI4 server with X11SPi-TF Motherboards * Wed Sep 06 2023 Mark Hooper 2.2.3-1 - added hotfix for aliasing MI4 servers that use X11SPi-TF Motherboards * Mon Jun 12 2023 Mark Hooper 2.2.2-6 diff --git a/packaging/el8/main.spec b/packaging/el8/main.spec index 3e9ea3e..13da60b 100644 --- a/packaging/el8/main.spec +++ b/packaging/el8/main.spec @@ -55,6 +55,8 @@ fi %{_bindir}/* %changelog +* Wed Sep 06 2023 Mark Hooper 2.2.3-2 +- updated bus address used when aliasing MI4 server with X11SPi-TF Motherboards * Wed Sep 06 2023 Mark Hooper 2.2.3-1 - added hotfix for aliasing MI4 servers that use X11SPi-TF Motherboards * Mon Jun 12 2023 Mark Hooper 2.2.2-6 diff --git a/packaging/focal/changelog b/packaging/focal/changelog index 9c8b1ae..023f3d1 100644 --- a/packaging/focal/changelog +++ b/packaging/focal/changelog @@ -1,3 +1,9 @@ +45drives-tools (2.2.3-2focal) focal; urgency=medium + + * updated bus address used when aliasing MI4 server with X11SPi-TF Motherboards + + -- Mark Hooper Wed, 06 Sep 2023 06:43:58 -0300 + 45drives-tools (2.2.3-1focal) focal; urgency=medium * added hotfix for aliasing MI4 servers that use X11SPi-TF Motherboards diff --git a/src/fakeroot/opt/45drives/tools/dmap b/src/fakeroot/opt/45drives/tools/dmap index a3b5e33..4ec45bb 100755 --- a/src/fakeroot/opt/45drives/tools/dmap +++ b/src/fakeroot/opt/45drives/tools/dmap @@ -753,7 +753,7 @@ def alias_mi4(model,os_name,os_version_id,mobo_model): elif mobo_model in ["X11SPi-TF"]: # The X11SPi-TF would use the S-SATA ports for the boot drives, so it starts at the first I-SATA port. 1,2,3 and 4 are used here. # a hard coded bus address. - bus_address_sata = "0000:17:00.0" + bus_address_sata = "0000:00:17.0" for i in range(0,4): #alias the drives connected to the on board sata sata connectors vdev_id_str += "alias 1-{drive} /dev/disk/by-path/pci-{addr}-ata-{i}{s}\n".format(drive=i+1,addr=bus_address_sata,i=i+1,s=ata_suffix)