← Back to team overview

kernel-packages team mailing list archive

Re: [Bug 969583] Re: 197b:2391 Internal SD card reader is not working on Dell XPS L501X

 

Christopher,

As I have changed from Ubuntu to Manjaro I am not any longer interested in
solving this bug.

Please ask other participants to do some testing for you.

Thanks for you help up to now!

Best regards,

Thomas


2013/12/29 Christopher M. Penalver <christopher.m.penalver@xxxxxxxxx>

> Callahan, this bug was reported a while ago and there hasn't been any
> activity in it recently. We were wondering if this is still an issue? If
> so, could you please test for this with the latest development release
> of Ubuntu? ISO images are available from http://cdimage.ubuntu.com
> /daily-live/current/ .
>
> If it remains an issue, could you please just make a comment to this?
>
> If reproducible, could you also please test the latest upstream kernel
> available (not the daily folder) following
> https://wiki.ubuntu.com/KernelMainlineBuilds ? It will allow additional
> upstream developers to examine the issue. Once you've tested the upstream
> kernel, please comment on which kernel version specifically you tested. If
> this bug is fixed in the mainline kernel, please add the following tags:
> kernel-fixed-upstream
> kernel-fixed-upstream-VERSION-NUMBER
>
> where VERSION-NUMBER is the version number of the kernel you tested. For
> example:
> kernel-fixed-upstream-v3.13-rc5
>
> This can be done by clicking on the yellow circle with a black pencil icon
> next to the word Tags located at the bottom of the bug description. As
> well, please remove the tag:
> needs-upstream-testing
>
> If the mainline kernel does not fix this bug, please add the following
> tags:
> kernel-bug-exists-upstream
> kernel-bug-exists-upstream-VERSION-NUMBER
>
> As well, please remove the tag:
> needs-upstream-testing
>
> Once testing of the upstream kernel is complete, please mark this bug's
> Status as Confirmed. Please let us know your results. Thank you for your
> understanding.
>
> ** Changed in: linux (Ubuntu)
>    Importance: Medium => Low
>
> ** Changed in: linux (Ubuntu)
>        Status: Triaged => Incomplete
>
> ** Summary changed:
>
> - 197b:2391 Internal SD card reader is not working on Dell XPS L501X
> + Internal SD card reader is not working on Dell XPS L501X
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/969583
>
> Title:
>   Internal SD card reader is not working on Dell XPS L501X
>
> Status in The Linux Kernel:
>   Confirmed
> Status in “linux” package in Ubuntu:
>   Incomplete
>
> Bug description:
>   Inserting a sd card into the internal card reader is not recognized by
>   the system. Same problem occurs with older ubuntu versions (driver
>   missing?)
>
>   WORKAROUND: Put the following in rescan.c:
>   #include <stdio.h>
>   main(){
>     FILE *outfile;
>     outfile=fopen("/sys/bus/pci/rescan","w");
>     if (outfile != NULL){
>       fprintf(outfile,"1\n");
>       fclose(outfile);
>     }
>     else printf("permission denied\n");
>   }
>
>   then compile with:
>   gcc rescan.c -o rescan
>   sudo cp rescan /usr/local/bin
>   sudo chown root /usr/local/bin/rescan
>   sudo chmod u+s /usr/local/bin/rescan
>
>   then in system->preferences->keyboard shortcuts, create a custom
>   keybinding (Add). The command should point to /usr/local/bin/rescan .
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 12.04
>   Package: linux-image-3.2.0-20-generic 3.2.0-20.33
>   ProcVersionSignature: Ubuntu 3.2.0-20.33-generic 3.2.12
>   Uname: Linux 3.2.0-20-generic x86_64
>   AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
>   ApportVersion: 1.95-0ubuntu1
>   Architecture: amd64
>   AudioDevicesInUse:
>    USER        PID ACCESS COMMAND
>    /dev/snd/controlC0:  ubuntu     3357 F.... pulseaudio
>   CasperVersion: 1.312
>   Date: Fri Mar 30 20:43:34 2012
>   GvfsMonitorLog: Monitoring events. Press Ctrl+C to quit.
>   HotplugNewDevices:
>
>   HotplugNewMounts:
>
>   LiveMediaBuild: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64
> (20120328)
>   MachineType: Dell Inc. XPS L501X
>   ProcEnviron:
>    TERM=xterm
>    LANG=de_DE.UTF-8
>    SHELL=/bin/bash
>   ProcFB:
>    0 nouveaufb
>    1 inteldrmfb
>   ProcKernelCmdLine: file=/cdrom/preseed/hostname.seed boot=casper
> initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
>   SourcePackage: linux
>   StagingDrivers: mei
>   Symptom: storage
>   UdisksMonitorLog: Monitoring activity from the disks daemon. Press
> Ctrl+C to cancel.
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 03/29/2011
>   dmi.bios.vendor: Dell Inc.
>   dmi.bios.version: A07
>   dmi.board.name: 00CKNG
>   dmi.board.vendor: Dell Inc.
>   dmi.board.version: A07
>   dmi.chassis.type: 8
>   dmi.chassis.vendor: Dell Inc.
>   dmi.chassis.version: A07
>   dmi.modalias:
> dmi:bvnDellInc.:bvrA07:bd03/29/2011:svnDellInc.:pnXPSL501X:pvrA07:rvnDellInc.:rn00CKNG:rvrA07:cvnDellInc.:ct8:cvrA07:
>   dmi.product.name: XPS L501X
>   dmi.product.version: A07
>   dmi.sys.vendor: Dell Inc.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/linux/+bug/969583/+subscriptions
>


