From 194d199ab544750cce2c407925c83ad31edb6fa6 Mon Sep 17 00:00:00 2001 From: Oyvind Repvik Date: Wed, 7 Mar 2007 12:26:59 +0000 Subject: turbostation: Add a kernel-feed for the turbostation --- conf/machine/turbostation.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conf/machine/turbostation.conf b/conf/machine/turbostation.conf index 7184958664..3bffe593f5 100644 --- a/conf/machine/turbostation.conf +++ b/conf/machine/turbostation.conf @@ -4,6 +4,8 @@ TARGET_FPU = "hard" PACKAGE_EXTRA_ARCHS = "ppc ppc603e" MACHINE_TASK_PROVIDER = "task-base" +FEED_URIS += "turbostation##http://ipkg.kynisk.com/opents/cross/1.0-dev/" + # terminal specs - console, but no other ports SERIAL_CONSOLE="115200 console" USE_VT="0" -- cgit v1.2.3 From eb9be1ad3f63ea123ba6c9e560580b6b10aeb2e2 Mon Sep 17 00:00:00 2001 From: Oyvind Repvik Date: Wed, 7 Mar 2007 12:32:41 +0000 Subject: turbostation: Remove feed. --- conf/machine/turbostation.conf | 2 -- 1 file changed, 2 deletions(-) diff --git a/conf/machine/turbostation.conf b/conf/machine/turbostation.conf index 3bffe593f5..7184958664 100644 --- a/conf/machine/turbostation.conf +++ b/conf/machine/turbostation.conf @@ -4,8 +4,6 @@ TARGET_FPU = "hard" PACKAGE_EXTRA_ARCHS = "ppc ppc603e" MACHINE_TASK_PROVIDER = "task-base" -FEED_URIS += "turbostation##http://ipkg.kynisk.com/opents/cross/1.0-dev/" - # terminal specs - console, but no other ports SERIAL_CONSOLE="115200 console" USE_VT="0" -- cgit v1.2.3 From 4953856a1bde6f8635cf92caff2889a439254b85 Mon Sep 17 00:00:00 2001 From: Oyvind Repvik Date: Wed, 7 Mar 2007 12:34:58 +0000 Subject: openturbostation: Initial commit of distro --- conf/distro/openturbostation.conf | 68 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 conf/distro/openturbostation.conf diff --git a/conf/distro/openturbostation.conf b/conf/distro/openturbostation.conf new file mode 100644 index 0000000000..e545514f94 --- /dev/null +++ b/conf/distro/openturbostation.conf @@ -0,0 +1,68 @@ +# +# Open TurboStation distribution - based on openprotium +# +DISTRO_NAME = "openturbostation" +DISTRO_VERSION = ".dev-snapshot-${SRCDATE}" +DISTRO_TYPE = "alpha" + +# +# Naming schemes +# +INHERIT += "debian" + +# +# Packaging and output format +# +INHERIT += "package_ipk" +IMAGE_BASENAME = "openturbostation" +IMAGE_FSTYPES = "jffs2" +FEED_URIS = "openturbostation##http://ipkg.kynisk.com/opents/cross/1.0-dev" + +# For protium on the turbostation + +# +# binutils and compilers +# +PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial" +PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}gcc:gcc-cross" +PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}g++:gcc-cross" +#conflict between this and the last below. +#PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}libc-for-gcc:glibc" +# Select 2.6 versions of the depmod support +PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}depmod:module-init-tools-cross" +PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}libc-for-gcc:glibc-intermediate" + +PREFERRED_VERSION_binutils = "2.16" +PREFERRED_VERSION_binutils-cross = "2.16" + +PREFERRED_VERSION_gcc = "4.1.2" +PREFERRED_VERSION_gcc-cross = "4.1.2" +PREFERRED_VERSION_gcc-cross-initial = "4.1.2" + +PREFERRED_VERSION_glibc = "2.5" +PREFERRED_VERSION_glibc-intermediate = "2.5" +PREFERRED_VERSION_glibc-initial = "2.3.2" + +# +# Target OS & FPU system +# +USE_NLS ?= "no" +TARGET_OS = "linux" +HOTPLUG = "udev" +PREFERRED_PROVIDER_virtual/libiconv = "glibc" +PREFERRED_PROVIDER_virtual/libintl = "glibc" + +# +# Bootstrap & Init +# +#PREFERRED_PROVIDER_task-bootstrap = "task-bootstrap" +require conf/distro/include/sane-srcdates.inc +# +# +# Ensure consistency across all SlugOS builds for the provider of a +# relational database - use the latest version of the SleepyCat +# Berkeley database +PREFERRED_PROVIDER_virtual/db = "db" +PREFERRED_PROVIDER_virtual/db-native = "db-native" + +CMDLINE_DEBUG = "noirqdebug" -- cgit v1.2.3