diff options
| author | Alexander Gendin <[email protected]> | 2023-10-09 01:24:36 +0000 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-10-24 17:05:24 -0400 |
| commit | 04291ee0aba6d731bd66bcae5080e126d6c0411b (patch) | |
| tree | ecc87083ddf3df1f18d455bc45aef2e839762a2e /disk/part_dos.c | |
| parent | 9859edd3fc10ffb63f53e1d21aa6eb34b688f6da (diff) | |
cmd: mbr: Allow 4 MBR partitions without need for extended
Current code allows up to 3 MBR partitions without extended one.
If more than 3 partitions are required, then extended partition(s)
must be used.
This commit allows up to 4 primary MBR partitions without the
need for extended partition.
Add mbr test unit. In order to run the test manually, mmc6.img file
of size 12 MiB or greater is required in the same directory as u-boot.
Test also runs automatically via ./test/py/test.py tool.
Running mbr test is only supported in sandbox mode.
Signed-off-by: Alex Gendin <[email protected]>
[ And due to some further changes for testing ]
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'disk/part_dos.c')
| -rw-r--r-- | disk/part_dos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disk/part_dos.c b/disk/part_dos.c index 33374384373..567ead7511d 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -466,7 +466,7 @@ int layout_mbr_partitions(struct disk_partition *p, int count, ext = &p[i]; } - if (count < 4) + if (count <= 4) return 0; if (!ext) { |
