diff options
Diffstat (limited to 'conf/distro/oplinux.conf')
-rw-r--r-- | conf/distro/oplinux.conf | 39 |
1 files changed, 27 insertions, 12 deletions
diff --git a/conf/distro/oplinux.conf b/conf/distro/oplinux.conf index 61756239e0..d3e6c0344d 100644 --- a/conf/distro/oplinux.conf +++ b/conf/distro/oplinux.conf @@ -30,18 +30,6 @@ DISTRO_TYPE = "debug" # Target OS & FPU system # TARGET_OS = "linux" -# -# Naming schemes -# -PARALLEL_INSTALL_MODULES = "1" -INHERIT += "package_ipk debian" - -# -# Packaging and output format - -IMAGE_FSTYPES = "tar.gz ext2.gz" - - PREFERRED_PROVIDER_dbus-glib = "dbus-glib" PREFERRED_PROVIDER_virtual/libsdl ?= "libsdl-x11" @@ -128,4 +116,31 @@ DISTRO_EXTRA_RDEPENDS += "\ +FEED_ARCH ?= "${TARGET_ARCH}" + +#i486 machines +FEED_ARCH_x86 ="i486" + +#i586 machines +FEED_ARCH_epia = "i586" + +#i686 machines +FEED_ARCH_guinness = "i686" +FEED_ARCH_progear = "i686" + +#powerpc machines +FEED_ARCH_efika = "ppc603e" +FEED_ARCH_dht-walnut = "ppc405" + + +FEED_URIS += " \ + no-arch##${OPLINUX_URI}/unstable/feed/all \ + base##${OPLINUX_URI}/unstable/feed/${FEED_ARCH}/base \ + perl##${OPLINUX_URI}/unstable/feed/${FEED_ARCH}/perl \ + python##${OPLINUX_URI}/unstable/feed/${FEED_ARCH}/python \ + debug##${OPLINUX_URI}/unstable/feed/${FEED_ARCH}/debug \ + ${MACHINE}##${OPLINUX_URI}/unstable/feed/${FEED_ARCH}/machine/${MACHINE}" + + + |