diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-02-06 18:38:31 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-06 18:38:31 +0000 |
commit | 4476d4b3760464127d42bf6288405d0f4d5bb1a8 (patch) | |
tree | 474f078d15c5540cbb20e4a07e342eafd7aac1ca /conf | |
parent | 34c0522e2cf2e45c4a6e49fcfb63154b81dbc673 (diff) |
add class for nylon-image and update nylon distro configuration
patches courtesy Martin Dietze <dietze@4g-systems.com>
Martin: I'm not sure whether you really need a dedicated class for nylon image,
you may want to think about that. the patch against the mtx-1 machine configuration
didn't apply, please handle this on your own after you got commit access.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/distro/nylon.conf | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/conf/distro/nylon.conf b/conf/distro/nylon.conf index c7fcb83610..a1d81e336f 100644 --- a/conf/distro/nylon.conf +++ b/conf/distro/nylon.conf @@ -11,7 +11,7 @@ # # Bruno Randolf <bruno.randolf@4g-systems.biz> -INHERIT += "package_ipk debian" +INHERIT += "package_ipk debian nylon-mirrors" INHERIT += "linux_modules" PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial" @@ -37,11 +37,18 @@ PREFERRED_VERSION_usbutils = "0.11" # usually overrrided from local.conf NYLON_RELEASE = "unstable" -# use meshcub.org mirrors +# use meshcub.org mirrors for CVS sources CVS_TARBALL_STASH = "http://meshcube.org/nylon/${NYLON_RELEASE}/sources/" -INHERIT += "nylon-mirrors" -export FEED_URIS="nylon##http://meshcube.org/nylon/${NYLON_RELEASE}/feed" +export FEED_URIS = " \ + nylon##http://meshcube.org/nylon/${NYLON_RELEASE}/feed \ + nylon-bin##http://meshcube.org/nylon/${NYLON_RELEASE}/binary-feed" +# image names +DISTRO_VERSION = "${NYLON_VERSION}" +BUILDNAME := "${NYLON_VERSION}" +KERNEL_VERSION = "2.4.27" +#this does not work: ${@base_read_file('${STAGING_DIR}/${HOST_SYS}/kernel/kernel-abiversion')} IMAGE_NAME = "${IMAGE_BASENAME}-${MACHINE}_${BUILDNAME}" -KERNEL_IMAGE_NAME = "kernel-${KV}-${MACHINE}_${BUILDNAME}" +KERNEL_IMAGE_NAME = "kernel-${KERNEL_VERSION}-${MACHINE}_${BUILDNAME}" + |