-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
readme: update for R64, R2Pro and R3
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# U-boot for BPI-R2/R64/R3 | ||
|
||
 | ||
|
||
BPI-R2Pro is not supported due to internal changes in U-boot and no Open-Source-ATF. | ||
Last working Version is in Branch 2022-04-bpi | ||
|
||
## Requirements | ||
|
||
On x86/x64-host you need cross compile tools for the armhf architecture: | ||
```sh | ||
sudo apt-get install gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu libc6-armhf-cross u-boot-tools make gcc swig python-dev | ||
``` | ||
|
||
## Issues | ||
- loadenv fails because of resized environment (4096 => 8188) | ||
- backup your saved environment before update uboot or | ||
change back CONFIG_ENV_SIZE to SZ_4K (./build.sh soc) | ||
- erase your saved environment | ||
|
||
``` | ||
env erase | ||
``` | ||
|
||
- no emmc-command (not needed "emmc pconf 0x48" = "mmc partconf 0 1 1 0") | ||
|
||
## Usage | ||
|
||
```sh | ||
#edit build.conf to select bpi-r64/bpi-r3 if needed | ||
./build.sh importconfig | ||
./build.sh config #optional (menuconfig) | ||
./build.sh | ||
./build.sh install #write to sd-card | ||
./build.sh umount #umount automatic mounted partitions | ||
``` |