Now that boot32 can pass in a useful frame rate, it's reasonable to use the

standard video mode list in our example kernels, rather that a somewhat
random subset.  So do that.
This commit is contained in:
bjh21 2006-08-19 23:01:23 +00:00
parent da29c632f0
commit d91f74bef1
5 changed files with 36 additions and 22 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: EB7500ATX,v 1.27 2006/08/14 22:04:30 bjh21 Exp $ # $NetBSD: EB7500ATX,v 1.28 2006/08/19 23:01:23 bjh21 Exp $
# #
# EB7500ATX --- NetBSD/acorn32 complete configuration # EB7500ATX --- NetBSD/acorn32 complete configuration
# #
@ -22,7 +22,7 @@ include "arch/acorn32/conf/std.acorn32"
options INCLUDE_CONFIG_FILE # embed config file in kernel binary options INCLUDE_CONFIG_FILE # embed config file in kernel binary
#ident "EB7500ATX-$Revision: 1.27 $" #ident "EB7500ATX-$Revision: 1.28 $"
# estimated number of users # estimated number of users
maxusers 32 maxusers 32
@ -284,10 +284,13 @@ options RAID_AUTOCONFIG # auto-configuration of RAID components
pseudo-device md 1 # Ramdisk driver pseudo-device md 1 # Ramdisk driver
pseudo-device rnd # /dev/random and in-kernel generator pseudo-device rnd # /dev/random and in-kernel generator
pseudo-device clockctl # user control of clock subsystem pseudo-device clockctl # user control of clock subsystem
makeoptions MONITOR="Taxan875+LR"
#makeoptions MONITOR="AKF60"
makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"
pseudo-device ksyms # /dev/ksyms pseudo-device ksyms # /dev/ksyms
#pseudo-device pf # PF packet filter #pseudo-device pf # PF packet filter
#pseudo-device pflog # PF log if #pseudo-device pflog # PF log if
# If the standard modes don't work for your monitor, you can specify
# a RISC-OS-format monitor definition file and a list of modes here.
#makeoptions MONITOR="Taxan875+LR"
#makeoptions MONITOR="AKF60"
#makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"

View File

@ -1,4 +1,4 @@
# $NetBSD: GENERIC,v 1.73 2006/08/14 22:04:30 bjh21 Exp $ # $NetBSD: GENERIC,v 1.74 2006/08/19 23:01:23 bjh21 Exp $
# #
# GENERIC --- NetBSD/acorn32 complete configuration # GENERIC --- NetBSD/acorn32 complete configuration
# #
@ -22,7 +22,7 @@ include "arch/acorn32/conf/std.acorn32"
options INCLUDE_CONFIG_FILE # embed config file in kernel binary options INCLUDE_CONFIG_FILE # embed config file in kernel binary
#ident "GENERIC-$Revision: 1.73 $" #ident "GENERIC-$Revision: 1.74 $"
# estimated number of users # estimated number of users
maxusers 32 maxusers 32
@ -355,10 +355,6 @@ pseudo-device fss 4 # file system snapshot device
pseudo-device md 1 # Ramdisk driver pseudo-device md 1 # Ramdisk driver
pseudo-device rnd # /dev/random and in-kernel generator pseudo-device rnd # /dev/random and in-kernel generator
pseudo-device clockctl # user control of clock subsystem pseudo-device clockctl # user control of clock subsystem
makeoptions MONITOR="Taxan875+LR"
#makeoptions MONITOR="AKF60"
makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"
pseudo-device ksyms # /dev/ksyms pseudo-device ksyms # /dev/ksyms
#pseudo-device pf # PF packet filter #pseudo-device pf # PF packet filter
#pseudo-device pflog # PF log if #pseudo-device pflog # PF log if
@ -379,3 +375,10 @@ pseudo-device ksyms # /dev/ksyms
#options VERIFIED_EXEC_FP_SHA512 #options VERIFIED_EXEC_FP_SHA512
#options VERIFIED_EXEC_FP_SHA1 #options VERIFIED_EXEC_FP_SHA1
#options VERIFIED_EXEC_FP_MD5 #options VERIFIED_EXEC_FP_MD5
# If the standard modes don't work for your monitor, you can specify
# a RISC-OS-format monitor definition file and a list of modes here.
#makeoptions MONITOR="Taxan875+LR"
#makeoptions MONITOR="AKF60"
#makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"

