[Why] dailybuild have many version, we only store the checksum file of latest version, it's not enough, and it's not easy to identify every version.
[How] So after the rootfs is generated, copy the checksum file corresponding to each rootfs to rootfs:/.
Signed-off-by: Yu Chuan 13186087857@163.com --- tests/iso2rootfs | 1 + 1 file changed, 1 insertion(+)
diff --git a/tests/iso2rootfs b/tests/iso2rootfs index af164bd43077..cb077fa28b0f 100755 --- a/tests/iso2rootfs +++ b/tests/iso2rootfs @@ -576,6 +576,7 @@ update_dailybuild_soft_link() [ -n "${dailybuild_iso_url_file}" ] || return 0
mv "${CHECKSUM_FILE_CACHE}.tmp" "${CHECKSUM_FILE_CACHE}" + cp "${CHECKSUM_FILE_CACHE}" "${ROOTFS_DES_DIR}"
local soft_link="${iso_version}-dailybuild" cd "${ROOTFS_LOCAL_PATH}" &&