Mailinglist Archive: opensuse-commit (918 mails)

< Previous Next >
commit installation-images
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Fri, 23 Feb 2007 12:39:01 +0100
  • Message-id: <20070223113901.93261678185@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package installation-images
checked in at Fri Feb 23 12:39:01 CET 2007.

--------
--- installation-images/installation-images.changes 2007-02-14 16:19:10.000000000 +0100
+++ /mounts/work_src_done/STABLE/installation-images/installation-images.changes 2007-02-22 14:56:56.000000000 +0100
@@ -1,0 +2,8 @@
+Thu Feb 22 14:56:51 CET 2007 - snwint@xxxxxxx
+
+- fixed bug in splash config
+- create_interface: extract OSA MAC address from install.inf (#184438)
+- added new xen modules
+- don't autoload scsi/ide base modules (udev does it for us)
+
+-------------------------------------------------------------------

Old:
----
installation-images-9.52.tar.bz2

New:
----
installation-images-9.53.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ installation-images.spec ++++++
--- /var/tmp/diff_new_pack.K31606/_old 2007-02-23 12:38:39.000000000 +0100
+++ /var/tmp/diff_new_pack.K31606/_new 2007-02-23 12:38:39.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package installation-images (Version 9.52)
+# spec file for package installation-images (Version 9.53)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -65,9 +65,9 @@
Obsoletes: y2image
Autoreqprov: off
Summary: Installation Image Files
-Version: 9.52
+Version: 9.53
Release: 1
-Source: installation-images-9.52.tar.bz2
+Source: installation-images-9.53.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%define _binary_payload w.ufdio

@@ -321,7 +321,12 @@
/SuSE
/CD1

-%changelog -n installation-images
+%changelog
+* Thu Feb 22 2007 - snwint@xxxxxxx
+- fixed bug in splash config
+- create_interface: extract OSA MAC address from install.inf (#184438)
+- added new xen modules
+- don't autoload scsi/ide base modules (udev does it for us)
* Wed Feb 14 2007 - snwint@xxxxxxx
- add qla3xxx and netxen for ppc
- added ext4 modules


++++++ installation-images-9.52.tar.bz2 -> installation-images-9.53.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/installation-images-9.52/Changelog new/installation-images-9.53/Changelog
--- old/installation-images-9.52/Changelog 2007-02-14 16:18:38.000000000 +0100
+++ new/installation-images-9.53/Changelog 2007-02-22 14:53:29.000000000 +0100
@@ -1,3 +1,9 @@
+22/2/2007: v9.53
+ - fixed bug in splash config
+ - create_interface: extract OSA MAC address from install.inf (#184438)
+ - added new xen modules
+ - don't autoload scsi/ide base modules (udev does it for us)
+
14/2/2007: v9.52
- add qla3xxx and netxen for ppc
- added ext4 modules
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/installation-images-9.52/data/initrd/initrd_base.file_list new/installation-images-9.53/data/initrd/initrd_base.file_list
--- old/installation-images-9.52/data/initrd/initrd_base.file_list 2007-02-05 13:02:33.000000000 +0100
+++ new/installation-images-9.53/data/initrd/initrd_base.file_list 2007-02-15 14:38:49.000000000 +0100
@@ -378,9 +378,9 @@
bootsplash:
/sbin/splash

- d /etc/bootsplash/themes/<theme>
- e cp -a /<theme>/animations etc/bootsplash/themes/<theme>
- e cp -a /<theme>/images etc/bootsplash/themes/<theme>
+ d /etc/bootsplash/themes/<splash_theme>
+ e cp -a /<theme>/animations etc/bootsplash/themes/<splash_theme>
+ e cp -a /<theme>/images etc/bootsplash/themes/<splash_theme>

# wlan
ipw-firmware:
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/installation-images-9.52/data/root/etc/create_interface new/installation-images-9.53/data/root/etc/create_interface
--- old/installation-images-9.52/data/root/etc/create_interface 2006-06-21 11:54:22.000000000 +0200
+++ new/installation-images-9.53/data/root/etc/create_interface 2007-02-15 18:47:04.000000000 +0100
@@ -7,7 +7,7 @@
# Martin Vidner <mvidner@xxxxxxx>
# Ihno Krumreich <ihno@xxxxxxx>
#
-# $Id: create_interface 1833 2006-06-21 09:53:47Z snwint $
+# $Id: create_interface 2062 2007-02-15 17:47:13Z snwint $

ROOT=$1
INSTALLINF=/etc/install.inf
@@ -64,7 +64,11 @@
: hwcfg $myhwcfg
HARDWAREFILE=${HARDWAREDIR}$myhwcfg

- if [ ! -f ${HARDWAREFILE} ] ; then
+ LLADDR=$(grep OSAHWAddr $INSTALLINF|cut -d':' -f2-|cut -d' ' -f2)
+ QETH_LAYER2_SUPPORT=0
+ [ -z "$LLADDR" ] || QETH_LAYER2_SUPPORT=1
+
+ if [ ! -f ${HARDWAREFILE} ] ; then
# Here save Aliases and Options for $NETDEV
MODULE=`grep "Alias: $NETDEV" $INSTALLINF | uniq | sed -e "s/Alias: $NETDEV \\(.*\\)/\\1/"`
MODULE_OPTIONS=`grep "Options: $NETDEV" $INSTALLINF | uniq | sed -e "s/Options: $NETDEV \\(.*\\)/\\1/"`
@@ -72,7 +76,6 @@
echo "MODULE='$MODULE'" >> $HARDWAREFILE
echo "MODULE_OPTIONS='$MODULE_OPTIONS'" >> $HARDWAREFILE
fi
-
#
# Create interface file
#
@@ -103,6 +106,9 @@
fi
echo "BOOTPROTO=\"$BOOTPROTO\"" > $DEVICEFILE

+ # [ -z "$LLADDR" ] || ( echo "QETH_LAYER2_SUPPORT='$QETH_LAYER2_SUPPORT'" >> $DEVICEFILE )
+ [ -z "$LLADDR" ] || ( echo "LLADDR=\"$LLADDR\"" >> $DEVICEFILE )
+
# Include UNIQUE number (#25739)
UNIQUE=`grep "^NetUniqueID:" $INSTALLINF | uniq | sed -e 's/NetUniqueID: \\(.*\\)/\\1/'`
echo "UNIQUE=\"$UNIQUE\"" >> $DEVICEFILE
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/installation-images-9.52/data/root/root.file_list new/installation-images-9.53/data/root/root.file_list
--- old/installation-images-9.52/data/root/root.file_list 2007-02-05 14:24:43.000000000 +0100
+++ new/installation-images-9.53/data/root/root.file_list 2007-02-22 14:55:54.000000000 +0100
@@ -348,6 +348,9 @@
/var
s /usr/lib/YaST2/startup/YaST2.First-Stage /sbin/yast
r /usr/lib/YaST2/bin/yast2
+
+# yast2-add-on:
+# /
yast2-bootloader:
/
yast2-core:
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/installation-images-9.52/etc/module.config new/installation-images-9.53/etc/module.config
--- old/installation-images-9.52/etc/module.config 2007-02-14 15:18:53.000000000 +0100
+++ new/installation-images-9.53/etc/module.config 2007-02-22 14:29:27.000000000 +0100
@@ -110,6 +110,17 @@
sworks-agp,-,-
uninorth-agp,-,-
via-agp,-,-
+xenbus,-,-
+xen-platform-pci,-,-
+cdrom,"-Uniform CD-ROM driver interface",-,,,1
+scsi_mod,"Generic Mid-Level SCSI Driver"
+sd_mod,"SCSI Disk Driver"
+sr_mod,"SCSI CD-ROM driver",-,,,1
+-sg,"-Generic SCSI interface",-
+ide-core,,-
+ide-cd,"ATAPI CD-ROM Driver",,,,1
+ide-disk,"ATA Disk Driver",,,,1
+floppy,"Floppy driver",-


; acpi
@@ -166,15 +177,6 @@
isofs,ISOFS,-
cramfs,CRAMFS,-
nfs,NFS Client,-
-cdrom,"-Uniform CD-ROM driver interface",-,,,1
-scsi_mod,"Generic Mid-Level SCSI Driver"
-sd_mod,"SCSI Disk Driver"
-sr_mod,"SCSI CD-ROM driver",-,,,1
--sg,"-Generic SCSI interface",-
-ide-core,,-
-ide-cd,"ATAPI CD-ROM Driver",,,,1
-ide-disk,"ATA Disk Driver",,,,1
-floppy,"Floppy driver",-
psmouse,"PS/2 Mouse",-
loop,,-
processor,,-
@@ -361,6 +363,7 @@
ide-floppy,"ATAPI floppy driver",,,,,0
i2o_core,,,,,,0
i2o_config,,,,,,0
+xen-vbd,"Xen Blockdevice Driver",,,,1
mptbase
libsas
scsi_wait_scan
@@ -480,6 +483,7 @@
xircom_tulip_cb,"Xircom CardBus Card (old driver)"
crc-ccitt,"CRC-CCITT calculations",-
libphy,-,-
+xen-vnif,"Xen Network"


[WLAN]
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/installation-images-9.52/lib/ReadConfig.pm new/installation-images-9.53/lib/ReadConfig.pm
--- old/installation-images-9.52/lib/ReadConfig.pm 2006-11-17 12:23:43.000000000 +0100
+++ new/installation-images-9.53/lib/ReadConfig.pm 2007-02-15 14:38:48.000000000 +0100
@@ -694,7 +694,7 @@
}

$yast_theme = $ConfigData{ini}{"Theme $theme"}{yast};
- $splash_theme = $ConfigData{ini}{"Theme $theme"}{splash};
+ $splash_theme = $ConfigData{ini}{"Theme $theme"}{ksplash};
$product_name = $ConfigData{ini}{"Theme $theme"}{product};
my $full_product_name = $product_name;
$full_product_name .= (" " . $ConfigData{ini}{"Theme $theme"}{version}) if $ConfigData{ini}{"Theme $theme"}{version};
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/installation-images-9.52/VERSION new/installation-images-9.53/VERSION
--- old/installation-images-9.52/VERSION 2007-02-14 15:35:29.000000000 +0100
+++ new/installation-images-9.53/VERSION 2007-02-15 14:39:27.000000000 +0100
@@ -1 +1 @@
-9.52
+9.53



++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread