aboutsummaryrefslogtreecommitdiff
path: root/lt-qcom-bootloader/dragonboard410c
diff options
context:
space:
mode:
authorLeonardo Sandoval <leonardo.sandoval@linaro.org>2022-03-01 13:36:34 -0600
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2022-03-25 16:45:39 +0000
commit9050013ed08f289d48a78746caa9a639357976d7 (patch)
tree6fd24d7452e674454f7f6876cbb46629dfa8c39c /lt-qcom-bootloader/dragonboard410c
parent664d62006fcf6675f4cb0995ac7086943bb4d957 (diff)
lt-qcom: drop rescue SD card support for 410c and 820c
Rescue SD boot support has been used extensively on 410c and 820c in the past, but has always been a challenge to maintain (and test). Since the launch of these devices there are now better alternatives to rescue a board that no longer boots, especially using native USB protocol (implemented in the qdl open source project). Let's disable for now all rescue SD card support. This can be revisited later, if ever needed. On the other hand, during the CLO migration [1], the following related issue was found [2] which ultimately lead to this commit with the reasons described above. [1] https://linaro.atlassian.net/browse/QLT-1395 [2] https://linaro.atlassian.net/browse/QLT-1590 Signed-off-by: Leonardo Sandoval <leonardo.sandoval@linaro.org> Change-Id: I86af7096ca8a0bea7c38cf11629bf0472eaee6d2
Diffstat (limited to 'lt-qcom-bootloader/dragonboard410c')
-rw-r--r--lt-qcom-bootloader/dragonboard410c/builders.sh15
1 files changed, 2 insertions, 13 deletions
diff --git a/lt-qcom-bootloader/dragonboard410c/builders.sh b/lt-qcom-bootloader/dragonboard410c/builders.sh
index 0822929b96..1648856fd8 100644
--- a/lt-qcom-bootloader/dragonboard410c/builders.sh
+++ b/lt-qcom-bootloader/dragonboard410c/builders.sh
@@ -35,13 +35,11 @@ for lk in lk_sdrescue lk_sd_boot lk_emmc_boot; do
cd -
done
-SDCARD_RESCUE=dragonboard-410c-sdcard-rescue-${BUILD_NUMBER}
BOOTLOADER_SD_LINUX=dragonboard-410c-bootloader-sd-linux-${BUILD_NUMBER}
BOOTLOADER_EMMC_LINUX=dragonboard-410c-bootloader-emmc-linux-${BUILD_NUMBER}
BOOTLOADER_EMMC_AOSP=dragonboard-410c-bootloader-emmc-aosp-${BUILD_NUMBER}
-mkdir -p out/${SDCARD_RESCUE} \
- out/${BOOTLOADER_SD_LINUX} \
+mkdir -p out/${BOOTLOADER_SD_LINUX} \
out/${BOOTLOADER_EMMC_LINUX} \
out/${BOOTLOADER_EMMC_AOSP}
@@ -92,17 +90,9 @@ cp -a LICENSE \
bootloaders-linux/fs_image_linux.tar.gz.mbn.img \
out/${BOOTLOADER_SD_LINUX}
-# sdcard_rescue
-cp -a LICENSE out/${SDCARD_RESCUE}
-sudo ./mksdcard -x -p dragonboard410c/linux/sdrescue.txt \
- -o out/${SDCARD_RESCUE}/${SDCARD_RESCUE}.img \
- -i lk_sdrescue/build-msm8916/ \
- -i out/${BOOTLOADER_SD_LINUX}
-
# Final preparation of archives for publishing
mkdir ${WORKSPACE}/out2
-for i in ${SDCARD_RESCUE} \
- ${BOOTLOADER_SD_LINUX} \
+for i in ${BOOTLOADER_SD_LINUX} \
${BOOTLOADER_EMMC_LINUX} \
${BOOTLOADER_EMMC_AOSP} ; do
(cd out/$i && md5sum * > MD5SUMS.txt)
@@ -118,7 +108,6 @@ cat > ${WORKSPACE}/out2/HEADER.textile << EOF
h4. Bootloaders for Dragonboard 410c
This page provides the bootloaders packages for the Dragonboard 410c. There are several packages:
-* *sdcard_rescue* : an SD card image that can be used to boot from SD card, and rescue a board when the onboard eMMC is empty or corrupted
* *bootloader-emmc-linux* : includes the bootloaders and partition table (GPT) used when booting Linux images from onboard eMMC
* *bootloader-emmc-aosp* : includes the bootloaders and partition table (GPT) used when booting AOSP based images from onboard eMMC
* *bootloader-sd-linux* : includes the bootloaders and partition table (GPT) used when booting Linux images from SD card