| d7ea4d4d | 09-Apr-2013 |
Egbert Eich <eich@suse.com> |
disk/iso: Add Support for block sizes > 512 byte to ISO partition support
For ISO we check the block size of the device if this is != the CD sector size we assume that the device has no ISO partitio
disk/iso: Add Support for block sizes > 512 byte to ISO partition support
For ISO we check the block size of the device if this is != the CD sector size we assume that the device has no ISO partition.
Signed-off-by: Egbert Eich <eich@suse.com>
show more ...
|
| 40684ddb | 11-Dec-2012 |
Lukasz Majewski <l.majewski@samsung.com> |
gpt: Support for GPT (GUID Partition Table) restoration
The restoration of GPT table (both primary and secondary) is now possible. Function 'gpt_restore' presents example of partition restoration pr
gpt: Support for GPT (GUID Partition Table) restoration
The restoration of GPT table (both primary and secondary) is now possible. Function 'gpt_restore' presents example of partition restoration process.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com> Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
show more ...
|
| fae2bf22 | 11-Dec-2012 |
Chang Hyun Park <heartinpiece@outlook.com> |
gpt: The leXX_to_int() calls replaced with ones defined at <compiler.h>
Custom definitions of le_XX_to_int functions have been replaced with standard ones, defined at <compiler.h>
Replacement of se
gpt: The leXX_to_int() calls replaced with ones defined at <compiler.h>
Custom definitions of le_XX_to_int functions have been replaced with standard ones, defined at <compiler.h>
Replacement of several GPT related structures members with ones indicating its endianness and proper size.
Signed-off-by: Chang Hyun Park <heartinpiece@outlook.com> Signed-off-by: Lukasz Majewski <l.majewski@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
show more ...
|
| 9936be31 | 12-Oct-2012 |
Taylor Hutt <thutt@chromium.org> |
disk: Address cast and format errors
This change addresses a few printf-formatting errors, and a typecast error.
Signed-off-by: Taylor Hutt <thutt@chromium.org> Signed-off-by: Simon Glass <sjg@chro
disk: Address cast and format errors
This change addresses a few printf-formatting errors, and a typecast error.
Signed-off-by: Taylor Hutt <thutt@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| e2e9b378 | 08-Oct-2012 |
Stephen Warren <swarren@nvidia.com> |
disk: part_dos: print partition UUID in partition list
This information may be useful to compare against command "part uuid", or if you want to manually paste the information into the kernel command
disk: part_dos: print partition UUID in partition list
This information may be useful to compare against command "part uuid", or if you want to manually paste the information into the kernel command-line.
Signed-off-by: Stephen Warren <swarren@nvidia.com> [trini: print_one_part / print_part_dos output strings didn't quite match before the changes] Signed-off-by: Tom Rini <trini@ti.com>
show more ...
|
| b4414f4a | 08-Oct-2012 |
Stephen Warren <swarren@nvidia.com> |
disk: part_efi: set bootable flag in partition objects
A partition is considered bootable if it either has the "legacy BIOS bootable" flag set, or if the partition type UUID matches the standard "sy
disk: part_efi: set bootable flag in partition objects
A partition is considered bootable if it either has the "legacy BIOS bootable" flag set, or if the partition type UUID matches the standard "system" type.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
show more ...
|
| 13bf2f55 | 08-Oct-2012 |
Stephen Warren <swarren@nvidia.com> |
disk: part_efi: print raw partition attributes
When printing the EFI partition table, print the raw attributes. Convert struct gpt_entry_attributes to a union to allow raw access.
Signed-off-by: St
disk: part_efi: print raw partition attributes
When printing the EFI partition table, print the raw attributes. Convert struct gpt_entry_attributes to a union to allow raw access.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
show more ...
|
| 1c8346ab | 08-Oct-2012 |
Stephen Warren <swarren@nvidia.com> |
disk: part_efi: add new partition attribute definitions
Add no_block_io_protocol and legacy_bios_bootable attribute definitions. These are sourced from UEFI Spec 2.3, page 105, table 19. Credits to
disk: part_efi: add new partition attribute definitions
Add no_block_io_protocol and legacy_bios_bootable attribute definitions. These are sourced from UEFI Spec 2.3, page 105, table 19. Credits to the libparted source for the specification pointer.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
show more ...
|
| f07cd2c4 | 08-Oct-2012 |
Stephen Warren <swarren@nvidia.com> |
disk: part_efi: print partition UUIDs
When printing the partition table, print the partition type UUID and the individual partition UUID. Do this unconditionally, since partition UUIDs are useful.
disk: part_efi: print partition UUIDs
When printing the partition table, print the partition type UUID and the individual partition UUID. Do this unconditionally, since partition UUIDs are useful.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
show more ...
|
| 788a8c1f | 08-Oct-2012 |
Stephen Warren <swarren@nvidia.com> |
disk: part_efi: re-order partition list printf, change case
The partition name is a long variable-length string. Move it last on the line to ensure consistent layout and that the entries align with
disk: part_efi: re-order partition list printf, change case
The partition name is a long variable-length string. Move it last on the line to ensure consistent layout and that the entries align with the "header" line. Also, surround it in quotes, so if it's empty, it's obvious that something is still being printed.
Also, change the case of the LBA numbers; lower-case looks nicer in my opinion, and will be more consistent with the UUID printing that is added later in this series.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
show more ...
|