commit 3fa892ec9615adec76d6cc9117fc009d79163d26
OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=7364
This commit is contained in:
parent
ec6a68cfc1
commit
407b2cd6ea
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d25a2a775ead24c015125123a790634c46989c3d04fd0f9bcf72d39801f22f4a
|
||||
size 308549
|
||||
oid sha256:f603fc509b6ee7616736468d0819dfaf4f01c2271f354496037a18063a0fc280
|
||||
size 308362
|
||||
|
@ -591,9 +591,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -667,9 +667,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -670,9 +670,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -685,9 +685,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -679,9 +679,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -669,9 +669,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -666,9 +666,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -666,9 +666,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -667,9 +667,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -667,9 +667,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -676,9 +676,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -680,9 +680,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -669,9 +669,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -667,9 +667,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -677,9 +677,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -667,9 +667,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -673,9 +673,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 21:25:25 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Use a macro instead of /etc/IGNORE-KABI-BADNESS
|
||||
- commit 19e7e54
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 19:21:35 CEST 2012 - agraf@suse.de
|
||||
|
||||
- ARM: Update config files: Fix exynos uart
|
||||
- commit 1b4b5c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 16:26:57 CEST 2012 - trenn@suse.de
|
||||
|
||||
- Cleanup ACPI table override patches with latest x86-tip commits
|
||||
and proper git-xy: meta tags:
|
||||
- lib: Add early cpio decoder.
|
||||
- x86, acpi: Introduce x86 arch specific arch_reserve_mem_area()
|
||||
for e820 handling.
|
||||
- ACPI: Store valid ACPI tables passed via early initrd in
|
||||
reserved memblock areas.
|
||||
- ACPI: Implement physical address table override.
|
||||
- ACPI: Create acpi_table_taint() function to avoid code
|
||||
duplication.
|
||||
- ACPI: Document ACPI table overriding via initrd.
|
||||
- ACPI: Fix build when disabled.
|
||||
- X86 ACPI: Use #ifdef not #if for CONFIG_X86 check.
|
||||
- ACPI: Overriding ACPI tables via initrd only works with
|
||||
an initrd.
|
||||
- ACPI: Cleanup acpi_initrd_override declaration and remove
|
||||
ifdefs.
|
||||
- Delete patches.arch/acpi_fix_custom_method_acc.patch.
|
||||
- Delete patches.arch/acpi_override_2_2.patch.
|
||||
- Delete patches.arch/acpi_override_documentation.
|
||||
- Delete patches.arch/acpi_override_introduce_taint_func.patch.
|
||||
- Delete patches.arch/acpi_physical_override.patch.
|
||||
- Delete patches.arch/lib_earlycpio.patch.
|
||||
- Delete patches.arch/x86_introduce_reserve_mem_area.patch.
|
||||
- commit c45da8f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
|
||||
|
||||
|
@ -669,9 +669,11 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
Module.symvers || res=$?
|
||||
fi
|
||||
if [ $res -ne 0 ]; then
|
||||
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
|
||||
! -e /etc/IGNORE-KABI-BADNESS ]; then
|
||||
# %ignore_kabi_badness is defined in the Kernel:* projects in the
|
||||
# OBS to be able to build the KOTD in spite of kabi errors
|
||||
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
|
||||
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
|
||||
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
|
||||
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
|
||||
"directory to build this kernel even though its badness is" \
|
||||
"higher than allowed for an official kernel."
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:67356543780e4c24056d28fb7356f14bb80cc38e6a73c113c0d3ebacd1e119c4
|
||||
size 82557
|
||||
oid sha256:533d1a9cb6e2223e2ed3aa17ae3681a0cbd530a54a4f091cbc80bd5ac912854d
|
||||
size 83742
|
||||
|
17
series.conf
17
series.conf
@ -201,13 +201,16 @@
|
||||
# Queued for 2.6.36 -> just revert after some time
|
||||
patches.fixes/acpi_ec_sys_access_user_space_with_get_user.patch
|
||||
|
||||
patches.arch/lib_earlycpio.patch
|
||||
patches.arch/x86_introduce_reserve_mem_area.patch
|
||||
patches.arch/acpi_override_2_2.patch
|
||||
patches.arch/acpi_physical_override.patch
|
||||
patches.arch/acpi_override_introduce_taint_func.patch
|
||||
patches.arch/acpi_override_documentation
|
||||
patches.arch/acpi_fix_custom_method_acc.patch
|
||||
patches.arch/001-acpi_initrd_override_tables.patch
|
||||
patches.arch/002-acpi_initrd_override_tables.patch
|
||||
patches.arch/003-acpi_initrd_override_tables.patch
|
||||
patches.arch/004-acpi_initrd_override_tables.patch
|
||||
patches.arch/005-acpi_initrd_override_tables.patch
|
||||
patches.arch/006-acpi_initrd_override_tables.patch
|
||||
patches.arch/007-acpi_initrd_override_tables.patch
|
||||
patches.arch/008-acpi_initrd_override_tables.patch
|
||||
patches.arch/009-acpi_initrd_override_tables.patch
|
||||
patches.arch/010-acpi_initrd_override_tables.patch
|
||||
|
||||
########################################################
|
||||
# CPUFREQ
|
||||
|
@ -1,3 +1,3 @@
|
||||
2012-10-17 20:03:43 +0200
|
||||
GIT Revision: e978fb65e2bd25d2d273b13380de4d7be2d03c72
|
||||
2012-10-18 22:33:10 +0200
|
||||
GIT Revision: 3fa892ec9615adec76d6cc9117fc009d79163d26
|
||||
GIT Branch: master
|
||||
|
Loading…
Reference in New Issue
Block a user