diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-04-09 17:48:43 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-04-09 17:48:43 +0000 |
commit | 2606c0102d0a9c6756c199ba7084e70e249aaedc (patch) | |
tree | 9df9e76d38fc451fcb816c8d979082f81215207c /emulators/simh/files/patch-VAX-vax_sysdev.c | |
parent | Simple C library for partitioned convolution. (diff) |
- Fix firmware directory
PR: 111061
Submitted by: trasz (maintainer)
Notes
Notes:
svn path=/head/; revision=189589
Diffstat (limited to 'emulators/simh/files/patch-VAX-vax_sysdev.c')
-rw-r--r-- | emulators/simh/files/patch-VAX-vax_sysdev.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/emulators/simh/files/patch-VAX-vax_sysdev.c b/emulators/simh/files/patch-VAX-vax_sysdev.c new file mode 100644 index 000000000000..f9821dc3d69a --- /dev/null +++ b/emulators/simh/files/patch-VAX-vax_sysdev.c @@ -0,0 +1,19 @@ +--- 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"); + r = load_cmd (0, "-R ka655x.bin"); +- 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"); ++ if (r != SCPE_OK) ++ return r; + } ++} + return SCPE_OK; + } + |