commit fe5c73e505803da9abb952b352b6f34ab289211b

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=184
This commit is contained in:
Michal Marek 2013-03-02 07:07:41 +00:00 committed by Git OBS Bridge
parent 0779c72b99
commit 4c231159b5
42 changed files with 420 additions and 10 deletions

View File

@ -25,7 +25,7 @@
if [ "$1" = "--list" ]; then
# List all known architectures
echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc armv5tel armv7hl
echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc armv5tel armv7hl arm64
exit 0
fi
@ -39,6 +39,9 @@ case "$ARCH" in
i?86 | pentium3 | pentium4 | athlon | geode)
echo i386
;;
aarch64)
echo arm64
;;
*)
echo "$ARCH"
;;

View File

@ -45,6 +45,7 @@
+armv7hl armv7hl/u8500
+armv7hl armv7hl/cubox
+armv7hl armv7hl/exynos
+arm64 arm64/default
+s390 s390/s390
+s390 -syms s390/trace

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78f84822f52547a28927aef573b9945a3b56f6be7c25e93984331df2e8e0810e
size 313270
oid sha256:06cc1ea73652adeedd293d43813ede21a530a15c6494c0c8e74755a91b95474c
size 312899

View File

@ -467,6 +467,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -543,6 +543,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -546,6 +546,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -219,7 +219,7 @@ Source113: patches.kabi.tar.bz2
Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
ExclusiveArch: aarch64 armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
@ -561,6 +561,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -555,6 +555,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -545,6 +545,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -542,6 +542,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -543,6 +543,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -543,6 +543,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -552,6 +552,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -545,6 +545,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -38,7 +38,7 @@ BuildRequires: coreutils
%ifarch armv7hl
Requires: kernel-cubox-devel = %version-%source_rel
%endif
%ifarch armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
%ifarch aarch64 armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
Requires: kernel-default-devel = %version-%source_rel
%endif
%ifarch %ix86 x86_64
@ -73,7 +73,7 @@ Provides: %name = %version-%source_rel
Source: README.KSYMS
Requires: kernel-devel%variant = %version-%source_rel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 armv5tel armv7hl ia64 ppc ppc64 s390 s390x x86_64
ExclusiveArch: %ix86 aarch64 armv5tel armv7hl ia64 ppc ppc64 s390 s390x x86_64
Prefix: /usr/src
%description

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -553,6 +553,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -543,6 +543,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -549,6 +549,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -542,6 +542,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz

View File

@ -545,6 +545,11 @@ add_vmlinux()
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif

1
mkspec
View File

@ -258,6 +258,7 @@ sub arch2rpm {
sub _arch2rpm {
my $arch = shift;
return "\%ix86" if $arch eq "i386";
return "aarch64" if $arch eq "arm64";
return $arch;
}

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:57ff7d298dc6fe2446d9068b51b326eb84e10a2d54de6f79b69de5b348e26b99
size 22582
oid sha256:b46a01dc83314f9ef6cb9f9859129a1776af8154a91dcd66b97399f85a72a445
size 23150

View File

@ -446,6 +446,7 @@
########################################################
# PCI and PCI hotplug
########################################################
patches.fixes/PCI-PM-Clear-state_saved-during-suspend.patch
########################################################
# sysfs / driver core

View File

@ -1,3 +1,3 @@
2013-02-28 16:59:30 +0100
GIT Revision: 01ba0a9dcb7dbf005ded74868e3d1b0f1f32c2b0
2013-03-01 14:02:38 +0100
GIT Revision: fe5c73e505803da9abb952b352b6f34ab289211b
GIT Branch: stable