X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;ds=sidebyside;f=functions%2Ffpkg;h=39717d10086c976750d010c57921e30e4804e5dd;hb=36c59f171f580d38b7d4ec06d5ce11bfcb89796e;hp=1fc6ec4e8b69054f3650c3c610eb95bb6417da4e;hpb=498549fb1b100f0649a8fcee8a5f5a0e0593369a;p=hvlinux.git diff --git a/functions/fpkg b/functions/fpkg index 1fc6ec4..39717d1 100644 --- a/functions/fpkg +++ b/functions/fpkg @@ -16,6 +16,8 @@ BLFS_PATCHES_LIST=${LFS_PKG_DIR}/patches-list-blfs.html CLFS_PATCHES_LIST=${LFS_PKG_DIR}/patches-list-clfs.html HV_PATCHES_LIST=${LFS_PKG_DIR}/patches-list-hv.html +PATCHES_BLACKLIST=../config/patches.blacklist + # Test if the given file extension correspond to a compressed archive # Arg. #1: File extension is_extension_archive() @@ -248,7 +250,15 @@ static_checkpatch() PATCH_NAME=$(echo ${p} | sed s!%2B!\+!g) if [ ! -f ${LFS_PKG_DIR}/${PATCH_NAME} ]; then - wget_wrapper ${PATCHES_URL} ${PATCH_NAME} + # Fetch patch only if it is not blacklisted! + local BL=$(cat ${PATCHES_BLACKLIST} | \ + egrep "${PATCH_NAME}") + + if [ "x${BL}" == "x" ]; then + wget_wrapper ${PATCHES_URL} ${PATCH_NAME} + else + MSGSTRING="Patch ${PATCH_NAME} blacklisted" print_status warning + fi fi done fi