View File

@ -1,4 +1,4 @@
# $NetBSD: INSTALL,v 1.42 2006/08/14 22:04:30 bjh21 Exp $ # $NetBSD: INSTALL,v 1.43 2006/08/19 23:01:23 bjh21 Exp $
# #
# INSTALL -- NetBSD/acorn32 install configuration # INSTALL -- NetBSD/acorn32 install configuration
# #
@ -22,7 +22,7 @@ include "arch/acorn32/conf/std.acorn32"
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
#ident "INSTALL-$Revision: 1.42 $" #ident "INSTALL-$Revision: 1.43 $"
# estimated number of users # estimated number of users
maxusers 32 maxusers 32
@ -333,6 +333,9 @@ pseudo-device ccd 2 # concatenated disk devices
pseudo-device md 1 # Ramdisk driver pseudo-device md 1 # Ramdisk driver
pseudo-device rnd # /dev/random and in-kernel generator pseudo-device rnd # /dev/random and in-kernel generator
makeoptions MONITOR="Taxan875+LR" # If the standard modes don't work for your monitor, you can specify
# a RISC-OS-format monitor definition file and a list of modes here.
#makeoptions MONITOR="Taxan875+LR"
#makeoptions MONITOR="AKF60" #makeoptions MONITOR="AKF60"
makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900" #makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"

View File

@ -1,4 +1,4 @@
# $NetBSD: LOWMEM_WSCONS,v 1.43 2006/08/14 22:04:30 bjh21 Exp $ # $NetBSD: LOWMEM_WSCONS,v 1.44 2006/08/19 23:01:23 bjh21 Exp $
# #
# LOWMEM_WSCONS -- RiscPC config with wscons for SMALL machines # LOWMEM_WSCONS -- RiscPC config with wscons for SMALL machines
# #
@ -291,6 +291,9 @@ pseudo-device md 1 # Ramdisk driver
pseudo-device rnd # /dev/random and /dev/urandom pseudo-device rnd # /dev/random and /dev/urandom
pseudo-device clockctl # user control of clock subsystem pseudo-device clockctl # user control of clock subsystem
makeoptions MONITOR="Taxan875+LR" # If the standard modes don't work for your monitor, you can specify
# a RISC-OS-format monitor definition file and a list of modes here.
#makeoptions MONITOR="Taxan875+LR"
#makeoptions MONITOR="AKF60" #makeoptions MONITOR="AKF60"
makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900" #makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"

View File

@ -1,4 +1,4 @@
# $NetBSD: NC,v 1.42 2006/08/14 22:04:30 bjh21 Exp $ # $NetBSD: NC,v 1.43 2006/08/19 23:01:23 bjh21 Exp $
# #
# NC - with wscons # NC - with wscons
# #
@ -285,7 +285,9 @@ pseudo-device clockctl # user control of clock subsystem
# a pseudo device needed for SMBFS # a pseudo device needed for SMBFS
#pseudo-device nsmb # experimental - SMB requester #pseudo-device nsmb # experimental - SMB requester
# If the standard modes don't work for your monitor, you can specify
# a RISC-OS-format monitor definition file and a list of modes here.
makeoptions MONITOR="Taxan875+LR" #makeoptions MONITOR="Taxan875+LR"
#makeoptions MONITOR="AKF60" #makeoptions MONITOR="AKF60"
makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900" #makeoptions MODES="1024,768,60 1024,768,70 800,600,60 640,480,60 1280,1024 1152,900"