diff --git a/sys/arch/vax/consolerl/Makefile b/sys/arch/vax/consolerl/Makefile new file mode 100644 index 000000000000..9cc3fc74a8f9 --- /dev/null +++ b/sys/arch/vax/consolerl/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1 1996/03/08 12:41:33 ragge Exp $ +# @(#)Makefile 7.2 (Berkeley) 5/8/91 + +BOOTS= boot +STDBOOS= defboo.com anyboo.com +DEFBOOS= defboo.hk defboo.hp defboo.ra defboo.up +DEVBOOS= hkmboo.com hksboo.com hpmboo.com hpsboo.com \ + ramboo.com rasboo.com upmboo.com upsboo.com +#UTILS= format copy drtest +# order is NOT random... +OBJS= ${BOOTS} ${STDBOOS} ${DEVBOOS} ${UTILS} +DRIVE= /dev/crl + +# build a boot console rl02 from a DEC console rl02 pack +update: ${OBJS} + arff rmf ${DRIVE} ${OBJS} + -rm -f defboo.com + +defboo.com: + @echo You must copy one of ${DEFBOOS} to defboo.com. + @echo See installing and operating guide for details. + @/bin/false #force exits + +boot: ../boot/boot + (cd ../boot;make boot) + dd if=../boot/boot of=boot bs=32 skip=1 + +clean: + rm -f ${BOOTS} ${UTILS} defboo.com diff --git a/sys/arch/vax/consolerl/anyboo.com b/sys/arch/vax/consolerl/anyboo.com new file mode 100644 index 000000000000..d10e93242fd2 --- /dev/null +++ b/sys/arch/vax/consolerl/anyboo.com @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! Conversational boot to single user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 0 ! Not used for conversational boot +DEPOSIT R11 3 ! Software boot flags (conversational and single) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/defboo.hk b/sys/arch/vax/consolerl/defboo.hk new file mode 100644 index 000000000000..91afd7682005 --- /dev/null +++ b/sys/arch/vax/consolerl/defboo.hk @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! rk07 drive type boot to multi user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 3 ! rk07 drive type - uba0 - drive 0 +DEPOSIT R11 0 ! Software boot flags (multi user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/defboo.hp b/sys/arch/vax/consolerl/defboo.hp new file mode 100644 index 000000000000..ca3f5b2b0a6e --- /dev/null +++ b/sys/arch/vax/consolerl/defboo.hp @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! 'hp' drive type boot to multi user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 0 ! 'hp' drive type - mba0 - drive 0 +DEPOSIT R11 0 ! Software boot flags (multi user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/defboo.ra b/sys/arch/vax/consolerl/defboo.ra new file mode 100644 index 000000000000..7c6e5aae1289 --- /dev/null +++ b/sys/arch/vax/consolerl/defboo.ra @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! 'ra' MSCP drive type boot to multi user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 9 ! 'ra' MSCP drive type - uba0 - drive 0 +DEPOSIT R11 0 ! Software boot flags (multi user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/defboo.up b/sys/arch/vax/consolerl/defboo.up new file mode 100644 index 000000000000..b394b49403ee --- /dev/null +++ b/sys/arch/vax/consolerl/defboo.up @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! 'up' drive type boot to multi user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 2 ! 'up' drive type - uba0 - drive 0 +DEPOSIT R11 0 ! Software boot flags (multi user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/hkmboo.com b/sys/arch/vax/consolerl/hkmboo.com new file mode 100644 index 000000000000..91afd7682005 --- /dev/null +++ b/sys/arch/vax/consolerl/hkmboo.com @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! rk07 drive type boot to multi user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 3 ! rk07 drive type - uba0 - drive 0 +DEPOSIT R11 0 ! Software boot flags (multi user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/hksboo.com b/sys/arch/vax/consolerl/hksboo.com new file mode 100644 index 000000000000..ca20e30f60e1 --- /dev/null +++ b/sys/arch/vax/consolerl/hksboo.com @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! rk07 drive type boot to single user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 3 ! rk07 drive type - uba0 - drive 0 +DEPOSIT R11 2 ! Software boot flags (single user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/hpmboo.com b/sys/arch/vax/consolerl/hpmboo.com new file mode 100644 index 000000000000..ca3f5b2b0a6e --- /dev/null +++ b/sys/arch/vax/consolerl/hpmboo.com @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! 'hp' drive type boot to multi user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 0 ! 'hp' drive type - mba0 - drive 0 +DEPOSIT R11 0 ! Software boot flags (multi user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/hpsboo.com b/sys/arch/vax/consolerl/hpsboo.com new file mode 100644 index 000000000000..4b9d6be91116 --- /dev/null +++ b/sys/arch/vax/consolerl/hpsboo.com @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! 'hp' drive type boot to single user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 0 ! 'hp' drive type - mba0 - drive 0 +DEPOSIT R11 2 ! Software boot flags (single user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/ramboo.com b/sys/arch/vax/consolerl/ramboo.com new file mode 100644 index 000000000000..7c6e5aae1289 --- /dev/null +++ b/sys/arch/vax/consolerl/ramboo.com @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! 'ra' MSCP drive type boot to multi user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 9 ! 'ra' MSCP drive type - uba0 - drive 0 +DEPOSIT R11 0 ! Software boot flags (multi user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/rasboo.com b/sys/arch/vax/consolerl/rasboo.com new file mode 100644 index 000000000000..9e43ec98c507 --- /dev/null +++ b/sys/arch/vax/consolerl/rasboo.com @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! 'ra' MSCP drive type boot to single user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 9 ! 'ra' MSCP drive type - uba0 - drive 0 +DEPOSIT R11 2 ! Software boot flags (single user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/upmboo.com b/sys/arch/vax/consolerl/upmboo.com new file mode 100644 index 000000000000..b394b49403ee --- /dev/null +++ b/sys/arch/vax/consolerl/upmboo.com @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! 'up' drive type boot to multi user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 2 ! 'up' drive type - uba0 - drive 0 +DEPOSIT R11 0 ! Software boot flags (multi user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2 diff --git a/sys/arch/vax/consolerl/upsboo.com b/sys/arch/vax/consolerl/upsboo.com new file mode 100644 index 000000000000..2420463aac14 --- /dev/null +++ b/sys/arch/vax/consolerl/upsboo.com @@ -0,0 +1,18 @@ +! +! Load 'boot.' and boot 4.3BSD. +! +! 'up' drive type boot to single user mode +! +! +SET SNAP ON ! Enable ERROR_HALT snapshots +SET FBOX OFF ! System will turn on Fbox +INIT ! SRM processor init +UNJAM ! UNJAM SBIA's and enable master sbia interrupts +INIT/PAMM ! INIT physical address memory map +DEPOSIT CSWP 8 ! Turn off the cache - System will enable cache + +DEPOSIT R10 2 ! 'up' drive type - uba0 - drive 0 +DEPOSIT R11 2 ! Software boot flags (single user mode) + +LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0 +START 2 ! Start 'boot.' at the address 2