Bug fixes (#236)
* '#' is not a valid comment * bug fix * less noisy fix
This commit is contained in:
+4
-4
@@ -1,16 +1,16 @@
|
|||||||
|
|
||||||
# detect OS
|
# detect OS
|
||||||
UNAME=$(shell uname)
|
UNAME=$(shell uname)
|
||||||
ifeq ($(UNAME), Linux)
|
ifeq ($(UNAME), "Linux")
|
||||||
UNAME=LINUX
|
UNAME=LINUX
|
||||||
else
|
else
|
||||||
ifeq ($(UNAME), Darwin)
|
ifeq ($(UNAME), "Darwin")
|
||||||
UNAME=DARWIN
|
UNAME=DARWIN
|
||||||
else
|
else
|
||||||
ifeq ($(UNAME), FreeBSD)
|
ifeq ($(UNAME), "FreeBSD")
|
||||||
UNAME=FREEBSD
|
UNAME=FREEBSD
|
||||||
else
|
else
|
||||||
ifeq ($(UNAME), OpenBSD)
|
ifeq ($(UNAME), "OpenBSD")
|
||||||
UNAME=OPENBSD
|
UNAME=OPENBSD
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|||||||
+7
-8
@@ -3,28 +3,27 @@ set cpu eae
|
|||||||
set cpu history=100
|
set cpu history=100
|
||||||
show cpu
|
show cpu
|
||||||
|
|
||||||
# set up SIMH devices:
|
; set up SIMH devices:
|
||||||
|
|
||||||
# UNIX character translations (CR to NL, ESC to ALTMODE):
|
; UNIX character translations (CR to NL, ESC to ALTMODE):
|
||||||
set tti unix
|
set tti unix
|
||||||
|
|
||||||
# RB09 fixed head disk:
|
; RB09 fixed head disk:
|
||||||
set rb ena
|
set rb ena
|
||||||
att rb image.fs
|
att rb image.fs
|
||||||
|
|
||||||
# enable TELNET in GRAPHICS-2 keyboard/display(!!)
|
; enable TELNET in GRAPHICS-2 keyboard/display(!!)
|
||||||
set g2in ena
|
set g2in ena
|
||||||
att -U g2in 12345
|
att -U g2in 12345
|
||||||
|
|
||||||
# disable hardware UNIX-7 doesn't know about:
|
; disable hardware UNIX-7 doesn't know about:
|
||||||
set lpt disa
|
set lpt disa
|
||||||
set drm disa
|
set drm disa
|
||||||
set dt disa
|
set dt disa
|
||||||
|
|
||||||
# show device settings:
|
; show device settings:
|
||||||
show dev
|
show dev
|
||||||
|
|
||||||
# load and run the paper tape bootstrap
|
; load and run the paper tape bootstrap (loads system from disk)
|
||||||
# (loads system from disk)
|
|
||||||
load boot.rim 010000
|
load boot.rim 010000
|
||||||
go
|
go
|
||||||
|
|||||||
Reference in New Issue
Block a user