From dda805c3d4f06d12e85d601c3413da2e11e43e08 Mon Sep 17 00:00:00 2001 From: leo Date: Tue, 10 Feb 1998 10:25:08 +0000 Subject: [PATCH] Accept an 68060 as cpu-type. (Thomas Gerner). --- sys/arch/atari/stand/bootxx/bootxx.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sys/arch/atari/stand/bootxx/bootxx.c b/sys/arch/atari/stand/bootxx/bootxx.c index 10a68c618c38..6ccc3560f86f 100644 --- a/sys/arch/atari/stand/bootxx/bootxx.c +++ b/sys/arch/atari/stand/bootxx/bootxx.c @@ -1,4 +1,4 @@ -/* $NetBSD: bootxx.c,v 1.2 1997/06/28 21:36:28 leo Exp $ */ +/* $NetBSD: bootxx.c,v 1.3 1998/02/10 10:25:08 leo Exp $ */ /* * Copyright (c) 1995 Waldi Ravens. @@ -65,7 +65,7 @@ bootxx(readsector, disklabel, autoboot) bzero(edata, end - edata); - printf("\033v\nNetBSD/Atari boot loader ($Revision: 1.2 $)\n\n"); + printf("\033v\nNetBSD/Atari boot loader ($Revision: 1.3 $)\n\n"); if (init_dskio(readsector, disklabel, -1)) return(-1); @@ -142,6 +142,9 @@ sys_info(od) case 40: od->cputype |= ATARI_68040; break; + case 60: + od->cputype |= ATARI_68060; + break; } } jar += 2;