From 14d50e1c06c8278abbac3cafa926ee6c74ee94fa Mon Sep 17 00:00:00 2001 From: Newbyte Date: Thu, 12 Jan 2023 00:00:00 +0100 Subject: [PATCH] CI: re-enable dtb path check (MR 3801) --- .ci/grep.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.ci/grep.sh b/.ci/grep.sh index 1bf0c484f..53909ac5e 100755 --- a/.ci/grep.sh +++ b/.ci/grep.sh @@ -16,9 +16,8 @@ if grep -qr '(CHANGEME!)' *; then fi # DTBs installed to /usr/share/db -# FIXME: doesn't pass currently, fix it and enable it afterwards -# if grep -r 'INSTALL_DTBS_PATH="$pkgdir"/usr/share/dtb'; then -# echo 'Please do not install dtbs to /usr/share/dtb!' -# echo 'Unless you have a good reason not to, please put them in /boot/dtbs' -# exit 1 -# fi +if grep -r 'INSTALL_DTBS_PATH="$pkgdir"/usr/share/dtb'; then + echo 'Please do not install dtbs to /usr/share/dtb!' + echo 'Unless you have a good reason not to, please put them in /boot/dtbs' + exit 1 +fi