remove no longer supported arm kernel variants add the new lpae one

This commit is contained in:
Dennis Gilmore 2013-04-16 12:06:04 -05:00 committed by Brian C. Lane
parent b56505fc58
commit d751ac82db
3 changed files with 3 additions and 7 deletions

View File

@ -9,11 +9,7 @@ LIVEDIR="LiveOS"
# different platforms use different kernel load addresses.
# include a 'baseline' kernel for no 'flavor'.
kernelAddress = { 'baseline' : '0x00008000',
'highbank' : '0x00008000',
'imx' : '0x90008000',
'kirkwood' : '0x00008000',
'mvebu' : '0x00008000',
'omap' : '0x80008000',
'lpae' : '0x00008000',
'tegra' : '0x00008000',
}

View File

@ -22,7 +22,7 @@ installpkg kernel
## arch-specific packages (bootloaders etc.)
%if basearch in ("arm", "armhfp"):
installpkg kernel-highbank kernel-imx kernel-kirkwood kernel-mvebu kernel-omap kernel-tegra
installpkg kernel-lpae kernel-tegra
installpkg uboot-tools
%endif
%if basearch == "i386":

View File

@ -264,7 +264,7 @@ class TreeBuilder(object):
def findkernels(root="/", kdir="boot"):
# To find possible flavors, awk '/BuildKernel/ { print $4 }' kernel.spec
flavors = ('debug', 'PAE', 'PAEdebug', 'smp', 'xen', 'highbank', 'imx', 'kirkwood', 'mvebu', 'omap', 'tegra')
flavors = ('debug', 'PAE', 'PAEdebug', 'smp', 'xen', 'lpae', 'tegra')
kre = re.compile(r"vmlinuz-(?P<version>.+?\.(?P<arch>[a-z0-9_]+)"
r"(\.(?P<flavor>{0}))?)$".format("|".join(flavors)))
kernels = []