Update to V3.8-1.

This commit is contained in:
Edward Tomasz Napierala 2009-02-15 10:01:07 +00:00
parent 8a6e74637b
commit 9ab5d0dc52
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228375
3 changed files with 17 additions and 17 deletions

View file

@ -6,11 +6,10 @@
#
PORTNAME= simh
PORTVERSION= 3.8.0
PORTREVISION= 1
PORTVERSION= 3.8.1
CATEGORIES= emulators
MASTER_SITES= http://simh.trailing-edge.com/sources/
DISTNAME= ${PORTNAME}v38-0
DISTNAME= ${PORTNAME}v38-1
MAINTAINER= trasz@FreeBSD.org
COMMENT= Emulates classic DEC, HP, GRI, IBM, Altair, SDS, Honeywell, and others

View file

@ -1,3 +1,3 @@
MD5 (simhv38-0.zip) = d4bf6b7708e1f429e1e9b3c9e3e93b24
SHA256 (simhv38-0.zip) = 5ed1843b2d80aeea467b60202483d86ce3ee311e0fd8a6920a1a0c12f380e6b7
SIZE (simhv38-0.zip) = 2775593
MD5 (simhv38-1.zip) = e15f65a82e21ea49e14b438326d93d5c
SHA256 (simhv38-1.zip) = 4fe294fa5285b1d6d0bd69f60889c00e518ce2be5f00abc2bd4adfa8daa85b06
SIZE (simhv38-1.zip) = 2954982

View file

@ -1,17 +1,18 @@
--- VAX/vax_sysdev.c.orig Sat Mar 24 09:13:42 2007
+++ VAX/vax_sysdev.c Sat Mar 24 09:17:45 2007
@@ -1524,8 +1524,15 @@
if (sim_log) fprintf (sim_log,
"Loading boot code from ka655x.bin\n");
--- VAX/vax_sysdev.c.orig 2008-11-23 11:57:54.000000000 +0100
+++ VAX/vax_sysdev.c 2009-02-12 06:24:49.000000000 +0100
@@ -1553,9 +1553,15 @@
if (sim_log)
fprintf (sim_log, "Loading boot code from ka655x.bin\n");
r = load_cmd (0, "-R ka655x.bin");
- if (r != SCPE_OK) return r;
- if (r != SCPE_OK)
- return r;
+ if (r != SCPE_OK) {
+ printf ("Loading boot code from %%PREFIX%%/share/simh/ka655x.bin\n");
+ if (sim_log) fprintf (sim_log,
+ "Loading boot code from %%PREFIX%%/share/simh/ka655x.bin\n");
+ r = load_cmd (0, "-R %%PREFIX%%/share/simh/ka655x.bin");
+ printf ("Loading boot code from /usr/local/share/simh/ka655x.bin\n");
+ if (sim_log)
+ fprintf (sim_log, "Loading boot code from /usr/local/share/simh/ka655x.bin\n");
+ r = load_cmd (0, "-R /usr/local/share/simh/ka655x.bin");
+ if (r != SCPE_OK)
+ return r;
+ return r;
}
+}
return SCPE_OK;