From 74c507c605edd4618de2ae968e668b24fd981e87 Mon Sep 17 00:00:00 2001 From: Patrick Yavitz Date: Sun, 11 Aug 2024 22:18:27 -0400 Subject: [PATCH] FIXUP: `run_host_command_logged` removes quotation marks This breaks the udev rule Signed-off-by: Patrick Yavitz --- config/boards/gateway-gz80x.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/boards/gateway-gz80x.conf b/config/boards/gateway-gz80x.conf index c21e3f463837..e97ffcc12af7 100644 --- a/config/boards/gateway-gz80x.conf +++ b/config/boards/gateway-gz80x.conf @@ -22,7 +22,7 @@ function post_config_uboot_target__extra_configs_for_gateway_gz80x() { } function post_family_tweaks_bsp__gateway_gz80x_udev() { - run_host_command_logged mkdir -p "${destination}"/etc/udev/rules.d + mkdir -p "${destination}"/etc/udev/rules.d display_alert "$BOARD" "Install zwave udev rule" "info" - run_host_command_logged echo 'KERNEL=="ttyAML2", NAME="tts/%n", SYMLINK+="zwave", GROUP="dialout", MODE="0660"' > "${destination}"/etc/udev/rules.d/10-zwave.rules + echo 'KERNEL=="ttyAML2", NAME="tts/%n", SYMLINK+="zwave", GROUP="dialout", MODE="0660"' > "${destination}"/etc/udev/rules.d/10-zwave.rules }