U-Boot bootloader for sysmoBTS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
Alexander Couzens 40032e1b0b
replace old u-boot setlocalversion script with our git describe
8 years ago
release Add v2.1 binary 9 years ago
u-boot replace old u-boot setlocalversion script with our git describe 8 years ago
.gitignore Makefile: move buildroot toolchain to ./buildroot 8 years ago
CHANGELOG Update version to v2.1 release 9 years ago
Makefile add support for jb02v3-skw based on ap2 8 years ago
README.md README: update compile howto to include new buildroot configuration 8 years ago
buildroot.config add buildroot.config: this config can be used to generate a sane crossgcc 8 years ago

README.md

Caraboot

U-Boot for Carambola2 based boards

Build

  1. Build buildroot toolchain (http://buildroot.org)

Download:

git clone git://git.buildroot.net/buildroot
cd buildroot
git checkout 2015.02

Configure:

cd buildroot
cp ../buildroot.config .config
make oldconfig

In Target Options select Target Architecture as MIPS (big endian) and Target Architecture Variant as mips 32r2. In Toolchain select GCC Compiler version as gcc 4.7.x. Save and exit.

Build:

make toolchain
  1. Build Caraboot image

Download:

cd your_work_dir
git clone https://github.com/8devices/Caraboot.git

Configure: Open Caraboot Makefile and change CONFIG_TOOLCHAIN_PREFIX to your buildroot binary path, i.e CONFIG_TOOLCHAIN_PREFIX=your_work_dir/buildroot/output/host/usr/bin/mips-linux-

cd Caraboot
vi/nano/gedit Makefile

Build:

make

The bootloader binary will be saved to bin/carambola2_u-boot.bin file. You can now use this file to upgrade your bootloader on Carambola2 board (http://8devices.com/wiki/carambola:2:gettingstarted:bootloader-upgrade)