mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-23 19:31:31 +00:00
64 lines
1.7 KiB
Bash
Executable File
64 lines
1.7 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
codename=$1
|
|
builddir=$codename-build
|
|
release=raring
|
|
|
|
[ "$(dpkg --print-architecture)" = "amd64" ] || exit 1
|
|
|
|
# set up a build chroot
|
|
case $(hostname --fqdn) in
|
|
*.buildd)
|
|
MIRROR=http://ftpmaster.internal/ubuntu
|
|
;;
|
|
*)
|
|
MIRROR=http://archive.ubuntu.com/ubuntu
|
|
;;
|
|
esac
|
|
debootstrap --components=main,universe $release $builddir $MIRROR
|
|
|
|
mkdir -p $builddir/dev/pts
|
|
mount -t devpts devpts $builddir/dev/pts
|
|
chroot $builddir mount -t proc proc /proc
|
|
chroot $builddir mount -t sysfs sys /sys
|
|
|
|
# set up multiarch inside the chroot
|
|
chroot $builddir dpkg --add-architecture i386
|
|
chroot $builddir apt-get update
|
|
|
|
# add cross build env including the needed i386 packages
|
|
chroot $builddir apt-get -y install git gnupg flex bison gperf build-essential \
|
|
zip bzr curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \
|
|
libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-glx:i386 \
|
|
libgl1-mesa-dev g++-multilib mingw32 tofrodos phablet-tools \
|
|
python-markdown libxml2-utils xsltproc zlib1g-dev:i386 schedtool \
|
|
openjdk-6-jdk
|
|
|
|
# create an in chroot script to get the git tree and build it
|
|
cat << 'EOF' > $builddir/build-android.sh
|
|
#!/bin/bash
|
|
|
|
phablet-dev-bootstrap -v $codename $builddir
|
|
cd $builddir
|
|
repo sync
|
|
. build/envsetup.sh
|
|
brunch $codename
|
|
EOF
|
|
|
|
chmod +x $builddir/build-android.sh
|
|
|
|
chroot $builddir /build-android.sh
|
|
|
|
cp $builddir/$builddir/out/target/product/$codename/*-$codename.zip ./livecd.ubuntu-touch-$codename.zip
|
|
for image in system recovery boot; do
|
|
cp $builddir/$builddir/out/target/product/$codename/$image.img ./livecd.ubuntu-touch-$codename.$image.img
|
|
done
|
|
|
|
umount -l $builddir/sys
|
|
umount -l $builddir/proc
|
|
umount -l $builddir/dev/pts
|
|
|
|
rm -rf $builddir
|