Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Apr 2015 20:01:29 -0300
From:      sergio de Almeida Lenzi <lenzi.sergio@gmail.com>
To:        freebsd-questions <questions@freebsd.org>
Subject:   help with caja, SOLVED
Message-ID:  <1428793289.59024.6.camel@lenzinote.lenzicasa>

next in thread | raw e-mail | index | archive | help
After searching all around I found that
the problem was in the hal daemon
an custom FDI file fixes the problem

create a
file /usr/local/share/hal/fdi/preprobe/20thirdparty/ignore_scsi.fdi
with contents:
=============================================================
<?xml version="1.0" encoding="utf-8"?>

<deviceinfo version="0.2">
        <device>
                <match key="storage.bus" string="scsi">
                        <match key="storage.drive_type" string="disk">
                                <match key="storage.removable"
bool="false">
                                        <merge key="info.ignore"
type="bool">true</merge>
                                </match>
                        </match>
                </match>
        </device>
</deviceinfo>
=============================================================

and restart hal:  service hald restart
after log out and log in, the bogus scsi drives are gone..






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