Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[barefoot] Switch to Y profiles for Newport board #5187

Merged
merged 1 commit into from
Oct 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions device/barefoot/x86_64-accton_as9516bf_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
)