Difference between revisions of "Rock/U-Boot"
< Rock
(→Build) |
|||
Line 4: | Line 4: | ||
The source code of U-Boot for Rockchip is [https://groups.google.com/d/msg/radxa/B85j7OOjcwI/dWMPD_ybzm8J available], but more work needs to be done to make it usable for Radxa Rock. | The source code of U-Boot for Rockchip is [https://groups.google.com/d/msg/radxa/B85j7OOjcwI/dWMPD_ybzm8J available], but more work needs to be done to make it usable for Radxa Rock. | ||
+ | |||
+ | == Features == | ||
+ | |||
+ | * both common fastboot USB protocol and Rockchip proprietary USB protocol are supported (Rockchip USB tools will work) | ||
+ | * format of partitions (images) are compatible to Rockchip proprietary bootloader (rkcrc, mkbootimg will work) | ||
+ | * (need more investigation...) | ||
== Build == | == Build == | ||
Line 25: | Line 31: | ||
read [[rock/unbrick | Unbrick Rock]] | read [[rock/unbrick | Unbrick Rock]] | ||
+ | |||
+ | == Other U-Boot based products == | ||
+ | |||
+ | * [http://www.asus.com/Tablets_Mobile/ASUS_MeMO_Pad_8_ME180A/ ASUS MeMO Pad 8 (ME180A)] | ||
+ | * [http://www.asus.com/Tablets_Mobile/ASUS_MeMO_Pad_10_ME102A/ ASUS MeMO PAD 10 (ME102A)] | ||
== External links == | == External links == | ||
* https://github.com/neo-technologies/rockchip_u-boot | * https://github.com/neo-technologies/rockchip_u-boot | ||
+ | * http://androtab.info/memopad/fastboot/ |
Revision as of 00:42, 1 April 2014
U-Boot
The source code of U-Boot for Rockchip is available, but more work needs to be done to make it usable for Radxa Rock.
Features
- both common fastboot USB protocol and Rockchip proprietary USB protocol are supported (Rockchip USB tools will work)
- format of partitions (images) are compatible to Rockchip proprietary bootloader (rkcrc, mkbootimg will work)
- (need more investigation...)
Build
git clone -b rockchip https://github.com/neo-technologies/rockchip_u-boot.git cd rockchip_u-boot
Check out the configuration files and edit them to suit your needs:
include/configs/rk30xx.h board/rockchip/common/armlinux/config.h board/rockchip/common/platform/rk30/paltConfig.h
Build the bootloader:
make rk30xx
RK3188Loader_uboot.bin will be created. DON'T FLASH IT.
Unbrick
read Unbrick Rock