50fe458592
ARM Architecture support in SONIC make configure platform=[ASIC_VENDOR_ARCH] PLATFORM_ARCH=[ARM_ARCH] SONIC_ARCH: default amd64 armhf - arm32bit arm64 - arm64bit Signed-off-by: Antony Rheneus <arheneus@marvell.com>
13 lines
133 B
Bash
Executable File
13 lines
133 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function clean_up {
|
|
service syncd stop
|
|
exit
|
|
}
|
|
|
|
trap clean_up SIGTERM SIGKILL
|
|
|
|
service syncd start
|
|
|
|
read
|