-- 
Thomas Born
Longericher Str. 12
50767 Köln
Tel. 0172 / 6767 436

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/969583

Title:
  Internal SD card reader is not working on Dell XPS L501X

Status in The Linux Kernel:
  Confirmed
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  Inserting a sd card into the internal card reader is not recognized by
  the system. Same problem occurs with older ubuntu versions (driver
  missing?)

  WORKAROUND: Put the following in rescan.c:
  #include <stdio.h>
  main(){
    FILE *outfile;
    outfile=fopen("/sys/bus/pci/rescan","w");
    if (outfile != NULL){
      fprintf(outfile,"1\n");
      fclose(outfile);
    }
    else printf("permission denied\n");
  }

  then compile with:
  gcc rescan.c -o rescan
  sudo cp rescan /usr/local/bin
  sudo chown root /usr/local/bin/rescan
  sudo chmod u+s /usr/local/bin/rescan

  then in system->preferences->keyboard shortcuts, create a custom
  keybinding (Add). The command should point to /usr/local/bin/rescan .

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: linux-image-3.2.0-20-generic 3.2.0-20.33
  ProcVersionSignature: Ubuntu 3.2.0-20.33-generic 3.2.12
  Uname: Linux 3.2.0-20-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 1.95-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USER        PID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu     3357 F.... pulseaudio
  CasperVersion: 1.312
  Date: Fri Mar 30 20:43:34 2012
  GvfsMonitorLog: Monitoring events. Press Ctrl+C to quit.
  HotplugNewDevices:

  HotplugNewMounts:

  LiveMediaBuild: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120328)
  MachineType: Dell Inc. XPS L501X
  ProcEnviron:
   TERM=xterm
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB:
   0 nouveaufb
   1 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/hostname.seed boot=casper initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
  SourcePackage: linux
  StagingDrivers: mei
  Symptom: storage
  UdisksMonitorLog: Monitoring activity from the disks daemon. Press Ctrl+C to cancel.
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/29/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A07
  dmi.board.name: 00CKNG
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A07
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A07
  dmi.modalias: dmi:bvnDellInc.:bvrA07:bd03/29/2011:svnDellInc.:pnXPSL501X:pvrA07:rvnDellInc.:rn00CKNG:rvrA07:cvnDellInc.:ct8:cvrA07:
  dmi.product.name: XPS L501X
  dmi.product.version: A07
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/969583/+subscriptions


References