Welcome to Soft32 Linux Forums!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

[gentoo-user] something keeps incrementing links to CD and..

 
   Soft32 Home -> Linux -> User RSS
Next:  [gentoo-user] nvidia-drivers and vesa on GeForce ..  
Author Message
maxim wexler

External


Since: Feb 24, 2005
Posts: 379



(Msg. 1) Posted: Thu May 10, 2007 3:20 pm
Post subject: [gentoo-user] something keeps incrementing links to CD and DVD drives
Archived from groups: linux>gentoo>user (more info?)

Hi group,

By way of addendum to my earlier post on udev rules
and my CD and DVD drives, /dev/hdc and /dev/hdd.

At first the drives were'nt found then modprobeing
ide-generic.ko fixed that. But the links under /dev to
the drives were being mysteriously incremented. So
ide-generic was compiled with the kernel. Didn't work.

<...>
lrwxrwxrwx 1 root root 3 May 10 05:35
cdrom4 -> hdc
lrwxrwxrwx 1 root root 3 May 10 05:35
cdrom5 -> hdd
lrwxrwxrwx 1 root root 3 May 10 05:35 cdrw4
-> hdc
crw------- 1 root tty 5, 1 May 10 11:36
console
lrwxrwxrwx 1 root root 11 May 10 05:35 core
-> /proc/kcore
drwxr-xr-x 5 root root 100 May 10 05:35 disk
lrwxrwxrwx 1 root root 9 May 10 11:36 dsp
-> sound/dsp
lrwxrwxrwx 1 root root 3 May 10 05:35 dvd5
-> hdd
<...>

Every time I boot the links are incremented and the
optical drives don't work. Floppy and SATA hdd OK.

Here's /etc/rules.d/*cd*:


# This file was automatically generated by the
/lib/udev/write_cd_rules
# program, probably run by the
cd-aliases-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on
a single line
# and set the $GENERATED variable.

# LITE-ON_LTR-52327S (pci-0000:00:08.0-ide-0:0)
ENV{ID_CDROM}=="?*",
ENV{ID_PATH}=="pci-0000:00:08.0-ide-0:0",
SYMLINK+="cdrom", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*",
ENV{ID_PATH}=="pci-0000:00:08.0-ide-0:0",
SYMLINK+="cdrw", ENV{GENERATED}="1"
# CREATIVE_DVD-ROM_DVD6240E (pci-0000:00:08.0-ide-0:1)
ENV{ID_CDROM}=="?*",
ENV{ID_PATH}=="pci-0000:00:08.0-ide-0:1",
SYMLINK+="cdrom1", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*",
ENV{ID_PATH}=="pci-0000:00:08.0-ide-0:1",
SYMLINK+="dvd1", ENV{GENERATED}="1"
# LITE-ON_LTR-52327S (ide-0:0)
#ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="ide-0:0",
SYMLINK+="cdrom2", ENV{GENERATED}="1"
#ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="ide-0:0",
SYMLINK+="cdrw2", ENV{GENERATED}="1"
# CREATIVE_DVD-ROM_DVD6240E (ide-0:1)
#ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="ide-0:1",
SYMLINK+="cdrom3", ENV{GENERATED}="1"
#ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="ide-0:1",
SYMLINK+="dvd3", ENV{GENERATED}="1"
# these rules generate rules for the
/dev/{cdrom,dvd,...} symlinks

ACTION=="add", SUBSYSTEM=="block",
ENV{ID_CDROM}=="?*", ENV{GENERATED}!="?*",
PROGRAM="write_cd_rules", SYMLINK+="%c"

I commented out the extra lines but it didn't help.

Isn't the '+=' in SYMLINK+="cdrom" computerese for
'add a one'?

FWIW, from the boot console I see something new:

Running hdparm
HDIO_SET_DMA failed Operation not permitted

for /dev/hdc and /dev/hdd

From .config the IDE stuff:

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
# CONFIG_BLK_DEV_CMD640 is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_BLK_DEV_GENERIC is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
CONFIG_BLK_DEV_AMD74XX=m
# CONFIG_BLK_DEV_ATIIXP is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_CS5535 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_JMICRON is not set
# CONFIG_BLK_DEV_SC1200 is not set
# CONFIG_BLK_DEV_PIIX is not set
# CONFIG_BLK_DEV_IT821X is not set
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
# CONFIG_BLK_DEV_SVWKS is not set
CONFIG_BLK_DEV_SIIMAGE=m
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_IVB is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set

