comparison sources/targets/armv4tl/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
21 CONFIG_ARM_EABI=y 21 CONFIG_ARM_EABI=y
22 ARCH_WANTS_LITTLE_ENDIAN=y 22 ARCH_WANTS_LITTLE_ENDIAN=y
23 DOPIC=y 23 DOPIC=y
24 " 24 "
25 25
26 LINUX_CONFIG="
27 #CONFIG_CPU_ARM920T=y
28 CONFIG_CPU_ARM926T=y
29 CONFIG_MMU=y
30 CONFIG_ARCH_VERSATILE_PB=y
31 #CONFIG_MACH_VERSATILE_AB=y
32 CONFIG_ARM_THUMB=y
33 CONFIG_VFP=y
34 CONFIG_PCI_LEGACY=y
35 CONFIG_AEABI=y
36 CONFIG_SERIAL_NONSTANDARD=y
37 CONFIG_SERIAL_AMBA_PL011=y
38 CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
39 CONFIG_RTC_DRV_PL031=y
40 "
41
26 emulator_command() 42 emulator_command()
27 { 43 {
28 echo qemu-system-arm -M versatilepb $(qemu_defaults "$@") \ 44 echo qemu-system-arm -M versatilepb $(qemu_defaults "$@") \
29 -net nic,model=rtl8139 -net user 45 -net nic,model=rtl8139 -net user
30 } 46 }