diff --git a/lib/armbian-configng/config.ng.jobs.json b/lib/armbian-configng/config.ng.jobs.json index 1ec9f692..a4a47b62 100644 --- a/lib/armbian-configng/config.ng.jobs.json +++ b/lib/armbian-configng/config.ng.jobs.json @@ -395,7 +395,7 @@ "doc_link": "", "src_reference": "", "author": "Gunjan Gupta", - "condition": "[ -n $OVERLAYDIR ] && [ -n $BOOT_SOC ]" + "condition": "[ -n $OVERLAY_DIR ] && [ -n $BOOT_SOC ]" } ] }, diff --git a/lib/armbian-configng/config.ng.system.sh b/lib/armbian-configng/config.ng.system.sh index d3a2c8be..9fa0d638 100644 --- a/lib/armbian-configng/config.ng.system.sh +++ b/lib/armbian-configng/config.ng.system.sh @@ -357,7 +357,7 @@ function manage_dtoverlays () { while true; do local options=() j=0 - available_overlays=$(ls -1 ${OVERLAYDIR}/*.dtbo | sed "s#^${OVERLAYDIR}/##" | sed 's/.dtbo//g' | grep $BOOT_SOC | tr '\n' ' ') + available_overlays=$(ls -1 ${OVERLAY_DIR}/*.dtbo | sed "s#^${OVERLAY_DIR}/##" | sed 's/.dtbo//g' | grep $BOOT_SOC | tr '\n' ' ') for overlay in ${available_overlays}; do local status="OFF" grep '^fdt_overlays' ${overlayconf} | grep -qw ${overlay} && status=ON diff --git a/tools/json/config.system.json b/tools/json/config.system.json index e1ea4508..62201fab 100644 --- a/tools/json/config.system.json +++ b/tools/json/config.system.json @@ -395,7 +395,7 @@ "doc_link": "", "src_reference": "", "author": "Gunjan Gupta", - "condition": "[ -n $OVERLAYDIR ] && [ -n $BOOT_SOC ]" + "condition": "[ -n $OVERLAY_DIR ] && [ -n $BOOT_SOC ]" } ] }