comparison sources/targets/mips @ 1400:0b1022dc9a36

Remove one more "settings" dependency from functions.sh, and convert lots of architecture configurations from directory to file.
author Rob Landley <rob@landley.net>
date Sun, 26 Jun 2011 20:09:37 -0500
parents
children b499abdbcdfa
comparison
equal deleted inserted replaced
1399:ee9ee44835e9 1400:0b1022dc9a36
1 DESCRIPTION="Mips r4k big endian."
2
3 KARCH=mips
4 KERNEL_PATH=vmlinux
5 BINUTILS_FLAGS=
6 GCC_FLAGS=
7 QEMU_TEST=mips
8
9 ROOT=hda
10 CONSOLE=ttyS0
11
12 # Gentoo from Scratch
13 GFS_CHOST="mips-gentoo-linux-uclibc"
14 GFS_ARCH="mips"
15
16 UCLIBC_CONFIG="
17 TARGET_mips=y
18 UCLIBC_HAS_FPU=y
19 "
20
21 LINUX_CONFIG="
22 CONFIG_MIPS_MALTA=y
23 CONFIG_CPU_MIPS32_R2=y
24 CONFIG_SERIAL_8250=y
25 CONFIG_SERIAL_8250_CONSOLE=y
26 #CONFIG_PM=y
27 CONFIG_PCNET32=y
28 CONFIG_BLK_DEV_PIIX=y
29 "
30
31 emulator_command()
32 {
33 echo qemu-system-mips -M malta $(qemu_defaults "$@")
34 }