sonic-buildimage/platform/broadcom/sonic-platform-modules-cel/haliburton/script/udev_prefix.sh
Joe LeVeque c651fbc5d6
[platform] Update path to udevprefix.conf file (#6779)
Azure/sonic-utilities#1431 changes the path to the udevprefix.conf file. The file previously inappropriately resided in the <platform>/plugins/ directory. That directory is reserved for now-deprecated Python platform plugins, and will be removed in the near future.
2021-02-14 10:40:24 -08:00

24 lines
539 B
Bash

#!/bin/bash
PREV_REBOOT_CAUSE="/host/reboot-cause/"
DEVICE="/usr/share/sonic/device"
PLATFORM=$(/usr/local/bin/sonic-cfggen -H -v DEVICE_METADATA.localhost.platform)
PLATFORM_PATH=$DEVICE/$PLATFORM
FILENAME="udevprefix.conf"
if [ "$1" = "clear" ]
then
if [ -e $PLATFORM_PATH/$FILENAME ]; then
rm $PLATFORM_PATH/$FILENAME
fi
else
if [ -e $PLATFORM_PATH/$FILENAME ]; then
: > $PLATFORM_PATH/$FILENAME
echo -n "$1" > $PLATFORM_PATH/$FILENAME
else
touch $PLATFORM_PATH/$FILENMAE
echo -n "$1" > $PLATFORM_PATH/$FILENAME
fi
fi