Problem: udev-config and bootscripts have their md5sum generated when the book is created. Ignore md5sum for these 2 packages
This commit is contained in:
parent
56e487e8e0
commit
5210ae1ec1
1 changed files with 4 additions and 0 deletions
|
@ -75,6 +75,10 @@ get_sources() { # Download file, write name to MISSING_FILES.DMP if
|
|||
fi
|
||||
fi
|
||||
|
||||
# Deal with udev and bootscripts m5sum issue
|
||||
[[ $BOOKMD5 = "BOOTSCRIPTS-MD5SUM" ]] && return
|
||||
[[ $BOOKMD5 = "UDEV-MD5SUM" ]] && return
|
||||
|
||||
# IF the md5sum does not match the existing files
|
||||
if ! echo "$MD5" | md5sum -c - >/dev/null ; then
|
||||
[[ $fromARCHIVE = "1" ]] && echo "${BOLD}${YELLOW}MD5SUM did not match SRC_ARCHIVE copy${OFF}"
|
||||
|
|
Reference in a new issue