diff options
author | Ihar Hrachyshka <ihar.hrachyshka@gmail.com> | 2009-01-30 15:05:53 +0200 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2009-01-30 14:17:32 +0100 |
commit | eff32d62b939facef48cab008bf6a0cb33ac20c9 (patch) | |
tree | b9c76da8d182e038437850a8fee4de16ad994454 /conf/machine | |
parent | 35f919236ace299db48c11a0e44f11b632fd58d7 (diff) |
Reworked stb225 machine configuration file; build uImage for stb225.
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/include/tune-mips32.inc | 1 | ||||
-rw-r--r-- | conf/machine/stb225.conf | 16 |
2 files changed, 12 insertions, 5 deletions
diff --git a/conf/machine/include/tune-mips32.inc b/conf/machine/include/tune-mips32.inc new file mode 100644 index 0000000000..93da66b158 --- /dev/null +++ b/conf/machine/include/tune-mips32.inc @@ -0,0 +1 @@ +TARGET_CC_ARCH = "-march=mips32" diff --git a/conf/machine/stb225.conf b/conf/machine/stb225.conf index 97370e1fe8..c57adb09f8 100644 --- a/conf/machine/stb225.conf +++ b/conf/machine/stb225.conf @@ -1,8 +1,14 @@ # PNX8335 STB225 board + TARGET_ARCH = "mipsel" -TARGET_CC_ARCH="-march=mips32" + MACHINE_FEATURES = "kernel26" -IMAGE_FSTYPES="tar.gz" -PREFERRED_PROVIDER_virtual/kernel="linux" -KERNEL_IMAGETYPE="vmlinux" -KERNEL_OUTPUT="${KERNEL_IMAGETYPE}" + +IMAGE_FSTYPES += "tar.gz" + +PREFERRED_PROVIDER_virtual/kernel = "linux" +KERNEL_IMAGETYPE = "uImage" + +SERIAL_CONSOLE ?= "115200 ttySA0" + +require conf/machine/include/tune-mips32.inc |