Skip to content

Commit

Permalink
Fix odroid-m1/m1s SPL layout
Browse files Browse the repository at this point in the history
  • Loading branch information
sairon committed Jun 5, 2024
1 parent 6a510f7 commit 7952df2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,15 @@ partition spl {
image = "spl.img"
in-partition-table = "no"
offset = 0
holes = {"(0; 17k)"}
holes = {"(0; 17k)", "(8M; 16M)"}
}

partition uboot {
size = 8M
offset = 8M
# FIXME: hdd-image intended to use the following, but the next one
# is in the img because of the _fix_disk_spl_gpt function
# partition-type-uuid = "21686148-6449-6e6f-744e-656564454649"
partition-type-uuid = "e3c9e316-0b5c-4db8-817d-f92df00215ae"
# no image here - already contains data from spl.img
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,15 @@ partition spl {
image = "spl.img"
in-partition-table = "no"
offset = 0
holes = {"(0; 17k)"}
holes = {"(0; 17k)", "(8M; 16M)"}
}

partition uboot {
size = 8M
offset = 8M
# FIXME: hdd-image intended to use the following, but the next one
# is in the img because of the _fix_disk_spl_gpt function
# partition-type-uuid = "21686148-6449-6e6f-744e-656564454649"
partition-type-uuid = "e3c9e316-0b5c-4db8-817d-f92df00215ae"
# no image here - already contains data from spl.img
}

0 comments on commit 7952df2

Please sign in to comment.