diff --git a/beagleboard.org_image.sh b/beagleboard.org_image.sh
index 32019ce89e56fa77246578655ecf3b1d11de3dad..5189f8555ab066841edccf5d57effa90f3b20ce5 100755
--- a/beagleboard.org_image.sh
+++ b/beagleboard.org_image.sh
@@ -90,7 +90,7 @@ minimal_armel () {
 	esac
 
 	#When doing offical releases, always hard lock the kernel version...
-	#chroot_KERNEL_HTTP_DIR="http://rcn-ee.net/deb/${release}-${dpkg_arch}/v3.8.13-bone41/"
+	#chroot_KERNEL_HTTP_DIR="${mirror}/${release}-${dpkg_arch}/v3.8.13-bone41/"
 
 	tempdir=$(mktemp -d -p ${DIR}/ignore)
 
@@ -254,7 +254,7 @@ kernel_chooser () {
 		rm -rf ${tempdir}/LATEST-${SUBARCH} || true
 	fi
 
-	wget --no-verbose --directory-prefix=${tempdir}/ http://rcn-ee.net/deb/${release}-${dpkg_arch}/LATEST-${SUBARCH}
+	wget --no-verbose --directory-prefix=${tempdir}/ ${mirror}/${release}-${dpkg_arch}/LATEST-${SUBARCH}
 	FTP_DIR=$(cat ${tempdir}/LATEST-${SUBARCH} | grep "ABI:1 ${KERNEL_ABI}" | awk '{print $3}')
 	FTP_DIR=$(echo ${FTP_DIR} | awk -F'/' '{print $6}')
 }
@@ -380,7 +380,7 @@ if [ ! "${apt_proxy}" ] ; then
 	apt_proxy=""
 fi
 if [ ! "${mirror}" ] ; then
-	mirror="http://rcn-ee.net/deb"
+	mirror="https://rcn-ee.net/deb"
 fi
 
 #FIXME: (something simple)
diff --git a/eewiki_barefs_image.sh b/eewiki_barefs_image.sh
index 43b99fa81d75a5af7872d78af5960c7c28bac96f..6b9d7eba08b1bd7280ac68aeb1597808a2dd5d86 100755
--- a/eewiki_barefs_image.sh
+++ b/eewiki_barefs_image.sh
@@ -258,7 +258,7 @@ if [ ! "${apt_proxy}" ] ; then
 	apt_proxy=""
 fi
 if [ ! "${mirror}" ] ; then
-	mirror="http://rcn-ee.net/deb"
+	mirror="https://rcn-ee.net/deb"
 fi
 if [ -f ${DIR}/rcn-ee.host ] ; then
 	. ${DIR}/host/rcn-ee-host.sh
diff --git a/eewiki_base_image.sh b/eewiki_base_image.sh
index e21938935915e7750481433f7a6b12ba2daa2354..cfde325f0ae372250dc299cc67a312f9097c7fe7 100755
--- a/eewiki_base_image.sh
+++ b/eewiki_base_image.sh
@@ -261,7 +261,7 @@ if [ ! "${apt_proxy}" ] ; then
 	apt_proxy=""
 fi
 if [ ! "${mirror}" ] ; then
-	mirror="http://rcn-ee.net/deb"
+	mirror="https://rcn-ee.net/deb"
 fi
 if [ -f ${DIR}/rcn-ee.host ] ; then
 	. ${DIR}/host/rcn-ee-host.sh
diff --git a/rcn-ee_image.sh b/rcn-ee_image.sh
index d15a0c0e6ffeee0499b229deea6c24597c17b691..5670bbb31a9ac116b13414f1a606e70a5bb0415a 100755
--- a/rcn-ee_image.sh
+++ b/rcn-ee_image.sh
@@ -59,8 +59,8 @@ minimal_armel () {
 
 #	if [ -f ${DIR}/release ] ; then
 #		chroot_KERNEL_HTTP_DIR="\
-#http://rcn-ee.net/deb/${release}-${dpkg_arch}/v3.13.3-armv7-x10/ \
-#http://rcn-ee.net/deb/${release}-${dpkg_arch}/v3.8.13-bone40/"
+#${mirror}/${release}-${dpkg_arch}/v3.13.3-armv7-x10/ \
+#${mirror}/${release}-${dpkg_arch}/v3.8.13-bone40/"
 #	fi
 
 	tempdir=$(mktemp -d -p ${DIR}/ignore)
@@ -207,7 +207,7 @@ kernel_chooser () {
 		rm -rf ${tempdir}/LATEST-${SUBARCH} || true
 	fi
 
-	wget --no-verbose --directory-prefix=${tempdir}/ http://rcn-ee.net/deb/${release}-${dpkg_arch}/LATEST-${SUBARCH}
+	wget --no-verbose --directory-prefix=${tempdir}/ ${mirror}/${release}-${dpkg_arch}/LATEST-${SUBARCH}
 	FTP_DIR=$(cat ${tempdir}/LATEST-${SUBARCH} | grep "ABI:1 ${KERNEL_ABI}" | awk '{print $3}')
 	FTP_DIR=$(echo ${FTP_DIR} | awk -F'/' '{print $6}')
 }
@@ -338,7 +338,7 @@ if [ ! "${apt_proxy}" ] ; then
 	apt_proxy=""
 fi
 if [ ! "${mirror}" ] ; then
-	mirror="http://rcn-ee.net/deb"
+	mirror="https://rcn-ee.net/deb"
 fi
 if [ -f ${DIR}/rcn-ee.host ] ; then
 	. ${DIR}/host/rcn-ee-host.sh
diff --git a/rcn-ee_test_image.sh b/rcn-ee_test_image.sh
index 462e07ec0f02f05f32f8b405f5d73b4e9e18e60c..fe8948954102361201fc5cc4e6ba38994be7a3ff 100755
--- a/rcn-ee_test_image.sh
+++ b/rcn-ee_test_image.sh
@@ -59,8 +59,8 @@ minimal_armel () {
 
 #	if [ -f ${DIR}/release ] ; then
 #		chroot_KERNEL_HTTP_DIR="\
-#http://rcn-ee.net/deb/${release}-${dpkg_arch}/v3.13.3-armv7-x10/ \
-#http://rcn-ee.net/deb/${release}-${dpkg_arch}/v3.8.13-bone40/"
+#${mirror}/${release}-${dpkg_arch}/v3.13.3-armv7-x10/ \
+#${mirror}/${release}-${dpkg_arch}/v3.8.13-bone40/"
 #	fi
 
 	tempdir=$(mktemp -d -p ${DIR}/ignore)
@@ -178,7 +178,7 @@ kernel_chooser () {
 		rm -rf ${tempdir}/LATEST-${SUBARCH} || true
 	fi
 
-	wget --no-verbose --directory-prefix=${tempdir}/ http://rcn-ee.net/deb/${release}-${dpkg_arch}/LATEST-${SUBARCH}
+	wget --no-verbose --directory-prefix=${tempdir}/ ${mirror}/${release}-${dpkg_arch}/LATEST-${SUBARCH}
 	FTP_DIR=$(cat ${tempdir}/LATEST-${SUBARCH} | grep "ABI:1 ${KERNEL_ABI}" | awk '{print $3}')
 	FTP_DIR=$(echo ${FTP_DIR} | awk -F'/' '{print $6}')
 }
@@ -309,7 +309,7 @@ if [ ! "${apt_proxy}" ] ; then
 	apt_proxy=""
 fi
 if [ ! "${mirror}" ] ; then
-	mirror="http://rcn-ee.net/deb"
+	mirror="https://rcn-ee.net/deb"
 fi
 if [ -f ${DIR}/rcn-ee.host ] ; then
 	. ${DIR}/host/rcn-ee-host.sh