Skip to content

Commit

Permalink
[barefoot][platform] Fix symlinks and syncd.conf for Newport in platf…
Browse files Browse the repository at this point in the history
…orm/ (sonic-net#5585)

Fix symlinks and syncd.conf for Newport in platform/ directory

Signed-off-by: Volodymyr Boyko <[email protected]>
  • Loading branch information
vboykox authored and Myron Sosyak committed Dec 28, 2020
1 parent 88cfe6a commit 6712a8f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions device/barefoot/x86_64-accton_as9516_32d-r0/syncd.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/bash


y_profile_set() {
P4_PROFILE=$(sonic-cfggen -d -v 'DEVICE_METADATA["localhost"]["p4_profile"]')
if [[ -n "$P4_PROFILE" || ( ! -L /opt/bfn/install && -e /opt/bfn/install ) ]]; then
return
fi

Y_PROFILE=$(ls -d /opt/bfn/install_y*_profile 2> /dev/null | head -1)
if [[ -z $Y_PROFILE ]]; then
echo "No P4 profile found for Newport"
return
fi

ln -srfn $Y_PROFILE /opt/bfn/install
}

(
unset PYTHONPATH
unset PYTHONHOME
y_profile_set
)

0 comments on commit 6712a8f

Please sign in to comment.