diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/distro/angstrom.conf | 5 | ||||
-rw-r--r-- | conf/machine/efika.conf | 17 |
2 files changed, 20 insertions, 2 deletions
diff --git a/conf/distro/angstrom.conf b/conf/distro/angstrom.conf index e9e05201e8..daa85d5bda 100644 --- a/conf/distro/angstrom.conf +++ b/conf/distro/angstrom.conf @@ -18,6 +18,7 @@ INHERIT += "package_ipk debian" include conf/distro/include/multimachine.conf #Generate locales on the buildsystem instead of on the target. Speeds up first boot, set to "1" to enable +PREFERRED_PROVIDER_qemu-native = "qemu-qop-nogfx-native" ENABLE_BINARY_LOCALE_GENERATION ?= "" @@ -31,8 +32,8 @@ TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}" FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os" BUILD_OPTIMIZATION = "-Os" -#EABI is softfloat by default, but let's make sure :) -TARGET_FPU = "soft" +#ARM EABI is softfloat by default, but let's make sure :) +TARGET_FPU_arm = "soft" PARALLEL_INSTALL_MODULES = "1" diff --git a/conf/machine/efika.conf b/conf/machine/efika.conf new file mode 100644 index 0000000000..40387b53a9 --- /dev/null +++ b/conf/machine/efika.conf @@ -0,0 +1,17 @@ +#@TYPE: Machine +#@Name: Genisi EFIKA Development Platform +#@DESCRIPTION: Machine configuration for teh EFIKA development platform: http://www.pegasosppc.com/efika.php + +INHERIT += "linux_modules" + +TARGET_ARCH = "powerpc" +IPKG_ARCHS = "all ppc ${MACHINE}" + + +PREFERRED_PROVIDER_virtual/kernel = "linux-${MACHINE}" + +#don't try to access tty1 +USE_VT = "0" + +#tune for the MPC5200B cpu +include conf/machine/include/tune-ppc603e.conf |