From 0febf0de300ece1eef99a63b27a2fa9af750f127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Gourichon?= Date: Mon, 14 Oct 2019 16:40:02 +0200 Subject: [PATCH 1/3] Complete the renaming of download-env-root.sh to debian-setup.sh. --- scripts/download-env.sh | 2 +- scripts/enter-env.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/download-env.sh b/scripts/download-env.sh index f03c271d2..6fcf7aefb 100755 --- a/scripts/download-env.sh +++ b/scripts/download-env.sh @@ -64,7 +64,7 @@ fi # true #else # echo "Please install the HDMI2USB udev rules." -# echo "These are installed by scripts/download-env-root.sh" +# echo "These are installed by scripts/debian-setup.sh" # echo # exit 1 #fi diff --git a/scripts/enter-env.sh b/scripts/enter-env.sh index 14cac3b93..b83d185cd 100755 --- a/scripts/enter-env.sh +++ b/scripts/enter-env.sh @@ -64,7 +64,7 @@ if [ -f /etc/udev/rules.d/99-hdmi2usb-permissions.rules -o -f /lib/udev/rules.d/ true else echo "Please install the HDMI2USB udev rules." - echo "These are installed by scripts/download-env-root.sh" + echo "These are installed by scripts/debian-setup.sh" echo return 1 fi From 667e7ed7b37c8fc7b3ac445a6b9fabf09a76d1c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Gourichon?= Date: Wed, 16 Oct 2019 18:33:10 +0200 Subject: [PATCH 2/3] Heed suggestion by mithro. --- scripts/enter-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/enter-env.sh b/scripts/enter-env.sh index b83d185cd..76de8747b 100755 --- a/scripts/enter-env.sh +++ b/scripts/enter-env.sh @@ -64,7 +64,7 @@ if [ -f /etc/udev/rules.d/99-hdmi2usb-permissions.rules -o -f /lib/udev/rules.d/ true else echo "Please install the HDMI2USB udev rules." - echo "These are installed by scripts/debian-setup.sh" + echo "On Debian/Ubuntu, these can be installed by running scripts/debian-setup.sh" echo return 1 fi From 118f7c390a14d74f8bb44964bbd8b035686fc798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Gourichon?= Date: Wed, 16 Oct 2019 18:33:55 +0200 Subject: [PATCH 3/3] Hint about HDMI2USB_UDEV_IGNORE. --- scripts/enter-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/enter-env.sh b/scripts/enter-env.sh index 76de8747b..990ac8389 100755 --- a/scripts/enter-env.sh +++ b/scripts/enter-env.sh @@ -63,7 +63,7 @@ fi if [ -f /etc/udev/rules.d/99-hdmi2usb-permissions.rules -o -f /lib/udev/rules.d/99-hdmi2usb-permissions.rules -o -f /lib/udev/rules.d/60-hdmi2usb-udev.rules -o ! -z "$HDMI2USB_UDEV_IGNORE" ]; then true else - echo "Please install the HDMI2USB udev rules." + echo "Please install the HDMI2USB udev rules, or `export HDMI2USB_UDEV_IGNORE=somevalue` to ignore this." echo "On Debian/Ubuntu, these can be installed by running scripts/debian-setup.sh" echo return 1