Skip to content

Commit

Permalink
Update innovium patch script
Browse files Browse the repository at this point in the history
Signed-off-by: Pavan Naregundi <[email protected]>
  • Loading branch information
pavannaregundi authored and radha-danda committed Jul 31, 2024
1 parent ae02288 commit 4318582
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 306 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@

Marvell patch script to do git patch/apply all open PRs required to build SONIC image

### Teralynx-10 Platform

* SONIC Device:
* x86_64-marvell_dbmvtx9180-r0
ARCH | CPU
------------|-----------
x86_64 | Xeon D15xx

Port: 6.4T

### AC5X-RD Platform
* SONIC Device:
* x86_64-marvell_rd98DX35xx-r0
Expand Down
Empty file.
Binary file added files/202405/teralynx_hwsku.tgz
Binary file not shown.
Empty file.
Binary file added files/master/teralynx_hwsku.tgz
Binary file not shown.
15 changes: 13 additions & 2 deletions marvell_sonic_patch_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,19 @@ apply_hwsku_changes()
if [ "$PLATFORM" == "marvell" ]; then
# Download hwsku
wget --timeout=2 -c $WGET_PATH/prestera_hwsku.tgz
rm -fr device/marvell/x86_64-marvell_db* || true
tar -C device/marvell/ -xzf prestera_hwsku.tgz
if [ $? -eq 0 ]; then
rm -fr device/marvell/x86_64-marvell_db* || true
tar -C device/marvell/ -xzf prestera_hwsku.tgz
fi
fi
if [ "$PLATFORM" == "innovium" ]; then
# Download hwsku
wget -c --timeout=2 $WGET_PATH/teralynx_hwsku.tgz
if [ $? -eq 0 ]; then
rm -fr device/celestica/x86_64-cel_midstone-r0 || true
rm -fr device/wistron || true
tar -C device/ -xzf teralynx_hwsku.tgz
fi
fi
}

Expand Down
152 changes: 0 additions & 152 deletions sonic_202405_apply_patch_teralynx.sh

This file was deleted.

152 changes: 0 additions & 152 deletions sonic_master_apply_patch_teralynx.sh

This file was deleted.

0 comments on commit 4318582

Please sign in to comment.