We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fb571b commit 77d44f5Copy full SHA for 77d44f5
syncd/scripts/syncd_init_common.sh
@@ -183,6 +183,11 @@ config_syncd_mlnx()
183
# Update sai.profile with MAC_ADDRESS and WARM_BOOT settings
184
echo "DEVICE_MAC_ADDRESS=$MAC_ADDRESS" >> /tmp/sai.profile
185
echo "SAI_WARM_BOOT_WRITE_FILE=/var/warmboot/" >> /tmp/sai.profile
186
+
187
+ SDK_DUMP_PATH=`cat /tmp/sai.profile|grep "SAI_DUMP_STORE_PATH"|cut -d = -f2`
188
+ if [ ! -d "$SDK_DUMP_PATH" ]; then
189
+ mkdir -p "$SDK_DUMP_PATH"
190
+ fi
191
}
192
193
config_syncd_centec()
0 commit comments