[yast-commit] r49543 - in /trunk/storage: VERSION package/yast2-storage.changes storage/src/modules/Partitions.ycp
Author: aschnell Date: Thu Jul 31 15:30:18 2008 New Revision: 49543 URL: http://svn.opensuse.org/viewcvs/yast?rev=49543&view=rev Log: - recognise NetBSD partitions (bnc #412244) Modified: trunk/storage/VERSION trunk/storage/package/yast2-storage.changes trunk/storage/storage/src/modules/Partitions.ycp Modified: trunk/storage/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/VERSION?rev=49543&r1=49542&r2=49543&view=diff ============================================================================== --- trunk/storage/VERSION (original) +++ trunk/storage/VERSION Thu Jul 31 15:30:18 2008 @@ -1 +1 @@ -2.17.6 +2.17.7 Modified: trunk/storage/package/yast2-storage.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/package/yast2-storage.changes?rev=49543&r1=49542&r2=49543&view=diff ============================================================================== --- trunk/storage/package/yast2-storage.changes (original) +++ trunk/storage/package/yast2-storage.changes Thu Jul 31 15:30:18 2008 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Jul 31 15:29:12 CEST 2008 - aschnell@suse.de + +- recognise NetBSD partitions (bnc #412244) +- version 2.17.7 + +------------------------------------------------------------------- Wed Jul 30 09:57:59 CEST 2008 - aschnell@suse.de - fixed segmentation fault (bnc #405129) Modified: trunk/storage/storage/src/modules/Partitions.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/modules/Partitions.ycp?rev=49543&r1=49542&r2=49543&view=diff ============================================================================== --- trunk/storage/storage/src/modules/Partitions.ycp (original) +++ trunk/storage/storage/src/modules/Partitions.ycp Thu Jul 31 15:30:18 2008 @@ -37,6 +37,7 @@ global integer fsid_gpt_msftres = 0x105; global integer fsid_freebsd = 0xa5; global integer fsid_openbsd = 0xa6; + global integer fsid_netbsd = 0xa9; global integer fsid_beos = 0xeb; global integer fsid_solaris = 0xbf; global integer fsid_root = fsid_native; @@ -658,6 +659,7 @@ if ( fs_id == 0xa0) return( "Hibernation"); if ( fs_id == 0xa5) return( "FreeBSD"); if ( fs_id == 0xa6) return( "OpenBSD"); + if ( fs_id == 0xa9) return( "NetBSD"); if ( fs_id == 0x102) return( "Apple_HFS"); if ( fs_id == 0x103) return( "EFI boot"); if ( fs_id == 0x104) return( "Service"); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
aschnell@svn.opensuse.org