diff options
Diffstat (limited to 'conf/distro/angstrom.conf')
-rw-r--r-- | conf/distro/angstrom.conf | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/conf/distro/angstrom.conf b/conf/distro/angstrom.conf new file mode 100644 index 0000000000..eaf3fb61e7 --- /dev/null +++ b/conf/distro/angstrom.conf @@ -0,0 +1,30 @@ +#@TYPE: Distribution +#@NAME: Angstrom +#@DESCRIPTION: Distribution configuration for Angstrom + +DISTRO = "angstrom" +DISTRO_NAME = "Angstrom" + +#we'll use this till we get a real domain +ANGSTROM_URI = "http://ewi546.ewi.utwente.nl/angstrom" + +#Set the default maintainer to angstrom-dev +MAINTAINER ?= "Angstrom Developers <angstrom-dev@handhelds.org>" + +#use ipkg package format with debian style naming +INHERIT += "package_ipk debian" + +#EABI isn't working yet, so we'll use TARGET_OS = linux in the meantime +#TARGET_OS = "none-linux-gnueabi" +TARGET_OS = "linux" + +PARALLEL_INSTALL_MODULES = "1" + +BOOTSTRAP_EXTRA_DEPENDS += "angstrom-version" +BOOTSTRAP_EXTRA_RDEPENDS += "angstrom-version" + +#Name the generated images in a sane way +IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}" + + +DISTRO_CHECK := "${@bb.data.getVar("DISTRO_VERSION",d,1) or bb.fatal('Remove this line or set a dummy DISTRO_VERSION if you really want to build an unversioned distro')}" |