comparison sources/targets/armv5l/settings @ 1152:2f39d1bfb2fd

Add baseconfig-linux, the infrastructure to use it, and move over the arm targets. (You can override with a miniconfig-linux or miniconfig-uClibc in the appropriate target directory.)
author Rob Landley <rob@landley.net>
date Fri, 02 Jul 2010 23:38:31 -0500
parents b274eb556b50
children 0b53de0d6eec
comparison
equal deleted inserted replaced
1151:b55c80be32b6 1152:2f39d1bfb2fd
18 CONFIG_ARM_EABI=y 18 CONFIG_ARM_EABI=y
19 ARCH_WANTS_LITTLE_ENDIAN=y 19 ARCH_WANTS_LITTLE_ENDIAN=y
20 DOPIC=y 20 DOPIC=y
21 " 21 "
22 22
23 LINUX_CONFIG="
24 CONFIG_CPU_ARM926T=y
25 CONFIG_MMU=y
26 CONFIG_ARCH_VERSATILE_PB=y
27 #CONFIG_MACH_VERSATILE_AB=y
28 CONFIG_ARM_THUMB=y
29 CONFIG_VFP=y
30 CONFIG_PCI_LEGACY=y
31 CONFIG_AEABI=y
32 CONFIG_SERIAL_NONSTANDARD=y
33 CONFIG_SERIAL_AMBA_PL011=y
34 CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
35 CONFIG_RTC_DRV_PL031=y
36 "
37
23 emulator_command() 38 emulator_command()
24 { 39 {
25 echo qemu-system-arm -M versatilepb $(qemu_defaults "$@") \ 40 echo qemu-system-arm -M versatilepb $(qemu_defaults "$@") \
26 -net nic,model=rtl8139 -net user 41 -net nic,model=rtl8139 -net user
27 } 42 }