- SDK for ARM
- Use proven sources and configurations
- Create SD images for various boards: Cubieboard, BananaPi, Cubox, Humminboard, Olimex, ...
- Well documented, maintained & easy to use
- Boot loaders and kernel images are compiled and cached.
#!/bin/bash
#
# Edit and execute this script - Ubuntu 14.04 x86/64 recommended
#
# numbers
SDSIZE="1200" # SD image size in MB
REVISION="1.3" # image release version
# method
SOURCE_COMPILE="yes" # force source compilation: yes / no
KERNEL_CONFIGURE="no" # want to change my default configuration
KERNEL_CLEAN="yes" # run MAKE clean before kernel compilation
USEALLCORES="yes" # Use all CPU cores for compiling
# user
DEST_LANG="en_US.UTF-8" # sl_SI.UTF-8, en_US.UTF-8
TZDATA="Europe/Ljubljana" # Timezone
ROOTPWD="1234" # Must be changed @first login
MAINTAINER="Igor Pecovnik" # deb signature
MAINTAINERMAIL="igor.pecovnik@****l.com" # deb signature
# advanced
FBTFT="yes" # https://github.com/notro/fbtft
EXTERNAL="yes" # compile extra drivers`
#---------------------------------------------------------------------------------------
# source is where we start the script
SRC=$(pwd)
# destination
DEST=$(pwd)/output
# get updates of the main build libraries
if [ -d "$SRC/lib" ]; then
cd $SRC/lib
git pull
else
# download SDK
git clone https://github.com/igorpecovnik/lib
fi
source $SRC/lib/main.sh
#---------------------------------------------------------------------------------------