Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Feb 2001 16:58:36 +0100
From:      Harald Weis <wei@eurocontrol.fr>
To:        freebsd-questions@FreeBSD.ORG
Subject:   GramoFile1.6 on FreeBSD4.2
Message-ID:  <3A9688AC.7E9D12EE@eurocontrol.fr>

next in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------0603BC430BDB42CD392C6811
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

gramofile1.6 outputs the error message

''semget: No space left on device''

Increasing the default values of some or all SEM* options
makes no difference.
What is wrong in MYKERNEL?
(the attached instance does not modify the default values)

Thanks for help.


Harald Weis

--------------0603BC430BDB42CD392C6811
Content-Type: text/plain; charset=us-ascii;
 name="MYKERNEL"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="MYKERNEL"

#
# MYKERNEL -- My kernel configuration file for FreeBSD/i386
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#    http://www.FreeBSD.org/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ./LINT configuration file. If you are
# in doubt as to the purpose or necessity of a line, check first in LINT.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.20 2000/10/31 23:16:07 n_hibma Exp $

machine		i386
cpu		I686_CPU
ident		MYKERNEL
maxusers	32

#makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols

options 	INET			#InterNETworking
options 	FFS			#Berkeley Fast Filesystem
options 	FFS_ROOT		#FFS usable as root device [keep this!]
options 	PROCFS			#Process filesystem
options 	COMPAT_43		#Compatible with BSD 4.3 [KEEP THIS!]
options 	UCONSOLE		#Allow users to grab the console
options 	KTRACE			#ktrace(1) support
options 	SYSVSHM			#SYSV-style shared memory
options 	SYSVMSG			#SYSV-style message queues
options 	SYSVSEM			#SYSV-style semaphores
options 	P1003_1B		#Posix P1003_1B real-time extensions
options 	_KPOSIX_PRIORITY_SCHEDULING
options		ICMP_BANDLIM		#Rate limit bad replies

device		isa
device		pci

# Floppy drives
device		fdc0	at isa? port IO_FD1 irq 6 drq 2
device		fd0	at fdc0 drive 0

# ATA and ATAPI devices
device		ata
device		atadisk			# ATA disk drives
device		atapicd			# ATAPI CDROM drives
#device		atapifd			# ATAPI floppy drives
options 	ATA_STATIC_ID		#Static device numbering
options 	ATA_ENABLE_ATAPI_DMA	#Enable DMA on ATAPI devices

# atkbdc0 controls both the keyboard and the PS/2 mouse
device		atkbdc0	at isa? port IO_KBD
device		atkbd0	at atkbdc? irq 1 flags 0x1
device		psm0	at atkbdc? irq 12

device		vga0	at isa?

# splash screen/screen saver
pseudo-device	splash

# syscons is the default console driver, resembling an SCO console
device		sc0	at isa? flags 0x100

# Floating point support - do not disable.
device		npx0	at nexus? port IO_NPX irq 13

# Power management support (see LINT for more options)
#device		apm0    at nexus? disable flags 0x20 # Advanced Power Management

# Serial (COM) ports
device		sio0	at isa? port IO_COM1 flags 0x10 irq 4
device		sio1	at isa? port IO_COM2 irq 3

# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
device		miibus		# MII bus support
device		xl		# 3Com 3c90x (``Boomerang'', ``Cyclone'')

# Pseudo devices - the number indicates how many units to allocated.
pseudo-device	loop		# Network loopback
pseudo-device	ether		# Ethernet support
pseudo-device	pty		# Pseudo-ttys (telnet etc)

# The `bpf' pseudo-device enables the Berkeley Packet Filter.
# Be aware of the administrative consequences of enabling this!
pseudo-device	bpf		#Berkeley packet filter

# USB support
device		uhci		# UHCI PCI->USB interface
device		ohci		# OHCI PCI->USB interface
device		usb		# USB Bus (required)
device		ugen		# Generic
device		uhid		# "Human Interface Devices"
device		ukbd		# Keyboard
device		ulpt		# Printer
device		ums		# Mouse

# Audio driver
#
# For PnP/PCI sound cards
device          pcm
options		PNPBIOS

--------------0603BC430BDB42CD392C6811
Content-Type: text/plain; charset=us-ascii;
 name="sem-option-defaults"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="sem-option-defaults"

# Maximum number of entries in a semaphore map.
options         SEMMAP=31
 
# Maximum number of System V semaphores that can be used on the system at
# one time.
options         SEMMNI=11
 
# Total number of semaphores system wide
options         SEMMNS=61
 
# Total number of undo structures in system
options         SEMMNU=31
 
# Maximum number of System V semaphores that can be used by a single process
# at one time.
options         SEMMSL=61
 
