Home
last modified time | relevance | path

Searched refs:partition (Results 1 – 25 of 385) sorted by relevance

12345678910>>...16

/openbmc/u-boot/disk/
H A DKconfig14 - CONFIG_MAC_PARTITION Apple's MacOS partition table.
15 - CONFIG_DOS_PARTITION MS Dos partition table, traditional on the
17 - CONFIG_ISO_PARTITION ISO partition table, used on CDROM etc.
18 - CONFIG_EFI_PARTITION GPT partition table, common when EFI is the
19 bootloader. Note 2TB partition limit; see
21 - CONFIG_MTD_PARTITIONS Memory Technology Device partition table.
23 you must configure support for at least one non-MTD partition type
27 bool "Enable Apple's MacOS partition table"
34 bool "Enable Apple's MacOS partition table for SPL"
39 bool "Enable MS Dos partition table"
[all …]
/openbmc/u-boot/arch/arm/dts/
H A Dzynqmp-mini-nand.dts54 partition@0 { /* for testing purpose */
58 partition@1 { /* for testing purpose */
62 partition@2 { /* for testing purpose */
66 partition@3 { /* for testing purpose */
70 partition@4 { /* for testing purpose */
74 partition@5 { /* for testing purpose */
78 partition@6 { /* for testing purpose */
82 partition@7 { /* for testing purpose */
86 partition@8 { /* for testing purpose */
90 partition@9 { /* for testing purpose */
[all …]
H A Dzynqmp-zc1751-xm016-dc2.dts123 partition@0 { /* for testing purpose */
127 partition@1 { /* for testing purpose */
131 partition@2 { /* for testing purpose */
135 partition@3 { /* for testing purpose */
139 partition@4 { /* for testing purpose */
143 partition@5 { /* for testing purpose */
148 partition@6 { /* for testing purpose */
152 partition@7 { /* for testing purpose */
156 partition@8 { /* for testing purpose */
160 partition@9 { /* for testing purpose */
[all …]
H A Dkeystone-k2g-ice.dts54 partition@0 {
58 partition@1 {
62 partition@2 {
66 partition@3 {
70 partition@4 {
74 partition@5 {
78 partition@6 {
H A Dzynqmp-zc1751-xm017-dc3.dts119 partition@0 { /* for testing purpose */
123 partition@1 { /* for testing purpose */
127 partition@2 { /* for testing purpose */
131 partition@3 { /* for testing purpose */
135 partition@4 { /* for testing purpose */
139 partition@5 { /* for testing purpose */
144 partition@6 { /* for testing purpose */
148 partition@7 { /* for testing purpose */
152 partition@8 { /* for testing purpose */
156 partition@9 { /* for testing purpose */
[all …]
H A Dkeystone-k2g-evm.dts83 partition@0 {
89 partition@1 {
113 partition@0 {
117 partition@1 {
121 partition@2 {
125 partition@3 {
129 partition@4 {
133 partition@5 {
H A Ddra7-evm-common.dtsi144 /* MTD partition table.
149 partition@0 {
153 partition@1 {
157 partition@2 {
161 partition@3 {
165 partition@4 {
169 partition@5 {
173 partition@6 {
177 partition@7 {
181 partition@8 {
[all …]
/openbmc/openbmc/poky/documentation/ref-manual/
H A Dkickstart.rst13 partitioning commands: ``partition`` (or ``part`` for short) and
29 Command: part or partition
32 Either of these commands creates a partition on the system and uses the
36 partition [mntpoint]
39 provide mntpoint, Wic creates a partition but does not mount it.
41 The ``mntpoint`` is where the partition is mounted and must be in one of
46 - ``swap``: The created partition is used as swap space
48 Specifying a mntpoint causes the partition to automatically be mounted.
52 ``--use-uuid`` partition options as part of the command.
62 ``--ondisk`` to force the partition onto the ``sdb`` disk::
[all …]
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/trusted-firmware-m/files/corstone1000/
H A D0012-Platform-CS1000-Increase-BL2-partition-size.patch4 Subject: [PATCH] Platform: CS1000: Increase BL2 partition size
7 patch increases the BL2 partition size to enable secure debug feature
8 on Corstone-1000. The TF-M partition size has to be decreased for this.
18 .../arm/corstone1000/partition/flash_layout.h | 4 ++--
64 …--new=3:48:+4K --typecode=3:$FWU_METADATA_TYPE_UUID --partition-guid=3:$(uuidgen) --change-name=3:…
65 …--new=4:56:+4K --typecode=4:$PRIVATE_METADATA_TYPE_UUID --partition-guid=4:$(uuidgen) --change-nam…
66 …--new=5:64:+4k --typecode=5:$PRIVATE_METADATA_TYPE_UUID --partition-guid=5:$(uuidgen) --change-nam…
67 - --new=6:72:+100k --typecode=6:$SE_BL2_TYPE_UUID --partition-guid=6:$(uuidgen) --change-nam…
68 - --new=7:272:+368K --typecode=7:$TFM_TYPE_UUID --partition-guid=7:$(uuidgen) --change-name=…
69 - --new=8:32784:+100k --typecode=8:$SE_BL2_TYPE_UUID --partition-guid=8:$(uuidgen) --change-…
[all …]
H A D0011-Platform-CS1000-Fix-Bank-offsets.patch14 .../ext/target/arm/corstone1000/partition/flash_layout.h | 6 ++----
17 … a/platform/ext/target/arm/corstone1000/partition/flash_layout.h b/platform/ext/target/arm/corston…
19 --- a/platform/ext/target/arm/corstone1000/partition/flash_layout.h
20 +++ b/platform/ext/target/arm/corstone1000/partition/flash_layout.h
/openbmc/u-boot/common/spl/
H A Dspl_fat.c21 static int spl_register_fat_device(struct blk_desc *block_dev, int partition) in spl_register_fat_device() argument
28 err = fat_register_device(block_dev, partition); in spl_register_fat_device()
56 struct blk_desc *block_dev, int partition, in spl_load_image_fat() argument
62 err = spl_register_fat_device(block_dev, partition); in spl_load_image_fat()
115 struct blk_desc *block_dev, int partition) in spl_load_image_fat_os() argument
120 err = spl_register_fat_device(block_dev, partition); in spl_load_image_fat_os()
136 partition, file); in spl_load_image_fat_os()
161 return spl_load_image_fat(spl_image, block_dev, partition, in spl_load_image_fat_os()
166 struct blk_desc *block_dev, int partition) in spl_load_image_fat_os() argument
H A Dspl_ext.c11 struct blk_desc *block_dev, int partition, in spl_load_image_ext() argument
21 if (part_get_info(block_dev, partition, &part_info)) { in spl_load_image_ext()
67 struct blk_desc *block_dev, int partition) in spl_load_image_ext_os() argument
74 if (part_get_info(block_dev, partition, &part_info)) { in spl_load_image_ext_os()
105 partition, file); in spl_load_image_ext_os()
135 return spl_load_image_ext(spl_image, block_dev, partition, in spl_load_image_ext_os()
140 struct blk_desc *block_dev, int partition) in spl_load_image_ext_os() argument
/openbmc/u-boot/doc/
H A DREADME.gpt19 This document describes the GPT partition table format and usage of
32 For instance, GUID of Basic data partition: EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
80 Its first partition entry ID has 0xEE value, and disk software, which is not
83 It is possible to define 128 linearly placed partition entries.
100 40 8 B First usable LBA for partitions (primary partition table last
102 48 8 B Last usable LBA (secondary partition table first LBA - 1)
105 80 4 B Number of partition entries
106 84 4 B Size of a partition entry (usually 128)
107 88 4 B CRC32 of partition array
115 GPT headers and partition entries are protected by CRC32 (the POSIX CRC32).
[all …]
/openbmc/phosphor-mboxd/vpnor/
H A Dpnor_partition.cpp39 auto dst = fs::path(ctx->paths.patch_loc) / partition.data.name; in getPartitionFilePath()
45 switch (partition.data.user.data[1] & in getPartitionFilePath()
59 dst /= partition.data.name; in getPartitionFilePath()
68 dst = fs::path(ctx->paths.ro_loc) / partition.data.name; in getPartitionFilePath()
74 auto src = fs::path(ctx->paths.ro_loc) / partition.data.name; in getPartitionFilePath()
78 partition.data.name, dst.c_str(), src.c_str()); in getPartitionFilePath()
81 if (partition.data.user.data[1] & PARTITION_PRESERVED) in getPartitionFilePath()
86 dst /= partition.data.name; in getPartitionFilePath()
95 size_t partSize = partition.data.size << ctx->block_size_shift; in clamp()
H A Dpnor_partition.hpp38 ctx(ctx), partition(ctx->vpnor->table->partition(offset)), in Request()
39 base(partition.data.base << ctx->block_size_shift), in Request()
64 << std::hex << (partition.data.size << ctx->block_size_shift); in write()
133 const pnor_partition& partition; member in openpower::virtual_pnor::Request
/openbmc/u-boot/fs/
H A Dfs_internal.c13 int fs_devread(struct blk_desc *blk, disk_partition_t *partition, in fs_devread() argument
27 >= partition->size) { in fs_devread()
42 if (blk_dread(blk, partition->start + sector, 1, in fs_devread()
65 blk_dread(blk, partition->start + sector, 1, in fs_devread()
71 if (blk_dread(blk, partition->start + sector, in fs_devread()
84 if (blk_dread(blk, partition->start + sector, 1, in fs_devread()
/openbmc/hiomapd/vpnor/
H A Dpartition.cpp45 auto dst = fs::path(priv->paths.patch_loc) / partition.data.name; in getPartitionFilePath()
52 dst = fs::path(priv->paths.rw_loc) / partition.data.name; in getPartitionFilePath()
58 switch (partition.data.user.data[1] & in getPartitionFilePath()
72 dst /= partition.data.name; in getPartitionFilePath()
81 dst = fs::path(priv->paths.ro_loc) / partition.data.name; in getPartitionFilePath()
87 auto src = fs::path(priv->paths.ro_loc) / partition.data.name; in getPartitionFilePath()
91 partition.data.name, dst.c_str(), src.c_str()); in getPartitionFilePath()
94 if (partition.data.user.data[1] & PARTITION_PRESERVED) in getPartitionFilePath()
99 dst /= partition.data.name; in getPartitionFilePath()
109 size_t partSize = partition.data.size << backend->block_size_shift; in clamp()
[all …]
H A Dpartition.hpp40 backend(backend), partition(((struct vpnor_data*)backend->priv) in Request()
41 ->vpnor->table->partition(offset)), in Request()
42 base(partition.data.base << backend->block_size_shift), in Request()
94 const pnor_partition& partition; member in openpower::virtual_pnor::Request
/openbmc/u-boot/arch/xtensa/dts/
H A Dxtfpga-flash-128m.dtsi10 partition@0x0 {
14 partition@0x6000000 {
18 partition@0x6800000 {
22 partition@0x7fe0000 {
H A Dxtfpga-flash-16m.dtsi10 partition@0x0 {
14 partition@0x400000 {
18 partition@0xa00000 {
22 partition@0xfe0000 {
/openbmc/openbmc-test-automation/openpower/ext_interfaces/
H A Dtest_savearea_management.robot34 ${content-1} Sample Content to test partition file upload
35 ... Sample Content to test partition file upload
36 ... Sample Content to test partition file upload
37 ${content-2} Sample Content to test partition file upload after reboot
38 ... Sample Content to test partition file upload after reboot
39 ... Sample Content to test partition file upload after reboot
46 [Documentation] Upload lower limit of allowed partition file to BMC using Redfish.
55 [Documentation] Upload partition file to BMC using Redfish.
67 [Documentation] Fail to upload partition file to BMC with file size
68 ... below the lower limit of allowed partition file size using Redfish.
[all …]
/openbmc/openbmc/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivet/
H A D0011-invoking-dd-with-infinite-timeout.patch13 blivet/devices/partition.py | 2 +-
16 diff --git a/blivet/devices/partition.py b/blivet/devices/partition.py
18 --- a/blivet/devices/partition.py
19 +++ b/blivet/devices/partition.py
/openbmc/openpower-pnor-code-mgmt/
H A Dgenerate-tar200 pflash --partition=part --read="${pnor_dir}"/part -F "${pnorfile}"
201 pflash --partition=VERSION --read="${pnor_dir}"/VERSION -F "${pnorfile}"
251 for partition in "${partitions[@]}"; do
252 echo "Reading ${partition}..."
253 pflash --partition="${partition}" \
254 --read="${pnor_dir}"/"${partition}" \
/openbmc/u-boot/lib/libavb/
H A Davb_ops.h110 const char* partition,
132 const char* partition,
154 const char* partition,
226 const char* partition,
237 const char* partition,
/openbmc/openbmc/poky/meta/recipes-core/initscripts/initscripts-1.0/
H A Dread-only-rootfs-hook.sh20 [ "$flag" = "FOUND" ] && partition="read-write"
21 [ "$flag" = "ro" ] && { partition="read-only"; break; }
23 if [ "$dir" = "/" -o -n "$partition" ]; then
30 [ "$partition" = "read-only" ] && echo "yes" || echo "no"

12345678910>>...16