Hello community, here is the log from the commit of package yast2-storage checked in at Thu May 3 23:34:42 CEST 2007. -------- --- yast2-storage/yast2-storage.changes 2007-04-26 18:14:17.000000000 +0200 +++ /mounts/work_src_done/STABLE/yast2-storage/yast2-storage.changes 2007-05-03 14:25:53.000000000 +0200 @@ -1,0 +2,7 @@ +Thu May 3 13:28:19 CEST 2007 - fehr@suse.de + +- fix wrong warning about unreadable DASD (#269230) +- enable swap again in filesystem selection (#270857) +- version 2.15.10 + +------------------------------------------------------------------- Old: ---- yast2-storage-2.15.9.tar.bz2 New: ---- yast2-storage-2.15.10.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-storage.spec ++++++ --- /var/tmp/diff_new_pack.tm1268/_old 2007-05-03 23:32:27.000000000 +0200 +++ /var/tmp/diff_new_pack.tm1268/_new 2007-05-03 23:32:27.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2-storage (Version 2.15.9) +# spec file for package yast2-storage (Version 2.15.10) # # 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-storage -Version: 2.15.9 +Version: 2.15.10 Release: 1 License: GNU General Public License (GPL) Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-storage-2.15.9.tar.bz2 +Source0: yast2-storage-2.15.10.tar.bz2 prefix: /usr BuildRequires: blocxx-devel docbook-xsl-stylesheets doxygen evms gcc-c++ libxcrypt-devel libxslt openssl-devel perl-XML-Writer sablot sgml-skel swig update-desktop-files yast2 yast2-core-devel yast2-devtools yast2-installation yast2-perl-bindings yast2-testsuite # Required only in inst-sys @@ -44,7 +44,7 @@ %prep -%setup -n yast2-storage-2.15.9 +%setup -n yast2-storage-2.15.10 %build %{prefix}/bin/y2tool y2autoconf @@ -170,6 +170,10 @@ %doc %{prefix}/share/doc/packages/yast2-storage/config.xml.description %changelog +* Thu May 03 2007 - fehr@suse.de +- fix wrong warning about unreadable DASD (#269230) +- enable swap again in filesystem selection (#270857) +- version 2.15.10 * Thu Apr 26 2007 - fehr@suse.de - fix wrongly selected device during update when LABEL= or UUID= is used fstab for root fs (#268292) ++++++ yast2-storage-2.15.9.tar.bz2 -> yast2-storage-2.15.10.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.15.9/libstorage/src/Dasd.cc new/yast2-storage-2.15.10/libstorage/src/Dasd.cc --- old/yast2-storage-2.15.9/libstorage/src/Dasd.cc 2007-01-18 12:09:55.000000000 +0100 +++ new/yast2-storage-2.15.10/libstorage/src/Dasd.cc 2007-05-03 13:27:36.000000000 +0200 @@ -73,9 +73,10 @@ new_cyl = cyl; new_head = head; new_sector = sector; - y2milestone( "After dasdview Head:%u Sector:%u Cylinder:%lu SizeK:%llu", head, sector, cyl, size_k ); + byte_cyl = head * sector * 512; + y2milestone( "byte_cyl:%lu", byte_cyl ); if( size_k==0 ) { size_k = (head*sector*cyl)/2; diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.15.9/storage/src/include/custom_part_dialogs.ycp new/yast2-storage-2.15.10/storage/src/include/custom_part_dialogs.ycp --- old/yast2-storage-2.15.9/storage/src/include/custom_part_dialogs.ycp 2007-04-02 14:19:59.000000000 +0200 +++ new/yast2-storage-2.15.10/storage/src/include/custom_part_dialogs.ycp 2007-05-03 14:26:23.000000000 +0200 @@ -16,7 +16,7 @@ * ************************************************************* - $Id: custom_part_dialogs.ycp 37253 2007-04-02 12:19:57Z fehr $ + $Id: custom_part_dialogs.ycp 37800 2007-05-03 12:26:22Z fehr $ */ { @@ -848,7 +848,7 @@ list filesystems = [ ]; boolean is_swap = new_val["fsid"]:0 == Partitions::fsid_swap; - y2debug( "new=%1 swap=%2", new_val, is_swap ); + y2debug( "FileSystemsComboBox new=%1 swap=%2", new_val, is_swap ); symbol ufs = new_val["used_fs"]:Partitions::DefaultFs(); foreach( symbol file_system_name, map file_system_map, file_systems, ``{ @@ -863,13 +863,13 @@ fs_sel[file_system_name,"selected"] = file_system_name==ufs; } }); - y2milestone( "fs_sel=%1", fs_sel ); - y2milestone( "DefFs=%1", Partitions::DefaultFs() ); + y2milestone( "FileSystemsComboBox fs_sel=%1", fs_sel ); + y2milestone( "FileSystemsComboBox DefFs=%1", Partitions::DefaultFs() ); if( haskey( fs_sel, Partitions::DefaultFs() ) && size(filter( any k, map e, fs_sel, ``(e["selected"]:false) ))==0 ) { fs_sel[Partitions::DefaultFs(),"selected"] = true; - y2milestone( "fs_sel=%1", fs_sel ); + y2milestone( "FileSystemsComboBox fs_sel=%1", fs_sel ); } foreach( symbol fs_type, map entry, fs_sel, ``{ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.15.9/storage/src/modules/FileSystems.ycp new/yast2-storage-2.15.10/storage/src/modules/FileSystems.ycp --- old/yast2-storage-2.15.9/storage/src/modules/FileSystems.ycp 2007-04-02 14:20:46.000000000 +0200 +++ new/yast2-storage-2.15.10/storage/src/modules/FileSystems.ycp 2007-05-03 14:26:23.000000000 +0200 @@ -7,7 +7,7 @@ * These module contains the supported filesystems and their settings. * * - * $Id: FileSystems.ycp 37254 2007-04-02 12:20:45Z fehr $ + * $Id: FileSystems.ycp 37800 2007-05-03 12:26:22Z fehr $ */ { module "FileSystems"; @@ -787,9 +787,10 @@ map<symbol, any> SwapFileSystems = $[ `swap : - $[ `name : "Swap" , + $[ `name : "Swap", `fsid : Partitions::fsid_swap, - `supports_format : true , + `real_fs : true, + `supports_format : true, `fsid_item : "0x82 Linux swap ", `fstype : "Linux swap", `crypt : true, diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.15.9/VERSION new/yast2-storage-2.15.10/VERSION --- old/yast2-storage-2.15.9/VERSION 2007-04-26 18:14:00.000000000 +0200 +++ new/yast2-storage-2.15.10/VERSION 2007-05-03 14:25:58.000000000 +0200 @@ -1 +1 @@ -2.15.9 +2.15.10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de