From a487d9d878b90af963a25b8292965ce3d888b432 Mon Sep 17 00:00:00 2001 From: George Hung Date: Thu, 1 Jul 2021 14:20:34 +0800 Subject: meta-quanta: common: fix "ignored null byte in input" warning get rid of "ignored null byte in input" warning for the usb-network.sh Signed-off-by: George Hung Change-Id: I2a18f568b362601fa1c41ec39a8c1cecf09f8862 --- .../meta-common/recipes-quanta/network/usb-network/usb-network.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-quanta/meta-common/recipes-quanta/network/usb-network/usb-network.sh b/meta-quanta/meta-common/recipes-quanta/network/usb-network/usb-network.sh index 6840f9ffc..ebd6f027e 100644 --- a/meta-quanta/meta-common/recipes-quanta/network/usb-network/usb-network.sh +++ b/meta-quanta/meta-common/recipes-quanta/network/usb-network/usb-network.sh @@ -12,7 +12,7 @@ check_usb_local_administered() { # Set the locally administered bit (the second least-significant # bit of the first octet) of the MAC address set_local_administered_bit() { - mac="$(cat $1)" + mac="$(tr -d '\0' < $1)" first_byte="${mac:0:2}" first_byte="$((0x$first_byte|2))" first_byte="$(printf "%02x\n" "$first_byte")" -- cgit v1.2.3