Hello community, here is the log from the commit of package makedumpfile for openSUSE:Factory checked in at 2013-09-13 14:46:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/makedumpfile (Old) and /work/SRC/openSUSE:Factory/.makedumpfile.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "makedumpfile" Changes: -------- --- /work/SRC/openSUSE:Factory/makedumpfile/makedumpfile.changes 2013-09-11 12:20:33.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.makedumpfile.new/makedumpfile.changes 2013-09-13 14:46:16.000000000 +0200 @@ -1,0 +2,6 @@ +Wed Sep 11 12:36:24 UTC 2013 - [email protected] + +- makedumpfile-powerpc.patch: fix builf on powerpc +- makedumpfile.spec: enable powerpc32 + +------------------------------------------------------------------- New: ---- makedumpfile-powerpc.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ makedumpfile.spec ++++++ --- /var/tmp/diff_new_pack.F1P3PE/_old 2013-09-13 14:46:16.000000000 +0200 +++ /var/tmp/diff_new_pack.F1P3PE/_new 2013-09-13 14:46:16.000000000 +0200 @@ -37,8 +37,9 @@ Source: %{name}-%{version}.tar.bz2 Source1: README.static Patch0: %{name}-coptflags.diff +Patch1: %{name}-powerpc.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build -ExclusiveArch: %ix86 x86_64 ia64 ppc64 s390x %arm +ExclusiveArch: %ix86 x86_64 ia64 ppc ppc64 s390x %arm %description makedumpfile is a dump program to shorten the size of dump file. It @@ -55,6 +56,7 @@ %prep %setup -q %patch0 -p1 +%patch1 -p1 %build LIBS_STATIC= ++++++ makedumpfile-powerpc.patch ++++++ From: Baoquan He <[email protected]> Date: Mon Jul 15 20:37:14 2013 +0800 Subject: Add vmap_area_list definition for ppc/ppc64 References: http://lists.infradead.org/pipermail/kexec/2013-July/009286.html Upstream: merged vmap_area_list is added to get vmalloc_start for ppc/ppc64, but its definition is missing, now add them. Signed-off-by: Baoquan He <[email protected]> Acked-by: Dinar Valeev <[email protected]> Acked-by: Petr Tesarik <[email protected]> diff --git a/arch/ppc.c b/arch/ppc.c index a9b4812..a3e1a12 100644 --- a/arch/ppc.c +++ b/arch/ppc.c @@ -28,7 +28,7 @@ int get_machdep_info_ppc(void) { - unsigned long vmlist, vmalloc_start; + unsigned long vmlist, vmap_area_list, vmalloc_start; info->section_size_bits = _SECTION_SIZE_BITS; info->max_physmem_bits = _MAX_PHYSMEM_BITS; diff --git a/arch/ppc64.c b/arch/ppc64.c index c229ede..85144f6 100644 --- a/arch/ppc64.c +++ b/arch/ppc64.c @@ -49,7 +49,7 @@ set_ppc64_max_physmem_bits(void) int get_machdep_info_ppc64(void) { - unsigned long vmlist, vmalloc_start; + unsigned long vmlist, vmap_area_list, vmalloc_start; info->section_size_bits = _SECTION_SIZE_BITS; if (!set_ppc64_max_physmem_bits()) { -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
