aboutsummaryrefslogtreecommitdiff
path: root/emulators/simh/files
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2009-02-15 10:01:07 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2009-02-15 10:01:07 +0000
commit9ab5d0dc52f11c516e37116521b947038d98ec65 (patch)
tree903a619aacd6da6945f8c07016402b5f6d6aab05 /emulators/simh/files
parent8a6e74637beca1659ca9d13c3f5aff178faabd2d (diff)
Update to V3.8-1.
Notes
Notes: svn path=/head/; revision=228375
Diffstat (limited to 'emulators/simh/files')
-rw-r--r--emulators/simh/files/patch-VAX-vax_sysdev.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/emulators/simh/files/patch-VAX-vax_sysdev.c b/emulators/simh/files/patch-VAX-vax_sysdev.c
index f9821dc3d69a..84fc18d8e6ca 100644
--- a/emulators/simh/files/patch-VAX-vax_sysdev.c
+++ b/emulators/simh/files/patch-VAX-vax_sysdev.c
@@ -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;