Accepting request 85303 from Kernel:HEAD

- Refresh patches.suse/SUSE-bootsplash.
   Fix crash when updating boxes: Don't reallocate
  picture.

OBS-URL: https://build.opensuse.org/request/show/85303
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=152
This commit is contained in:
Sascha Peilicke 2011-09-28 13:01:40 +00:00 committed by Git OBS Bridge
commit 3f47583727
41 changed files with 1186 additions and 224 deletions

View File

@ -1,5 +1,5 @@
# The version of the main tarball to use
SRCVERSION=3.1-rc6
SRCVERSION=3.1-rc7
# variant of the kernel-source package, either empty or "-rt"
VARIANT=
# buildservice projects to build the kernel against

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:70f82a5be46d8bd10ad3763b73d37193754574e3b1bda1d95420a481b0665f60
size 229165
oid sha256:43a3c0cd6823f3bb6aa896b429b9baccf067dc46c7e23e0db0c4a24db817bde6
size 229112

7
host-memcpy-hack.h Normal file
View File

@ -0,0 +1,7 @@
#ifdef __x86_64__
/*
* Force the linker to use the older memcpy variant, so that the user programs
* work on older systems
*/
__asm__(".symver memcpy,memcpy@GLIBC_2.2.5");
#endif

View File

@ -217,6 +217,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -262,19 +277,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-debug
Summary: A Debug Version of the Kernel
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -176,6 +176,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -293,6 +294,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -338,19 +354,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-default
Summary: The Standard Kernel
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -192,6 +192,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -308,6 +309,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -353,19 +369,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-desktop
Summary: Kernel optimized for the desktop
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -172,6 +172,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -301,6 +302,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -346,19 +362,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,15 +17,15 @@
# norootforbuild
%define patchversion 3.1.0-rc6
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
Name: kernel-docs
Summary: Kernel Documentation
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -172,6 +172,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -291,6 +292,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -336,19 +352,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-pae
Summary: Kernel with PAE Support
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -176,6 +176,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -299,6 +300,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -344,19 +360,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-ppc64
Summary: Kernel for ppc64 Systems
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -180,6 +180,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -303,6 +304,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -348,19 +364,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-s390
Summary: The Standard Kernel
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -176,6 +176,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -292,6 +293,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -337,19 +353,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -18,8 +18,8 @@
# norootforbuild
# icecream 0
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%define vanilla_only 0
@ -29,8 +29,8 @@
Name: kernel-source
Summary: The Linux Kernel Sources
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -85,6 +85,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2

View File

@ -86,6 +86,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -23,8 +23,8 @@
Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-trace
Summary: The Standard Kernel with Tracing Features
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -184,6 +184,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -300,6 +301,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -345,19 +361,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -180,6 +180,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -296,6 +297,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -341,19 +357,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +1,73 @@
-------------------------------------------------------------------
Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix crash when updating boxes: Don't reallocate
picture.
- commit ba0cfdc
-------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- commit 1de2384
-------------------------------------------------------------------
Mon Sep 26 13:23:42 CEST 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-rc7 and c/s 1105.
- pass PCI segment information to Xen.
- ACPI: Implement overriding of arbitrary ACPI tables via initrd.
- x86: allow NVS can be accessed by driver.
- commit 7de39e8
-------------------------------------------------------------------
Mon Sep 26 10:01:25 CEST 2011 - jeffm@suse.com
- Update to 3.1-rc7.
- commit ee8cc90
-------------------------------------------------------------------
Wed Sep 21 13:20:35 CEST 2011 - trenn@suse.de
- Refresh
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch.
-> Fix build on ia64, by moving asm/e820.h into ifdef config protected region.
- commit 0ac4276
-------------------------------------------------------------------
Wed Sep 21 11:16:18 CEST 2011 - mhocko@suse.cz
- Provide memory controller swap extension.
Keep the feature disabled by default. Use swapaccount=1 kernel
boot parameter for enabling it.
- commit 000742c
-------------------------------------------------------------------
Wed Sep 21 11:11:10 CEST 2011 - mhocko@suse.cz
- Update config files.
Clean run_oldconfig.sh run to get configs into sync
- commit c985824
-------------------------------------------------------------------
Tue Sep 20 18:09:04 CEST 2011 - trenn@suse.de
- ACPI: Implement overriding of arbitrary ACPI tables via initrd
(none).
- ACPICA: Fix wrongly mapped acpi table header when overriding
via initrd (none).
- ACPICA: Introduce acpi_os_phys_table_override function (none).
- x86: allow NVS can be accessed by driver (none).
- Update config files:
CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
on i386 and x86_64 flavors
- commit 34bb195
-------------------------------------------------------------------
Thu Sep 15 14:16:08 CEST 2011 - jeffm@suse.de

View File

@ -17,8 +17,8 @@
# norootforbuild
%define srcversion 3.1-rc6
%define patchversion 3.1.0-rc6
%define srcversion 3.1-rc7
%define patchversion 3.1.0-rc7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -55,8 +55,8 @@
Name: kernel-xen
Summary: The Xen Kernel
Version: 3.1.rc6
Release: 1
Version: 3.1.rc7
Release: <RELEASE>
%if %using_buildservice
%else
%endif
@ -172,6 +172,7 @@ Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
@ -291,6 +292,21 @@ cd linux-%srcversion
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
@ -336,19 +352,6 @@ make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:18ead5ca0056e9af2a4c58b6924f3e066419a07f563f4a74ad41667d19e5b4be
size 77217153

