# HG changeset patch # User Rob Landley # Date 1309178216 18000 # Node ID 42698b9646c26ee7ea023f9bb1d7a4fcb11eab33 # Parent 90f0a771a73655adaf0b7ca5c9e410fd54db441c Add m68k back. diff -r 90f0a771a736 -r 42698b9646c2 sources/targets/m68k --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sources/targets/m68k Mon Jun 27 07:36:56 2011 -0500 @@ -0,0 +1,34 @@ +DESCRIPTION=" +Motorola 68000. + +This builds, but qemu can't run it yet. (The qemu m68k support is actually +only coldfire, an mmu-less subset of the m68k instruction set.) + +The aranym emulator might be able to run this (with a different kernel +configuration) but that emulator doesn't support serial consoles. +" + +KARCH=m68k +KERNEL_PATH=vmlinux +GCC_FLAGS= # "--with-float=soft" +BINUTILS_FLAGS= +QEMU_TEST= #$KARCH + +ROOT=sda +CONSOLE=ttyAMA0 + +UCLIBC_CONFIG=" +TARGET_m68k=y +UCLIBC_HAS_FPU=y +" + +LINUX_CONFIG=" +CONFIG_RTC_DRV_M48T59=y +" + +emulator_command() +{ +# echo qemu-system-arm -M versatilepb $(qemu_defaults "$@") \ +# -net nic,model=rtl8139 -net user + echo +}