We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aed2ff commit c163238Copy full SHA for c163238
1 file changed
syncd/scripts/syncd_init_common.sh
@@ -86,6 +86,11 @@ function set_start_type()
86
fi
87
}
88
89
+config_syncd_cisco_8000()
90
+{
91
+ export BASE_OUTPUT_DIR=/opt/cisco/silicon-one
92
+ CMD_ARGS+=" -p $HWSKU_DIR/sai.profile"
93
+}
94
95
config_syncd_bcm()
96
{
@@ -268,7 +273,10 @@ config_syncd()
268
273
269
274
check_warm_boot
270
275
271
- if [ "$SONIC_ASIC_TYPE" == "broadcom" ]; then
276
+
277
+ if [ "$SONIC_ASIC_TYPE" == "cisco-8000" ]; then
278
+ config_syncd_cisco_8000
279
+ elif [ "$SONIC_ASIC_TYPE" == "broadcom" ]; then
272
280
config_syncd_bcm
281
elif [ "$SONIC_ASIC_TYPE" == "mellanox" ]; then
282
config_syncd_mlnx
0 commit comments