1
0
forked from pool/kernel-source
OBS User unknown 2009-07-09 02:41:55 +00:00 committed by Git OBS Bridge
parent 41724cba2e
commit 01c540322a
35 changed files with 3413 additions and 344544 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1d2f22334e790cafbc553869c6607f0c3b155508f62f5b751633835a0b4d0a19
size 146862
oid sha256:e8b0b9634572869b9c243365b905cd4833ff03f864dad920ec6d268ae825075b
size 147128

View File

@ -1,37 +1,18 @@
#! /bin/bash
# these are updated by the spec file
sourcedir=${0%/*}
trap 'rm -f "$filelist"' EXIT
filelist=$(mktemp -t ${0##*/}.XXXXXXXXXX)
trap "rm -f $filelist" EXIT
cat >"$filelist"
flavor=${1##*-}
shopt -s nullglob
# pretend that /boot/vmlinux-* is in the -base package and not in -devel
if grep -q '/boot/System\.map\>' "$filelist"; then
prefix=$(sed -rn 's:(.*)/boot/System\.map\>.*:\1:p; T; q' "$filelist")
for f in "$prefix"/boot/vmlinux*; do
echo "$f" >>"$filelist"
done
else
perl -ni -e 'next if /\/boot\/vmlinux/ && !/\.debug$/; print' "$filelist"
fi
/usr/lib/rpm/find-provides "$@" <"$filelist"
case `uname -m` in
ia64)
image="vmlinuz"
;;
*)
image="vmlinux"
esac
while read f; do
test -e "$f" || continue
case "$f" in
*.ko | */$image* )
echo "$f"
esac
done <"$filelist" | \
xargs -r $sourcedir/symsets.pl --list-exported-symbols | \
awk -v flavor="$flavor" '
{
sub(/^0x0*/, "", $1);
if (!$1)
$1 = "0";
printf "ksym(%s:%s) = %s\n", flavor, $2, $1
}'
exit 0

View File

