Add files that start with initrd

This commit is contained in:
Joshua Harlow 2012-09-18 15:02:35 -07:00
parent e354117e03
commit 75e94a9690

View File

@ -60,6 +60,7 @@ ROOT_CHECKS = [
# Used to match various file names with what could be a ram disk image
RAMDISK_CHECKS = [
re.compile(r"(.*)-initrd$", re.I),
re.compile(r"initrd[-]?(.*)$", re.I),
re.compile(r"(.*)initramfs(.*)$", re.I),
re.compile(r'(.*?)ari-tty/image$', re.I),
]