Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| DESCRIPTION=" | |
| ARM v5, little endian, EABI with vector floating point (vfp). | |
| ARMv5 is the Pentium of the ARM world. Most modern arm hardware should be | |
| able to run this, and hardware that supports the v5 instruction set should run | |
| this about 25% faster than code compiled for v4. | |
| " | |
| KARCH=arm | |
| KERNEL_PATH=arch/${KARCH}/boot/zImage | |
| GCC_FLAGS="--with-march=armv5 --with-mfloat-abi=soft --with-mfp=vfp" | |
| BINUTILS_FLAGS= | |
| QEMU_TEST=$KARCH | |
| CROSS_TARGET=armv5l-unknown-linux-gnueabi | |
| CONSOLE=ttyAMA0 | |
| LINUX_CONFIG=" | |
| # Processor config | |
| CONFIG_CPU_ARM926T=y | |
| CONFIG_MMU=y | |
| CONFIG_VFP=y | |
| CONFIG_ARM_THUMB=y | |
| CONFIG_AEABI=y | |
| # Versatile board | |
| CONFIG_ARCH_VERSATILE=y | |
| CONFIG_ARCH_VERSATILE_PB=y | |
| CONFIG_PCI_LEGACY=y | |
| CONFIG_SERIAL_NONSTANDARD=y | |
| CONFIG_SERIAL_AMBA_PL011=y | |
| CONFIG_SERIAL_AMBA_PL011_CONSOLE=y | |
| CONFIG_RTC_DRV_PL031=y | |
| CONFIG_SCSI_SYM53C8XX_2=y | |
| CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0 | |
| CONFIG_SCSI_SYM53C8XX_MMIO=y | |
| " | |
| emulator_command() | |
| { | |
| echo qemu-system-arm -M versatilepb $(qemu_defaults "$@") \ | |
| -net nic,model=rtl8139 -net user | |
| } |