22 lines
565 B
Bash
22 lines
565 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
HWSKU_DIR=/usr/share/sonic/hwsku
|
||
|
|
||
|
mkdir -p /etc/sai.d/
|
||
|
|
||
|
# Create/Copy the pai.profile to /etc/sai.d/pai.profile
|
||
|
if [ -f $HWSKU_DIR/pai.profile.j2 ]; then
|
||
|
sonic-cfggen -d -t $HWSKU_DIR/pai.profile.j2 > /etc/sai.d/pai.profile
|
||
|
else
|
||
|
if [ -f $HWSKU_DIR/pai.profile ]; then
|
||
|
cp $HWSKU_DIR/pai.profile /etc/sai.d/pai.profile
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
# Create/Copy the gearbox configs to /etc/sai.d
|
||
|
if [[ x"$sonic_asic_platform" == x"broadcom" ]]; then
|
||
|
if [ -d $HWSKU_DIR/gearbox ]; then
|
||
|
cp $HWSKU_DIR/gearbox/*.bcm /etc/sai.d/.
|
||
|
fi
|
||
|
fi
|