# Maximum number of operations that can be outstanding on a single System V
# semaphore at one time.
options         SEMOPM=101
 
# Maximum number of undo operations that can be outstanding on a single
# System V semaphore at one time.
options         SEMUME=11
 
# Maximum number of shared memory pages system wide.
options         SHMALL=1025
 
# Maximum size, in bytes, of a single System V shared memory region.
options         SHMMAX="(SHMMAXPGS*PAGE_SIZE+1)"
options         SHMMAXPGS=1025
 
# Minimum size, in bytes, of a single System V shared memory region.
options         SHMMIN=2
 
# Maximum number of shared memory regions that can be used on the system
# at one time.
options         SHMMNI=33
 
# Maximum number of System V shared memory regions that can be attached to
# a single process at one time.
options         SHMSEG=9                                                            

--------------0603BC430BDB42CD392C6811
Content-Type: text/plain; charset=us-ascii;
 name="dmesg"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="dmesg"

Copyright (c) 1992-2000 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
	The Regents of the University of California. All rights reserved.
FreeBSD 4.2-RC1 #4: Mon Dec 18 14:56:30 CET 2000
    wei@wei.eurocontrol.fr:/usr/src/sys/compile/MYKERNEL
Timecounter "i8254"  frequency 1193182 Hz
Timecounter "TSC"  frequency 551252342 Hz
CPU: Pentium III/Pentium III Xeon/Celeron (551.25-MHz 686-class CPU)
  Origin = "GenuineIntel"  Id = 0x673  Stepping = 3
  Features=0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE>
real memory  = 201261056 (196544K bytes)
avail memory = 193040384 (188516K bytes)
Preloaded elf kernel "kernel" at 0xc02cb000.
Preloaded userconfig_script "/boot/kernel.conf" at 0xc02cb09c.
Pentium Pro MTRR support enabled
npx0: <math processor> on motherboard
npx0: INT 16 interface
pcib0: <Intel 82443BX (440 BX) host to PCI bridge> on motherboard
pci0: <PCI bus> on pcib0
pcib1: <Intel 82443BX (440 BX) PCI-PCI (AGP) bridge> at device 1.0 on pci0
pci1: <PCI bus> on pcib1
pci1: <Matrox MGA G200 AGP graphics accelerator> at 0.0 irq 9
isab0: <Intel 82371AB PCI to ISA bridge> at device 4.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <Intel PIIX4 ATA33 controller> port 0x1020-0x102f at device 4.1 on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata1: at 0x170 irq 15 on atapci0
uhci0: <Intel 82371AB/EB (PIIX4) USB controller> port 0x1000-0x101f irq 11 at device 4.2 on pci0
usb0: <Intel 82371AB/EB (PIIX4) USB controller> on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
chip1: <Intel 82371AB Power management controller> port 0x1040-0x104f at device 4.3 on pci0
csa0: <Crystal Semiconductor CS4614/4622/4624 Audio accelerator/4280 Audio controller> mem 0xf4000000-0xf40fffff,0xf4100000-0xf4100fff irq 10 at device 6.0 on pci0
pcm0: <CS461x PCM Audio> on csa0
xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0x1080-0x10ff mem 0xf4101000-0xf410107f irq 11 at device 11.0 on pci0
xl0: Ethernet address: 00:40:ca:1c:01:04
miibus0: <MII bus> on xl0
xlphy0: <3Com internal media interface> on miibus0
xlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
fdc0: <NEC 72065B or clone> at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
fdc0: FIFO enabled, 8 bytes threshold
fd0: <1440-KB 3.5" drive> on fdc0 drive 0
atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0
atkbd0: <AT Keyboard> flags 0x1 irq 1 on atkbdc0
psm0: <PS/2 Mouse> irq 12 on atkbdc0
psm0: model IntelliMouse, device ID 3
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
sio0: type 16550A
sio1 at port 0x2f8-0x2ff irq 3 on isa0
sio1: type 16550A
sbc0: <Creative ViBRA16X> at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,3 on isa0
pcm1: <SB DSP 4.16 (ViBRA16X)> on sbc0
unknown: <PNP0000> can't assign resources
unknown: <PNP0303> can't assign resources
unknown: <PNP0f13> can't assign resources
unknown: <PNP0501> can't assign resources
unknown: <PNP0501> can't assign resources
unknown: <PNP0401> can't assign resources
unknown: <PNP0700> can't assign resources
ata1-slave: ata_command: timeout waiting for intr
ata1-slave: identify failed
ad0: 8063MB <Maxtor 90871U2> [16383/16/63] at ata0-master UDMA33
acd0: CDROM <CD-224E> at ata1-master using WDMA2
Mounting root from ufs:/dev/ad0s2a

--------------0603BC430BDB42CD392C6811--


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3A9688AC.7E9D12EE>