Skip to content
Snippets Groups Projects
Commit dc30727d authored by Brian Carrier's avatar Brian Carrier
Browse files

partial fix for 2840345 re: META tag for extended partitions

parent f1de9a71
No related branches found
No related tags found
No related merge requests found
...@@ -98,6 +98,8 @@ to sigfind. ...@@ -98,6 +98,8 @@ to sigfind.
7/21/09: Update: Resolved Feature request 2206331 re: indirect blocks 7/21/09: Update: Resolved Feature request 2206331 re: indirect blocks
in UFS/Ext2. in UFS/Ext2.
8/19/09: Bug Fix: Fixed part of 2840345 where extended DOS partitions
in extended partitions were not marked as Meta.
---------------- VERSION 3.0.1 -------------- ---------------- VERSION 3.0.1 --------------
11/11/08: Bug Fix: Fixed crashing bug in ifind on FAT file system. 11/11/08: Bug Fix: Fixed crashing bug in ifind on FAT file system.
......
...@@ -54,14 +54,18 @@ Lastly, it works on non-Linux systems. ...@@ -54,14 +54,18 @@ Lastly, it works on non-Linux systems.
If none of -a, -A, -m, or -M are given then all volume types will If none of -a, -A, -m, or -M are given then all volume types will
be listed. If any of them are given, then only the types specified be listed. If any of them are given, then only the types specified
on the command line will be listed. Allocated volumes are those on the command line will be listed.
that are listed in a partition table in the volume system. Unallocated
volumes are virtually created by mmls to show you which sectors Allocated volumes are those that are listed in a partition table
have not been allocated to a volume. The metadata volumes overlap in the volume system AND can store data. Unallocated volumes are
the allocated and unallocated volumes and describe where the partition virtually created by mmls to show you which sectors have not been
tables and other metadata structures are located. In some volume allocated to a volume. The metadata volumes overlap the allocated
systems, these structures are in allocated space and in others they and unallocated volumes and describe where the partition tables and
are in unallocated space. They can be hidden with -M. other metadata structures are located. In some volume systems,
these structures are in allocated space and in others they are in
unallocated space. In some volume systems, their location is
explicitly given in the partition tables and in others they are
not.
.SH "EXAMPLES" .SH "EXAMPLES"
To list the partition table of a Windows system using autodetect: To list the partition table of a Windows system using autodetect:
......
...@@ -763,7 +763,7 @@ dos_load_ext_table(TSK_VS_INFO * vs, TSK_DADDR_T sect_cur, ...@@ -763,7 +763,7 @@ dos_load_ext_table(TSK_VS_INFO * vs, TSK_DADDR_T sect_cur,
if (NULL == tsk_vs_part_add(vs, if (NULL == tsk_vs_part_add(vs,
(TSK_DADDR_T) (sect_ext_base + part_start), (TSK_DADDR_T) (sect_ext_base + part_start),
(TSK_DADDR_T) part_size, TSK_VS_PART_FLAG_ALLOC, (TSK_DADDR_T) part_size, TSK_VS_PART_FLAG_META,
dos_get_desc(part->ptype), table, i)) dos_get_desc(part->ptype), table, i))
return 1; return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment