Sync usage with man page.
[netbsd-mini2440.git] / distrib / acorn32 / stand / BtNetBSD / !BtNetBSD / checkro403
blobd9701e7764057987e29416237ad801f29f62f7b8
1 REM >checkro403
2 REM $NetBSD: checkro403,v 1.2 2002/02/11 19:02:37 reinoud Exp $
3 REM
4 REM This program checks the build date of RISC OS to see if it is the one
5 REM with the bug in OS_Module 7 (RO 4.03 for the Castle Kinetic Card). If
6 REM so, it ensures that the memfix module has been loaded
8 ON ERROR ERROR EXT 0,"This version of RISC OS 4.03 needs the memfix module. NetBSD will not boot without it": END
9 SYS"XOS_ReadSysInfo",9,1 TO build$;flags%
10 IF (flags% AND 1)<>0 THEN END    :REM SWI returned with the V flag set
11 IF build$="20000507-001" THEN OSCLI"rmensure memfix 0.11 rmload <BtNetBSD$Dir>.memfix"