[Pcbsd-developer] PC-BSD 1.0 with FreeBSD 6.1 issues
Status: Beta
Brought to you by:
kmoore134
|
From: Andrei K. <an...@bs...> - 2006-05-16 21:29:36
|
I don't know is it my problem or 6.1 USB engine is broken:
---------------------------------------------------------------
da0 at umass-sim0 bus 0 target 0 lun 0
da0: <Samsung DSC DKJ2 > Removable Direct Access SCSI-0 device
da0: 1.000MB/s transfers
da0: 488MB (1000448 512 byte sectors: 64H 32S/T 488C)
umass0: Phase Error, residue = 0
(da0:umass-sim0:0:0:0): Synchronize cache failed, status == 0x4, scsi status
== 0x0
umass0: Phase Error, residue = 0
(da0:umass-sim0:0:0:0): Synchronize cache failed, status == 0x4, scsi status
== 0x0
umass0: Phase Error, residue = 0
---------------------------------------------------------------
with 6.0 it worked just fine.
After major upgrade I can't mount filesystems automatically anymore- only
manually :( Device insertion detection works but just can't mount anything.
Kernel changes:
----------------------------------------------------------------------------------------------
machine i386
#cpu I486_CPU
#cpu I586_CPU
cpu I686_CPU
ident NEWPCBSD
# To statically compile in device wiring instead of /boot/device.hints
#hints "GENERIC.hints" # Default places to look for devices.
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug
symbols
options SCHED_ULE # ULE scheduler
#options SCHED_4BSD # 4BSD scheduler
options VESA # Vesa Support for Splash
options SC_PIXEL_MODE # add support for the raster tex
# Direct Rendering modules for 3D acceleration.
device drm # DRM core module required by DRM drivers
device i915drm # Intel i830 through i915
device mach64drm # ATI Rage Pro, Rage Mobility P/M, Rage XL
device mgadrm # AGP Matrox G200, G400, G450, G550
device r128drm # ATI Rage 128
device radeondrm # ATI Radeon
device savagedrm # S3 Savage3D, Savage4
device sisdrm # SiS 300/305, 540, 630
device tdfxdrm # 3dfx Voodoo 3/4/5 and Banshee
#!!!options DRM_DEBUG # Include debug printfs (slow)
options HZ=1000
options DEVICE_POLLING
# PF firewall
device pf
device pflog
device pfsync
# PF ALTQ
options ALTQ
options ALTQ_CBQ # Class Bases Queuing (CBQ)
options ALTQ_RED # Random Early Detection (RED)
options ALTQ_RIO # RED In/Out
options ALTQ_HFSC # Hierarchical Packet Scheduler (HFSC)
options ALTQ_PRIQ # Priority Queuing (PRIQ)
options ALTQ_NOPCC # Required for SMP build
----------------------------------------------------------------------------------------------
/etc/devfs.rules
----------------------------------------------------------------------------------------------
[devfsrules_common=7]
add path 'acd*' mode 660 group operator
add path 'cd*' mode 660 group operator
add path 'pass*' mode 660 group operator
add path 'xpt*' mode 660 group operator
----------------------------------------------------------------------------------------------
/etc/rc.conf
----------------------------------------------------------------------------------------------
background_dhclient="YES"
hostname="localhost.my.domain"
compat5x_enable="YES"
NIC="de em ixgb txp vx bfe bge dc fxp lge nge pcn re rl sf sis sk ste ti tl tx
vge vr wb xl cs ed ex ep fe ie lnc sn xe an awi wi nve"
for i in $NIC; do
eval ifconfig_${i}0="DHCP"
eval ifconfig_${i}1="DHCP"
done
blanktime="180"
saver="logo"
sshd_enable="YES"
usbd_enable="YES"
moused_type="auto"
moused_enable="YES"
#Enable samba server
samba_enable="NO"
# Disable LPD
lpd_enable="NO"
# Enable CUPS
cupsd_enable="NO"
background_cupsd="YES"
enable_linux="YES"
# FSCK Enhancements
fsck_y_enable="YES"
background_fsck="YES"
tmpmfs="YES"
tmpsize="777m"
#tmpmfs_flags="-S -o noatime,noexec,nosuid,nosymfollow"
tmpmfs_flags="-S"
nfs_server_enable="NO"
sendmail_enable="NONE"
pf_enable="Yes"
pf_logd="Yes"
pf_conf="/etc/pf.conf"
#Disable probing of idle TCP connections to verify the peer is up and
reachable:
tcp_keepalive="YES"
#ICMP error response bandwith limiting. Helps protect against DoS attacks:
icmp_bandlim="YES"
devd_enable="YES"
devfs_system_ruleset="devfsrules_common"
removable_interfaces="an0 cbb0 cbb1 ed0 ed1 fd0 cd0 da0"
usbd_enable="YES"
ugen_load="YES"
umass_load="YES"
----------------------------------------------------------------------------------------------
/etc/pf.conf
----------------------------------------------------------------------------------------------
scrub in all
pass in all
pass out all
----------------------------------------------------------------------------------------------
/etc/hosts
----------------------------------------------------------------------------------------------
::1 localhost localhost.my.domain
127.0.0.1 localhost localhost.my.domain
----------------------------------------------------------------------------------------------
|