2013-12-29 12:01:02 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
# --- Configuration -------------------------------------------------------------
|
|
|
|
VERSION="CTDebian 1.3"
|
|
|
|
DEST_LANG="en_US"
|
|
|
|
DEST_LANGUAGE="en"
|
2013-12-29 13:54:45 +01:00
|
|
|
DEST=/tmp/Cubie
|
2014-01-02 11:33:32 +01:00
|
|
|
DISPLAY=3 # "0:none; 1:lcd; 2:tv; 3:hdmi; 4:vga"
|
|
|
|
# --- End -----------------------------------------------------------------------
|
|
|
|
SRC=$(pwd)
|
|
|
|
set -e
|
2013-12-29 13:57:19 +01:00
|
|
|
|
2013-12-29 12:01:02 +01:00
|
|
|
#Requires root ..
|
2014-01-02 11:33:32 +01:00
|
|
|
if [ "$UID" -ne 0 ]
|
|
|
|
then echo "Please run as root"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
echo "Building Cubietruck-Debian in $DEST from $SRC"
|
|
|
|
sleep 3
|
2013-12-29 12:01:02 +01:00
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# Downloading necessary files
|
|
|
|
#--------------------------------------------------------------------------------
|
2014-01-02 11:33:32 +01:00
|
|
|
echo "------ Downloading necessary files"
|
|
|
|
apt-get -qq -y install binfmt-support bison build-essential ccache debootstrap flex gawk gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf gettext git linux-headers-generic linux-image-generic lvm2 qemu-user-static texinfo texlive u-boot-tools uuid-dev zlib1g-dev unzip libncurses5-dev pkg-config libusb-1.0-0-dev
|
2013-12-29 12:01:02 +01:00
|
|
|
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# Preparing output / destination files
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
echo "------ Fetching files from github"
|
2013-12-29 12:01:02 +01:00
|
|
|
mkdir -p $DEST/output
|
|
|
|
cp output/uEnv.txt $DEST/output
|
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
if [ -d "$DEST/u-boot-sunxi" ]
|
|
|
|
then
|
|
|
|
cd $DEST/u-boot-sunxi ; git pull; cd $SRC
|
|
|
|
else
|
|
|
|
git clone https://github.com/cubieboard/u-boot-sunxi $DEST/u-boot-sunxi # Boot loader
|
|
|
|
fi
|
|
|
|
if [ -d "$DEST/sunxi-tools" ]
|
|
|
|
then
|
|
|
|
cd $DEST/sunxi-tools; git pull; cd $SRC
|
|
|
|
else
|
|
|
|
git clone https://github.com/linux-sunxi/sunxi-tools.git $DEST/sunxi-tools # Allwinner tools
|
|
|
|
fi
|
|
|
|
if [ -d "$DEST/cubie_configs" ]
|
|
|
|
then
|
|
|
|
cd $DEST/cubie_configs; git pull; cd $SRC
|
|
|
|
else
|
|
|
|
git clone https://github.com/cubieboard/cubie_configs $DEST/cubie_configs # Hardware configurations
|
|
|
|
fi
|
|
|
|
if [ -d "$DEST/linux-sunxi" ]
|
|
|
|
then
|
|
|
|
cd $DEST/linux-sunxi; git pull -f; cd $SRC
|
|
|
|
else
|
|
|
|
git clone https://github.com/cubieboard/linux-sunxi/ $DEST/linux-sunxi # Kernel 3.4.61+
|
|
|
|
fi
|
2013-12-29 12:01:02 +01:00
|
|
|
|
2013-12-29 14:14:43 +01:00
|
|
|
# Applying Patch for 2gb memory
|
2014-01-02 11:33:32 +01:00
|
|
|
patch -f $DEST/u-boot-sunxi/include/configs/sunxi-common.h < patch/memory.patch || true
|
2014-01-02 16:13:39 +01:00
|
|
|
# Applying Patch for gpio
|
|
|
|
patch -f $DEST/linux-sunxi/drivers/gpio/gpio-sunxi.c < patch/gpio.patch || true
|
2013-12-29 12:01:02 +01:00
|
|
|
|
|
|
|
#Change Video output ( TODO add a param so the user can choose that ?)
|
2014-01-02 11:33:32 +01:00
|
|
|
sed -e 's/output_type = [0-9]*/output_type = '$DISPLAY'/g' $DEST/cubie_configs/sysconfig/linux/cubietruck.fex > $DEST/cubie_configs/sysconfig/linux/cubietruck-vga.fex
|
2013-12-29 12:01:02 +01:00
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
# Copying Kernel config
|
|
|
|
cp $SRC/config/kernel.config $DEST/linux-sunxi/
|
2013-12-29 12:01:02 +01:00
|
|
|
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# Compiling everything
|
|
|
|
#--------------------------------------------------------------------------------
|
2014-01-02 11:33:32 +01:00
|
|
|
#if false; then
|
|
|
|
echo "------ Compiling kernel boot loaderb"
|
2013-12-29 12:01:02 +01:00
|
|
|
cd $DEST/u-boot-sunxi
|
|
|
|
# boot loader
|
2014-01-02 11:33:32 +01:00
|
|
|
make clean && make -j2 'cubietruck' CROSS_COMPILE=arm-linux-gnueabihf-
|
|
|
|
echo "------ Compiling sunxi tools"
|
|
|
|
cd $DEST/sunxi-tools
|
2013-12-29 12:01:02 +01:00
|
|
|
# sunxi-tools
|
2014-01-02 11:33:32 +01:00
|
|
|
make clean && make fex2bin
|
2013-12-29 12:01:02 +01:00
|
|
|
cp fex2bin /usr/bin/
|
|
|
|
# hardware configuration
|
|
|
|
fex2bin $DEST/cubie_configs/sysconfig/linux/cubietruck-vga.fex $DEST/output/script.bin
|
|
|
|
fex2bin $DEST/cubie_configs/sysconfig/linux/cubietruck.fex $DEST/output/script-hdmi.bin
|
2014-01-02 11:33:32 +01:00
|
|
|
|
2013-12-29 12:01:02 +01:00
|
|
|
# kernel image
|
2014-01-02 11:33:32 +01:00
|
|
|
echo "------ Compiling kernel"
|
|
|
|
cd $DEST/linux-sunxi
|
|
|
|
make clean
|
2013-12-29 12:01:02 +01:00
|
|
|
make -j2 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- sun7i_defconfig
|
|
|
|
# get proven config
|
2014-01-02 11:33:32 +01:00
|
|
|
cp $DEST/linux-sunxi/kernel.config $DEST/linux-sunxi/.config
|
2013-12-29 12:01:02 +01:00
|
|
|
make -j2 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- uImage modules
|
|
|
|
make -j2 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- INSTALL_MOD_PATH=output modules_install
|
2014-01-02 11:33:32 +01:00
|
|
|
#fi
|
2013-12-29 12:01:02 +01:00
|
|
|
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# Creating SD Images
|
|
|
|
#--------------------------------------------------------------------------------
|
2014-01-02 11:33:32 +01:00
|
|
|
echo "------ Creating SD Images"
|
2013-12-29 12:01:02 +01:00
|
|
|
cd $DEST/output
|
|
|
|
# create 1Gb image and mount image to /dev/loop0
|
|
|
|
dd if=/dev/zero of=debian_rootfs.raw bs=1M count=1000
|
2014-01-02 11:33:32 +01:00
|
|
|
umount -l /dev/loop0 || true
|
|
|
|
umount -l /dev/loop1 || true
|
|
|
|
losetup -d /dev/loop0 || true
|
|
|
|
losetup -d /dev/loop1 || true
|
2013-12-29 12:01:02 +01:00
|
|
|
losetup /dev/loop0 debian_rootfs.raw
|
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
echo "------ Partitionning and mounting filesystem"
|
2013-12-29 12:01:02 +01:00
|
|
|
# make image bootable
|
|
|
|
dd if=$DEST/u-boot-sunxi/u-boot-sunxi-with-spl.bin of=/dev/loop0 bs=1024 seek=8
|
|
|
|
|
|
|
|
# create one partition starting at 2048 which is default
|
2014-01-02 11:33:32 +01:00
|
|
|
(echo n; echo p; echo 1; echo; echo; echo w) | fdisk /dev/loop0 >> /dev/null || true
|
2013-12-29 12:01:02 +01:00
|
|
|
# just to make sure
|
|
|
|
partprobe
|
|
|
|
|
|
|
|
# 2048 (start) x 512 (block size) = where to mount partition
|
|
|
|
losetup -o 1048576 /dev/loop1 /dev/loop0
|
|
|
|
# create filesystem
|
|
|
|
mkfs.ext4 /dev/loop1
|
|
|
|
# create mount point and mount image
|
|
|
|
mkdir -p $DEST/output/sdcard/
|
|
|
|
mount /dev/loop1 $DEST/output/sdcard/
|
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
echo "------ Install basic filesystem"
|
2013-12-29 12:01:02 +01:00
|
|
|
# install base system
|
|
|
|
debootstrap --no-check-gpg --arch=armhf --foreign wheezy $DEST/output/sdcard/
|
|
|
|
# we need this
|
|
|
|
cp /usr/bin/qemu-arm-static $DEST/output/sdcard/usr/bin/
|
|
|
|
# second stage
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "/debootstrap/debootstrap --second-stage"
|
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
# update /etc/issue
|
|
|
|
cat <<EOT > $DEST/output/sdcard/etc/issue
|
|
|
|
Debian GNU/Linux 7 $VERSION \n \l
|
|
|
|
EOT
|
|
|
|
|
2013-12-29 12:01:02 +01:00
|
|
|
# apt list
|
|
|
|
cat <<EOT > $DEST/output/sdcard/etc/apt/sources.list
|
|
|
|
deb http://http.debian.net/debian wheezy main contrib non-free
|
|
|
|
deb-src http://http.debian.net/debian wheezy main contrib non-free
|
|
|
|
deb http://http.debian.net/debian wheezy-updates main contrib non-free
|
|
|
|
deb-src http://http.debian.net/debian wheezy-updates main contrib non-free
|
|
|
|
deb http://security.debian.org/debian-security wheezy/updates main contrib non-free
|
|
|
|
deb-src http://security.debian.org/debian-security wheezy/updates main contrib non-free
|
|
|
|
EOT
|
|
|
|
|
|
|
|
# update
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "apt-get update"
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "export LANG=C"
|
|
|
|
|
|
|
|
# set up 'apt
|
|
|
|
cat <<END > $DEST/output/sdcard/etc/apt/apt.conf.d/71-no-recommends
|
|
|
|
APT::Install-Recommends "0";
|
|
|
|
APT::Install-Suggests "0";
|
|
|
|
END
|
|
|
|
|
2014-01-01 19:34:06 +01:00
|
|
|
# script to turn off the LED blinking
|
|
|
|
cat <<EOT > $DEST/output/sdcard/etc/init.d/disable_led.sh
|
|
|
|
#
|
|
|
|
# Turn off bright flashing LEDs!!
|
|
|
|
echo 0 > /sys/class/leds/blue:ph21:led1/brightness
|
|
|
|
echo 0 > /sys/class/leds/orange:ph20:led2/brightness
|
|
|
|
echo 0 > /sys/class/leds/white:ph11:led3/brightness
|
|
|
|
echo 0 > /sys/class/leds/green:ph07:led4/brightness
|
|
|
|
EOT
|
|
|
|
|
|
|
|
# make it executable
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "chmod +x /etc/init.d/disable_led.sh"
|
|
|
|
# and startable on boot
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "update-rc.d disable_led.sh defaults"
|
|
|
|
|
2013-12-29 12:01:02 +01:00
|
|
|
# scripts for autoresize at first boot from cubian
|
|
|
|
cd $DEST/output/sdcard/etc/init.d
|
2014-01-02 11:33:32 +01:00
|
|
|
cp $SRC/scripts/cubian-resize2fs $DEST/output/sdcard/etc/init.d
|
|
|
|
cp $SRC/scripts/cubian-firstrun $DEST/output/sdcard/etc/init.d
|
2013-12-29 12:01:02 +01:00
|
|
|
|
|
|
|
# make it executable
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "chmod +x /etc/init.d/cubian-*"
|
|
|
|
# and startable on boot
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "update-rc.d cubian-firstrun defaults"
|
|
|
|
# install and configure locales
|
2014-01-01 19:58:26 +01:00
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "apt-get -qq -y install locales"
|
2014-01-02 11:33:32 +01:00
|
|
|
#chroot $DEST/output/sdcard /bin/bash -c "dpkg-reconfigure locales"
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "locale-gen --purge $DEST_LANG.UTF-8"
|
|
|
|
echo -e 'LANG="'$DEST_LANG'.UTF-8"\nLANGUAGE="'$DEST_LANG':'$DEST_LANGUAGE'"\n' > $DEST/output/sdcard/etc/default/locale
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "export LANG=$DEST_LANG.UTF-8"
|
2014-01-03 10:18:41 +01:00
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "apt-get -qq -y install openssh-server module-init-tools dhcp3-client udev ifupdown iproute dropbear iputils-ping ntpdate usbutils uboot-envtools pciutils wireless-tools wpasupplicant procps libnl-dev parted cpufreqd cpufrequtils console-setup unzip"
|
2014-01-01 19:58:26 +01:00
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "apt-get -qq -y upgrade"
|
2013-12-29 12:01:02 +01:00
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
# configure MIN / MAX Speed for cpufrequtils
|
|
|
|
sed -e 's/MIN_SPEED="0"/MIN_SPEED="30000"/g' -i $DEST/output/sdcard/etc/init.d/cpufrequtils
|
2014-01-03 10:35:00 +01:00
|
|
|
sed -e 's/MAX_SPEED="0"/MAX_SPEED="1000000"/g' -i $DEST/output/sdcard/etc/init.d/cpufrequtils
|
2014-01-02 11:33:32 +01:00
|
|
|
|
2014-01-01 19:22:46 +01:00
|
|
|
# set password to 1234
|
|
|
|
chroot $DEST/output/sdcard /bin/bash -c "(echo 1234;echo 1234;) | passwd root"
|
2013-12-29 12:01:02 +01:00
|
|
|
|
|
|
|
# set hostname
|
|
|
|
echo cubie > $DEST/output/sdcard/etc/hostname
|
|
|
|
|
|
|
|
# load modules
|
|
|
|
cat <<EOT >> $DEST/output/sdcard/etc/modules
|
|
|
|
gpio_sunxi
|
|
|
|
bcmdhd
|
|
|
|
sunxi_gmac
|
|
|
|
EOT
|
|
|
|
|
|
|
|
# create interfaces configuration
|
|
|
|
cat <<EOT >> $DEST/output/sdcard/etc/network/interfaces
|
|
|
|
auto eth0 wlan0
|
|
|
|
allow-hotplug eth0
|
|
|
|
iface eth0 inet dhcp
|
|
|
|
hwaddress ether AE:50:30:27:5A:CF # change this
|
|
|
|
allow-hotplug wlan0
|
|
|
|
iface wlan0 inet dhcp
|
|
|
|
wpa-ssid SSID
|
|
|
|
wpa-psk xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
|
|
# to generate proper encrypted key: wpa_passphrase yourSSID yourpassword
|
|
|
|
EOT
|
|
|
|
|
|
|
|
# enable serial console (Debian/sysvinit way)
|
|
|
|
echo T0:2345:respawn:/sbin/getty -L ttyS0 115200 vt100 >> $DEST/output/sdcard/etc/inittab
|
|
|
|
|
|
|
|
cp $DEST/output/uEnv.txt $DEST/output/sdcard/boot/
|
|
|
|
cp $DEST/output/script.bin $DEST/output/sdcard/boot/
|
|
|
|
cp $DEST/linux-sunxi/arch/arm/boot/uImage $DEST/output/sdcard/boot/
|
|
|
|
|
|
|
|
cp -R $DEST/linux-sunxi/output/lib/modules $DEST/output/sdcard/lib/
|
|
|
|
cp -R $DEST/linux-sunxi/output/lib/firmware/ $DEST/output/sdcard/lib/
|
|
|
|
|
|
|
|
cd $DEST/output/sdcard/lib/firmware
|
|
|
|
wget https://www.dropbox.com/s/o3evaiuidtg6xb5/ap6210.zip
|
|
|
|
unzip ap6210.zip
|
|
|
|
rm ap6210.zip
|
|
|
|
cd $DEST/
|
2014-01-01 17:40:05 +01:00
|
|
|
|
|
|
|
# sunxi tools
|
2014-01-02 11:33:32 +01:00
|
|
|
#cd $DEST/output/sdcard/usr/sbin
|
|
|
|
#wget https://www.dropbox.com/s/ns4h1ddmta1h6i9/tools-arm-bin.zip
|
|
|
|
#unzip tools-arm-bin.zip
|
|
|
|
#rm tools-arm-bin.zip
|
|
|
|
#cd $DEST/
|
|
|
|
# sunxi-tools
|
|
|
|
cd $DEST/sunxi-tools
|
|
|
|
make clean && make -j2 'fex2bin' CROSS_COMPILE=arm-linux-gnueabihf- && make -j2 'bin2fex' CROSS_COMPILE=arm-linux-gnueabihf-
|
|
|
|
cp fex2bin $DEST/output/sdcard/usr/bin/
|
|
|
|
cp bin2fex $DEST/output/sdcard/usr/bin/
|
2014-01-01 17:40:05 +01:00
|
|
|
|
2013-12-29 12:01:02 +01:00
|
|
|
# cleanup
|
|
|
|
rm $DEST/output/sdcard/usr/bin/qemu-arm-static
|
|
|
|
# umount images
|
|
|
|
umount $DEST/output/sdcard/
|
|
|
|
losetup -d /dev/loop1
|
|
|
|
losetup -d /dev/loop0
|
|
|
|
# compress image
|
2014-01-01 17:12:16 +01:00
|
|
|
gzip $DEST/output/*.raw
|