diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bitbake.conf | 4 | ||||
-rw-r--r-- | conf/distro/sharprom-compatible.conf | 62 |
2 files changed, 66 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index f70c0c4147..aa5874225c 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -321,6 +321,10 @@ PATCHCLEANCMD = 'if [ -n "`quilt applied`" ]; then quilt pop -a -R -f || exit 1; PATCHCMD = "pnum='%s'; name='%s'; patch='%s'; quilt upgrade >/dev/null 2>&1; quilt import -f -p $pnum -n $name $patch; chmod u+w patches/$name; quilt push" PATCH_DEPENDS = "quilt-native" +# Program to be used to build ipkg packages + +IPKGBUILDCMD = "ipkg-build -o 0 -g 0" + ################################################################## # Not sure about the rest of this yet. ################################################################## diff --git a/conf/distro/sharprom-compatible.conf b/conf/distro/sharprom-compatible.conf index e69de29bb2..58a6e15fea 100644 --- a/conf/distro/sharprom-compatible.conf +++ b/conf/distro/sharprom-compatible.conf @@ -0,0 +1,62 @@ +#@TYPE: Distribution +#@NAME: SharpROM +#@DESCRIPTION: Distribution configuration for SharpROM compatible packages + +# +# This is pretty ad-hoc - feel free to improve as needed :) +# + +INHERIT += " package_ipk debian" +TARGET_OS = "linux" +TARGET_FPU = "" +TARGET_CC_ARCH = "-march=armv4" +FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -O2" + +DISTRO = "sharprom" +DISTRO_NAME = "SharpROM" +DISTRO_VERSION = "3.1 compatible" +DISTRO_TYPE = "debug" +# DISTRO_TYPE = "release" + +CVSDATE = "20050221" + +# +# Zaurus +# + +OEINCLUDELOGS = "yes" +KERNEL_CONSOLE = "tty1" +#DEBUG_OPTIMIZATION = "-O -g3" +#DEBUG_BUILD = "1" +#INHIBIT_PACKAGE_STRIP = "1" + +# +# Base +# + +ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95 binutils-cross gcc-cross-initial gcc-cross" +ASSUME_PROVIDED += "virtual/arm-linux-libc-for-gcc virtual/arm-linux-binutils virtual/arm-linux-gcc" +ASSUME_PROVIDED += "virtual/arm-linux-gcc-initial virtual/arm-linux-gcc-initial + +PREFERRED_VERSION_glibc = "2.2.5" +IPKGBUILDCMD = "ipkg-build -c -o 0 -g 0" + +# +# Opie +# + +PREFERRED_PROVIDERS += " virtual/libqpe:libqpe-opie" + +OPIE_VERSION = "1.2.0" +include conf/distro/preferred-opie-versions.inc + +# +# GPE +# + +CVSDATE_xserver-kdrive = "20050208" +PREFERRED_PROVIDERS += "virtual/xserver:xserver-kdrive" +PREFERRED_PROVIDERS += " gst-plugins:gpe-gst-plugins" + +include conf/distro/preferred-gpe-versions.inc + |