# Config variables for buildcross tool # # Copyright 2010 (c) Hector Oron # List of packages to build # values: libs binutils 4.4 4.3 .. gdb test PKGLIST=${PKGLIST:="libs binutils 4.4"} # List of architectures to build ARCHLIST=${ARCHLIST:="armel"} # ARCHLIST=${ARCHLIST:="armel mips mipsel powerpc sparc \ # s390 hppa alpha ia64 m68k sh4"} # Suite to be built SUITE=unstable # Remove build directories. Set to `no` if you want to debug any build. CLEANDIRS=yes # Build host architecture HOST=$(dpkg-architecture -qDEB_HOST_ARCH) # Log directories LOGHTMLPATH=./ LOGHTML=log.html LOGPATH=./logs/ # Mirror to use along apt-cross MIRROR=${MIRROR:="http://ftp.de.debian.org/debian"} # MIRROR=${MIRROR:="http://ftp.debian-ports.org/debian"} # Sometimes it is needed to install or remove packages # I have easy access to `sudo`, maybe you could use # `fakeroot` within a suid chroot or something else. ROOTCMD=sudo # This option currently disabled, but it was meant for, # Rebuild packages even if those are cached # XXX Implement package caching # FORCE_REBUILD=yes # This option currently disabled, but it was meant for, # Attempt to upgrade rootfs on every run FORCE_UPGRADE=yes # XXX # We want to chown dpkg-cross'd packages (uid:0, gid:0) USER=$USER GROUP=$USER # Export some useful variables for avoiding asking questions export DEBIAN_FRONTEND=noninteractive export DEBIAN_PRIORITY=critical export DEBCONF_NONINTERACTIVE_SEEN=true