openSUSE Commits
Threads by month
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
September 2007
- 1 participants
- 1083 discussions
Hello community,
here is the log from the commit of package perl-Bootloader
checked in at Fri Sep 21 19:32:17 CEST 2007.
--------
--- perl-Bootloader/perl-Bootloader.changes 2007-09-21 15:35:45.000000000 +0200
+++ /mounts/work_src_done/STABLE/perl-Bootloader/perl-Bootloader.changes 2007-09-21 19:20:54.000000000 +0200
@@ -1,0 +2,8 @@
+Fri Sep 21 19:12:35 CEST 2007 - aosthof(a)suse.de
+
+- Save command for adding new section(s) (also multiple kernels) in
+ /boot/perl-BL_delayed_exec for delayed execution in the target
+ system. This script will be run by yast2-bootloader after the
+ installation of packages is finished (#309837)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Bootloader.spec ++++++
--- /var/tmp/diff_new_pack.ybK365/_old 2007-09-21 19:32:03.000000000 +0200
+++ /var/tmp/diff_new_pack.ybK365/_new 2007-09-21 19:32:03.000000000 +0200
@@ -12,7 +12,7 @@
Name: perl-Bootloader
Version: 0.4.30
-Release: 1
+Release: 3
Requires: perl >= %{perl_version}
Requires: perl-gettext
Requires: e2fsprogs
@@ -66,6 +66,11 @@
/usr/lib/bootloader
%changelog
* Fri Sep 21 2007 - aosthof(a)suse.de
+- Save command for adding new section(s) (also multiple kernels) in
+ /boot/perl-BL_delayed_exec for delayed execution in the target
+ system. This script will be run by yast2-bootloader after the
+ installation of packages is finished (#309837)
+* Fri Sep 21 2007 - aosthof(a)suse.de
- Save command for removal of old sections in
/boot/perl-BL_delayed_exec for delayed execution in the target
system, script will be run by yast2-bootloader after installation
++++++ bootloader_entry ++++++
--- perl-Bootloader/bootloader_entry 2007-09-21 15:35:45.000000000 +0200
+++ /mounts/work_src_done/STABLE/perl-Bootloader/bootloader_entry 2007-09-21 19:20:54.000000000 +0200
@@ -73,58 +73,77 @@
{
echo "bootloader_entry: This is function add_entry()" >> $logname
- # Set up the new kernel
- if [ -f /etc/sysconfig/bootloader ] &&
- [ -f /boot/grub/menu.lst -o \
- -f /etc/lilo.conf -o \
- -f /etc/elilo.conf -o \
- -f /etc/zipl.conf ]; then
- case $flavor in
- (kdump|um)
- ;;
- (xen*)
- opt_xen_kernel=
- set -- $flavor
- set -- ${1#xen}
- opt_xen_kernel=--xen-kernel=/boot/xen${1:+-$1}.gz
-
- # Add the new bootloader entry (xen kernel)
- update_bootloader --image /boot/$image \
- --initrd /boot/$initrd \
- --default \
- --add \
- --force $opt_xen_kernel \
- --name "$release"
-
- # Run the bootloader (e.g., lilo).
- update_bootloader --refresh
- ;;
-
- (debug)
- # Add the new bootloader entry (debug kernel)
- update_bootloader --image /boot/$image \
- --initrd /boot/$initrd \
- --add \
- --force \
- --name "$release"
-
- # Run the bootloader (e.g., lilo).
- update_bootloader --refresh
- ;;
-
- (*)
- # Add the new bootloader entry
- update_bootloader --image /boot/$image \
- --initrd /boot/$initrd \
- --default \
- --add \
- --force \
- --name "$release"
-
- # Run the bootloader (e.g., lilo).
- update_bootloader --refresh
- ;;
- esac
+ # If running in instsys, write command(s) to be executed in a file
+ # which will be executed by yast2-bootloader after installation of
+ # packages is finished.
+ #
+ # This is to prevent inconsistencies triggered by libata migration.
+
+ if [ "$YAST_IS_RUNNING" == instsys -a "$DELAYED_RUN_UPDATE_BOOTLOADER" != yes ]; then
+ cat - >> $delayed_exec_file <<-EOF
+ #!/bin/sh
+
+ export DELAYED_RUN_UPDATE_BOOTLOADER=yes
+
+ /usr/lib/bootloader/bootloader_entry $@
+
+ EOF
+
+ chmod 755 $delayed_exec_file
+ else
+ # Set up the new kernel
+ if [ -f /etc/sysconfig/bootloader ] &&
+ [ -f /boot/grub/menu.lst -o \
+ -f /etc/lilo.conf -o \
+ -f /etc/elilo.conf -o \
+ -f /etc/zipl.conf ]; then
+ case $flavor in
+ (kdump|um)
+ ;;
+ (xen*)
+ opt_xen_kernel=
+ set -- $flavor
+ set -- ${1#xen}
+ opt_xen_kernel=--xen-kernel=/boot/xen${1:+-$1}.gz
+
+ # Add the new bootloader entry (xen kernel)
+ update_bootloader --image /boot/$image \
+ --initrd /boot/$initrd \
+ --default \
+ --add \
+ --force $opt_xen_kernel \
+ --name "$release"
+
+ # Run the bootloader (e.g., lilo).
+ update_bootloader --refresh
+ ;;
+
+ (debug)
+ # Add the new bootloader entry (debug kernel)
+ update_bootloader --image /boot/$image \
+ --initrd /boot/$initrd \
+ --add \
+ --force \
+ --name "$release"
+
+ # Run the bootloader (e.g., lilo).
+ update_bootloader --refresh
+ ;;
+
+ (*)
+ # Add the new bootloader entry
+ update_bootloader --image /boot/$image \
+ --initrd /boot/$initrd \
+ --default \
+ --add \
+ --force \
+ --name "$release"
+
+ # Run the bootloader (e.g., lilo).
+ update_bootloader --refresh
+ ;;
+ esac
+ fi
fi
}
@@ -140,11 +159,9 @@
# which will be executed by yast2-bootloader after installation of
# packages is finished.
#
- # This is to prevent inconsistencies triggered by libata merge.
+ # This is to prevent inconsistencies triggered by libata migration.
if [ "$YAST_IS_RUNNING" == instsys -a "$DELAYED_RUN_UPDATE_BOOTLOADER" != yes ]; then
- delayed_exec_file="/boot/perl-BL_delayed_exec"
-
cat - >> $delayed_exec_file <<-EOF
#!/bin/sh
@@ -206,17 +223,34 @@
(
echo "/proc/mounts:"
cat /proc/mounts
+echo
+
echo "/sys:"
ls -l /sys
+echo
+
+fstab="/etc/fstab"
+if [ -e $fstab ] ; then
+ echo "fstab:"
+ cat $fstab
+ echo
+fi
+
echo "excerpts of /dev:"
ls -l /dev/{[hs]d[ab]?,md[0-3],.udev}
+echo
+
device_map="/boot/grub/device.map"
if [ -e $device_map ] ; then
echo "device.map:"
cat $device_map
+ echo
fi
) >> $logname
+# File containing commands for later execution
+delayed_exec_file="/boot/perl-BL_delayed_exec"
+
# Checks if correct amount of arguments is given
if [ "$#" -ne "4" -a "$#" -ne "5" ] ; then
usage
@@ -229,7 +263,7 @@
case $action in
add)
# Add a new bootloader entry
- add_entry
+ add_entry "$@"
;;
remove)
# Remove an existing bootloader entry
++++++ perl-Bootloader-0.4.30.tar.bz2 ++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package yast2-bootloader
checked in at Fri Sep 21 18:06:19 CEST 2007.
--------
--- yast2-bootloader/yast2-bootloader.changes 2007-09-20 21:02:18.000000000 +0200
+++ /mounts/work_src_done/STABLE/yast2-bootloader/yast2-bootloader.changes 2007-09-21 16:21:00.874918000 +0200
@@ -1,0 +2,9 @@
+Fri Sep 21 16:19:02 CEST 2007 - od(a)suse.de
+
+- run delayed bootloader_entry at the very end of the update, when
+ the migrated bootloader configuration (including device mapping)
+ has already been written (#309837)
+- added some comments
+- 2.15.25
+
+-------------------------------------------------------------------
Old:
----
yast2-bootloader-2.15.24.tar.bz2
New:
----
yast2-bootloader-2.15.25.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-bootloader.spec ++++++
--- /var/tmp/diff_new_pack.G16201/_old 2007-09-21 18:06:04.000000000 +0200
+++ /var/tmp/diff_new_pack.G16201/_new 2007-09-21 18:06:04.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-bootloader (Version 2.15.24)
+# spec file for package yast2-bootloader (Version 2.15.25)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
# norootforbuild
Name: yast2-bootloader
-Version: 2.15.24
+Version: 2.15.25
Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-bootloader-2.15.24.tar.bz2
+Source0: yast2-bootloader-2.15.25.tar.bz2
Prefix: /usr
BuildRequires: docbook-xsl-stylesheets doxygen gcc-c++ libxslt limal-perl perl-Bootloader perl-XML-Writer perl-gettext sgml-skel swig update-alternatives update-desktop-files yast2-devtools yast2-installation yast2-perl-bindings yast2-storage yast2-testsuite
# to eliminate a cyclic dependency in autobuild:
@@ -50,7 +50,7 @@
Olaf Dabrunz
%prep
-%setup -n yast2-bootloader-2.15.24
+%setup -n yast2-bootloader-2.15.25
%build
%{prefix}/bin/y2tool y2autoconf
@@ -94,6 +94,12 @@
/var/adm/fillup-templates/*
/usr/share/YaST2/schema/autoyast/rnc/bootloader.rnc
%changelog
+* Fri Sep 21 2007 - od(a)suse.de
+- run delayed bootloader_entry at the very end of the update, when
+ the migrated bootloader configuration (including device mapping)
+ has already been written (#309837)
+- added some comments
+- 2.15.25
* Thu Sep 20 2007 - od(a)suse.de
- log the contents of the perl-BL_delayed_exec script (#309837)
- 2.15.24
++++++ yast2-bootloader-2.15.24.tar.bz2 -> yast2-bootloader-2.15.25.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-bootloader-2.15.24/src/clients/bootloader_finish.ycp new/yast2-bootloader-2.15.25/src/clients/bootloader_finish.ycp
--- old/yast2-bootloader-2.15.24/src/clients/bootloader_finish.ycp 2007-08-31 12:05:41.000000000 +0200
+++ new/yast2-bootloader-2.15.25/src/clients/bootloader_finish.ycp 2007-09-21 16:18:18.000000000 +0200
@@ -8,7 +8,7 @@
* Authors:
* Jiri Srain <jsrain(a)suse.cz>
*
- * $Id: bootloader_finish.ycp 40623 2007-08-30 13:49:53Z pth $
+ * $Id: bootloader_finish.ycp 41027 2007-09-21 14:18:17Z odabrunz $
*
*/
@@ -167,8 +167,11 @@
Update::updateVersion);
}
- if (retcode)
- return Bootloader::FlagOnetimeBoot(Bootloader::getDefaultSection ());
+ if (retcode) {
+ // perl-BL delayed section removal
+ Bootloader::RunDelayedUpdates();
+ return Bootloader::FlagOnetimeBoot(Bootloader::getDefaultSection ());
+ }
else
return retcode;
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-bootloader-2.15.24/src/modules/BootCommon.ycp new/yast2-bootloader-2.15.25/src/modules/BootCommon.ycp
--- old/yast2-bootloader-2.15.24/src/modules/BootCommon.ycp 2007-08-31 12:05:43.000000000 +0200
+++ new/yast2-bootloader-2.15.25/src/modules/BootCommon.ycp 2007-09-21 16:18:19.000000000 +0200
@@ -15,7 +15,7 @@
* Joachim Plack <jplack(a)suse.de>
* Olaf Dabrunz <od(a)suse.de>
*
- * $Id: BootCommon.ycp 40623 2007-08-30 13:49:53Z pth $
+ * $Id: BootCommon.ycp 41027 2007-09-21 14:18:17Z odabrunz $
*
*/
@@ -466,6 +466,12 @@
// version etc. pp. whatever (currently version-flavor) attached.
// FIXME: also do this for xen and xenpae kernels as found below
//
+ // Note: originally, we wanted to find out the kernel file names during
+ // installation proposal when the files are not yet installed. But not
+ // all the necessary interfaces work at that time. Now, this variant is
+ // only run in the "running system", and could as well look at the
+ // installed files.
+ //
// First of all, we have to initialize the RPM database
Pkg::TargetInit ( "/", // installed system
@@ -515,6 +521,8 @@
files_filtered[0]:""
);
} else {
+ // the links are shown in the proposal; at the end of an installation,
+ // in bootloader_finish, they will be resolved to the real filenames
kernel_fn = "/boot/" + Kernel::GetBinary ()
+ (title == "wildcard" ? "-*" : "");
initrd_fn = "/boot/initrd" + (title == "wildcard" ? "-*" : "");
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-bootloader-2.15.24/src/modules/BootELILO.ycp new/yast2-bootloader-2.15.25/src/modules/BootELILO.ycp
--- old/yast2-bootloader-2.15.24/src/modules/BootELILO.ycp 2007-09-20 18:43:08.000000000 +0200
+++ new/yast2-bootloader-2.15.25/src/modules/BootELILO.ycp 2007-09-21 16:18:20.000000000 +0200
@@ -16,7 +16,7 @@
* Andreas Schwab <schwab(a)suse.de>
* Philipp Thomas <pth(a)suse.de>
*
- * $Id: BootELILO.ycp 41000 2007-09-20 16:43:07Z odabrunz $
+ * $Id: BootELILO.ycp 41027 2007-09-21 14:18:17Z odabrunz $
*
*/
@@ -391,8 +391,6 @@
BootCommon::globals["timeout"] = "8";
BootCommon::globals["append"] = BootArch::DefaultKernelParams ("");
- // perl-BL delayed section removal
- BootCommon::RunDelayedUpdates ();
BootCommon::UpdateSections (true, CreateLinuxSection);
// FIXME EFI entry name
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-bootloader-2.15.24/src/modules/BootGRUB.ycp new/yast2-bootloader-2.15.25/src/modules/BootGRUB.ycp
--- old/yast2-bootloader-2.15.24/src/modules/BootGRUB.ycp 2007-09-20 18:43:08.000000000 +0200
+++ new/yast2-bootloader-2.15.25/src/modules/BootGRUB.ycp 2007-09-21 16:18:21.000000000 +0200
@@ -14,7 +14,7 @@
* Joachim Plack <jplack(a)suse.de>
* Philipp Thomas <pth(a)suse.de>
*
- * $Id: BootGRUB.ycp 41000 2007-09-20 16:43:07Z odabrunz $
+ * $Id: BootGRUB.ycp 41027 2007-09-21 14:18:17Z odabrunz $
*
*/
@@ -957,8 +957,6 @@
*/
global define void Update () {
BootCommon::UpdateDeviceMap ();
- // perl-BL delayed section removal
- BootCommon::RunDelayedUpdates ();
BootCommon::UpdateSections (true, CreateLinuxSection);
BootCommon::UpdateGlobals ();
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-bootloader-2.15.24/src/modules/BootLILO.ycp new/yast2-bootloader-2.15.25/src/modules/BootLILO.ycp
--- old/yast2-bootloader-2.15.24/src/modules/BootLILO.ycp 2007-09-20 18:43:09.000000000 +0200
+++ new/yast2-bootloader-2.15.25/src/modules/BootLILO.ycp 2007-09-21 16:18:22.000000000 +0200
@@ -13,7 +13,7 @@
* Jiri Srain <jsrain(a)suse.cz>
* Philipp Thomas <pth(a)suse.de>
*
- * $Id: BootLILO.ycp 41000 2007-09-20 16:43:07Z odabrunz $
+ * $Id: BootLILO.ycp 41027 2007-09-21 14:18:17Z odabrunz $
*
*/
@@ -198,8 +198,6 @@
*/
global void Update () {
BootCommon::UpdateDeviceMap ();
- // perl-BL delayed section removal
- BootCommon::RunDelayedUpdates ();
BootCommon::UpdateSections (true, BootCommon::CreateLinuxSection);
BootCommon::UpdateGlobals ();
BootCommon::loader_device
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-bootloader-2.15.24/src/modules/Bootloader.ycp new/yast2-bootloader-2.15.25/src/modules/Bootloader.ycp
--- old/yast2-bootloader-2.15.24/src/modules/Bootloader.ycp 2007-08-31 12:05:43.000000000 +0200
+++ new/yast2-bootloader-2.15.25/src/modules/Bootloader.ycp 2007-09-21 16:18:24.000000000 +0200
@@ -11,7 +11,7 @@
* Authors:
* Jiri Srain <jsrain(a)suse.cz>
*
- * $Id: Bootloader.ycp 40623 2007-08-30 13:49:53Z pth $
+ * $Id: Bootloader.ycp 41027 2007-09-21 14:18:17Z odabrunz $
*
*/
@@ -920,6 +920,18 @@
* @param section string section to boot
* @return boolean true on success
*/
+ global define void RunDelayedUpdates()
+ {
+ // perl-BL delayed section removal
+ BootCommon::RunDelayedUpdates ();
+ return;
+ }
+
+ /**
+ * Set section to boot on next reboot
+ * @param section string section to boot
+ * @return boolean true on success
+ */
global define boolean FlagOnetimeBoot(string section)
{
return blFlagOnetimeBoot (section);
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-bootloader-2.15.24/src/modules/BootPOWERLILO.ycp new/yast2-bootloader-2.15.25/src/modules/BootPOWERLILO.ycp
--- old/yast2-bootloader-2.15.24/src/modules/BootPOWERLILO.ycp 2007-09-20 18:43:10.000000000 +0200
+++ new/yast2-bootloader-2.15.25/src/modules/BootPOWERLILO.ycp 2007-09-21 16:18:23.000000000 +0200
@@ -16,7 +16,7 @@
* Olaf Dabrunz <od(a)suse.de>
* Philipp Thomas <pth(a)suse.de>
*
- * $Id: BootPOWERLILO.ycp 41000 2007-09-20 16:43:07Z odabrunz $
+ * $Id: BootPOWERLILO.ycp 41027 2007-09-21 14:18:17Z odabrunz $
*
*/
@@ -969,9 +969,6 @@
*/
global void Update () {
- // perl-BL delayed section removal
- BootCommon::RunDelayedUpdates ();
-
/**
* Firstly update sections of bootloader configuration and modify internal
* structures as needed. This means right now:
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-bootloader-2.15.24/VERSION new/yast2-bootloader-2.15.25/VERSION
--- old/yast2-bootloader-2.15.24/VERSION 2007-09-20 21:00:07.000000000 +0200
+++ new/yast2-bootloader-2.15.25/VERSION 2007-09-21 16:18:38.000000000 +0200
@@ -1 +1 @@
-2.15.24
+2.15.25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package kernel-source
checked in at Fri Sep 21 16:33:26 CEST 2007.
--------
--- kernel-source/kernel-bigsmp.changes 2007-09-18 07:24:06.000000000 +0200
+++ /mounts/work_src_done/STABLE/kernel-source/kernel-bigsmp.changes 2007-09-20 19:20:06.000000000 +0200
@@ -1,0 +2,12 @@
+Thu Sep 20 16:23:32 CEST 2007 - bwalle(a)suse.de
+
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+
+-------------------------------------------------------------------
+Tue Sep 18 09:29:21 CEST 2007 - olh(a)suse.de
+
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
+
+-------------------------------------------------------------------
kernel-debug.changes: same change
kernel-default.changes: same change
kernel-dummy.changes: same change
kernel-kdump.changes: same change
kernel-ppc64.changes: same change
kernel-rt.changes: same change
kernel-rt_debug.changes: same change
kernel-s390.changes: same change
kernel-source.changes: same change
kernel-syms.changes: same change
kernel-vanilla.changes: same change
kernel-xen.changes: same change
kernel-xenpae.changes: same change
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kernel-bigsmp.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:46.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:46.000000000 +0200
@@ -39,7 +39,7 @@
%endif
Summary: Kernel with PAE Support
Version: 2.6.22.5
-Release: 22
+Release: 27
License: GPL v2 or later
Group: System/Kernel
AutoReqProv: on
@@ -169,7 +169,7 @@
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%prep
if ! [ -e %_sourcedir/linux-2.6.22.tar.bz2 ]; then
@@ -555,8 +555,13 @@
%postun -f postun.sh
%files -f kernel.files
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
kernel-debug.spec: same change
kernel-default.spec: same change
++++++ kernel-dummy.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:47.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:47.000000000 +0200
@@ -15,7 +15,7 @@
Url: http://www.kernel.org/
Summary: Internal dummy package for synchronizing release numbers
Version: 2.6.22.5
-Release: 22
+Release: 27
License: GPL v2 or later
Group: System/Kernel
AutoReqProv: off
@@ -28,7 +28,7 @@
--------
Andreas Gruenbacher <agruen(a)suse.de>
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%install
rm -rf %buildroot
@@ -38,8 +38,13 @@
%files
%defattr(-, root, root)
/etc/dummy
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
++++++ kernel-kdump.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:47.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:47.000000000 +0200
@@ -39,7 +39,7 @@
%endif
Summary: kernel for kdump
Version: 2.6.22.5
-Release: 22
+Release: 27
License: GPL v2 or later
Group: System/Kernel
AutoReqProv: on
@@ -173,7 +173,7 @@
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%prep
if ! [ -e %_sourcedir/linux-2.6.22.tar.bz2 ]; then
@@ -559,8 +559,13 @@
%postun -f postun.sh
%files -f kernel.files
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
++++++ kernel-ppc64.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:47.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:47.000000000 +0200
@@ -38,7 +38,7 @@
%endif
Summary: Kernel for ppc64 Systems
Version: 2.6.22.5
-Release: 22
+Release: 27
License: GPL v2 or later, LGPL v2 or later
Group: System/Kernel
AutoReqProv: on
@@ -185,7 +185,7 @@
Tom Gall <tom_gall(a)vnet.ibm.com>
see /usr/src/linux/CREDITS for more details.
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%prep
if ! [ -e %_sourcedir/linux-2.6.22.tar.bz2 ]; then
@@ -571,8 +571,13 @@
%postun -f postun.sh
%files -f kernel.files
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
++++++ kernel-rt_debug.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:48.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:48.000000000 +0200
@@ -39,7 +39,7 @@
%endif
Summary: A Debug Version of the Kernel
Version: 2.6.22.5
-Release: 22
+Release: 27
License: GPL v2 or later
Group: System/Kernel
AutoReqProv: on
@@ -171,7 +171,7 @@
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%prep
if ! [ -e %_sourcedir/linux-2.6.22.tar.bz2 ]; then
@@ -557,8 +557,13 @@
%postun -f postun.sh
%files -f kernel.files
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
++++++ kernel-rt.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:48.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:48.000000000 +0200
@@ -39,7 +39,7 @@
%endif
Summary: The Realtime Linux Kernel
Version: 2.6.22.5
-Release: 22
+Release: 27
License: GPL v2 or later
Group: System/Kernel
AutoReqProv: on
@@ -187,7 +187,7 @@
see /usr/src/linux/CREDITS for more details.
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%prep
if ! [ -e %_sourcedir/linux-2.6.22.tar.bz2 ]; then
@@ -573,8 +573,13 @@
%postun -f postun.sh
%files -f kernel.files
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
++++++ kernel-s390.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:48.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:48.000000000 +0200
@@ -39,7 +39,7 @@
%endif
Summary: The Standard Kernel
Version: 2.6.22.5
-Release: 13
+Release: 14
License: GPL v2 or later
Group: System/Kernel
AutoReqProv: on
@@ -167,7 +167,7 @@
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%prep
if ! [ -e %_sourcedir/linux-2.6.22.tar.bz2 ]; then
@@ -553,8 +553,13 @@
%postun -f postun.sh
%files -f kernel.files
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
++++++ kernel-source.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:48.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:48.000000000 +0200
@@ -22,7 +22,7 @@
%endif
Summary: The Linux Kernel Sources
Version: 2.6.22.5
-Release: 22
+Release: 27
License: GPL v2 only
Group: Development/Sources
AutoReqProv: off
@@ -105,7 +105,7 @@
see /usr/src/linux/CREDITS for more details.
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%prep
if ! [ -e %_sourcedir/linux-2.6.22.tar.bz2 ]; then
@@ -276,8 +276,13 @@
%post -f source-post.sh
%files -f kernel-source.files
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
++++++ kernel-syms.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:48.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:48.000000000 +0200
@@ -21,7 +21,7 @@
%endif
Summary: Kernel Symbol Versions (modversions)
Version: 2.6.22.5
-Release: 22
+Release: 27
License: GPL v2 or later
Group: Development/Sources
AutoReqProv: off
@@ -95,7 +95,7 @@
see /usr/src/linux/CREDITS for more details.
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%prep
echo "Architecture symbol(s):" %symbols
@@ -111,7 +111,6 @@
for config in $(%_sourcedir/guards %symbols < %_sourcedir/config.conf) ; do
arch="${config%%/*}"
flavor="${config#*/}"
-
rpm -q --quiet kernel-$flavor || continue
# Don't add the build infrastructure for kernels that are based
# on a different set of patches than kernel-source.
@@ -146,8 +145,13 @@
/usr/src/linux-*-obj
/boot/symsets-*-*.tar.gz
/lib/modules/*/*
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
++++++ kernel-vanilla.spec ++++++
--- /var/tmp/diff_new_pack.l17638/_old 2007-09-21 16:03:49.000000000 +0200
+++ /var/tmp/diff_new_pack.l17638/_new 2007-09-21 16:03:49.000000000 +0200
@@ -39,7 +39,7 @@
%endif
Summary: The Standard Kernel - without any SUSE patches
Version: 2.6.22.5
-Release: 22
+Release: 27
License: GPL v2 or later
Group: System/Kernel
AutoReqProv: on
@@ -187,7 +187,7 @@
-Source Timestamp: 2007/09/18 05:23:45 UTC
+Source Timestamp: 2007/09/20 15:19:04 UTC
%prep
if ! [ -e %_sourcedir/linux-2.6.22.tar.bz2 ]; then
@@ -573,8 +573,13 @@
%postun -f postun.sh
%files -f kernel.files
-
%changelog
+* Thu Sep 20 2007 - bwalle(a)suse.de
+- Update config files. Revert RTC transition for 10.3 due to
+ problems that cannot be fixed quickly (#326490).
+* Tue Sep 18 2007 - olh(a)suse.de
+- update patches.fixes/aux-at_vector_size.patch
+ double the size of the array
* Tue Sep 18 2007 - aj(a)suse.de
- Disable patches.fixes/aux-at_vector_size.patch as it leads to OOPS.
* Mon Sep 17 2007 - od(a)suse.de
kernel-xenpae.spec: same change
kernel-xen.spec: same change
++++++ build-source-timestamp ++++++
--- kernel-source/build-source-timestamp 2007-09-18 07:24:01.000000000 +0200
+++ /mounts/work_src_done/STABLE/kernel-source/build-source-timestamp 2007-09-20 19:20:02.000000000 +0200
@@ -1 +1 @@
-2007/09/18 05:23:45 UTC
+2007/09/20 15:19:04 UTC
++++++ config.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/i386/bigsmp new/config/i386/bigsmp
--- old/config/i386/bigsmp 2007-09-07 07:09:20.000000000 +0200
+++ new/config/i386/bigsmp 2007-09-20 14:39:26.000000000 +0200
@@ -178,6 +178,7 @@
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_MINIMUM_CPU_MODEL=4
CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
CONFIG_NR_CPUS=128
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
@@ -2336,9 +2337,7 @@
CONFIG_HW_RANDOM_GEODE=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_NVRAM=m
-# CONFIG_RTC is not set
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
+CONFIG_RTC=y
CONFIG_DTLK=m
CONFIG_R3964=m
CONFIG_APPLICOM=m
@@ -2963,6 +2962,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/i386/debug new/config/i386/debug
--- old/config/i386/debug 2007-09-07 07:09:20.000000000 +0200
+++ new/config/i386/debug 2007-09-20 14:44:02.000000000 +0200
@@ -177,6 +177,7 @@
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_MINIMUM_CPU_MODEL=4
CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
CONFIG_NR_CPUS=128
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
@@ -2349,9 +2350,7 @@
CONFIG_HW_RANDOM_GEODE=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_NVRAM=m
-# CONFIG_RTC is not set
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
+CONFIG_RTC=y
CONFIG_DTLK=m
CONFIG_R3964=m
CONFIG_APPLICOM=m
@@ -2960,6 +2959,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/i386/default new/config/i386/default
--- old/config/i386/default 2007-09-07 07:09:20.000000000 +0200
+++ new/config/i386/default 2007-09-20 14:45:14.000000000 +0200
@@ -177,6 +177,7 @@
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_MINIMUM_CPU_MODEL=4
CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
CONFIG_NR_CPUS=32
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
@@ -2332,9 +2333,7 @@
CONFIG_HW_RANDOM_GEODE=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_NVRAM=m
-# CONFIG_RTC is not set
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
+CONFIG_RTC=y
CONFIG_DTLK=m
CONFIG_R3964=m
CONFIG_APPLICOM=m
@@ -2959,6 +2958,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/i386/rt new/config/i386/rt
--- old/config/i386/rt 2007-09-17 20:21:12.000000000 +0200
+++ new/config/i386/rt 2007-09-20 14:46:43.000000000 +0200
@@ -178,6 +178,7 @@
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_MINIMUM_CPU_MODEL=4
CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
CONFIG_NR_CPUS=32
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
@@ -2353,11 +2354,10 @@
CONFIG_HW_RANDOM_GEODE=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_NVRAM=m
-# CONFIG_RTC is not set
+CONFIG_RTC=y
+# CONFIG_RTC_HISTOGRAM is not set
CONFIG_BLOCKER=y
CONFIG_LPPTEST=m
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
CONFIG_DTLK=m
CONFIG_R3964=m
CONFIG_APPLICOM=m
@@ -2984,6 +2984,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/i386/rt_debug new/config/i386/rt_debug
--- old/config/i386/rt_debug 2007-09-17 20:21:12.000000000 +0200
+++ new/config/i386/rt_debug 2007-09-20 14:47:31.000000000 +0200
@@ -179,6 +179,7 @@
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_MINIMUM_CPU_MODEL=4
CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
CONFIG_NR_CPUS=128
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
@@ -2364,11 +2365,10 @@
CONFIG_HW_RANDOM_GEODE=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_NVRAM=m
-# CONFIG_RTC is not set
+CONFIG_RTC=y
+# CONFIG_RTC_HISTOGRAM is not set
CONFIG_BLOCKER=y
CONFIG_LPPTEST=m
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
CONFIG_DTLK=m
CONFIG_R3964=m
CONFIG_APPLICOM=m
@@ -2979,6 +2979,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/i386/vanilla new/config/i386/vanilla
--- old/config/i386/vanilla 2007-09-07 07:09:20.000000000 +0200
+++ new/config/i386/vanilla 2007-09-20 14:47:52.000000000 +0200
@@ -2314,6 +2314,7 @@
CONFIG_HW_RANDOM_GEODE=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_NVRAM=m
+CONFIG_RTC=y
CONFIG_DTLK=m
CONFIG_R3964=m
CONFIG_APPLICOM=m
@@ -3870,6 +3871,3 @@
CONFIG_X86_BIOS_REBOOT=y
CONFIG_X86_TRAMPOLINE=y
CONFIG_KTIME_SCALAR=y
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
-# CONFIG_RTC is not set
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/i386/xen new/config/i386/xen
--- old/config/i386/xen 2007-09-07 07:09:20.000000000 +0200
+++ new/config/i386/xen 2007-09-20 14:47:48.000000000 +0200
@@ -2102,9 +2102,7 @@
CONFIG_HW_RANDOM_GEODE=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_NVRAM=m
-# CONFIG_RTC is not set
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
+CONFIG_RTC=y
CONFIG_R3964=m
CONFIG_APPLICOM=m
CONFIG_SONYPI=m
@@ -2714,6 +2712,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/i386/xenpae new/config/i386/xenpae
--- old/config/i386/xenpae 2007-09-07 07:09:20.000000000 +0200
+++ new/config/i386/xenpae 2007-09-20 14:47:50.000000000 +0200
@@ -2105,9 +2105,7 @@
CONFIG_HW_RANDOM_GEODE=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_NVRAM=m
-# CONFIG_RTC is not set
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
+CONFIG_RTC=y
CONFIG_R3964=m
CONFIG_APPLICOM=m
CONFIG_SONYPI=m
@@ -2717,6 +2715,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/x86_64/debug new/config/x86_64/debug
--- old/config/x86_64/debug 2007-09-07 07:09:20.000000000 +0200
+++ new/config/x86_64/debug 2007-09-20 14:50:24.000000000 +0200
@@ -176,6 +176,7 @@
CONFIG_HOTPLUG_CPU=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
CONFIG_IOMMU=y
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
@@ -2068,9 +2069,7 @@
CONFIG_HW_RANDOM_AMD=m
CONFIG_HW_RANDOM_GEODE=m
CONFIG_NVRAM=y
-# CONFIG_RTC is not set
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
+CONFIG_RTC=y
CONFIG_R3964=m
CONFIG_APPLICOM=m
CONFIG_AGP=y
@@ -2663,6 +2662,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/x86_64/default new/config/x86_64/default
--- old/config/x86_64/default 2007-09-07 07:09:20.000000000 +0200
+++ new/config/x86_64/default 2007-09-20 14:49:52.000000000 +0200
@@ -176,6 +176,7 @@
CONFIG_HOTPLUG_CPU=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
CONFIG_IOMMU=y
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
@@ -2076,9 +2077,7 @@
CONFIG_HW_RANDOM_AMD=m
CONFIG_HW_RANDOM_GEODE=m
CONFIG_NVRAM=y
-# CONFIG_RTC is not set
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
+CONFIG_RTC=y
CONFIG_R3964=m
CONFIG_APPLICOM=m
CONFIG_AGP=y
@@ -2671,6 +2670,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/x86_64/rt new/config/x86_64/rt
--- old/config/x86_64/rt 2007-09-17 13:49:35.000000000 +0200
+++ new/config/x86_64/rt 2007-09-20 14:51:13.000000000 +0200
@@ -190,6 +190,7 @@
CONFIG_HOTPLUG_CPU=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
CONFIG_IOMMU=y
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
@@ -2101,11 +2102,10 @@
CONFIG_HW_RANDOM_AMD=m
CONFIG_HW_RANDOM_GEODE=m
CONFIG_NVRAM=y
-# CONFIG_RTC is not set
+CONFIG_RTC=y
+# CONFIG_RTC_HISTOGRAM is not set
CONFIG_BLOCKER=y
CONFIG_LPPTEST=m
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
CONFIG_R3964=m
CONFIG_APPLICOM=m
CONFIG_AGP=y
@@ -2700,6 +2700,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/x86_64/rt_debug new/config/x86_64/rt_debug
--- old/config/x86_64/rt_debug 2007-09-16 21:04:43.000000000 +0200
+++ new/config/x86_64/rt_debug 2007-09-20 14:51:41.000000000 +0200
@@ -190,6 +190,7 @@
CONFIG_HOTPLUG_CPU=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
CONFIG_IOMMU=y
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
@@ -2093,11 +2094,10 @@
CONFIG_HW_RANDOM_AMD=m
CONFIG_HW_RANDOM_GEODE=m
CONFIG_NVRAM=y
-# CONFIG_RTC is not set
+CONFIG_RTC=y
+# CONFIG_RTC_HISTOGRAM is not set
CONFIG_BLOCKER=y
CONFIG_LPPTEST=m
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
CONFIG_R3964=m
CONFIG_APPLICOM=m
CONFIG_AGP=y
@@ -2692,6 +2692,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/x86_64/vanilla new/config/x86_64/vanilla
--- old/config/x86_64/vanilla 2007-09-07 07:09:20.000000000 +0200
+++ new/config/x86_64/vanilla 2007-09-20 14:49:50.000000000 +0200
@@ -2055,6 +2055,7 @@
CONFIG_HW_RANDOM_AMD=m
CONFIG_HW_RANDOM_GEODE=m
CONFIG_NVRAM=y
+CONFIG_RTC=y
CONFIG_R3964=m
CONFIG_APPLICOM=m
CONFIG_AGP=y
@@ -3516,6 +3517,3 @@
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
-# CONFIG_RTC is not set
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/config/x86_64/xen new/config/x86_64/xen
--- old/config/x86_64/xen 2007-09-07 07:09:20.000000000 +0200
+++ new/config/x86_64/xen 2007-09-20 14:51:54.000000000 +0200
@@ -2003,9 +2003,7 @@
CONFIG_HW_RANDOM_AMD=m
CONFIG_HW_RANDOM_GEODE=m
CONFIG_NVRAM=y
-# CONFIG_RTC is not set
-CONFIG_GEN_RTC=m
-CONFIG_GEN_RTC_X=y
+CONFIG_RTC=y
CONFIG_R3964=m
CONFIG_APPLICOM=m
CONFIG_AGP=m
@@ -2599,6 +2597,8 @@
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_RTCTIMER=m
+CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
++++++ kabi.tar.bz2 ++++++
++++++ needed_space_in_mb ++++++
--- kernel-source/needed_space_in_mb 2007-09-18 10:40:15.000000000 +0200
+++ /mounts/work_src_done/STABLE/kernel-source/needed_space_in_mb 2007-09-20 19:20:16.000000000 +0200
@@ -1 +1 @@
-6000
+6144
++++++ novell-kmp.tar.bz2 ++++++
++++++ patches.apparmor.tar.bz2 ++++++
++++++ patches.arch.tar.bz2 ++++++
++++++ patches.drivers.tar.bz2 ++++++
++++++ patches.fixes.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/patches.fixes/aux-at_vector_size.patch new/patches.fixes/aux-at_vector_size.patch
--- old/patches.fixes/aux-at_vector_size.patch 1970-01-01 01:00:00.000000000 +0100
+++ new/patches.fixes/aux-at_vector_size.patch 2007-09-18 09:29:52.000000000 +0200
@@ -0,0 +1,120 @@
+References: 310037
+
+include/asm-powerpc/elf.h has 6 entries in ARCH_DLINFO.
+fs/binfmt_elf.c has 14 unconditional NEW_AUX_ENT entries and 2
+conditional NEW_AUX_ENT entries.
+So in the worst case, saved_auxv does not get an AT_NULL entry at the
+end.
+
+The saved_auxv array must be terminated with an AT_NULL entry.
+Make the size of mm_struct->saved_auxv arch dependend,
+based on the number of ARCH_DLINFO entries.
+
+Signed-off-by: Olaf Hering <olh(a)suse.de>
+
+---
+ include/asm-alpha/system.h | 1 +
+ include/asm-i386/system.h | 1 +
+ include/asm-ia64/system.h | 2 ++
+ include/asm-powerpc/system.h | 1 +
+ include/asm-sh/system.h | 1 +
+ include/linux/auxvec.h | 4 +++-
+ include/linux/elf.h | 1 -
+ include/linux/sched.h | 6 +++++-
+ 8 files changed, 14 insertions(+), 3 deletions(-)
+
+--- a/include/asm-alpha/system.h
++++ b/include/asm-alpha/system.h
+@@ -48,6 +48,7 @@
+
+ #ifndef __ASSEMBLY__
+ #include <linux/kernel.h>
++#define AT_VECTOR_SIZE_ARCH 4
+
+ /*
+ * This is the logout header that should be common to all platforms
+--- a/include/asm-i386/system.h
++++ b/include/asm-i386/system.h
+@@ -7,6 +7,7 @@
+ #include <asm/cmpxchg.h>
+
+ #ifdef __KERNEL__
++#define AT_VECTOR_SIZE_ARCH 2
+
+ struct task_struct; /* one of the stranger aspects of C forward declarations.. */
+ extern struct task_struct * FASTCALL(__switch_to(struct task_struct *prev, struct task_struct *next));
+--- a/include/asm-ia64/system.h
++++ b/include/asm-ia64/system.h
+@@ -32,6 +32,8 @@
+ #include <linux/kernel.h>
+ #include <linux/types.h>
+
++#define AT_VECTOR_SIZE_ARCH 2
++
+ struct pci_vector_struct {
+ __u16 segment; /* PCI Segment number */
+ __u16 bus; /* PCI Bus number */
+--- a/include/asm-powerpc/system.h
++++ b/include/asm-powerpc/system.h
+@@ -40,6 +40,7 @@
+ #define set_mb(var, value) do { var = value; mb(); } while (0)
+
+ #ifdef __KERNEL__
++#define AT_VECTOR_SIZE_ARCH 6
+ #ifdef CONFIG_SMP
+ #define smp_mb() mb()
+ #define smp_rmb() rmb()
+--- a/include/asm-sh/system.h
++++ b/include/asm-sh/system.h
+@@ -11,6 +11,7 @@
+ #include <asm/types.h>
+ #include <asm/ptrace.h>
+
++#define AT_VECTOR_SIZE_ARCH 1
+ /*
+ * switch_to() should switch tasks to task nr n, first
+ */
+--- a/include/linux/auxvec.h
++++ b/include/linux/auxvec.h
+@@ -26,6 +26,8 @@
+
+ #define AT_SECURE 23 /* secure mode boolean */
+
+-#define AT_VECTOR_SIZE 44 /* Size of auxiliary table. */
++#ifdef __KERNEL__
++#define AT_VECTOR_SIZE_BASE (14 + 2) /* generic entries in auxiliary table. */
++#endif
+
+ #endif /* _LINUX_AUXVEC_H */
+--- a/include/linux/elf.h
++++ b/include/linux/elf.h
+@@ -2,7 +2,6 @@
+ #define _LINUX_ELF_H
+
+ #include <linux/types.h>
+-#include <linux/auxvec.h>
+ #include <linux/elf-em.h>
+ #include <asm/elf.h>
+
+--- a/include/linux/sched.h
++++ b/include/linux/sched.h
+@@ -1,7 +1,6 @@
+ #ifndef _LINUX_SCHED_H
+ #define _LINUX_SCHED_H
+
+-#include <linux/auxvec.h> /* For AT_VECTOR_SIZE */
+
+ /*
+ * cloning flags:
+@@ -90,6 +89,11 @@ struct exec_domain;
+ struct futex_pi_state;
+ struct bio;
+
++#include <linux/auxvec.h>
++#ifndef AT_VECTOR_SIZE_ARCH
++#define AT_VECTOR_SIZE_ARCH 0
++#endif
++#define AT_VECTOR_SIZE (2*(AT_VECTOR_SIZE_ARCH + AT_VECTOR_SIZE_BASE + 1))
+ /*
+ * List of flags we want to share for kernel threads,
+ * if only because they are not used by them anyway.
++++++ patches.kernel.org.tar.bz2 ++++++
++++++ patches.rpmify.tar.bz2 ++++++
++++++ patches.rt.tar.bz2 ++++++
++++++ patches.suse.tar.bz2 ++++++
++++++ patches.uml.tar.bz2 ++++++
++++++ patches.xen.tar.bz2 ++++++
++++++ series.conf ++++++
--- kernel-source/series.conf 2007-09-18 07:23:50.000000000 +0200
+++ /mounts/work_src_done/STABLE/kernel-source/series.conf 2007-09-20 19:19:55.000000000 +0200
@@ -106,8 +106,7 @@
########################################################
# powerpc/generic
########################################################
- # Disable for now as it breaks boot on x86-64 at least
- # patches.fixes/aux-at_vector_size.patch
+ patches.fixes/aux-at_vector_size.patch
patches.arch/ppc-pegasos-keyboard-8042-check.patch
patches.arch/ppc-dma_mask.patch
patches.arch/ppc-vio-modalias.patch
@@ -874,3 +873,4 @@
# IB Fixes for RT
+RT patches.rt/user_mad-preempt_rt-workaround.patch
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package kiwi
checked in at Fri Sep 21 15:59:42 CEST 2007.
--------
--- arch/i386/kiwi/kiwi.changes 2007-09-20 17:41:21.000000000 +0200
+++ /mounts/work_src_done/STABLE/kiwi/kiwi.changes 2007-09-21 15:46:03.217655000 +0200
@@ -1,0 +2,7 @@
+Fri Sep 21 09:42:27 CEST 2007 - ms(a)suse.de
+
+- pass allong $@ to init process (#327037)
+- fixed remote download of pattern files (#327096)
+- added updateMTAB function for all linuxrc's (#326386)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kiwi.spec ++++++
--- /var/tmp/diff_new_pack.TDU846/_old 2007-09-21 15:58:12.000000000 +0200
+++ /var/tmp/diff_new_pack.TDU846/_new 2007-09-21 15:58:12.000000000 +0200
@@ -16,7 +16,7 @@
Requires: perl perl-XML-LibXML perl-libwww-perl screen coreutils
Summary: OpenSuSE - KIWI Image System
Version: 1.64
-Release: 16
+Release: 18
Group: System/Management
License: GPL v2 or later
Source: kiwi.tar.bz2
@@ -326,6 +326,10 @@
%doc %{_datadir}/kiwi/image/oemboot/README
%{_datadir}/kiwi/image/oemboot/suse*
%changelog
+* Fri Sep 21 2007 - ms(a)suse.de
+- pass allong $@ to init process (#327037)
+- fixed remote download of pattern files (#327096)
+- added updateMTAB function for all linuxrc's (#326386)
* Thu Sep 20 2007 - ms(a)suse.de
- fixed usage of basename and dirname by using File::Basename and
in scripts use /usr/bin/[basename|dirname] so a function can't
++++++ kiwi.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/modules/KIWILinuxRC.sh new/kiwi/modules/KIWILinuxRC.sh
--- old/kiwi/modules/KIWILinuxRC.sh 2007-09-19 18:46:00.000000000 +0200
+++ new/kiwi/modules/KIWILinuxRC.sh 2007-09-21 14:31:27.000000000 +0200
@@ -434,6 +434,21 @@
done
}
#======================================
+# updateMTAB
+#--------------------------------------
+function updateMTAB {
+ prefix=$1
+ umount=0
+ if [ ! -e /proc/mounts ];then
+ mount -t proc proc /proc
+ umount=1
+ fi
+ cat /proc/mounts > $prefix/etc/mtab
+ if [ $umount = 1 ];then
+ umount /proc
+ fi
+}
+#======================================
# probeNetworkCard
#--------------------------------------
function probeNetworkCard {
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/modules/KIWIPattern.pm new/kiwi/modules/KIWIPattern.pm
--- old/kiwi/modules/KIWIPattern.pm 2007-09-18 14:05:36.000000000 +0200
+++ new/kiwi/modules/KIWIPattern.pm 2007-09-21 15:41:33.000000000 +0200
@@ -190,31 +190,44 @@
my $title = $response -> title ();
$content = $response -> content ();
if ((! defined $title) || ($title =~ /not found/i)) {
- return undef;
+ $location = $publics_url."/suse/setup/descr";
+ $request = HTTP::Request->new (GET => $location);
+ $response = $browser -> request ( $request );
+ $title = $response -> title ();
+ $content = $response -> content ();
+ if ((! defined $title) || ($title =~ /not found/i)) {
+ return undef;
+ }
}
my $pzip = 0;
if ($content !~ /\"($pattern-.*$arch\.pat)\"/) {
if ($content !~ /\"($pattern-.*$arch\.pat\.gz)\"/) {
return undef;
} else {
+ $location = $location."/".$1;
$pzip = 1;
}
+ } else {
+ $location = $location."/".$1;
}
- $location = $location."/".$1;
$request = HTTP::Request->new (GET => $location);
$response = $browser -> request ( $request );
$content = $response -> content ();
if ($pzip) {
my $tmpdir = qx ( mktemp -q -d /tmp/kiwipattern.XXXXXX );
+ chomp $tmpdir;
my $result = $? >> 8;
if ($result != 0) {
return undef;
}
if (! open (FD,">$tmpdir/pattern")) {
+ rmdir ($tmpdir);
return undef;
}
print FD $content; close FD;
if (! open (FD,"cat $tmpdir/pattern | gzip -cd|")) {
+ unlink ($tmpdir."/pattern");
+ rmdir ($tmpdir);
return undef;
}
local $/; $content .= <FD>; close FD;
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision 2007-09-20 17:41:06.000000000 +0200
+++ new/kiwi/.revision 2007-09-21 15:45:41.000000000 +0200
@@ -1 +1 @@
-634
\ No newline at end of file
+638
\ No newline at end of file
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/isoboot/suse-linuxrc new/kiwi/system/boot/isoboot/suse-linuxrc
--- old/kiwi/system/boot/isoboot/suse-linuxrc 2007-07-23 17:58:39.000000000 +0200
+++ new/kiwi/system/boot/isoboot/suse-linuxrc 2007-09-21 15:16:50.000000000 +0200
@@ -318,9 +318,10 @@
echo " "
echo "Booting into Live CD System..."
echo "------------------------------"
+export IFS=$IFS_ORIG
mount -n -o remount,rw / &>/dev/null
if [ $PIVOT = "true" ];then
exec umount -n -l /mnt
else
- exec chroot . /sbin/init
+ exec chroot . /sbin/init $@
fi
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/isoboot/suse-preinit new/kiwi/system/boot/isoboot/suse-preinit
--- old/kiwi/system/boot/isoboot/suse-preinit 2007-03-21 16:34:03.000000000 +0100
+++ new/kiwi/system/boot/isoboot/suse-preinit 2007-09-21 14:31:26.000000000 +0200
@@ -20,5 +20,6 @@
. /include
#======================================
-# nothing to do here for isoboot
+# 1) update mount table
#--------------------------------------
+updateMTAB
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/netboot/suse-linuxrc new/kiwi/system/boot/netboot/suse-linuxrc
--- old/kiwi/system/boot/netboot/suse-linuxrc 2007-09-17 10:51:12.000000000 +0200
+++ new/kiwi/system/boot/netboot/suse-linuxrc 2007-09-21 15:16:50.000000000 +0200
@@ -863,9 +863,10 @@
echo " "
echo "Booting into final System..."
echo "----------------------------"
+export IFS=$IFS_ORIG
mount -n -o remount,rw / 2>/dev/null
if [ $PIVOT = "true" ];then
exec umount -n -l /mnt
else
- exec chroot . /sbin/init
+ exec chroot . /sbin/init $@
fi
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/netboot/suse-preinit new/kiwi/system/boot/netboot/suse-preinit
--- old/kiwi/system/boot/netboot/suse-preinit 2007-05-21 14:41:51.000000000 +0200
+++ new/kiwi/system/boot/netboot/suse-preinit 2007-09-21 14:31:25.000000000 +0200
@@ -27,7 +27,12 @@
fi
#======================================
-# 2) create initrd on diskful
+# 2) update mount table
+#--------------------------------------
+updateMTAB
+
+#======================================
+# 3) create initrd on diskful
#--------------------------------------
if test -z $KIWI_INITRD;then
if test ! -z $DISK;then
@@ -48,7 +53,7 @@
fi
#======================================
-# 3) Install boot loader on diskful
+# 4) Install boot loader on diskful
#--------------------------------------
if test ! -z $DISK;then
if test $systemIntegrity = "clean";then
@@ -64,7 +69,7 @@
fi
#======================================
-# 4) Reset systemIntegrity
+# 5) Reset systemIntegrity
#--------------------------------------
if test ! -z $DISK;then
if test ! -z $RELOAD_CONFIG;then
@@ -73,7 +78,7 @@
fi
#======================================
-# 5) check for valid mount points
+# 6) check for valid mount points
#--------------------------------------
if test ! -z $DISK;then
IFS=":" ; for i in $PART_MOUNT;do
@@ -86,7 +91,7 @@
fi
#======================================
-# 6) Update /etc/ImageVersion files
+# 7) Update /etc/ImageVersion files
#--------------------------------------
if test ! -z $DISK;then
count=0
@@ -112,7 +117,7 @@
fi
#======================================
-# 7) setup network for nfs boot
+# 8) setup network for nfs boot
#--------------------------------------
if test ! -z $NFSROOT;then
mount -o nolock -t proc proc /proc
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/oemboot/suse-linuxrc new/kiwi/system/boot/oemboot/suse-linuxrc
--- old/kiwi/system/boot/oemboot/suse-linuxrc 2007-09-20 16:14:04.000000000 +0200
+++ new/kiwi/system/boot/oemboot/suse-linuxrc 2007-09-21 15:16:49.000000000 +0200
@@ -658,10 +658,11 @@
echo " "
echo "Booting into final System..."
echo "----------------------------"
+export IFS=$IFS_ORIG
mount -n -o remount,rw / 2>/dev/null
if [ $PIVOT = "true" ];then
exec umount -n -l /mnt
else
- exec chroot . /sbin/init
+ exec chroot . /sbin/init $@
fi
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/oemboot/suse-preinit new/kiwi/system/boot/oemboot/suse-preinit
--- old/kiwi/system/boot/oemboot/suse-preinit 2007-09-20 11:57:55.000000000 +0200
+++ new/kiwi/system/boot/oemboot/suse-preinit 2007-09-21 14:31:25.000000000 +0200
@@ -27,6 +27,11 @@
fi
#======================================
+# 2) update mount table
+#--------------------------------------
+updateMTAB
+
+#======================================
# 2) create initrd on diskful
#--------------------------------------
grubOK=1
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/usbboot/suse-linuxrc new/kiwi/system/boot/usbboot/suse-linuxrc
--- old/kiwi/system/boot/usbboot/suse-linuxrc 2007-09-14 15:17:36.000000000 +0200
+++ new/kiwi/system/boot/usbboot/suse-linuxrc 2007-09-21 15:16:50.000000000 +0200
@@ -191,9 +191,10 @@
echo " "
echo "Booting into USB-Stick System..."
echo "--------------------------------"
+export IFS=$IFS_ORIG
mount -n -o remount,rw / &>/dev/null
if [ $PIVOT = "true" ];then
exec umount -n -l /mnt
else
- exec chroot . /sbin/init
+ exec chroot . /sbin/init $@
fi
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/usbboot/suse-preinit new/kiwi/system/boot/usbboot/suse-preinit
--- old/kiwi/system/boot/usbboot/suse-preinit 2007-03-21 16:34:03.000000000 +0100
+++ new/kiwi/system/boot/usbboot/suse-preinit 2007-09-21 14:31:25.000000000 +0200
@@ -20,5 +20,6 @@
. /include
#======================================
-# nothing to do here for usbboot
+# 1) update mount table
#--------------------------------------
+updateMTAB
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/vmxboot/suse-linuxrc new/kiwi/system/boot/vmxboot/suse-linuxrc
--- old/kiwi/system/boot/vmxboot/suse-linuxrc 2007-09-12 13:26:26.000000000 +0200
+++ new/kiwi/system/boot/vmxboot/suse-linuxrc 2007-09-21 15:16:51.000000000 +0200
@@ -287,9 +287,10 @@
echo " "
echo "Booting into final System..."
echo "----------------------------"
+export IFS=$IFS_ORIG
mount -n -o remount,rw / 2>/dev/null
if [ $PIVOT = "true" ];then
exec umount -n -l /mnt
else
- exec chroot . /sbin/init
+ exec chroot . /sbin/init $@
fi
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/vmxboot/suse-preinit new/kiwi/system/boot/vmxboot/suse-preinit
--- old/kiwi/system/boot/vmxboot/suse-preinit 2007-06-14 09:26:09.000000000 +0200
+++ new/kiwi/system/boot/vmxboot/suse-preinit 2007-09-21 14:31:26.000000000 +0200
@@ -20,7 +20,12 @@
. /include
#======================================
-# 1) check for union filesystem
+# 1) update mount table
+#--------------------------------------
+updateMTAB
+
+#======================================
+# 2) check for union filesystem
#--------------------------------------
if [ ! -z "$UNIONFS_CONFIG" ]; then
# /.../
@@ -32,7 +37,7 @@
fi
#======================================
-# 2) create initrd on diskful
+# 3) create initrd on diskful
#--------------------------------------
if test -L /boot/boot;then
mount -t proc proc /proc
@@ -46,7 +51,7 @@
fi
#======================================
-# 3) Install boot loader on diskful
+# 4) Install boot loader on diskful
#--------------------------------------
if test -f "/usr/sbin/grub";then
Echo "Installing boot loader..."
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/xenboot/suse-linuxrc new/kiwi/system/boot/xenboot/suse-linuxrc
--- old/kiwi/system/boot/xenboot/suse-linuxrc 2007-05-21 14:41:51.000000000 +0200
+++ new/kiwi/system/boot/xenboot/suse-linuxrc 2007-09-21 15:16:51.000000000 +0200
@@ -147,9 +147,10 @@
echo " "
echo "Booting into Xen System..."
echo "--------------------------"
+export IFS=$IFS_ORIG
mount -n -o remount,rw / &>/dev/null
if [ $PIVOT = "true" ];then
exec umount -n -l /mnt
else
- exec chroot . /sbin/init
+ exec chroot . /sbin/init $@
fi
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/system/boot/xenboot/suse-preinit new/kiwi/system/boot/xenboot/suse-preinit
--- old/kiwi/system/boot/xenboot/suse-preinit 2007-03-21 16:34:03.000000000 +0100
+++ new/kiwi/system/boot/xenboot/suse-preinit 2007-09-21 14:31:26.000000000 +0200
@@ -20,5 +20,6 @@
. /include
#======================================
-# nothing to do here for xenboot
+# 1) update mount table
#--------------------------------------
+updateMTAB
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package gnome-panel
checked in at Fri Sep 21 15:58:04 CEST 2007.
--------
--- GNOME/gnome-panel/gnome-panel.changes 2007-09-18 16:48:17.000000000 +0200
+++ /mounts/work_src_done/STABLE/gnome-panel/gnome-panel.changes 2007-09-20 17:02:15.790088000 +0200
@@ -1,0 +2,14 @@
+Thu Sep 20 16:34:50 CEST 2007 - maw(a)suse.de
+
+- Revert to 2.20.0
+- Add gnome-panel-2.20.0-logout-icon-name.patch, taken from
+ 2.20.0.1.
+
+-------------------------------------------------------------------
+Thu Sep 20 03:25:13 CEST 2007 - maw(a)suse.de
+
+- Update to version 2.20.0.1:
+ + Revert usage if new icon name for logout, which breaks some
+ icon themes.
+
+-------------------------------------------------------------------
New:
----
gnome-panel-2.20.0-logout-icon-name.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-panel.spec ++++++
--- /var/tmp/diff_new_pack.W32254/_old 2007-09-21 15:57:51.000000000 +0200
+++ /var/tmp/diff_new_pack.W32254/_new 2007-09-21 15:57:51.000000000 +0200
@@ -15,7 +15,7 @@
License: LGPL v2 or later
Group: System/GUI/GNOME
Version: 2.20.0
-Release: 1
+Release: 3
Summary: The GNOME 2.x Desktop Panel
Source: ftp://ftp.gnome.org/pub/gnome/sources/gnome-panel/2.20/%{name}-%{version}.t…
Url: http://www.gnome.org
@@ -58,6 +58,8 @@
Patch53: gnome-panel-204645-variable-init.patch
Patch55: gnome-panel-202076-root-launchers.patch
Patch56: gnome-panel-recently-used-apps.patch
+# This patch will go away when we update to post 2.20.0
+Patch80: gnome-panel-2.20.0-logout-icon-name.patch
Obsoletes: gnome-core gnome-panel-nld
%gconf_schemas_prereq
@@ -255,6 +257,7 @@
# %patch53
%patch55
%patch56 -p1
+%patch80 -p1
# this is for the gnome-panel-corners.patch
# which has been temporarily removed for reworking
#cd icons
@@ -397,8 +400,15 @@
%files doc
%defattr (-, root, root)
%{_datadir}/gtk-doc/html/*
-
%changelog
+* Thu Sep 20 2007 - maw(a)suse.de
+- Revert to 2.20.0
+- Add gnome-panel-2.20.0-logout-icon-name.patch, taken from
+ 2.20.0.1.
+* Thu Sep 20 2007 - maw(a)suse.de
+- Update to version 2.20.0.1:
+ + Revert usage if new icon name for logout, which breaks some
+ icon themes.
* Tue Sep 18 2007 - sbrabec(a)suse.cz
- Updated to version 2.20.0:
* Panel: Show drawers on same monitor as the panels they're
++++++ gnome-panel-2.20.0-logout-icon-name.patch ++++++
--- gnome-panel-2.20.0/gnome-panel/panel-icon-names.h 2007-09-17 21:13:47.000000000 +0200
+++ gnome-panel-2.20.0.1/gnome-panel/panel-icon-names.h 2007-09-18 15:56:51.000000000 +0200
@@ -12,7 +12,7 @@
#define PANEL_ICON_HOME "user-home"
#define PANEL_ICON_LAUNCHER "gnome-panel-launcher"
#define PANEL_ICON_LOCKSCREEN "system-lock-screen"
-#define PANEL_ICON_LOGOUT "system-log-out"
+#define PANEL_ICON_LOGOUT "gnome-logout"
#define PANEL_ICON_MAIN_MENU "start-here"
#define PANEL_ICON_NETWORK "network-workgroup"
#define PANEL_ICON_NETWORK_SERVER "network-server"
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package bash
checked in at Fri Sep 21 15:57:42 CEST 2007.
--------
--- bash/bash.changes 2007-08-27 01:30:11.000000000 +0200
+++ /mounts/work_src_done/STABLE/bash/bash.changes 2007-09-20 15:11:36.951295000 +0200
@@ -1,0 +2,5 @@
+Thu Sep 20 15:10:06 CEST 2007 - werner(a)suse.de
+
+- Remove error triggering path requirement (bug #326751)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ bash.spec ++++++
--- /var/tmp/diff_new_pack.D31431/_old 2007-09-21 15:57:34.000000000 +0200
+++ /var/tmp/diff_new_pack.D31431/_new 2007-09-21 15:57:34.000000000 +0200
@@ -16,14 +16,12 @@
Group: System/Shells
%define bash_vers 3.2
%define rl_vers 5.2
-Requires: /%{_lib}/libhistory.so.%{rl_vers}
-Requires: /%{_lib}/libreadline.so.%{rl_vers}
Recommends: bash-doc = %bash_vers
-Autoreqprov: on
+AutoReqProv: on
Version: 3.2
-Release: 54
+Release: 59
Summary: The GNU Bourne-Again Shell
-URL: http://www.gnu.org/software/bash/bash.html
+Url: http://www.gnu.org/software/bash/bash.html
Source0: bash-%{bash_vers}.tar.bz2
Source1: readline-%{rl_vers}.tar.bz2
Source2: bash-%{bash_vers}-patches.tar.bz2
@@ -68,8 +66,8 @@
Group: Documentation/Man
Provides: bash:/usr/share/info/bash.info.gz
Version: 3.2
-Release: 13
-Autoreqprov: on
+Release: 18
+AutoReqProv: on
%description -n bash-doc
This package contains the documentation for using the bourne shell
@@ -87,11 +85,11 @@
Group: System/Libraries
Provides: bash:/%{_lib}/libreadline.so.5
Version: 5.2
-Release: 13
+Release: 18
Recommends: readline-doc = %{version}
Provides: readline = 5.2
Obsoletes: readline <= 5.2
-Autoreqprov: on
+AutoReqProv: on
%description -n libreadline5
The readline library is used by the Bourne Again Shell (bash, the
@@ -110,13 +108,13 @@
Group: Development/Libraries/C and C++
Provides: bash:/usr/%{_lib}/libreadline.a
Version: 5.2
-Release: 54
+Release: 59
Requires: libreadline5 = %{version}
Requires: ncurses-devel
Requires: /%{_lib}/libhistory.so.%{rl_vers}
Requires: /%{_lib}/libreadline.so.%{rl_vers}
Recommends: readline-doc = %{version}
-Autoreqprov: on
+AutoReqProv: on
%description -n readline-devel
This package contains all necessary include files and libraries needed
@@ -134,8 +132,8 @@
Group: System/Libraries
Provides: readline:/usr/share/info/readline.info.gz
Version: 5.2
-Release: 13
-Autoreqprov: on
+Release: 18
+AutoReqProv: on
%description -n readline-doc
This package contains the documentation for using the readline library
@@ -394,8 +392,9 @@
%doc %{_infodir}/history.info.gz
%doc %{_infodir}/readline.info.gz
%doc %{_defaultdocdir}/readline/
-
%changelog
+* Thu Sep 20 2007 - werner(a)suse.de
+- Remove error triggering path requirement (bug #326751)
* Mon Aug 27 2007 - schwab(a)suse.de
- Add bash patches 18-25.
* Sat Aug 11 2007 - schwab(a)suse.de
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package yast2-network
checked in at Fri Sep 21 15:57:22 CEST 2007.
--------
--- yast2-network/yast2-network.changes 2007-09-20 18:49:42.000000000 +0200
+++ /mounts/work_src_done/STABLE/yast2-network/yast2-network.changes 2007-09-21 12:32:52.559470000 +0200
@@ -1,0 +2,8 @@
+Fri Sep 21 12:22:00 CEST 2007 - kmachalkova(a)suse.cz
+
+- Correct manual adding of network devices and assigning firewall
+ zones (pass 'eth1' 'wlan0' string instead of 'eth-eth1' or
+ 'wlan-wlan0') (partly #308763)
+- 2.15.79
+
+-------------------------------------------------------------------
Old:
----
yast2-network-2.15.78.tar.bz2
New:
----
yast2-network-2.15.79.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-network.spec ++++++
--- /var/tmp/diff_new_pack.D20131/_old 2007-09-21 15:54:26.000000000 +0200
+++ /var/tmp/diff_new_pack.D20131/_new 2007-09-21 15:54:26.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-network (Version 2.15.78)
+# spec file for package yast2-network (Version 2.15.79)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
# norootforbuild
Name: yast2-network
-Version: 2.15.78
+Version: 2.15.79
Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-network-2.15.78.tar.bz2
+Source0: yast2-network-2.15.79.tar.bz2
Prefix: /usr
# should be required by devtools
BuildRequires: perl-XML-Writer pkgconfig rpm
@@ -44,12 +44,12 @@
Summary: YaST2 - Network Configuration
%package devel-doc
-Version: 2.15.78
+Version: 2.15.79
Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-network-2.15.78.tar.bz2
+Source0: yast2-network-2.15.79.tar.bz2
Prefix: /usr
Requires: yast2-network >= 2.15.53
Summary: YaST2 - Developer documentation for yast2-network
@@ -73,7 +73,7 @@
Michal Svec <msvec(a)suse.cz>
%prep
-%setup -n yast2-network-2.15.78
+%setup -n yast2-network-2.15.79
%build
%{prefix}/bin/y2tool y2autoconf
@@ -139,6 +139,11 @@
%exclude %{prefix}/share/doc/packages/yast2-network/COPYRIGHT.english
%exclude %{prefix}/share/doc/packages/yast2-network/README
%changelog
+* Fri Sep 21 2007 - kmachalkova(a)suse.cz
+- Correct manual adding of network devices and assigning firewall
+ zones (pass 'eth1' 'wlan0' string instead of 'eth-eth1' or
+ 'wlan-wlan0') (partly #308763)
+- 2.15.79
* Thu Sep 20 2007 - kmachalkova(a)suse.cz
- Always add '127.0.0.2 host.site host' line into /etc/hosts (if
'Write hostname to /etc/hosts' is enabled) to make hostname
++++++ yast2-network-2.15.78.tar.bz2 -> yast2-network-2.15.79.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-network-2.15.78/src/lan/address.ycp new/yast2-network-2.15.79/src/lan/address.ycp
--- old/yast2-network-2.15.78/src/lan/address.ycp 2007-09-20 18:47:38.000000000 +0200
+++ new/yast2-network-2.15.79/src/lan/address.ycp 2007-09-21 12:26:06.000000000 +0200
@@ -4,7 +4,7 @@
* Summary: Network card adresss configuration dialogs
* Authors: Michal Svec <msvec(a)suse.cz>
*
- * $Id: address.ycp 40916 2007-09-14 12:10:37Z kmachalkova $
+ * $Id: address.ycp 41017 2007-09-21 10:26:05Z kmachalkova $
*/
{
@@ -328,7 +328,7 @@
* @param event the event being handled
* @return whether valid
*/
-boolean ValidateDialog (string key, map event) {
+boolean ValidateBootproto (string key, map event) {
if (UI::QueryWidget(`bootproto, `CurrentButton) == `static)
{
string ipa = (string) UI::QueryWidget (`ipaddr, `Value);
@@ -520,6 +520,8 @@
"init": initBootProto,
"handle": handleBootProto,
"store": storeBootProto,
+ "validate_type" : `function,
+ "validate_function" : ValidateBootproto,
],
"REMOTEIP": $[
"widget": `textentry,
@@ -617,7 +619,6 @@
"IFCFGID": LanItems::device,
];
-
string drvtype = DriverType (settings["IFCFGTYPE"]:"");
boolean is_ptp = drvtype == "ctc" || drvtype == "iucv";
@@ -788,8 +789,6 @@
map functions = $[
"init" : InitAddrWidget,
- "validate_type": `function,
- "validate_function": ValidateDialog,
"store" : StoreAddrWidget,
`abort : LanItems::Rollback,
];
@@ -876,9 +875,7 @@
if (ret != `back && ret != `abort)
{
- string ifcfgname = NetworkDevices::device_name (
- settings["IFCFGTYPE"]:"",
- settings["IFCFGID"]:"");
+ string ifcfgname = settings["IFCFGID"]:"";
// general tab
LanItems::startmode = settings["STARTMODE"]:"";
@@ -903,7 +900,6 @@
if (LanItems::bootproto == "static") // #104494
{
boolean ip_changed = ( LanItems::ipaddr != settings["IPADDR"]:"" );
- y2milestone("jezkovy voci %1 %2", LanItems::ipaddr, settings["IPADDR"]:"");
if (ip_changed)
{
Host::hosts[LanItems::ipaddr] = [];
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-network-2.15.78/VERSION new/yast2-network-2.15.79/VERSION
--- old/yast2-network-2.15.78/VERSION 2007-09-20 18:43:15.000000000 +0200
+++ new/yast2-network-2.15.79/VERSION 2007-09-21 12:25:08.000000000 +0200
@@ -1 +1 @@
-2.15.78
+2.15.79
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package xorg-x11-driver-input
checked in at Fri Sep 21 15:54:18 CEST 2007.
--------
--- xorg-x11-driver-input/xorg-x11-driver-input.changes 2007-09-11 11:59:32.000000000 +0200
+++ /mounts/work_src_done/STABLE/xorg-x11-driver-input/xorg-x11-driver-input.changes 2007-09-21 00:01:38.658283000 +0200
@@ -1,0 +2,6 @@
+Fri Sep 21 00:03:57 CEST 2007 - sndirsch(a)suse.de
+
+- xf86-input-calcomp.diff
+ * out of bounds warning (Bug #326967)
+
+-------------------------------------------------------------------
New:
----
xf86-input-calcomp.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xorg-x11-driver-input.spec ++++++
--- /var/tmp/diff_new_pack.p18334/_old 2007-09-21 15:54:04.000000000 +0200
+++ /var/tmp/diff_new_pack.p18334/_new 2007-09-21 15:54:04.000000000 +0200
@@ -15,7 +15,7 @@
BuildRequires: Mesa-devel pkgconfig xorg-x11-proto-devel xorg-x11-server-sdk
Url: http://xorg.freedesktop.org/
Version: 7.2
-Release: 103
+Release: 108
License: X11/MIT
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Group: System/X11/Servers/XF86_4
@@ -58,7 +58,7 @@
Patch7: xf86-input-fpit-update1.diff
Patch8: xf86-input-fpit-update2.diff
Patch9: xf86-input-fpit-update3.diff
-
+Patch10: xf86-input-calcomp.diff
%description
This package contains X.Org input drivers.
@@ -93,6 +93,9 @@
# disabled for now; see Bug #250146
#%patch9 -p1
popd
+pushd xf86-input-calcomp-*
+%patch10
+popd
%build
%ifarch %ix86 x86_64
@@ -130,8 +133,10 @@
%defattr(-,root,root)
/usr/%{_lib}/xorg/modules/input/
%{_mandir}/man4/*
-
%changelog
+* Fri Sep 21 2007 - sndirsch(a)suse.de
+- xf86-input-calcomp.diff
+ * out of bounds warning (Bug #326967)
* Tue Sep 11 2007 - sndirsch(a)suse.de
- xf86-input-elo2300 1.1.1
* Compatibility release for inputproto 1.4
++++++ xf86-input-calcomp.diff ++++++
--- src/xf86Calcomp.h.orig 2007-09-21 00:01:03.353750000 +0200
+++ src/xf86Calcomp.h 2007-09-21 00:01:18.617456000 +0200
@@ -35,7 +35,7 @@
* Definitions
* structs, typedefs, #defines, enums
*****************************************************************************/
-#define CALCOMP_PACKET_SIZE 5
+#define CALCOMP_PACKET_SIZE 6
#define CALCOMP_INIT_CHECKSUM 0
#define CALCOMP_BODY_LEN 6
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package t1lib
checked in at Fri Sep 21 15:53:56 CEST 2007.
--------
--- t1lib/t1lib.changes 2007-08-08 18:36:33.000000000 +0200
+++ /mounts/work_src_done/STABLE/t1lib/t1lib.changes 2007-09-20 19:15:22.000000000 +0200
@@ -1,0 +2,5 @@
+Thu Sep 20 19:14:37 CEST 2007 - crrodriguez(a)suse.de
+
+- fix Bug 326687 - VUL-0: t1lib buffer overflow triggerable from PHP scripts.
+
+-------------------------------------------------------------------
New:
----
t1lib-5.1.1-bof.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ t1lib.spec ++++++
--- /var/tmp/diff_new_pack.r17521/_old 2007-09-21 15:53:38.000000000 +0200
+++ /var/tmp/diff_new_pack.r17521/_new 2007-09-21 15:53:38.000000000 +0200
@@ -14,13 +14,14 @@
BuildRequires: xorg-x11-devel
License: LGPL v2 or later
Group: System/Libraries
-Autoreqprov: on
+AutoReqProv: on
Version: 5.1.1
-Release: 1
-URL: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/
+Release: 13
+Url: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/
Source: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/%{name}-%{version}.tar.bz2
Patch0: t1lib-auto.patch
Patch2: bugzilla-240159-array-subscript-out-of-bounds.patch
+Patch3: t1lib-5.1.1-bof.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: Adobe Type 1 Font Rasterizing Library
@@ -56,6 +57,7 @@
%setup -q -n t1lib-%{version}
%patch0 -p1 -b .auto
%patch2 -p1
+%patch3
%build
autoreconf -fi
@@ -92,8 +94,9 @@
%{_libdir}/libt1*.so
%{_includedir}/t1lib*.h
%exclude %{_libdir}/*.la
-
%changelog
+* Thu Sep 20 2007 - crrodriguez(a)suse.de
+- fix Bug 326687 - VUL-0: t1lib buffer overflow triggerable from PHP scripts.
* Wed Aug 08 2007 - crrodriguez(a)suse.de
- update to version 5.1.1 (latest released on 2006)
- in general this fixes Bugzilla [#298301].
++++++ t1lib-5.1.1-bof.patch ++++++
Index: lib/t1lib/t1env.c
===================================================================
--- lib/t1lib/t1env.c.orig 2005-05-18 05:08:27.000000000 +0200
+++ lib/t1lib/t1env.c 2007-09-20 19:04:50.000000000 +0200
@@ -611,6 +611,12 @@ char *intT1_Env_GetCompletePath( char *F
#endif
strcat( pathbuf, DIRECTORY_SEP);
/* And finally the filename: */
+ /* If current pathbuf + StrippedName + 1 byte for NULL is bigger than pathbuf let's try next pathbuf */
+ if(strlen(pathbuf) + strlen(StrippedName) + 1 > sizeof(pathbuf) ) {
+ i++;
+ continue;
+ }
+
strcat( pathbuf, StrippedName);
/* Check for existence of the path: */
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package OpenOffice_org
checked in at Fri Sep 21 15:53:30 CEST 2007.
--------
--- arch/i386/OpenOffice_org/OpenOffice_org.changes 2007-09-13 12:08:48.000000000 +0200
+++ /mounts/work_src_done/STABLE/OpenOffice_org/OpenOffice_org.changes 2007-09-21 13:38:36.000000000 +0200
@@ -1,0 +2,5 @@
+Fri Sep 21 13:22:29 CEST 2007 - pmladek(a)suse.cz
+
+- milestone oog680-m5 has been marked OOo-2.3 final
+
+-------------------------------------------------------------------
--- arch/i386/OpenOffice_org/OpenOffice_org-i18n.changes 2007-09-13 12:09:02.000000000 +0200
+++ /mounts/work_src_done/STABLE/OpenOffice_org/OpenOffice_org-i18n.changes 2007-09-21 13:26:10.000000000 +0200
@@ -1,0 +2,5 @@
+Fri Sep 21 13:25:52 CEST 2007 - pmladek(a)suse.cz
+
+- milestone oog680-m5 has been marked OOo-2.3 final
+
+-------------------------------------------------------------------
Old:
----
minmem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ OpenOffice_org-i18n.spec ++++++
--- /var/tmp/diff_new_pack.B12072/_old 2007-09-21 15:52:04.000000000 +0200
+++ /var/tmp/diff_new_pack.B12072/_new 2007-09-21 15:52:04.000000000 +0200
@@ -85,7 +85,7 @@
License: GPL v2 or later, LGPL v2 or later, The non-standard licenses from /usr/lib/ooo-2.0/THIRDPARTYLICENSEREADME.html:
Group: Productivity/Office/Suite
Version: 2.3.0.1.2
-Release: 1
+Release: 2
AutoReqProv: on
Summary: A Source Package for OpenOffice.org Localizations
Url: http://www.openoffice.org/
@@ -1692,8 +1692,9 @@
%files -f %ooo_build_dir/icon_themes_list.txt -n OpenOffice_org-icon-themes
%defattr(-,root,root)
-
%changelog
+* Fri Sep 21 2007 - pmladek(a)suse.cz
+- milestone oog680-m5 has been marked OOo-2.3 final
* Thu Sep 13 2007 - pmladek(a)suse.cz
- updated to milestone oog680-m5 (OOo-2.3.rc3)
- updated ooo-build to 2.3.0.1.2
++++++ OpenOffice_org.spec ++++++
--- /var/tmp/diff_new_pack.B12072/_old 2007-09-21 15:52:04.000000000 +0200
+++ /var/tmp/diff_new_pack.B12072/_new 2007-09-21 15:52:04.000000000 +0200
@@ -126,7 +126,7 @@
License: Artistic License, BSD 3-Clause, The non-standard licenses from /usr/lib/ooo-2.0/THIRDPARTYLICENSEREADME.html:
Group: Productivity/Office/Suite
Version: 2.3.0.1.2
-Release: 1
+Release: 6
AutoReqProv: on
PreReq: coreutils /usr/bin/update-mime-database
PreReq: %{?suseconfig_fonts_prereq:%suseconfig_fonts_prereq}
@@ -1054,8 +1054,9 @@
%dir %ooo_prefix/%ooo_home/devel
%ooo_prefix/%ooo_home/devel/*
%{_prefix}/bin/dmake
-
%changelog
+* Fri Sep 21 2007 - pmladek(a)suse.cz
+- milestone oog680-m5 has been marked OOo-2.3 final
* Thu Sep 13 2007 - pmladek(a)suse.cz
- updated to milestone oog680-m5 (OOo-2.3.rc3) [n#309238]
- updated ooo-build to 2.3.0.1.2:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0