-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[board] 100ask ros r818 board support syter boot
- Loading branch information
1 parent
fec1a58
commit 6db9b5b
Showing
11 changed files
with
1,767 additions
and
1,490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule payloads
updated
from a4822f to b6f2ed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
*.bin | ||
*.img | ||
*.img | ||
*.vfat | ||
*.txt | ||
*.zip | ||
Image | ||
zImage | ||
*.dtb | ||
*.7z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
image boot.vfat { | ||
vfat { | ||
files = { | ||
"Image", | ||
"sunxi.dtb", | ||
"config.txt", | ||
"bl31.bin" | ||
} | ||
} | ||
size = 32M | ||
} | ||
|
||
image 100ask-ros-sdcard.img { | ||
hdimage {} | ||
|
||
partition boot0 { | ||
in-partition-table = "no" | ||
image = "syter_boot_bin_card.bin" | ||
offset = 8K | ||
} | ||
|
||
partition boot0-gpt { | ||
in-partition-table = "no" | ||
image = "syter_boot_bin_card.bin" | ||
offset = 128K | ||
} | ||
|
||
partition kernel { | ||
partition-type = 0xC | ||
bootable = "true" | ||
image = "boot.vfat" | ||
} | ||
|
||
partition rootfs { | ||
partition-type = 0x83 | ||
image = "rootfs.img" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters