diff options
-rw-r--r-- | conf/machine/include/tune-x86-prescott.conf | 2 | ||||
-rw-r--r-- | conf/machine/x86-prescott.conf | 22 |
2 files changed, 24 insertions, 0 deletions
diff --git a/conf/machine/include/tune-x86-prescott.conf b/conf/machine/include/tune-x86-prescott.conf new file mode 100644 index 0000000000..f3ec4e956a --- /dev/null +++ b/conf/machine/include/tune-x86-prescott.conf @@ -0,0 +1,2 @@ +TARGET_CC_ARCH = "-march=prescott" +TARGET_CC_KERNEL_ARCH = "-march=prescott" diff --git a/conf/machine/x86-prescott.conf b/conf/machine/x86-prescott.conf new file mode 100644 index 0000000000..549a949a8b --- /dev/null +++ b/conf/machine/x86-prescott.conf @@ -0,0 +1,22 @@ +#@TYPE: Machine +#@NAME: x86-prescott +#@DESCRIPTION: Machine configuration for a generic i686 machine + +TARGET_ARCH = "i686" +PACKAGE_ARCH = "x86-prescott" +PACKAGE_EXTRA_ARCHS = "x86 i386 i486 i586 i686" + +require conf/machine/include/tune-x86-prescott.conf + +PREFERRED_PROVIDER_virtual/kernel = "linux-x86" +OLDEST_KERNEL = "2.6.20" + +GLIBC_ADDONS = "nptl" +GLIBC_EXTRA_OECONF = "--with-tls" + +IMAGE_FSTYPES = "ext2.gz" + +MACHINE_FEATURES = "kernel26 screen keyboard pci ushbost acpi ext2" +MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" +MACHINE_TASK_PROVIDER = "task-base" + |