GIT Revision: b3f32a6430201b9919c368e02d482c7426a1ca4b
OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=6990
This commit is contained in:
parent
53c8e14da8
commit
962af14239
@ -25,8 +25,8 @@ parse_srcversion()
|
|||||||
local IFS=.
|
local IFS=.
|
||||||
set -- ${SRCVERSION%%-*}
|
set -- ${SRCVERSION%%-*}
|
||||||
VERSION=$1
|
VERSION=$1
|
||||||
PATCHLEVEL=$2
|
PATCHLEVEL=${2:-0}
|
||||||
SUBLEVEL=$3
|
SUBLEVEL=${3:-0}
|
||||||
EXTRAVERSION=${SRCVERSION#${SRCVERSION%%-*}}
|
EXTRAVERSION=${SRCVERSION#${SRCVERSION%%-*}}
|
||||||
}
|
}
|
||||||
parse_srcversion
|
parse_srcversion
|
||||||
@ -73,4 +73,5 @@ eval "$(
|
|||||||
' \
|
' \
|
||||||
| sed -e 's,^+,,' -e 's, *= *\(.*\),="\1",'
|
| sed -e 's,^+,,' -e 's, *= *\(.*\),="\1",'
|
||||||
)"
|
)"
|
||||||
echo "$VERSION${PATCHLEVEL:+.$PATCHLEVEL}${SUBLEVEL:+.$SUBLEVEL}$EXTRAVERSION"
|
|
||||||
|
echo "$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:5dc5f5fb24a60338b1d68a233e3d49eb1579e140bc3968a5f8083e235496e042
|
oid sha256:7b3382348059092d3ca3e73143d29b5743be6037e9b126e0d4aaac7dbbe6d5c2
|
||||||
size 222706
|
size 217810
|
||||||
|
@ -238,9 +238,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -359,7 +356,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -473,7 +470,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -504,7 +501,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-debug (Version 3.0)
|
# spec file for package kernel-debug (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -18,7 +18,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
Name: kernel-debug
|
Name: kernel-debug
|
||||||
Summary: A Debug Version of the Kernel
|
Summary: A Debug Version of the Kernel
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -315,9 +315,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -436,7 +433,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -550,7 +547,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -581,7 +578,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
@ -878,6 +875,43 @@ Debug information for package %name-devel
|
|||||||
%files devel-debuginfo -f vmlinux.debug.files
|
%files devel-debuginfo -f vmlinux.debug.files
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-default (Version 3.0)
|
# spec file for package kernel-default (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -18,7 +18,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
Name: kernel-default
|
Name: kernel-default
|
||||||
Summary: The Standard Kernel
|
Summary: The Standard Kernel
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -330,9 +330,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -451,7 +448,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -565,7 +562,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -596,7 +593,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
@ -891,6 +888,43 @@ Debug information for package %name-devel
|
|||||||
%files devel-debuginfo -f vmlinux.debug.files
|
%files devel-debuginfo -f vmlinux.debug.files
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-desktop (Version 3.0)
|
# spec file for package kernel-desktop (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -18,7 +18,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
Name: kernel-desktop
|
Name: kernel-desktop
|
||||||
Summary: Kernel optimized for the desktop
|
Summary: Kernel optimized for the desktop
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -324,9 +324,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -445,7 +442,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -559,7 +556,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -590,7 +587,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
@ -911,6 +908,43 @@ Debug information for package %name-devel
|
|||||||
%files devel-debuginfo -f vmlinux.debug.files
|
%files devel-debuginfo -f vmlinux.debug.files
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-docs (Version 3.0)
|
# spec file for package kernel-docs (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -17,18 +17,18 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
|
|
||||||
Name: kernel-docs
|
Name: kernel-docs
|
||||||
Summary: Kernel Documentation
|
Summary: Kernel Documentation
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
|
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
|
||||||
BuildRequires: kernel-source%variant
|
BuildRequires: kernel-source%variant
|
||||||
@ -99,6 +99,43 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/usr/share/doc/kernel
|
/usr/share/doc/kernel
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-pae (Version 3.0)
|
# spec file for package kernel-pae (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -18,7 +18,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
Name: kernel-pae
|
Name: kernel-pae
|
||||||
Summary: Kernel with PAE Support
|
Summary: Kernel with PAE Support
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -321,9 +321,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -442,7 +439,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -556,7 +553,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -587,7 +584,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
@ -896,6 +893,43 @@ Debug information for package %name-devel
|
|||||||
%files devel-debuginfo -f vmlinux.debug.files
|
%files devel-debuginfo -f vmlinux.debug.files
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-ppc64 (Version 3.0)
|
# spec file for package kernel-ppc64 (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -18,7 +18,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
Name: kernel-ppc64
|
Name: kernel-ppc64
|
||||||
Summary: Kernel for ppc64 Systems
|
Summary: Kernel for ppc64 Systems
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -325,9 +325,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -446,7 +443,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -560,7 +557,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -591,7 +588,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
@ -900,6 +897,43 @@ Debug information for package %name-devel
|
|||||||
%files devel-debuginfo -f vmlinux.debug.files
|
%files devel-debuginfo -f vmlinux.debug.files
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-ps3 (Version 3.0)
|
# spec file for package kernel-ps3 (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -18,7 +18,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
Name: kernel-ps3
|
Name: kernel-ps3
|
||||||
Summary: kernel for ps3 bootloader
|
Summary: kernel for ps3 bootloader
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -314,9 +314,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -435,7 +432,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -549,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -580,7 +577,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
@ -881,6 +878,43 @@ Debug information for package %name-devel
|
|||||||
%files devel-debuginfo -f vmlinux.debug.files
|
%files devel-debuginfo -f vmlinux.debug.files
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-s390 (Version 3.0)
|
# spec file for package kernel-s390 (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -18,7 +18,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
Name: kernel-s390
|
Name: kernel-s390
|
||||||
Summary: The Standard Kernel
|
Summary: The Standard Kernel
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -314,9 +314,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -435,7 +432,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -549,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -580,7 +577,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
@ -875,6 +872,43 @@ Debug information for package %name-devel
|
|||||||
%files devel-debuginfo -f vmlinux.debug.files
|
%files devel-debuginfo -f vmlinux.debug.files
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-source (Version 3.0)
|
# spec file for package kernel-source (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -19,7 +19,7 @@
|
|||||||
# icecream 0
|
# icecream 0
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -29,11 +29,11 @@
|
|||||||
|
|
||||||
Name: kernel-source
|
Name: kernel-source
|
||||||
Summary: The Linux Kernel Sources
|
Summary: The Linux Kernel Sources
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: Development/Sources
|
Group: Development/Sources
|
||||||
@ -255,6 +255,43 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-syms (Version 3.0)
|
# spec file for package kernel-syms (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -23,9 +23,9 @@
|
|||||||
|
|
||||||
Name: kernel-syms
|
Name: kernel-syms
|
||||||
Summary: Kernel Symbol Versions (modversions)
|
Summary: Kernel Symbol Versions (modversions)
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
|
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
|
||||||
Release: %kernel_source_release
|
Release: %kernel_source_release
|
||||||
@ -78,6 +78,43 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
|
|||||||
%_docdir/%name/README.SUSE
|
%_docdir/%name/README.SUSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-trace (Version 3.0)
|
# spec file for package kernel-trace (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -18,7 +18,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
Name: kernel-trace
|
Name: kernel-trace
|
||||||
Summary: The Standard Kernel with Tracing Features
|
Summary: The Standard Kernel with Tracing Features
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -322,9 +322,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -443,7 +440,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -557,7 +554,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -588,7 +585,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
@ -883,6 +880,43 @@ Debug information for package %name-devel
|
|||||||
%files devel-debuginfo -f vmlinux.debug.files
|
%files devel-debuginfo -f vmlinux.debug.files
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com
|
||||||
|
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kernel-vanilla (Version 3.0)
|
# spec file for package kernel-vanilla (Version 3.0.rc2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -18,7 +18,7 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define srcversion 3.0-rc2
|
%define srcversion 3.0-rc2
|
||||||
%define patchversion 3.0-rc2
|
%define patchversion 3.0.0-rc2
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
Name: kernel-vanilla
|
Name: kernel-vanilla
|
||||||
Summary: The Standard Kernel - without any SUSE patches
|
Summary: The Standard Kernel - without any SUSE patches
|
||||||
Version: 3.0
|
Version: 3.0.rc2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: rc2.<RELEASE>
|
Release: <RELEASE>
|
||||||
%else
|
%else
|
||||||
Release: rc2.0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 only
|
License: GPL v2 only
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -318,9 +318,6 @@ fi
|
|||||||
--disable CONFIG_DEBUG_INFO
|
--disable CONFIG_DEBUG_INFO
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Temporary hack until the 3.0 vs 3.0.0 situation is clarified
|
|
||||||
MAKE_ARGS="$MAKE_ARGS SUBLEVEL="
|
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
|
||||||
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
|
||||||
yes '' | make oldconfig $MAKE_ARGS
|
yes '' | make oldconfig $MAKE_ARGS
|
||||||
@ -439,7 +436,7 @@ add_vmlinux()
|
|||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
if $compressed; then
|
if $compressed; then
|
||||||
gzip -9 %buildroot/$vmlinux
|
gzip -n -9 %buildroot/$vmlinux
|
||||||
chmod a-x %buildroot/$vmlinux.gz
|
chmod a-x %buildroot/$vmlinux.gz
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -553,7 +550,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
|
||||||
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
|
||||||
|
|
||||||
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
|
||||||
|
|
||||||
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
|
||||||
|
|
||||||
@ -584,7 +581,7 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
# Table of types used in exported symbols (for modversion debugging).
|
# Table of types used in exported symbols (for modversion debugging).
|
||||||
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
|
||||||
gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
else
|
else
|
||||||
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
|
||||||
fi
|
fi
|
||||||
@ -879,6 +876,43 @@ Debug information for package %name-devel
|
|||||||
%files devel-debuginfo -f vmlinux.debug.files
|
%files devel-debuginfo -f vmlinux.debug.files
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO.
|
||||||
|
- commit b3f32a6
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- apm: Honor CONFIG_APM_CPU_IDLE=n.
|
||||||
|
- commit 8ad9b51
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Update config files.
|
||||||
|
- commit 2cd7359
|
||||||
|
* Mon Jun 13 2011 jeffm@suse.com
|
||||||
|
- Delete patches.rpmify/qla4xx-missing-readq-definition.
|
||||||
|
- commit b48337d
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- Remove copypasted lines from vanilla configs.
|
||||||
|
- commit b395e52
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/kernel-binary.spec.in: Call gzip with -n.
|
||||||
|
- commit 9a65e48
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/mkspec: Put the -rcX tag into the rpm version instead of the
|
||||||
|
trailing zero. Rpm considers "rc" older than "0", so this will sort
|
||||||
|
properly.
|
||||||
|
- commit 8d9b2b9
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- x86, build: Do not set the root_dev field in bzImage.
|
||||||
|
- commit 15e4a82
|
||||||
|
* Mon Jun 13 2011 mmarek@suse.cz
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0.
|
||||||
|
The package version will thus always match the Makefile version and
|
||||||
|
the SRCVERSION variable will only be used to determine the tarball
|
||||||
|
version.
|
||||||
|
- rpm/kernel-binary.spec.in: Revert the previous hack.
|
||||||
|
- commit 95c9977
|
||||||
* Sat Jun 11 2011 jeffm@suse.de
|
* Sat Jun 11 2011 jeffm@suse.de
|
||||||
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL.
|
||||||
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
- kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL.
|
||||||
|
10
mkspec
10
mkspec
@ -38,9 +38,13 @@ my %binary_descriptions = parse_descriptions();
|
|||||||
$patches="--patches $patches" if $patches;
|
$patches="--patches $patches" if $patches;
|
||||||
my $patchversion = `$dir/compute-PATCHVERSION.sh $patches`;
|
my $patchversion = `$dir/compute-PATCHVERSION.sh $patches`;
|
||||||
chomp $patchversion;
|
chomp $patchversion;
|
||||||
my $rpmversion;
|
my $rpmversion = $patchversion;
|
||||||
|
# stuff the -rcX tag into the rpm version if possible;
|
||||||
|
$rpmversion =~ s/\.0-rc/.rc/;
|
||||||
|
$rpmversion =~ s/-rc\d+//;
|
||||||
|
$rpmversion =~ s/-/./g;
|
||||||
|
|
||||||
if (defined($rpmrelease)) {
|
if (defined($rpmrelease)) {
|
||||||
($rpmversion = $patchversion) =~ s/-.*//;
|
|
||||||
# convince abuild that we really want this release number
|
# convince abuild that we really want this release number
|
||||||
xopen(my $fh, '>', "$dir/get_release_number.sh");
|
xopen(my $fh, '>', "$dir/get_release_number.sh");
|
||||||
print $fh "#!/bin/sh\n";
|
print $fh "#!/bin/sh\n";
|
||||||
@ -48,7 +52,7 @@ if (defined($rpmrelease)) {
|
|||||||
close($fh);
|
close($fh);
|
||||||
chmod(0755, "$dir/get_release_number.sh");
|
chmod(0755, "$dir/get_release_number.sh");
|
||||||
} else {
|
} else {
|
||||||
($rpmversion, $rpmrelease) = (split(/-/, $patchversion, 2), "");
|
$rpmrelease = "";
|
||||||
}
|
}
|
||||||
$rpmrelease =~ s/[^.]$/$&./;
|
$rpmrelease =~ s/[^.]$/$&./;
|
||||||
$rpmrelease =~ s/-/./g;
|
$rpmrelease =~ s/-/./g;
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:0c97afb251da73d759b86f1dda5b8a5b8813758febb6530ae4b14c8d39e1b58e
|
oid sha256:748f58925541ca2f6eebed3fde61a93b5142989d67e4f1f9a69d19b7295e4693
|
||||||
size 28213
|
size 29585
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:27649038297f97f3c2f1281b7aecdb0af0d0bcbc78241104b79623483ae29368
|
oid sha256:b77f31327dd5dfafb5b9fae40600e78ec6e596606423decee89d64b7d52708d1
|
||||||
size 2331
|
size 3923
|
||||||
|
@ -35,7 +35,8 @@
|
|||||||
# Patches in patches.rpmify are applied to both -vanilla
|
# Patches in patches.rpmify are applied to both -vanilla
|
||||||
# and patched flavors.
|
# and patched flavors.
|
||||||
########################################################
|
########################################################
|
||||||
patches.rpmify/qla4xx-missing-readq-definition
|
patches.rpmify/apm-honor-config_apm_cpu_idle-n
|
||||||
|
patches.rpmify/nouveau-make-vga_switcheroo-code-depend-on-vga_switcheroo
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
# kABI consistency patches
|
# kABI consistency patches
|
||||||
@ -63,6 +64,7 @@
|
|||||||
patches.suse/supported-flag-enterprise
|
patches.suse/supported-flag-enterprise
|
||||||
patches.suse/genksyms-add-override-flag.diff
|
patches.suse/genksyms-add-override-flag.diff
|
||||||
patches.suse/kconfig-automate-kernel-desktop
|
patches.suse/kconfig-automate-kernel-desktop
|
||||||
|
patches.fixes/no-built-in-root_dev
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
# Simple export additions/removals
|
# Simple export additions/removals
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
2011-06-11 23:37:42 +0200
|
2011-06-13 21:52:37 +0200
|
||||||
GIT Revision: a95ebd8494d3b6a4856179c936e61094abc9f905
|
GIT Revision: b3f32a6430201b9919c368e02d482c7426a1ca4b
|
||||||
GIT Branch: master
|
GIT Branch: master
|
||||||
|
Loading…
Reference in New Issue
Block a user