Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Feb 2000 12:25:11 -0800
From:      "Paul M . Lambert" <plambert@plambert.net>
To:        mobile@freebsd.org
Subject:   Re: suspend/resume on Tecra 8000 under 3.4-STABLE
Message-ID:  <20000216122511.D39478@pinky.plambert.net>
In-Reply-To: <200002161939.EAA04336@tasogare.imasy.or.jp>
References:  <20000216103625.B39478@pinky.plambert.net> <200002161939.EAA04336@tasogare.imasy.or.jp>

next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, 17 Feb 2000, Mitsuru IWASAKI wrote:

> Hi,
> 
> > I'm unable to get my Tecra 8000 to ever resume successfully.  Does anyone
> > have a list of suggestions to try to get it to work?
> 
> Did you try options "VM86" in your kernel config?

Yes, it's there.  Here's my entire kernel config file:

# $FreeBSD: src/sys/i386/conf/PCCARD,v 1.15.2.4 1999/08/29 17:05:59 iwasaki Exp 
$

machine         "i386"
#cpu            "I386_CPU"
#cpu            "I486_CPU"
cpu             "I586_CPU"
cpu             "I686_CPU"
ident           RUNT
maxusers        32

#options                MATH_EMULATE            #Support for x87 emulation
options         INET                    #InterNETworking
options         FFS                     #Berkeley Fast Filesystem
options         FFS_ROOT                #FFS usable as root device [keep this!]
options         MFS                     #Memory Filesystem
options         MFS_ROOT                #MFS usable as root device, "MFS" req'ed
options         NFS                     #Network Filesystem
options         NFS_ROOT                #NFS usable as root device, "NFS" req'ed
options         MSDOSFS                 #MSDOS Filesystem
options         "CD9660"                #ISO 9660 Filesystem
options         "CD9660_ROOT"           #CD-ROM usable as root. "CD9660" req'ed
options         PROCFS                  #Process filesystem
options         "COMPAT_43"             #Compatible with BSD 4.3 [KEEP THIS!]
options         SCSI_DELAY=15000        #Be pessimistic about Joe SCSI device
options         UCONSOLE                #Allow users to grab the console
options         FAILSAFE                #Be conservative
options         USERCONFIG              #boot -c editor
options         VISUAL_USERCONFIG       #visual boot -c editor

config          kernel  root on wd0

controller      isa0
controller      pnp0
controller      eisa0
controller      pci0

# flags 0x1 makes it assume 1.44MB floppy drive... may work to see
# floppy when attached after boot...
controller      fdc0    at isa? port "IO_FD1" bio flags 0x1 irq 6 drq 2
disk            fd0     at fdc0 drive 0
disk            fd1     at fdc0 drive 1

options         "CMD640"        # work around CMD640 chip deficiency
controller      wdc0    at isa? port "IO_WD1" bio irq 14
disk            wd0     at wdc0 drive 0
#disk           wd1     at wdc0 drive 1

#controller     wdc1    at isa? port "IO_WD2" bio irq 15
#disk           wd2     at wdc1 drive 0
#disk           wd3     at wdc1 drive 1

options         ATAPI           #Enable ATAPI support for IDE bus
options         ATAPI_STATIC    #Don't do it as an LKM
device          acd0            #IDE CD-ROM
#device         wfd0            #IDE Floppy (e.g. LS-120)

# atkbdc0 controlls both the keyboard and the PS/2 mouse
controller      atkbdc0 at isa? port IO_KBD tty
device          atkbd0  at isa? tty irq 1
device          psm0    at isa? tty irq 12

device          vga0    at isa? port ? conflicts

# splash screen/screen saver
pseudo-device   splash

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

device          npx0    at isa? port IO_NPX irq 13

#
# Laptop support (see LINT for more options)
#
device          apm0    at isa? #disable        flags 0x31 # Advanced Power Mana
gement

# PCCARD (PCMCIA) support
controller      card0
device          pcic0   at card?
device          pcic1   at card?

device          sio0    at isa? port "IO_COM1" flags 0x10 tty irq 4
device          sio1    at isa? port "IO_COM2" tty irq 3
device          sio2    at isa? disable port "IO_COM3" tty irq 5
device          sio3    at isa? disable port "IO_COM4" tty irq 9

# Parallel port
device          ppc0    at isa? port? flags 0x40 net irq 7
controller      ppbus0
device          lpt0    at ppbus?
device          plip0   at ppbus?
device          ppi0    at ppbus?
#controller     vpo0    at ppbus?

# Order is important here due to intrusive probes, do *not* alphabetize
# this list of network interfaces until the probes have been fixed.
# Right now it appears that the ie0 must be probed before ep0. See
# revision 1.20 of this file.

#device ed0 at isa? port 0x280 net irq 10 iomem 0xd8000
#device ie0 at isa? port 0x300 net irq 10 iomem 0xd0000
device ep0 at isa? port 0x300 net irq 10
#device ex0 at isa? port? net irq?
#device fe0 at isa? port 0x300 net irq ?
#device le0 at isa? port 0x300 net irq 5 iomem 0xd0000
#device lnc0 at isa? port 0x280 net irq 10 drq 0
#device xe0 at isa? port? net irq ?
#device ze0 at isa? port 0x300 net irq 10 iomem 0xd8000
#device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000
#device cs0 at isa? port 0x300 net irq ?

pseudo-device   loop
pseudo-device   ether
#pseudo-device  sl      1
pseudo-device   ppp     1
pseudo-device   tun     1
pseudo-device   pty     32
pseudo-device   snp     2
pseudo-device   gzip            # Exec gzipped a.out's

# KTRACE enables the system-call tracing facility ktrace(2).
# This adds 4 KB bloat to your kernel, and slightly increases
# the costs of each syscall.
options         KTRACE          #kernel tracing

# This provides support for System V shared memory and message queues.
#
options         SYSVSHM
options         SYSVMSG
options         SYSVSEM

#  The `bpfilter' pseudo-device enables the Berkeley Packet Filter.  Be
#  aware of the legal and administrative consequences of enabling this
#  option.  The number of devices determines the maximum number of
#  simultaneous BPF clients programs runnable.
pseudo-device   bpfilter 1      #Berkeley packet filter

options        USER_LDT

options        "MD5"
options        "VM86"

options        PERFMON
options        NETATALK
options        IPFIREWALL
options        IPFIREWALL_VERBOSE
options        IPDIVERT
options        IPFILTER
options        IPFILTER_LOG
options        "ICMP_BANDLIM"
# Real time extensions added int the 1993 Posix
# P1003_1B: Infrastructure
# _KPOSIX_PRIORITY_SCHEDULING: Build in _POSIX_PRIORITY_SCHEDULING
# _KPOSIX_VERSION:             Version kernel is built for

options         "P1003_1B"
options         "_KPOSIX_PRIORITY_SCHEDULING"
options         "_KPOSIX_VERSION=199309L"

options         SOFTUPDATES


-- 
I hate bombs, terrorism, fear, plans, future and past injustices, manifestos,
popular sentiment, ignition, timetables, meetings, and poorly adjusted
weasels.  A warm hello to my friends and fans in domestic surveillance!


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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000216122511.D39478>