@ -49,7 +49,7 @@
%define rpm_install_dir %buildroot%obj_install_dir
%define kernel_build_dir %my_builddir/linux-obj
%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,modversions,symsets.pl})
%(chmod +x %_sourcedir/{arch-symbols,find-provides,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,modversions,symsets.pl})
%define arch_symbols %(%_sourcedir/arch-symbols %_target_cpu)
%define symbols %(set -- %name kernel-%build_flavor $(case %build_flavor in (rt|rt_*) echo RT ;; esac) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*)
@ -208,7 +208,7 @@ Obsoletes: ralink-rt2860-kmp
%define _buildshell /bin/bash
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %my_builddir/find-provides %name
%define __find_provides %_sourcedir/find-provides %name
# Will modules not listed in supported.conf abort the kernel build (0/1)?
%define supported_modules_check 0
@ -255,22 +255,15 @@ comm -2 -3 <(supported_conf base) <(supported_conf) \
cd linux-%srcversion
# Apply the patches needed for this architecture.
%if ! %build_vanilla
for patch in $(%_sourcedir/guards %symbols < %_sourcedir/series.conf); do
if ! patch -s -F0 -E -p1 --no-backup-if-mismatch -i ../$patch; then
echo "*** Patch $patch failed ***"
exit 1
fi
done
%else
for patch in $(%_sourcedir/guards %symbols < %_sourcedir/series.conf | egrep 'kernel\.org|rpmify'); do
if ! patch -s -F0 -E -p1 --no-backup-if-mismatch -i ../$patch; then
echo "*** Patch $patch failed ***"
exit 1
fi
done
# Apply patches
echo "trap 'echo \"*** patch \$_ failed ***\"' ERR" >../apply-patches.sh
%_sourcedir/guards %symbols <%_sourcedir/series.conf | \
%if %build_vanilla
egrep '^patches\.(kernel\.org|rpmify)/' | \
%endif
sed 's:^:patch -s -F0 -E -p1 --no-backup-if-mismatch -i ../:' \
>>../apply-patches.sh
bash -ex ../apply-patches.sh
cd %kernel_build_dir
@ -286,11 +279,6 @@ cat ../config/%cpu_arch_flavor \
%endif
> .config
sed 's:^sourcedir=.*:sourcedir="%_sourcedir":;
s:^builddir=.*:builddir="%my_builddir":' \
%_sourcedir/find-provides >%my_builddir/find-provides
chmod +x %my_builddir/find-provides
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
@ -301,11 +289,6 @@ else
rm .config.orig
fi
# create *.symref files in the tree
if [ -e ../kabi/%cpu_arch/symtypes-%build_flavor ]; then
%_sourcedir/modversions --unpack . <../kabi/%cpu_arch/symtypes-%build_flavor
fi
make prepare $MAKE_ARGS
make scripts $MAKE_ARGS
krel=$(make -s kernelrelease $MAKE_ARGS)
@ -341,6 +324,12 @@ EOF
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv
# create *.symref files in the tree
if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_
fi
%if %CONFIG_KMSG_IDS == "y"
chmod +x scripts/kmsg-doc
make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2
@ -498,11 +487,7 @@ if [ %CONFIG_MODULES = y ]; then
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
# Figure out where the symbols that vmlinux exports are defined.
# (We need this information below as well as in find-provides; we "annotate"
# the original Module.symvers here to make sure that we are consistent in
# both places.)
%_sourcedir/built-in-where < Module.symvers > Module.symvers.split
mv Module.symvers.split Module.symvers
gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
@ -626,7 +611,7 @@ if [ %CONFIG_MODULES = y ]; then
if [ -n "$reference" ]; then
%_sourcedir/symsets.pl --check-kabi \
$reference \
--symvers=Module.symvers \
--symvers=Module.symvers.split \
--modules=%my_builddir/base-modules-br \
--modules=%my_builddir/main-modules-br \
--modules=%my_builddir/unsupported-modules-br \
@ -693,7 +678,7 @@ add_dirs_to_filelist() {
# Collect the file lists.
shopt -s nullglob
> %my_builddir/kernel-devel.files
for file in %buildroot/boot/sym* ; do
for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* ; do
f=${file##%buildroot}
echo "$f" >> %my_builddir/kernel-devel.files
done
@ -712,10 +697,9 @@ done
if [ %CONFIG_MODULES = y ]; then
find lib/modules/%kernelrelease-%build_flavor \
-type d -o \
\( -path '*/modules.*' ! -path '*/modules.order' \) \
-printf '%%%%%%%%ghost /%%p\n' -o \
-name '*.ko' -prune -o \
-printf '/%%p\n'
\( -path '*/modules.*' ! -path '*/modules.order' \
! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \
-o -name '*.ko' -prune -o -printf '/%%p\n'
cat %my_builddir/base-modules
echo '%%%%config /etc/modprobe.d/50-module-renames.conf'
fi
@ -757,6 +741,7 @@ Group: System/Kernel
Url: http://www.kernel.org/
AutoReqProv: on
Provides: %name-base_%_target_cpu = %version-%release
Provides: kernel-base = %version-%source_rel
Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
@ -789,6 +774,7 @@ Group: System/Kernel
Url: http://www.kernel.org/
AutoReqProv: on
Provides: %name-extra_%_target_cpu = %version-%release
Provides: kernel-extra = %version-%source_rel
Requires: %{name}_%_target_cpu = %version-%release
Requires(pre): coreutils awk
Requires(post): module-init-tools

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -169,39 +169,29 @@ cd $RPM_BUILD_ROOT/usr/src
ln -sf linux%variant linux%variant # dummy symlink
# Unpack the vanilla kernel sources
bzip2 -cd %_sourcedir/linux-%srcversion.tar.bz2 \
| tar xf -
tar xjf %_sourcedir/linux-%srcversion.tar.bz2
mv linux-%srcversion linux-%kernelrelease%variant
# generate script to apply patches
echo "trap 'echo \"*** patch \$_ failed ***\"' ERR" \
>%my_builddir/apply-patches.sh
%_sourcedir/guards %symbols <%_sourcedir/series.conf | \
sed 's:^:patch -s -F0 -E -p1 --no-backup-if-mismatch -i %my_builddir/:' \
>>%my_builddir/apply-patches.sh
%if %do_vanilla
egrep '^trap|patches\.(kernel\.org|rpmify)/' %my_builddir/apply-patches.sh \
>%my_builddir/apply-patches-vanilla.sh
cp -al linux-%kernelrelease%variant linux-%kernelrelease-vanilla
cd linux-%kernelrelease-vanilla
%_sourcedir/guards %variant_symbols %symbols < %_sourcedir/series.conf |
egrep kernel.org\|rpmify > .patches
for patch in $(< .patches); do
if ! patch -s -F0 -E -p1 --no-backup-if-mismatch \
-i %_builddir/%name-%version/$patch; then
echo "*** Patch $patch failed ***"
exit 1
fi
done
rm -f .patches $(find . -name ".gitignore")
bash -ex %my_builddir/apply-patches-vanilla.sh
rm -f $(find . -name ".gitignore")
cd ..
%endif
cd linux-%kernelrelease%variant
%_sourcedir/guards %variant_symbols %symbols < %_sourcedir/series.conf \
> .patches
for patch in $(< .patches); do
if ! patch -s -F0 -E -p1 --no-backup-if-mismatch \
-i %_builddir/%name-%version/$patch; then
echo "*** Patch $patch failed ***"
exit 1
fi
done
rm -f .patches $(find . -name ".gitignore")
bash -ex %my_builddir/apply-patches.sh
rm -f $(find . -name ".gitignore")
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,248 @@
-------------------------------------------------------------------
Fri Jul 3 15:41:08 CEST 2009 - mmarek@suse.cz
- patches.suse/kbuild-generate-modules.builtin: kbuild: generate
modules.builtin.
- rpm/kernel-binary.spec.in: package modules.builtin for use by
modprobe / mkinitrd.
-------------------------------------------------------------------
Fri Jul 3 14:44:00 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify
the patch applying loops to reduce noise in build logs.
-------------------------------------------------------------------
Tue Jun 30 19:28:22 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: chmod +x find-provides
-------------------------------------------------------------------
Tue Jun 30 13:17:18 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: do not "annotate" the packaged
Modules.symvers
- patches.suse/modpost-filter-out-built-in-depends: Delete.
-------------------------------------------------------------------
Tue Jun 30 11:35:47 CEST 2009 - jbeulich@novell.com
- patches.arch/ia64-page-migration: Fix compiler warning.
-------------------------------------------------------------------
Mon Jun 29 19:50:25 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/symvers* files back to
-base, these are needed during KMP installation.
-------------------------------------------------------------------
Mon Jun 29 19:49:16 CEST 2009 - mmarek@suse.cz
- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild:
fix generating of *.symtypes files.
- patches.suse/genksyms-add-override-flag.diff: Refresh.
- rpm/kernel-binary.spec.in: create the *.symref files in the build
directory
-------------------------------------------------------------------
Fri Jun 26 19:04:30 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to
the subpackages (bnc#516827).
-------------------------------------------------------------------
Wed Jun 24 15:51:48 CEST 2009 - gregkh@suse.de
- Update config files.
revert the ACPI and thermal config changes:
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_CONTAINER=m
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_THERMAL=m
-------------------------------------------------------------------
Wed Jun 24 15:48:06 CEST 2009 - gregkh@suse.de
- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete.
- patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.
-------------------------------------------------------------------
Wed Jun 24 10:57:00 CEST 2009 - jbeulich@novell.com
- Update Xen patches to 2.6.30 and c/s 908.
- Update Xen config files.
- patches.xen/tmem: Transcendent memory ("tmem") for Linux.
-------------------------------------------------------------------
Tue Jun 23 06:19:21 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CONTAINER=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_THERMAL=y
-------------------------------------------------------------------
Tue Jun 23 06:05:34 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
-------------------------------------------------------------------
Tue Jun 23 05:57:44 CEST 2009 - gregkh@suse.de
- Update config files.
fix up config mistake in x86-64/default made in last commit.
-------------------------------------------------------------------
Tue Jun 23 05:54:30 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_SOUND=y
CONFIG_SND=y
-------------------------------------------------------------------
Tue Jun 23 05:42:51 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_I2C=y
CONFIG_HWMON=y
-------------------------------------------------------------------
Sat Jun 20 04:19:52 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_IPV6=y
-------------------------------------------------------------------
Sat Jun 20 04:18:09 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_HID=y
CONFIG_USB_STORAGE=y
-------------------------------------------------------------------
Sat Jun 20 02:11:50 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_ATA_PIIX=Y
-------------------------------------------------------------------
Sat Jun 20 02:09:25 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_USB_EHCI_HCD=Y
CONFIG_USB_OHCI_HCD=Y
CONFIG_USB_UHCI_HCD=Y
-------------------------------------------------------------------
Sat Jun 20 02:03:08 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_CFG80211=Y
CONFIG_LIB80211=Y
CONFIG_MAC80211=Y
CONFIG_ATH5K=Y
-------------------------------------------------------------------
Sat Jun 20 01:57:07 CEST 2009 - gregkh@suse.de
- Update config files.
config/i386/pae and config/x86-64/default:
CONFIG_X86_MSR=Y
CONFIG_X86_CPUID=Y
-------------------------------------------------------------------
Fri Jun 19 23:48:52 CEST 2009 - gregkh@suse.de
- comment out broken acpi patch for the moment.
-------------------------------------------------------------------
Fri Jun 19 23:12:06 CEST 2009 - gregkh@suse.de
- move the "preload" branch into master to get 2.6.30 working
for Moblin.
- Update config files.
- patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP
quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425,
bnc#503101).
- patches.suse/driver-core-add-nodename-callbacks.patch: Driver
Core: add nodename callbacks.
- patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch:
Driver Core: aoe: add nodename for aoe devices.
- patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch:
Driver Core: block: add nodename support for block drivers..
- patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch:
Driver Core: bsg: add nodename for bsg driver.
- patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev.
- patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch:
Driver Core: drm: add nodename for drm devices.
- patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch:
Driver Core: dvb: add nodename for dvb drivers.
- patches.suse/driver-core-input-add-nodename-for-input-drivers.patch:
Driver Core: input: add nodename for input drivers.
- patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch:
Driver Core: misc: add nodename support for misc devices..
- patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch:
Driver Core: raw: add nodename for raw devices.
- patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch:
Driver Core: sound: add nodename for sound drivers.
- patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch:
Driver Core: usb: add nodename support for usb drivers..
- patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch:
Driver Core: x86: add nodename for cpuid and msr drivers..
- patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC:
Merge IRQ and POLL modes.
- patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot:
remove "wait for all devices before mounting root" delay.
- patches.suse/linux-2.6.29-enable-async-by-default.patch:
enable async_enabled by default.
- patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms
even more.
- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch:
jbd: longer commit interval.
- patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen
after sata.
- patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot:
retry mounting the root fs if we can't find init.
- patches.suse/linux-2.6.29-silence-acer-message.patch: Silence
acer wmi driver on non-acer machines.
- patches.suse/linux-2.6.29-touchkit.patch: some new touch screen
device ids
.
- patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch:
uvcvideo: ignore hue control for 5986:0241 (bnc#499152).
- patches.suse/devtmpfs.patch: Delete.
-------------------------------------------------------------------
Fri Jun 12 05:14:11 CEST 2009 - greg@suse.de
@ -31,6 +276,14 @@ Tue Jun 9 17:06:06 CEST 2009 - jbeulich@novell.com
- patches.suse/stack-unwind-add-declaration.patch: Fold into ...
- patches.suse/stack-unwind: ... this one.
-------------------------------------------------------------------
Tue Jun 9 12:11:11 CEST 2009 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel
again.
- rpm/find-provides: don't generate the ksym() provides ourself,
let rpm do it. Add a workaround for vmlinux-*.gz in -devel.
-------------------------------------------------------------------
Mon Jun 8 09:01:23 CEST 2009 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5da18ced40bbe25da050b3879b624e5d78e23a056f9b62fd99dfcd63aecfa7ed
size 36586
oid sha256:0718eba27ccdf1379cbfad2b55bbbfe7ae152f13409d76c54363bb90a0738cfe
size 36583

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:43d086644ff282d3e32eb609c4cd7a5d872856869c7830264cc27335ae5dbaf6
size 173118
oid sha256:dc19abf77fb2613dd2b00fc202c862300b556a77de27cfdea26a565fb4c83746
size 173710

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:181ff19316761faf9f0fb44bd5e1bd0ba90003e5de2ba5d28944c84c88233282
size 31765
oid sha256:fab25f3dd5a137eb03a7723d42391914712f11e42b95e9776cc248d8bbdb7db3
size 32231

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:08c810f5529696910947944fcf39f50e4d08cd01c3ffe43cd8422ae851c5e68f
size 868293
oid sha256:9a599da119eb2dc0170960a29209f3228a3a3d9f3228dc2767706800d1900336
size 877218

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b5745739aeae216603fcbc3e81b7d5bad84f6aceeec0644c9a5d5ae0d32cb6f
size 1800081
oid sha256:c994f55998d5a46c751fb639a9f306a619239c863540dd6f18f54e11930e93b3
size 1805781

View File

@ -64,15 +64,16 @@
patches.rpmify/split-package
patches.rpmify/buildhost
patches.rpmify/cloneconfig.diff
patches.suse/genksyms-add-override-flag.diff
########################################################
# kbuild/module infrastructure fixes
########################################################
patches.suse/supported-flag
patches.suse/supported-flag-sysfs
patches.suse/modpost-filter-out-built-in-depends
patches.suse/kbuild-icecream-workaround
patches.fixes/kbuild-fix-generating-of-.symtypes-files
patches.suse/genksyms-add-override-flag.diff
patches.suse/kbuild-generate-modules.builtin
########################################################
# Simple export additions/removals
@ -433,7 +434,7 @@
########################################################
# sysfs / driver core
########################################################
patches.suse/devtmpfs.patch
# patches.suse/devtmpfs.patch
########################################################
# USB
@ -454,6 +455,7 @@
##########################################################
# Sound
##########################################################
patches.drivers/alsa-ad1984a-hp-quirks
########################################################
# Other driver fixes
@ -631,6 +633,37 @@
# new drivers that are going upstream
########################################################
########################################################
# "fastboot" patches
# These should all be upstream, we took them from
# moblin to try to speed up the boot process
########################################################
patches.suse/linux-2.6.29-dont-wait-for-mouse.patch
patches.suse/linux-2.6.29-enable-async-by-default.patch
patches.suse/linux-2.6.29-even-faster-kms.patch
patches.suse/linux-2.6.29-silence-acer-message.patch
patches.suse/linux-2.6.29-kms-after-sata.patch
patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch
# some driver patches, should move up in the series...
patches.suse/linux-2.6.29-touchkit.patch
patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch
# devtmpfs
patches.suse/driver-core-add-nodename-callbacks.patch
patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch
patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch
patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch
patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch
patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch
patches.suse/driver-core-input-add-nodename-for-input-drivers.patch
patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch
patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch
patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch
patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch
patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch
patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch
########################################################
# You'd better have a good reason for adding a patch
# below here.
@ -661,6 +694,7 @@
patches.xen/sfc-resource-driver
patches.xen/sfc-driverlink-conditional
patches.xen/sfc-external-sram
patches.xen/tmem
# bulk stuff, new files for xen
patches.xen/xen3-auto-xen-arch.diff
@ -702,13 +736,10 @@
patches.xen/xen3-patch-2.6.27
patches.xen/xen3-patch-2.6.28
patches.xen/xen3-patch-2.6.29
patches.xen/xen3-patch-2.6.30-rc4
patches.xen/xen3-patch-2.6.30-rc4-rc5
patches.xen/xen3-patch-2.6.30-rc6-rc7
patches.xen/xen3-patch-2.6.30-rc7-rc8
patches.xen/xen3-patch-2.6.30
patches.xen/xen3-seccomp-disable-tsc-option
+needs_to_go_away patches.xen/xen3-x86-mark_rodata_rw.patch
patches.xen/xen3-devtmpfs.patch
patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch
patches.xen/xen3-kdb-x86
patches.xen/xen3-stack-unwind
patches.xen/xen3-panic-on-io-nmi.diff

View File

@ -1,3 +1,3 @@
2009-06-12 15:37:20 +0200
GIT Revision: c0a34099379453ea7bc011985219ebf2373a2106
2009-07-03 15:42:01 +0200
GIT Revision: 552ac07fad75ec23504ade2fbfecc5853791e02a
GIT Branch: master