comparison sources/targets/m68k @ 1403:42698b9646c2

Add m68k back.
author Rob Landley <rob@landley.net>
date Mon, 27 Jun 2011 07:36:56 -0500
parents
children 4aceeceefb2d
comparison
equal deleted inserted replaced
1402:90f0a771a736 1403:42698b9646c2
1 DESCRIPTION="
2 Motorola 68000.
3
4 This builds, but qemu can't run it yet. (The qemu m68k support is actually
5 only coldfire, an mmu-less subset of the m68k instruction set.)
6
7 The aranym emulator might be able to run this (with a different kernel
8 configuration) but that emulator doesn't support serial consoles.
9 "
10
11 KARCH=m68k
12 KERNEL_PATH=vmlinux
13 GCC_FLAGS= # "--with-float=soft"
14 BINUTILS_FLAGS=
15 QEMU_TEST= #$KARCH
16
17 ROOT=sda
18 CONSOLE=ttyAMA0
19
20 UCLIBC_CONFIG="
21 TARGET_m68k=y
22 UCLIBC_HAS_FPU=y
23 "
24
25 LINUX_CONFIG="
26 CONFIG_RTC_DRV_M48T59=y
27 "
28
29 emulator_command()
30 {
31 # echo qemu-system-arm -M versatilepb $(qemu_defaults "$@") \
32 # -net nic,model=rtl8139 -net user
33 echo
34 }