Is it that 'FORCED' thing?

Maxim



____________________________________________________________________________________
Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html
--
gentoo-user.TakeThisOut@gentoo.org mailing list
Back to top
Login to vote
burmata

External


Since: May 10, 2007
Posts: 2



(Msg. 2) Posted: Thu May 10, 2007 4:00 pm
Post subject: [gentoo-user] Onboard video [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"VIA Chrome 9 HC IGP" could anyone tell me, what driver should I use for it
?

Thanks in advice!

--
gentoo-user.RemoveThis@gentoo.org mailing list
Back to top
Login to vote
Benno Schulenberg

External


Since: May 31, 2007
Posts: 298



(Msg. 3) Posted: Thu May 10, 2007 5:20 pm
Post subject: Re: [gentoo-user] Onboard video [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

burmata.DeleteThis@dir.bg wrote:
> "VIA Chrome 9 HC IGP" could anyone tell me, what driver should I
> use for it ?

For the moment: xf86-video-vesa.

Support for your type of Chrome integrated graphics chip is being
worked on:
http://wiki.openchrome.org/tikiwiki/tiki-index.php?page=HardwareCaveats

If you have no trouble compiling things yourself, this briefly
explains how:
http://wiki.openchrome.org/tikiwiki/tiki-index.php?page=Work%20In%20Progress


By the way, please don't hi-jack threads: don't reply to a random
email and change the subject, but start a clean, new message.

Benno
--
gentoo-user.DeleteThis@gentoo.org mailing list
Back to top
Login to vote
burmata

External


Since: May 10, 2007
Posts: 2



(Msg. 4) Posted: Thu May 10, 2007 5:40 pm
Post subject: Re: [gentoo-user] Onboard video [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

thanks

----- Original Message -----
From: "Benno Schulenberg" <benno.schulenberg DeleteThis @gmail.com>
To: <gentoo-user DeleteThis @lists.gentoo.org>
Sent: Thursday, May 10, 2007 11:12 PM
Subject: Re: [gentoo-user] Onboard video


> burmata DeleteThis @dir.bg wrote:
>> "VIA Chrome 9 HC IGP" could anyone tell me, what driver should I
>> use for it ?
>
> For the moment: xf86-video-vesa.
>
> Support for your type of Chrome integrated graphics chip is being
> worked on:
> http://wiki.openchrome.org/tikiwiki/tiki-index.php?page=HardwareCaveats
>
> If you have no trouble compiling things yourself, this briefly
> explains how:
> http://wiki.openchrome.org/tikiwiki/tiki-index.php?page=Work%20In%20Progress
>
>
> By the way, please don't hi-jack threads: don't reply to a random
> email and change the subject, but start a clean, new message.
>
> Benno
> --
> gentoo-user DeleteThis @gentoo.org mailing list
>
>

--
gentoo-user DeleteThis @gentoo.org mailing list
Back to top
Login to vote
Display posts from previous:   
Related Topics:
[gentoo-user] Some more security links - I'm not sure these were included. http://www.tldp.org/HOWTO/HOWTO-INDEX/admin.html#ADMSECURITY..

[gentoo-user] links in Thunderbird - I recently did my first-in-a-long-while "emerge world". Now, when I click a link in Thunderbird nothing happ...

[gentoo-user] links w/o benefit of X - Hello everybody, On my new setup I'd like to be able to surf the web using links before I try configuring X and..

[gentoo-user] many corrupt links - Hi group, I don't even know if this is a problem because my unit is a 686 but these all display in flashing white on..

[gentoo-user] many corrupt links - Hello group, I came across the following corrupted links(except as noted). From my notes I see they date from the time...

[gentoo-user] Konq (3.3.0) does not go to links in hotmail - I've just upgraded to KDE 3.3.0. If I get into hotmail and click on one of my messages in my message list, nothing..
       Soft32 Home -> Linux -> User All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Categories:
 Windows
  Linux
 Mac
 PDA


[ Contact us | Terms of Service/Privacy Policy ]