diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-02-08 12:35:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-02-08 12:35:32 +0000 |
commit | ab294eca81319f221e74fd750907c91b481aafcc (patch) | |
tree | 4b6479e95b07e29b64117ec441a7583ef22ccb9b | |
parent | 963cf717b7e7eeb958959427a80d94c45aaf5537 (diff) | |
download | drakx-ab294eca81319f221e74fd750907c91b481aafcc.tar drakx-ab294eca81319f221e74fd750907c91b481aafcc.tar.gz drakx-ab294eca81319f221e74fd750907c91b481aafcc.tar.bz2 drakx-ab294eca81319f221e74fd750907c91b481aafcc.tar.xz drakx-ab294eca81319f221e74fd750907c91b481aafcc.zip |
detect iso9660 filesystem
-rw-r--r-- | perl-install/fs/type.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 974eaf36a..70779f85d 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -263,6 +263,7 @@ my @partitions_signatures = ( [ 'FAT32', 0x1FE, "\x55\xAA", 0x52, "FAT32" ], if_(arch() !~ /^sparc/, [ 'FAT16', 0x1FE, "\x55\xAA", 0x36, "FAT" ], + [ 'iso9660', 0x8001, "CD001" ], ), ); |