a46f4c96e7
Signed-off-by: Arvindsrinivasan Lakshmi Narasimhan <arlakshm@microsoft.com> This PR has changes to support accessing the bcmsh and bcmcmd utilities on multi ASIC devices Changes done - move the link of /var/run/sswsyncd from docker-syncd-brcm.mk to docker_image_ctl.j2 - update the bcmsh and bcmcmd scripts to take -n [ASIC_ID] as an argument on multi ASIC platforms
9 lines
138 B
Bash
Executable File
9 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
BCM_COMMON=/usr/bin/bcm_common
|
|
if [ -f "$BCM_COMMON" ]; then
|
|
source $BCM_COMMON
|
|
fi
|
|
docker exec -i syncd$DEV bcmcmd "$@"
|
|
|