[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH lorax/master] Add 'mvebu' to list of recognized ARM platforms.
- From: Martin Gracik <mgracik redhat com>
- To: Discussion of Development and Customization of the Red Hat Linux Installer <anaconda-devel-list redhat com>
- Subject: Re: [PATCH lorax/master] Add 'mvebu' to list of recognized ARM platforms.
- Date: Thu, 12 Jul 2012 02:07:19 -0400 (EDT)
this looks fine
----- Original Message -----
> From: "d.marlin" <dmarlin redhat com>
>
> Signed-off-by: David A. Marlin <dmarlin redhat com>
> ---
> share/arm.tmpl | 1 +
> share/runtime-install.tmpl | 2 +-
> src/pylorax/treebuilder.py | 2 +-
> 3 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/share/arm.tmpl b/share/arm.tmpl
> index a6817f4..bf6eef9 100644
> --- a/share/arm.tmpl
> +++ b/share/arm.tmpl
> @@ -12,6 +12,7 @@ kernelAddress = { 'baseline' : '0x00008000',
> 'highbank' : '0x00008000',
> 'imx' : '0x90008000',
> 'kirkwood' : '0x00008000',
> + 'mvebu' : '0x00008000',
> 'omap' : '0x80008000',
> 'tegra' : '0x00008000',
> }
> diff --git a/share/runtime-install.tmpl b/share/runtime-install.tmpl
> index 8e042fb..8398cde 100644
> --- a/share/runtime-install.tmpl
> +++ b/share/runtime-install.tmpl
> @@ -23,7 +23,7 @@ installpkg kernel
>
> ## arch-specific packages (bootloaders etc.)
> %if basearch in ("arm", "armhfp"):
> - installpkg kernel-highbank kernel-imx kernel-kirkwood
> kernel-omap kernel-tegra
> + installpkg kernel-highbank kernel-imx kernel-kirkwood
> kernel-mvebu kernel-omap kernel-tegra
> installpkg uboot-tools
> %endif
> %if basearch == "i386":
> diff --git a/src/pylorax/treebuilder.py b/src/pylorax/treebuilder.py
> index 64ef3b9..3061f15 100644
> --- a/src/pylorax/treebuilder.py
> +++ b/src/pylorax/treebuilder.py
> @@ -259,7 +259,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', 'omap', 'tegra')
> + flavors = ('debug', 'PAE', 'PAEdebug', 'smp', 'xen', 'highbank',
> 'imx', 'kirkwood', 'mvebu', 'omap', 'tegra')
> kre =
> re.compile(r"vmlinuz-(?P<version>.+?\.(?P<arch>[a-z0-9_]+)"
> r"(\.(?P<flavor>{0}))?)$".format("|".join(flavors)))
> kernels = []
> --
> 1.7.6.5
>
> _______________________________________________
> Anaconda-devel-list mailing list
> Anaconda-devel-list redhat com
> https://www.redhat.com/mailman/listinfo/anaconda-devel-list
>
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]