2015-12-02 20:33:32 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com
|
|
|
|
#
|
|
|
|
# This file is licensed under the terms of the GNU General Public
|
|
|
|
# License version 2. This program is licensed "as is" without any
|
|
|
|
# warranty of any kind, whether express or implied.
|
|
|
|
#
|
|
|
|
# This file is a part of tool chain https://github.com/igorpecovnik/lib
|
|
|
|
#
|
|
|
|
|
2015-12-18 12:22:42 +03:00
|
|
|
# Functions:
|
|
|
|
# cleaning
|
|
|
|
# fetch_from_github
|
|
|
|
# display_alert
|
|
|
|
# check_error
|
|
|
|
# install_packet
|
|
|
|
# grab_version
|
|
|
|
# fingerprint_image
|
|
|
|
# umount_image
|
|
|
|
# addtorepo
|
|
|
|
# prepare_host
|
2015-12-02 20:33:32 +01:00
|
|
|
|
2015-12-10 21:21:52 +03:00
|
|
|
# cleaning <target>
|
|
|
|
#
|
|
|
|
# target: what to clean
|
|
|
|
# "make" - "make clean" for selected kernel and u-boot
|
|
|
|
# "debs" - delete output/debs
|
|
|
|
# "cache" - delete output/cache
|
|
|
|
# "images" - delete output/images
|
|
|
|
# "sources" - delete output/sources
|
|
|
|
#
|
2015-12-02 20:33:32 +01:00
|
|
|
cleaning()
|
|
|
|
{
|
2015-12-10 21:21:52 +03:00
|
|
|
case $1 in
|
|
|
|
"make") # clean u-boot and kernel sources
|
|
|
|
[ -d "$SOURCES/$BOOTSOURCEDIR" ] && display_alert "Cleaning" "$SOURCES/$BOOTSOURCEDIR" "info" && cd $SOURCES/$BOOTSOURCEDIR && make -s ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- clean
|
|
|
|
[ -d "$SOURCES/$LINUXSOURCEDIR" ] && display_alert "Cleaning" "$SOURCES/$LINUXSOURCEDIR" "info" && cd $SOURCES/$LINUXSOURCEDIR && make -s ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- clean
|
|
|
|
;;
|
2015-12-02 20:33:32 +01:00
|
|
|
|
2015-12-10 21:21:52 +03:00
|
|
|
"debs") # delete output/debs
|
2015-12-22 18:44:04 +03:00
|
|
|
[ -d "$DEST/debs" ] && display_alert "Cleaning" "$DEST/debs" "info" && rm -rf $DEST/debs/*
|
2015-12-10 21:21:52 +03:00
|
|
|
;;
|
2015-12-02 20:33:32 +01:00
|
|
|
|
2015-12-10 21:21:52 +03:00
|
|
|
"cache") # delete output/cache
|
2015-12-24 19:37:34 +03:00
|
|
|
[ -d "$DEST/cache" ] && display_alert "Cleaning" "$DEST/cache" "info" && find $DEST/cache/ -type f -delete
|
2015-12-10 21:21:52 +03:00
|
|
|
;;
|
2015-12-07 14:32:25 +01:00
|
|
|
|
2015-12-10 21:21:52 +03:00
|
|
|
"images") # delete output/images
|
2015-12-22 18:44:04 +03:00
|
|
|
[ -d "$DEST/images" ] && display_alert "Cleaning" "$DEST/images" "info" && rm -rf $DEST/images/*
|
2015-12-10 21:21:52 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
"sources") # delete output/sources
|
2015-12-22 18:44:04 +03:00
|
|
|
[ -d "$SOURCES" ] && display_alert "Cleaning" "$SOURCES" "info" && rm -rf $SOURCES/*
|
2015-12-10 21:21:52 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
*) # unknown
|
|
|
|
display_alert "Cleaning: unrecognized option" "$1" "wrn"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
2015-12-07 14:32:25 +01:00
|
|
|
|
2015-12-08 19:25:30 +01:00
|
|
|
# fetch_from_github <URL> <directory> <tag> <tagsintosubdir>
|
|
|
|
#
|
|
|
|
# parameters:
|
|
|
|
# <URL>: Git repository
|
|
|
|
# <directory>: where to place under SOURCES
|
|
|
|
# <device>: cubieboard, cubieboard2, cubietruck, ...
|
|
|
|
# <description>: additional description text
|
|
|
|
# <tagintosubdir>: boolean
|
2015-12-07 14:32:25 +01:00
|
|
|
|
2015-12-08 19:25:30 +01:00
|
|
|
fetch_from_github (){
|
|
|
|
GITHUBSUBDIR=$3
|
|
|
|
[[ -z "$3" ]] && GITHUBSUBDIR="branchless"
|
|
|
|
[[ -z "$4" ]] && GITHUBSUBDIR="" # only kernel and u-boot have subdirs for tags
|
|
|
|
if [ -d "$SOURCES/$2/$GITHUBSUBDIR" ]; then
|
|
|
|
cd $SOURCES/$2/$GITHUBSUBDIR
|
|
|
|
git checkout -q $FORCE $3
|
|
|
|
display_alert "... updating" "$2" "info"
|
2015-12-18 11:41:18 +01:00
|
|
|
PULL=$(git pull)
|
2015-12-08 19:25:30 +01:00
|
|
|
else
|
|
|
|
if [[ -n $3 && -n "$(git ls-remote $1 | grep "$tag")" ]]; then
|
2016-01-06 12:58:06 +01:00
|
|
|
display_alert "... creating a shallow clone" "$2 $3" "info"
|
|
|
|
# Toradex git's doesn't support shallow clone. Need different solution than this.
|
|
|
|
git clone -n $1 $SOURCES/$2/$GITHUBSUBDIR -b $3 --depth 1 || git clone -n $1 $SOURCES/$2/$GITHUBSUBDIR -b $3
|
2015-12-08 19:25:30 +01:00
|
|
|
cd $SOURCES/$2/$GITHUBSUBDIR
|
|
|
|
git checkout -q $3
|
2015-12-07 14:32:25 +01:00
|
|
|
else
|
2015-12-08 19:25:30 +01:00
|
|
|
display_alert "... creating a shallow clone" "$2" "info"
|
|
|
|
git clone -n $1 $SOURCES/$2/$GITHUBSUBDIR --depth 1
|
|
|
|
cd $SOURCES/$2/$GITHUBSUBDIR
|
|
|
|
git checkout -q
|
|
|
|
fi
|
|
|
|
|
2015-12-02 20:33:32 +01:00
|
|
|
fi
|
2015-12-07 14:32:25 +01:00
|
|
|
cd $SRC
|
2015-12-02 20:33:32 +01:00
|
|
|
if [ $? -ne 0 ]; then display_alert "Github download failed" "$1" "err"; exit 1; fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
display_alert()
|
|
|
|
#--------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
# Let's have unique way of displaying alerts
|
|
|
|
#--------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
{
|
2015-12-24 19:37:34 +03:00
|
|
|
# log function parameters to install.log
|
|
|
|
echo "Displaying message: $@" >> $DEST/debug/install.log
|
|
|
|
|
2015-12-02 20:33:32 +01:00
|
|
|
if [[ $2 != "" ]]; then TMPARA="[\e[0;33m $2 \x1B[0m]"; else unset TMPARA; fi
|
|
|
|
if [ $3 == "err" ]; then
|
|
|
|
echo -e "[\e[0;31m error \x1B[0m] $1 $TMPARA"
|
|
|
|
elif [ $3 == "wrn" ]; then
|
|
|
|
echo -e "[\e[0;35m warn \x1B[0m] $1 $TMPARA"
|
|
|
|
else
|
|
|
|
echo -e "[\e[0;32m o.k. \x1B[0m] $1 $TMPARA"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
check_error ()
|
|
|
|
# check last command and display warning only
|
|
|
|
{
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
# display warning if patching fails
|
|
|
|
display_alert "... failed. More info: debug/install.log" "$1" "wrn";
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
install_packet ()
|
|
|
|
{
|
|
|
|
#--------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
# Install packets inside chroot
|
|
|
|
#--------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
i=0
|
|
|
|
j=1
|
|
|
|
declare -a PACKETS=($1)
|
|
|
|
skupaj=${#PACKETS[@]}
|
|
|
|
while [[ $i -lt $skupaj ]]; do
|
|
|
|
procent=$(echo "scale=2;($j/$skupaj)*100"|bc)
|
|
|
|
procent=${procent%.*}
|
|
|
|
x=${PACKETS[$i]}
|
|
|
|
if [[ $3 == "host" ]]; then
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get -qq -y install $x >> $DEST/debug/install.log 2>&1
|
|
|
|
else
|
|
|
|
chroot $DEST/cache/sdcard /bin/bash -c "DEBIAN_FRONTEND=noninteractive apt-get -qq -y install $x" >> $DEST/debug/install.log 2>&1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $? -ne 0 ]; then display_alert "Installation of package failed" "$INSTALL" "err"; exit 1; fi
|
|
|
|
|
|
|
|
if [[ $4 != "quiet" ]]; then
|
|
|
|
printf '%.0f\n' $procent | dialog --backtitle "$backtitle" --title "$2" --gauge "\n\n$x" 9 70
|
|
|
|
fi
|
|
|
|
i=$[$i+1]
|
|
|
|
j=$[$j+1]
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 19:25:30 +01:00
|
|
|
#---------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
# grab_version <PATH>
|
|
|
|
#
|
|
|
|
# <PATH>: Extract kernel or uboot version from Makefile
|
|
|
|
#---------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
grab_version ()
|
|
|
|
{
|
|
|
|
local var=("VERSION" "PATCHLEVEL" "SUBLEVEL" "EXTRAVERSION")
|
|
|
|
unset VER
|
|
|
|
for dir in "${var[@]}"; do
|
|
|
|
tmp=$(cat $1/Makefile | grep $dir | head -1 | awk '{print $(NF)}' | cut -d '=' -f 2)"#"
|
|
|
|
[[ $tmp != "#" ]] && VER=$VER"$tmp"
|
|
|
|
done
|
2015-12-09 14:39:41 +01:00
|
|
|
VER=${VER//#/.}; VER=${VER%.}; VER=${VER//.-/-}
|
2015-12-02 20:33:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fingerprint_image (){
|
|
|
|
#--------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
# Saving build summary to the image
|
|
|
|
#--------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
display_alert "Fingerprinting." "$VERSION Linux $VER" "info"
|
|
|
|
#echo -e "[\e[0;32m ok \x1B[0m] Fingerprinting"
|
|
|
|
|
|
|
|
echo "--------------------------------------------------------------------------------" > $1
|
|
|
|
echo "" >> $1
|
|
|
|
echo "" >> $1
|
|
|
|
echo "" >> $1
|
|
|
|
echo "Title: $VERSION (unofficial)" >> $1
|
|
|
|
echo "Kernel: Linux $VER" >> $1
|
|
|
|
now="$(date +'%d.%m.%Y')" >> $1
|
|
|
|
printf "Build date: %s\n" "$now" >> $1
|
|
|
|
echo "Author: Igor Pecovnik, www.igorpecovnik.com" >> $1
|
|
|
|
echo "Sources: http://github.com/igorpecovnik" >> $1
|
|
|
|
echo "" >> $1
|
|
|
|
echo "Support: http://www.armbian.com" >> $1
|
|
|
|
echo "" >> $1
|
|
|
|
echo "" >> $1
|
|
|
|
echo "--------------------------------------------------------------------------------" >> $1
|
|
|
|
echo "" >> $1
|
|
|
|
cat $SRC/lib/LICENSE >> $1
|
|
|
|
echo "" >> $1
|
|
|
|
echo "--------------------------------------------------------------------------------" >> $1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
umount_image (){
|
|
|
|
FBTFTMOUNT=$(mount | grep fbtft | awk '{ print $3 }')
|
|
|
|
umount $FBTFTMOUNT >/dev/null 2>&1
|
|
|
|
umount -l $DEST/cache/sdcard/dev/pts >/dev/null 2>&1
|
|
|
|
umount -l $DEST/cache/sdcard/dev >/dev/null 2>&1
|
|
|
|
umount -l $DEST/cache/sdcard/proc >/dev/null 2>&1
|
|
|
|
umount -l $DEST/cache/sdcard/sys >/dev/null 2>&1
|
|
|
|
umount -l $DEST/cache/sdcard/tmp >/dev/null 2>&1
|
|
|
|
umount -l $DEST/cache/sdcard >/dev/null 2>&1
|
|
|
|
IFS=" "
|
|
|
|
x=$(losetup -a |awk '{ print $1 }' | rev | cut -c 2- | rev | tac);
|
|
|
|
for x in $x; do
|
|
|
|
losetup -d $x
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
addtorepo ()
|
|
|
|
{
|
|
|
|
# add all deb files to repository
|
|
|
|
# parameter "remove" dumps all and creates new
|
|
|
|
# function: cycle trough distributions
|
|
|
|
DISTROS=("wheezy" "jessie" "trusty")
|
|
|
|
IFS=" "
|
|
|
|
j=0
|
|
|
|
while [[ $j -lt ${#DISTROS[@]} ]]
|
|
|
|
do
|
|
|
|
# add each packet to distribution
|
|
|
|
DIS=${DISTROS[$j]}
|
|
|
|
|
|
|
|
# let's drop from publish if exits
|
|
|
|
if [ "$(aptly publish list -config=config/aptly.conf -raw | awk '{print $(NF)}' | grep $DIS)" != "" ]; then
|
|
|
|
aptly publish drop -config=config/aptly.conf $DIS > /dev/null 2>&1
|
|
|
|
fi
|
|
|
|
#aptly db cleanup -config=config/aptly.conf
|
|
|
|
|
|
|
|
if [ "$1" == "remove" ]; then
|
|
|
|
# remove repository
|
|
|
|
aptly repo drop -config=config/aptly.conf $DIS > /dev/null 2>&1
|
|
|
|
aptly db cleanup -config=config/aptly.conf > /dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# create repository if not exist
|
|
|
|
OUT=$(aptly repo list -config=config/aptly.conf -raw | awk '{print $(NF)}' | grep $DIS)
|
|
|
|
if [[ "$OUT" != "$DIS" ]]; then
|
|
|
|
display_alert "Creating section" "$DIS" "info"
|
|
|
|
aptly repo create -config=config/aptly.conf -distribution=$DIS -component=main -comment="Armbian stable" $DIS > /dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# add all packages
|
|
|
|
aptly repo add -force-replace=true -config=config/aptly.conf $DIS $POT/*.deb
|
|
|
|
|
|
|
|
# add all distribution packages
|
|
|
|
if [ -d "$POT/$DIS" ]; then
|
|
|
|
aptly repo add -force-replace=true -config=config/aptly.conf $DIS $POT/$DIS/*.deb
|
|
|
|
fi
|
|
|
|
|
|
|
|
aptly publish -passphrase=$GPG_PASS -force-overwrite=true -config=config/aptly.conf -component="main" --distribution=$DIS repo $DIS > /dev/null 2>&1
|
|
|
|
|
|
|
|
#aptly repo show -config=config/aptly.conf $DIS
|
|
|
|
|
|
|
|
j=$[$j+1]
|
|
|
|
done
|
2015-12-12 18:35:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
# prepare_host
|
|
|
|
#
|
|
|
|
# * checks and installs necessary packages
|
|
|
|
# * creates directory structure
|
|
|
|
# * changes system settings
|
|
|
|
#
|
|
|
|
prepare_host() {
|
|
|
|
|
|
|
|
display_alert "Preparing" "host" "info"
|
|
|
|
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ $(dpkg --print-architecture) == armhf ]]; then
|
|
|
|
display_alert "Running this tool on board itself is not supported" "..." "err"
|
|
|
|
display_alert "Please read documentation to set up proper compilation environment" "..." "err"
|
|
|
|
display_alert "http://www.armbian.com/using-armbian-tools/" "..." "err"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-12-12 18:35:38 +03:00
|
|
|
# dialog may be used to display progress
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ $(dpkg-query -W -f='${db:Status-Abbrev}\n' dialog 2>/dev/null) != *ii* ]]; then
|
2015-12-12 18:35:38 +03:00
|
|
|
display_alert "Installing package" "dialog" "info"
|
2015-12-14 17:03:41 +03:00
|
|
|
apt-get install -qq -y --no-install-recommends dialog >/dev/null 2>&1
|
2015-12-12 18:35:38 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
# wget is needed
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ $(dpkg-query -W -f='${db:Status-Abbrev}\n' wget 2>/dev/null) != *ii* ]]; then
|
2015-12-12 18:35:38 +03:00
|
|
|
display_alert "Installing package" "wget" "info"
|
2015-12-14 17:03:41 +03:00
|
|
|
apt-get install -qq -y --no-install-recommends wget >/dev/null 2>&1
|
2015-12-12 18:35:38 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
# need lsb_release to decide what to install
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ $(dpkg-query -W -f='${db:Status-Abbrev}\n' lsb-release 2>/dev/null) != *ii* ]]; then
|
2015-12-12 18:35:38 +03:00
|
|
|
display_alert "Installing package" "lsb-release" "info"
|
2015-12-14 17:03:41 +03:00
|
|
|
apt-get install -qq -y --no-install-recommends lsb-release >/dev/null 2>&1
|
2015-12-12 18:35:38 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
# packages list for host
|
2015-12-13 17:51:19 +03:00
|
|
|
PAK="aptly ca-certificates device-tree-compiler pv bc lzop zip binfmt-support build-essential ccache debootstrap ntpdate pigz \
|
|
|
|
gawk gcc-arm-linux-gnueabihf qemu-user-static u-boot-tools uuid-dev zlib1g-dev unzip libusb-1.0-0-dev ntpdate \
|
2015-12-29 12:46:47 +03:00
|
|
|
parted pkg-config libncurses5-dev whiptail debian-keyring debian-archive-keyring f2fs-tools libfile-fcntllock-perl rsync"
|
2015-12-12 18:35:38 +03:00
|
|
|
|
|
|
|
# warning: apt-cacher-ng will fail if installed and used both on host and in container/chroot environment with shared network
|
|
|
|
# set NO_APT_CACHER=yes to prevent installation errors in such case
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ $NO_APT_CACHER != yes ]]; then PAK="$PAK apt-cacher-ng"; fi
|
2015-12-12 18:35:38 +03:00
|
|
|
|
|
|
|
local codename=$(lsb_release -sc)
|
|
|
|
if [[ $codename == "" || "jessie trusty wily" != *"$codename"* ]]; then
|
|
|
|
display_alert "Host system support was not tested" "${codename:-(unknown)}" "wrn"
|
|
|
|
fi
|
|
|
|
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ $codename = jessie ]]; then
|
2015-12-12 18:35:38 +03:00
|
|
|
PAK="$PAK crossbuild-essential-armhf";
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ ! -f /etc/apt/sources.list.d/crosstools.list ]]; then
|
2015-12-12 18:35:38 +03:00
|
|
|
display_alert "Adding repository for jessie" "cross-tools" "info"
|
|
|
|
dpkg --add-architecture armhf > /dev/null 2>&1
|
|
|
|
echo 'deb http://emdebian.org/tools/debian/ jessie main' > /etc/apt/sources.list.d/crosstools.list
|
|
|
|
wget 'http://emdebian.org/tools/debian/emdebian-toolchain-archive.key' -O - | apt-key add - >/dev/null
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ $codename = trusty ]]; then
|
2015-12-12 18:35:38 +03:00
|
|
|
PAK="$PAK libc6-dev-armhf-cross";
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ ! -f /etc/apt/sources.list.d/aptly.list ]]; then
|
2015-12-12 18:35:38 +03:00
|
|
|
display_alert "Adding repository for trusty" "aptly" "info"
|
|
|
|
echo 'deb http://repo.aptly.info/ squeeze main' > /etc/apt/sources.list.d/aptly.list
|
|
|
|
apt-key adv --keyserver keys.gnupg.net --recv-keys E083A3782A194991
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ $codename = wily ]]; then PAK="$PAK gcc-4.9-arm-linux-gnueabihf libc6-dev-armhf-cross"; fi
|
2015-12-12 18:35:38 +03:00
|
|
|
|
|
|
|
local deps=()
|
|
|
|
local installed=$(dpkg-query -W -f '${db:Status-Abbrev}|${binary:Package}\n' '*' 2>/dev/null | grep '^ii' | awk -F '|' '{print $2}' | cut -d ':' -f 1)
|
|
|
|
|
|
|
|
for packet in $PAK; do
|
|
|
|
grep -q -x -e "$packet" <<< "$installed"
|
|
|
|
if [ "$?" -ne "0" ]; then deps+=("$packet"); fi
|
|
|
|
done
|
|
|
|
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ ${#deps[@]} -gt 0 ]]; then
|
2015-12-14 17:03:41 +03:00
|
|
|
eval '( apt-get update; apt-get -y --no-install-recommends install "${deps[@]}" )' \
|
2015-12-12 18:35:38 +03:00
|
|
|
${PROGRESS_LOG_TO_FILE:+' | tee -a $DEST/debug/output.log'} \
|
|
|
|
${OUTPUT_DIALOG:+' | dialog --backtitle "$backtitle" --progressbox "Installing ${#deps[@]} host dependencies..." 20 80'} \
|
|
|
|
${OUTPUT_VERYSILENT:+' >/dev/null 2>/dev/null'}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# TODO: Check for failed installation process
|
|
|
|
# test exit code propagation for commands in parentheses
|
|
|
|
|
|
|
|
# enable arm binary format so that the cross-architecture chroot environment will work
|
|
|
|
test -e /proc/sys/fs/binfmt_misc/qemu-arm || update-binfmts --enable qemu-arm
|
|
|
|
|
|
|
|
# create directory structure
|
2015-12-22 16:49:57 +03:00
|
|
|
mkdir -p $SOURCES $DEST/debug $DEST/cache $DEST/cache/rootfs $SRC/userpatches/
|
2015-12-12 18:35:38 +03:00
|
|
|
find $SRC/lib/patch -type d ! -name . | sed "s%lib/patch%userpatches%" | xargs mkdir -p
|
|
|
|
|
2015-12-22 20:41:43 +03:00
|
|
|
[[ ! -f $SRC/userpatches/customize-image.sh ]] && cp $SRC/lib/scripts/customize-image.sh.template $SRC/userpatches/customize-image.sh
|
|
|
|
|
2015-12-12 18:35:38 +03:00
|
|
|
# TODO: needs better documentation
|
2015-12-17 09:59:05 +01:00
|
|
|
echo 'Place your patches and kernel.config / u-boot.config / lib.config here.' > $SRC/userpatches/readme.txt
|
2015-12-12 18:35:38 +03:00
|
|
|
echo 'They will be automatically included if placed here!' >> $SRC/userpatches/readme.txt
|
|
|
|
|
|
|
|
# legacy kernel compilation needs cross-gcc version 4.9 or lower
|
|
|
|
# gcc-arm-linux-gnueabihf installs gcc version 5 by default on wily
|
2016-01-08 12:31:46 +03:00
|
|
|
if [[ $codename = wily ]]; then
|
2015-12-12 18:35:38 +03:00
|
|
|
local GCC=$(which arm-linux-gnueabihf-gcc)
|
2016-01-08 12:31:46 +03:00
|
|
|
while [[ -L $GCC ]]; do
|
2015-12-12 18:35:38 +03:00
|
|
|
GCC=$(readlink "$GCC")
|
|
|
|
done
|
|
|
|
local version=$(basename "$GCC" | awk -F '-' '{print $NF}')
|
|
|
|
if (( $(echo "$version > 4.9" | bc -l) )); then
|
|
|
|
update-alternatives --install /usr/bin/arm-linux-gnueabihf-gcc arm-linux-gnueabihf-gcc /usr/bin/arm-linux-gnueabihf-gcc-4.9 10 \
|
|
|
|
--slave /usr/bin/arm-linux-gnueabihf-cpp arm-linux-gnueabihf-cpp /usr/bin/arm-linux-gnueabihf-cpp-4.9 \
|
|
|
|
--slave /usr/bin/arm-linux-gnueabihf-gcov arm-linux-gnueabihf-gcov /usr/bin/arm-linux-gnueabihf-gcov-4.9
|
|
|
|
|
|
|
|
update-alternatives --install /usr/bin/arm-linux-gnueabihf-gcc arm-linux-gnueabihf-gcc /usr/bin/arm-linux-gnueabihf-gcc-5 11 \
|
|
|
|
--slave /usr/bin/arm-linux-gnueabihf-cpp arm-linux-gnueabihf-cpp /usr/bin/arm-linux-gnueabihf-cpp-5 \
|
|
|
|
--slave /usr/bin/arm-linux-gnueabihf-gcov arm-linux-gnueabihf-gcov /usr/bin/arm-linux-gnueabihf-gcov-5
|
|
|
|
|
|
|
|
update-alternatives --set arm-linux-gnueabihf-gcc /usr/bin/arm-linux-gnueabihf-gcc-4.9
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|