3
linux-3.1-rc7.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:44bf157f0d1382cf87da0ef58fcfda66e57ba24eec2125ede8850458941c97ac
size 77224157

1
minmem Normal file
View File

@ -0,0 +1 @@
1048576

1
needed_space_in_mb Normal file
View File

@ -0,0 +1 @@
6144

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6d05dbf4bc1dc357dff231962bcd1622e273f4145e2ccea9ebed176c77b6bddb
size 68118
oid sha256:2ebdb967856ac0c240facb7e8c715ce48dd7d11768d7074e0ba66413317f0e02
size 73885

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:51c249567b20b182d5d28b3441fc554a40b6891ba1b76f0b404d2cee100e7bd1
size 7758
oid sha256:4f6e0520039a0a8c9132e519f5c4870dfdfb76b7b101f1b4645fccdca4f0041f
size 8125

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d0c979372b86fd284ff166b4f7c2b8f4d6b58bbceb103d7b2dbf326c25765c03
size 182844
oid sha256:320895a49a085e5abd93be597461e1977f5fd0bda3ce43bd1ccb2c39d042ebbc
size 182402

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8ef926c0adb17252417fb8420281b103afd9e252005f955327b2a436c868ad01
size 2050767
oid sha256:2f95b0875e23b1efc4e33deb9f13a31f615cdd4aab12e6599fecad7ddd6ea63d
size 2039442

View File

@ -215,6 +215,12 @@
# Queued for 2.6.36 -> just revert after some time
patches.fixes/acpi_ec_sys_access_user_space_with_get_user.patch
patches.drivers/apei_allow_drivers_access_nvs_ram.patch
patches.arch/acpica_introduce_acpi_os_phys_table_override_function.patch
patches.arch/acpica_fix_wrongly_mapped_acpi_table_header_when_overriding_via_initrd.patch
patches.arch/acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch
########################################################
# CPUFREQ
########################################################
@ -727,10 +733,29 @@
patches.xen/xen3-patch-2.6.39
patches.xen/xen3-patch-3.0
patches.xen/xen3-patch-3.1-rc5
patches.xen/xen3-patch-3.1-rc6-rc7
patches.xen/xen3-apei_allow_drivers_access_nvs_ram.patch
patches.xen/xen3-acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch
patches.xen/xen3-stack-unwind
patches.xen/xen3-x86_64-unwind-annotations
# bugfixes and enhancements
patches.xen/xen-kconfig-compat
patches.xen/xen-sys-suspend
patches.xen/xen-ipi-per-cpu-irq
patches.xen/xen-virq-per-cpu-irq
patches.xen/xen-clockevents
patches.xen/xen-spinlock-poll-early
patches.xen/xen-pcpu-hotplug
patches.xen/xen-mem-hotplug
patches.xen/xen-swiotlb-heuristics
patches.xen/xen-pci-multi-segment
patches.xen/xen-configurable-guest-devices
patches.xen/xen-setup-gsi
patches.xen/xen-kzalloc
patches.xen/xen-sections
patches.xen/xen-unpriv-build
patches.xen/xen-cpufreq-report
patches.xen/xen-balloon-max-target
patches.xen/xen-blkif-protocol-fallback-hack
patches.xen/xen-blkback-cdrom
@ -740,17 +765,6 @@
patches.xen/xen-op-packet
patches.xen/xen-blkfront-cdrom
patches.xen/xen-blkfront-hvm-no-cdrom
patches.xen/xen-kconfig-compat
patches.xen/xen-cpufreq-report
patches.xen/xen-sys-suspend
patches.xen/xen-ipi-per-cpu-irq
patches.xen/xen-virq-per-cpu-irq
patches.xen/xen-clockevents
patches.xen/xen-spinlock-poll-early
patches.xen/xen-pcpu-hotplug
patches.xen/xen-mem-hotplug
patches.xen/xen-swiotlb-heuristics
patches.xen/xen-configurable-guest-devices
patches.xen/xen-netback-nr-irqs
patches.xen/xen-netback-notify-multi
patches.xen/xen-netback-generalize
@ -759,10 +773,6 @@
patches.xen/xen-cxgb3
patches.xen/xen-dcdbas
patches.xen/xen-floppy
patches.xen/xen-sections
patches.xen/xen-kzalloc
patches.xen/xen-unpriv-build
patches.xen/xen-setup-gsi
patches.xen/xen-x86-panic-no-reboot
patches.xen/xen-x86-dcr-fallback
patches.xen/xen-x86-no-lapic
@ -772,7 +782,6 @@
patches.xen/xen-x86-per-cpu-vcpu-info
patches.xen/xen-x86-msr-on-pcpu
patches.xen/xen-x86-EFI
patches.xen/xen-x86-mmcfg-ACPI-reserved
patches.xen/xen-x86_64-pgd-pin
patches.xen/xen-x86_64-pgd-alloc-order
patches.xen/xen-x86_64-dump-user-pgt

View File

@ -1,3 +1,3 @@
2011-09-15 22:18:41 +0200
GIT Revision: 532c24ffdc1e085588774cecacdc52535bddc3a1
2011-09-27 22:27:57 +0200
GIT Revision: ba0cfdcb4a536831694e3844d9ecdb3870506e6b
GIT Branch: master