Auteur Sujet: Problème d' accès à la carte SD  (Lu 52226 fois)

0 Membres et 1 Invité sur ce sujet

Hors ligne pccb00

  • Membre Complet
  • ***
  • Messages: 102
Problème d' accès à la carte SD
« le: 02 mars 2007 à 18:17:47 »
Je ne comprends pas mais depuis que j'ai installé la 2.0.8 en flash et la version 2.0.8 Doume en multiboot j'ai des problèmes pour accéder a ma carte SD,que ce soit en FTP, Telnet ou via le menu du Tgs100 je ne vois plus aucun répertoires ou fichiers. Si je redémarre l' Itgate parfois c'est ok mais le plus souvent je suis de nouveau bloqué.
De plus si j'essaie d'installer une autre image, cela plante impossible d'écrire sur la carte SD.

AB IPBox 9000HD multiboot NLB-R8728 - Enigma2

Hors ligne Doume

  • The Boss
  • Administrateur
  • Membre Héroïque
  • *****
  • Messages: 6.185
  • Administrateur
    • Doume
Re: Problème d' accès à la carte SD
« Réponse #1 le: 02 mars 2007 à 18:21:33 »
D'après ce que tu décris, ça ressemble à une panne harware

Pour ma part, avec une 2.0.8 en flash, ça marche sans problèmes

Peux-tu poster le début de ton script /var/bin/extra_run (en flash) ?
Peut-être le patch installé par iBoot est incorrect ?
 
J'ai tous les droits, je suis chez moi.
Au moindre non-respect des règles, je vire les importuns.

Hors ligne fluche

  • Membre Complet
  • ***
  • Messages: 145
Re: Problème d' accès à la carte SD
« Réponse #2 le: 02 mars 2007 à 19:57:06 »
Salut,

j'ai aussi parfois ce problème (2.0.8 off en flash). Après un certain temps, impossible d'accèder à /mmc

Si je fait un umount /mmc -> device or resource busy

En redémarrant, c'est ok mais pour combien de temps ???

voici le début du fichier /var/bin/extra_run :

#!/bin/sh
#<iboot_start>#######Don't_remove_this_line######################
# Please don't edit this part of script : required by iboot #####
#################################################################
#
# Try to mount memory card
#
if [ -e "/dev/scsi/host0/bus0/target0/lun0/part1" ]; then
   mount -t ext3 /dev/scsi/host0/bus0/target0/lun0/part1 /mmc   
else
   if [ -e "/dev/scsi/host0/bus0/target0/lun0/disc" ]; then
      mount -t ext3 /dev/scsi/host0/bus0/target0/lun0/disc /mmc   
   fi
fi
#
# Try to mount harddisk
#
if [ -e "/dev/ide/host0/bus0/target0/lun0/part1" ]; then
   mount -t ext3 /dev/ide/host0/bus0/target0/lun0/part1 /hdd
else
   if [ -e "/dev/ide/host0/bus0/target0/lun0/disc" ]; then
      mount -t ext3 /dev/ide/host0/bus0/target0/lun0/disc /hdd   
   fi
fi
#
# Try to start swap files
#
if [ -e "/mmc/swapfile" ]; then
   /sbin/swapon /mmc/swapfile
else
if [ -e "/hdd/swapfile" ]; then
   /sbin/swapon /hdd/swapfile
fi
fi
#
# Now we can start bootmenue
#
if [ -e "/mmc/iboot/bin/bootmenue" ]; then
   /mmc/iboot/bin/bootmenue /mmc/iboot
   /tmp/bm.sh
fi

Merci.
@+
DM 7025S - HD 160gb
| OpenPLi |
VU+ Duo - HD 500gb
| OpenPLi |

Hors ligne Doume

  • The Boss
  • Administrateur
  • Membre Héroïque
  • *****
  • Messages: 6.185
  • Administrateur
    • Doume
Re: Problème d' accès à la carte SD
« Réponse #3 le: 02 mars 2007 à 20:32:44 »
Tout a l'air correct, de ce côté là
Ca semble (encore) être un problème avec detectmmc . ce module, il commence à me gonfler !
J'ai tous les droits, je suis chez moi.
Au moindre non-respect des règles, je vire les importuns.

Hors ligne fluche

  • Membre Complet
  • ***
  • Messages: 145
Re: Problème d' accès à la carte SD
« Réponse #4 le: 03 mars 2007 à 08:43:20 »
Salut,

apparemment, c'est après un enregistrement que l'accès à la carte devient impossible...

Tant que je n'effectue pas d'enregistrement -> accès ok.

Après -> impossible d'y accéder.

@+
DM 7025S - HD 160gb
| OpenPLi |
VU+ Duo - HD 500gb
| OpenPLi |

Hors ligne pccb00

  • Membre Complet
  • ***
  • Messages: 102
Re: Problème d' accès à la carte SD
« Réponse #5 le: 03 mars 2007 à 09:36:59 »
Bonjour,

J'ai du nouveau, si je demare sur la Flash en 2.0.8 c'est ok et je peux acceder ma mmc mais si je demarre sur la version Dome 2.O.8 je ne peux pas.
Voici la copie de script:
#!/bin/sh
#<iboot_start>#######Don't_remove_this_line######################
# Please don't edit this part of script : required by iboot #####
#################################################################
#
# Try to mount memory card
#
if [ -e "/dev/scsi/host0/bus0/target0/lun0/part1" ]; then
   mount -t ext3 /dev/scsi/host0/bus0/target0/lun0/part1 /mmc   
else
  if [ -e "/dev/scsi/host0/bus0/target0/lun0/disc" ]; then
     mount -t ext3 /dev/scsi/host0/bus0/target0/lun0/disc /mmc   
  fi
fi
#
# Try to mount harddisk
#
if [ -e "/dev/ide/host0/bus0/target0/lun0/part1" ]; then
   mount -t ext3 /dev/ide/host0/bus0/target0/lun0/part1 /hdd
else
  if [ -e "/dev/ide/host0/bus0/target0/lun0/disc" ]; then
     mount -t ext3 /dev/ide/host0/bus0/target0/lun0/disc /hdd   
  fi
fi
#
# Try to start swap files
#
if [ -e "/mmc/swapfile" ]; then
   /sbin/swapon /mmc/swapfile
fi
if [ -e "/hdd/swapfile" ]; then
   /sbin/swapon /hdd/swapfile
fi
#
# Now we can start bootmenue
#
if [ -e "/mmc/iboot/bin/bootmenue" ]; then
   /mmc/iboot/bin/bootmenue /mmc/iboot
   /tmp/bm.sh
fi
#<iboot_end>#######Don't_remove_this_line######################
AB IPBox 9000HD multiboot NLB-R8728 - Enigma2

Hors ligne Doume

  • The Boss
  • Administrateur
  • Membre Héroïque
  • *****
  • Messages: 6.185
  • Administrateur
    • Doume
Re: Problème d' accès à la carte SD
« Réponse #6 le: 03 mars 2007 à 10:39:50 »
Si la 2.0.8 Doume est en multiboot, elle ne devrait pas avoir le même extra_run que la flash : En particulier, les images en multiboot ne doivent pas faire appel à bootmenue, à la fin.
Cette installation ne semble pas correcte !
C'est toi qui a recopié le extra_run de la flash vers la multiboot ?
Il ne faut JAMAIS faire cela, sinon tu auras une boucle infinie
J'ai tous les droits, je suis chez moi.
Au moindre non-respect des règles, je vire les importuns.

Hors ligne pccb00

  • Membre Complet
  • ***
  • Messages: 102
Re: Problème d' accès à la carte SD
« Réponse #7 le: 03 mars 2007 à 11:19:30 »
Non je n'ai rien recopié, j'ai seulement installé la 2.0.8 en flash via la carte SD ensuite comme je ne savais pas si la partie Uboot avait bien ete mise a jour via la carte SD j'ai refait seulement l'update Uboot via Internet et cela a bien fonctionné.
Ensuite j'ai reinstallé le multiboot sur ma carte SD avec Iboot 1.0 et pour finir j'ai installé la 2.0.8Doume sur la SD.

Petite precision j'ai fais cela appres avoir ete obigé de faire un Jtag pour reinstallé le bootloader suite au crash de l'install de la 2.0.8 via FTP avce control center 2.11.

La copie du script que j'ai donné a ete faite apres avoir booté sur la flash en 2.0.8 off.

Existe t il une commande qui permet de verifier la version du bootloader via telnet ?

merci
AB IPBox 9000HD multiboot NLB-R8728 - Enigma2

Hors ligne pccb00

  • Membre Complet
  • ***
  • Messages: 102
Re: Problème d' accès à la carte SD
« Réponse #8 le: 05 mars 2007 à 17:04:32 »
Avez vous une idée pour mon probleme d' accés a la carte SD ?
Je pense que mon script ets identique a celui de Fluche.
Merci
AB IPBox 9000HD multiboot NLB-R8728 - Enigma2

Hors ligne Doume

  • The Boss
  • Administrateur
  • Membre Héroïque
  • *****
  • Messages: 6.185
  • Administrateur
    • Doume
Re: Problème d' accès à la carte SD
« Réponse #9 le: 05 mars 2007 à 17:43:11 »
Pour l'instant, je vois pas
Il faudrait :
- booter depuis la flash
- se connecter en telnet
- faire une commande 'mount' et me donner le résultat
- eventuellement, le résultat de :
   du /dev
J'ai tous les droits, je suis chez moi.
Au moindre non-respect des règles, je vire les importuns.

Hors ligne pccb00

  • Membre Complet
  • ***
  • Messages: 102
Re: Problème d' accès à la carte SD
« Réponse #10 le: 05 mars 2007 à 19:04:07 »
Voila les infos:

[ITGATE(TGS100) /> mount
/dev/root on / type squashfs (ro)
none on /dev type devfs (rw)
/proc on /proc type proc (rw,nodiratime)
devpts on /dev/pts type devpts (rw)
none on /tmp type ramfs (rw)
/dev/mtdblock/4 on /var type jffs2 (rw,noatime,nodiratime)
/dev/ide/host0/bus0/target0/lun0/part1 on /hdd type ext3 (rw,noatime,nodiratime)
/dev/scsi/host0/bus0/target0/lun0/disc on /mmc type ext3 (rw)
[ITGATE(TGS100) />


[ITGATE(TGS100) /> du / dev
4442    /bin
0       /dev/scsi/host0/bus0/target0/lun0
0       /dev/scsi/host0/bus0/target0
0       /dev/scsi/host0/bus0
0       /dev/scsi/host0
0       /dev/scsi
0       /dev/input
0       /dev/shm
0       /dev/fb
0       /dev/vc
0       /dev/vcc
0       /dev/pts
0       /dev/misc
0       /dev/tts
0       /dev/loop
0       /dev/ide/host0/bus0/target0/lun0
0       /dev/ide/host0/bus0/target0
0       /dev/ide/host0/bus0
0       /dev/ide/host0
0       /dev/ide
0       /dev/discs
0       /dev/mtd
0       /dev/mtdblock
0       /dev/i2c
0       /dev/sound
0       /dev/dbox
0       /dev/dvb/card0
0       /dev/dvb
0       /dev/card0
0       /dev
28      /etc/init.d
12      /etc/joe/charmaps
83      /etc/joe/syntax
208     /etc/joe
330     /etc
16      /hdd/lost+found
5366164 /hdd/movie
5577616 /hdd
2       /lib/codepages
36      /lib/gconv
2       /lib/locale/de_DE/LC_MESSAGES
229     /lib/locale/de_DE
255     /lib/locale
906     /lib/modules/2.6.9/extra
907     /lib/modules/2.6.9
908     /lib/modules
272     /lib/tuxbox/plugins
273     /lib/tuxbox
4445    /lib
12      /mmc/lost+found
146     /mmc/iboot/bin
2       /mmc/iboot/cfg
1       /mmc/iboot/tmp
1       /mmc/iboot/install
4446    /mmc/iboot/images/Doume208/bin
1       /mmc/iboot/images/Doume208/dev
52      /mmc/iboot/images/Doume208/etc/init.d
12      /mmc/iboot/images/Doume208/etc/joe/charmaps
89      /mmc/iboot/images/Doume208/etc/joe/syntax
221     /mmc/iboot/images/Doume208/etc/joe
361     /mmc/iboot/images/Doume208/etc
1       /mmc/iboot/images/Doume208/hdd
2       /mmc/iboot/images/Doume208/lib/codepages
38      /mmc/iboot/images/Doume208/lib/gconv
2       /mmc/iboot/images/Doume208/lib/locale/de_DE/LC_MESSAGES
235     /mmc/iboot/images/Doume208/lib/locale/de_DE
236     /mmc/iboot/images/Doume208/lib/locale
914     /mmc/iboot/images/Doume208/lib/modules/2.6.9/extra
915     /mmc/iboot/images/Doume208/lib/modules/2.6.9
916     /mmc/iboot/images/Doume208/lib/modules
429     /mmc/iboot/images/Doume208/lib/tuxbox/plugins
430     /mmc/iboot/images/Doume208/lib/tuxbox
5662    /mmc/iboot/images/Doume208/lib
1       /mmc/iboot/images/Doume208/mmc
1       /mmc/iboot/images/Doume208/mnt/cifs
1       /mmc/iboot/images/Doume208/mnt/nfs
1       /mmc/iboot/images/Doume208/mnt/smbfs
1       /mmc/iboot/images/Doume208/mnt/usb
5       /mmc/iboot/images/Doume208/mnt
1       /mmc/iboot/images/Doume208/proc
308     /mmc/iboot/images/Doume208/sbin
1       /mmc/iboot/images/Doume208/share/empty
629     /mmc/iboot/images/Doume208/share/fonts
9       /mmc/iboot/images/Doume208/share/keymaps
93      /mmc/iboot/images/Doume208/share/locale/fr/LC_MESSAGES
94      /mmc/iboot/images/Doume208/share/locale/fr
96      /mmc/iboot/images/Doume208/share/locale
4       /mmc/iboot/images/Doume208/share/tuxbox/enigma/boot
242     /mmc/iboot/images/Doume208/share/tuxbox/enigma/htdocs
116     /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/blueqt
79      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/carbon
28      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/chk_silver/mainmenu
91      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/chk_silver
25      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/chk_stone/mainmenu
96      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/chk_stone
36      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/chk_v2
39      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/countries
32      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/keypics
62      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/mainmenu
6       /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/neutrino
15      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/shortcut
28      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/small
28      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/small-red/mainmenu
34      /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures/small-red
1366    /mmc/iboot/images/Doume208/share/tuxbox/enigma/pictures
318     /mmc/iboot/images/Doume208/share/tuxbox/enigma/resources
516     /mmc/iboot/images/Doume208/share/tuxbox/enigma/skins
198     /mmc/iboot/images/Doume208/share/tuxbox/enigma/templates
2645    /mmc/iboot/images/Doume208/share/tuxbox/enigma
2931    /mmc/iboot/images/Doume208/share/tuxbox
2       /mmc/iboot/images/Doume208/share/udhcpc
73      /mmc/iboot/images/Doume208/share/zoneinfo
3742    /mmc/iboot/images/Doume208/share
1       /mmc/iboot/images/Doume208/tmp
446     /mmc/iboot/images/Doume208/var/bin
276     /mmc/iboot/images/Doume208/var/etc
30      /mmc/iboot/images/Doume208/var/keys
151     /mmc/iboot/images/Doume208/var/lib
1       /mmc/iboot/images/Doume208/var/log
1       /mmc/iboot/images/Doume208/var/mnt/nfs
1       /mmc/iboot/images/Doume208/var/mnt/usb
3       /mmc/iboot/images/Doume208/var/mnt
2       /mmc/iboot/images/Doume208/var/run
1       /mmc/iboot/images/Doume208/var/tmp
1       /mmc/iboot/images/Doume208/var/tuxbox/config/enigma/cable
1       /mmc/iboot/images/Doume208/var/tuxbox/config/enigma/fonts
1       /mmc/iboot/images/Doume208/var/tuxbox/config/enigma/pictures
1       /mmc/iboot/images/Doume208/var/tuxbox/config/enigma/resources
1       /mmc/iboot/images/Doume208/var/tuxbox/config/enigma/skins
1       /mmc/iboot/images/Doume208/var/tuxbox/config/enigma/terrestrial
430     /mmc/iboot/images/Doume208/var/tuxbox/config/enigma
2       /mmc/iboot/images/Doume208/var/tuxbox/config/tuxtxt
435     /mmc/iboot/images/Doume208/var/tuxbox/config
13      /mmc/iboot/images/Doume208/var/tuxbox/plugins
449     /mmc/iboot/images/Doume208/var/tuxbox
1       /mmc/iboot/images/Doume208/var/web_ftp
1362    /mmc/iboot/images/Doume208/var
446     /mmc/iboot/images/Doume208/var_init/bin
14      /mmc/iboot/images/Doume208/var_init/etc
29      /mmc/iboot/images/Doume208/var_init/keys
151     /mmc/iboot/images/Doume208/var_init/lib
1       /mmc/iboot/images/Doume208/var_init/log
1       /mmc/iboot/images/Doume208/var_init/mnt/nfs
1       /mmc/iboot/images/Doume208/var_init/mnt/usb
3       /mmc/iboot/images/Doume208/var_init/mnt
1       /mmc/iboot/images/Doume208/var_init/run
1       /mmc/iboot/images/Doume208/var_init/tmp
1       /mmc/iboot/images/Doume208/var_init/tuxbox/config/enigma/cable
1       /mmc/iboot/images/Doume208/var_init/tuxbox/config/enigma/fonts
1       /mmc/iboot/images/Doume208/var_init/tuxbox/config/enigma/pictures
1       /mmc/iboot/images/Doume208/var_init/tuxbox/config/enigma/resources
1       /mmc/iboot/images/Doume208/var_init/tuxbox/config/enigma/skins
1       /mmc/iboot/images/Doume208/var_init/tuxbox/config/enigma/terrestrial
142     /mmc/iboot/images/Doume208/var_init/tuxbox/config/enigma
2       /mmc/iboot/images/Doume208/var_init/tuxbox/config/tuxtxt
147     /mmc/iboot/images/Doume208/var_init/tuxbox/config
13      /mmc/iboot/images/Doume208/var_init/tuxbox/plugins
161     /mmc/iboot/images/Doume208/var_init/tuxbox
1       /mmc/iboot/images/Doume208/var_init/web_ftp
809     /mmc/iboot/images/Doume208/var_init
16702   /mmc/iboot/images/Doume208
16703   /mmc/iboot/images
16854   /mmc/iboot
16867   /mmc
0       /mnt/cifs
0       /mnt/nfs
0       /mnt/smbfs
0       /mnt/usb
1       /mnt
0       /proc/ide/ide0/hdb
0       /proc/ide/ide0/hda
0       /proc/ide/ide0
2       /proc/ide
0       /proc/scsi/sg
0       /proc/scsi
0       /proc/irq/31
0       /proc/irq/30
0       /proc/irq/29
0       /proc/irq/28
0       /proc/irq/27
0       /proc/irq/26
0       /proc/irq/25
0       /proc/irq/24
0       /proc/irq/23
0       /proc/irq/22
0       /proc/irq/21
0       /proc/irq/20
0       /proc/irq/19
0       /proc/irq/18
0       /proc/irq/17
0       /proc/irq/16
0       /proc/irq/15
0       /proc/irq/14
0       /proc/irq/13
0       /proc/irq/12
0       /proc/irq/11
0       /proc/irq/10
0       /proc/irq/9
0       /proc/irq/8
0       /proc/irq/7
0       /proc/irq/6
0       /proc/irq/5
0       /proc/irq/4
0       /proc/irq/3
0       /proc/irq/2
0       /proc/irq/1
0       /proc/irq/0
0       /proc/irq
0       /proc/bus/input
0       /proc/bus
0       /proc/tty/driver
0       /proc/tty/ldisc
0       /proc/tty
0       /proc/driver
0       /proc/fs/nfsd
0       /proc/fs
0       /proc/sys/sunrpc
0       /proc/sys/dev/scsi
0       /proc/sys/dev
0       /proc/sys/debug
0       /proc/sys/fs/nfs
0       /proc/sys/fs
0       /proc/sys/proc
0       /proc/sys/net/unix
0       /proc/sys/net/ipv4/conf/eth0
0       /proc/sys/net/ipv4/conf/lo
0       /proc/sys/net/ipv4/conf/default
0       /proc/sys/net/ipv4/conf/all
0       /proc/sys/net/ipv4/conf
0       /proc/sys/net/ipv4/neigh/eth0
0       /proc/sys/net/ipv4/neigh/lo
0       /proc/sys/net/ipv4/neigh/default
0       /proc/sys/net/ipv4/neigh
0       /proc/sys/net/ipv4/route
0       /proc/sys/net/ipv4
0       /proc/sys/net/ethernet
0       /proc/sys/net/core
0       /proc/sys/net
0       /proc/sys/vm
0       /proc/sys/kernel/pty
0       /proc/sys/kernel/random
0       /proc/sys/kernel
0       /proc/sys
0       /proc/sysvipc
0       /proc/net/rpc/auth.unix.ip
0       /proc/net/rpc/auth.domain
0       /proc/net/rpc
0       /proc/net/stat
0       /proc/net
0       /proc/1/task/1/fd
0       /proc/1/task/1
0       /proc/1/task
0       /proc/1/fd
0       /proc/1
0       /proc/2/task/2/fd
0       /proc/2/task/2
0       /proc/2/task
0       /proc/2/fd
0       /proc/2
0       /proc/3/task/3/fd
0       /proc/3/task/3
0       /proc/3/task
0       /proc/3/fd
0       /proc/3
0       /proc/4/task/4/fd
0       /proc/4/task/4
0       /proc/4/task
0       /proc/4/fd
0       /proc/4
0       /proc/10/task/10/fd
0       /proc/10/task/10
0       /proc/10/task
0       /proc/10/fd
0       /proc/10
0       /proc/21/task/21/fd
0       /proc/21/task/21
0       /proc/21/task
0       /proc/21/fd
0       /proc/21
0       /proc/22/task/22/fd
0       /proc/22/task/22
0       /proc/22/task
0       /proc/22/fd
0       /proc/22
0       /proc/24/task/24/fd
0       /proc/24/task/24
0       /proc/24/task
0       /proc/24/fd
0       /proc/24
0       /proc/23/task/23/fd
0       /proc/23/task/23
0       /proc/23/task
0       /proc/23/fd
0       /proc/23
0       /proc/116/task/116/fd
0       /proc/116/task/116
0       /proc/116/task
0       /proc/116/fd
0       /proc/116
0       /proc/122/task/122/fd
0       /proc/122/task/122
0       /proc/122/task
0       /proc/122/fd
0       /proc/122
3       /proc/136/task/136/fd
3       /proc/136/task/136
3       /proc/136/task
3       /proc/136/fd
6       /proc/136
4       /proc/137/task/137/fd
4       /proc/137/task/137
4       /proc/137/task
4       /proc/137/fd
8       /proc/137
0       /proc/152/task/152/fd
0       /proc/152/task/152
0       /proc/152/task
0       /proc/152/fd
0       /proc/152
4       /proc/156/task/156/fd
4       /proc/156/task/156
4       /proc/156/task
4       /proc/156/fd
8       /proc/156
0       /proc/161/task/161/fd
0       /proc/161/task/161
0       /proc/161/task
0       /proc/161/fd
0       /proc/161
0       /proc/183/task/183/fd
0       /proc/183/task/183
0       /proc/183/task
0       /proc/183/fd
0       /proc/183
11      /proc/195/task/195/fd
11      /proc/195/task/195
11      /proc/195/task
11      /proc/195/fd
22      /proc/195
0       /proc/208/task/208/fd
0       /proc/208/task/208
0       /proc/208/task
0       /proc/208/fd
0       /proc/208
0       /proc/222/task/222/fd
0       /proc/222/task/222
0       /proc/222/task
0       /proc/222/fd
0       /proc/222
4       /proc/250/task/250/fd
4       /proc/250/task/250
4       /proc/250/task
4       /proc/250/fd
8       /proc/250
53      /proc/251/task/251/fd
53      /proc/251/task/251
53      /proc/251/task/252/fd
53      /proc/251/task/252
53      /proc/251/task/257/fd
53      /proc/251/task/257
53      /proc/251/task/266/fd
53      /proc/251/task/266
53      /proc/251/task/283/fd
53      /proc/251/task/283
53      /proc/251/task/294/fd
53      /proc/251/task/294
318     /proc/251/task
53      /proc/251/fd
371     /proc/251
5       /proc/269/task/269/fd
5       /proc/269/task/269
5       /proc/269/task
5       /proc/269/fd
10      /proc/269
4       /proc/316/task/316/fd
4       /proc/316/task/316
4       /proc/316/task
4       /proc/316/fd
8       /proc/316
4       /proc/317/task/317/fd
4       /proc/317/task/317
4       /proc/317/task
4       /proc/317/fd
8       /proc/317
9       /proc/318/task/318/fd
9       /proc/318/task/318
9       /proc/318/task
7       /proc/318/fd
16      /proc/318
28121   /proc
319     /sbin
0       /share/empty
618     /share/fonts
8       /share/keymaps
105     /share/locale/ar/LC_MESSAGES
105     /share/locale/ar
83      /share/locale/cs/LC_MESSAGES
83      /share/locale/cs
88      /share/locale/da/LC_MESSAGES
88      /share/locale/da
94      /share/locale/de/LC_MESSAGES
94      /share/locale/de
102     /share/locale/el/LC_MESSAGES
102     /share/locale/el
94      /share/locale/es/LC_MESSAGES
95      /share/locale/es
80      /share/locale/et/LC_MESSAGES
80      /share/locale/et
90      /share/locale/fi/LC_MESSAGES
90      /share/locale/fi
90      /share/locale/fr/LC_MESSAGES
91      /share/locale/fr
92      /share/locale/hr/LC_MESSAGES
92      /share/locale/hr
89      /share/locale/hu/LC_MESSAGES
89      /share/locale/hu
90      /share/locale/is/LC_MESSAGES
90      /share/locale/is
89      /share/locale/it/LC_MESSAGES
89      /share/locale/it
1       /share/locale/lt/LC_MESSAGES
1       /share/locale/lt
87      /share/locale/nl/LC_MESSAGES
87      /share/locale/nl
83      /share/locale/no/LC_MESSAGES
83      /share/locale/no
95      /share/locale/pl/LC_MESSAGES
96      /share/locale/pl
87      /share/locale/pt/LC_MESSAGES
88      /share/locale/pt
73      /share/locale/ro/LC_MESSAGES
74      /share/locale/ro
116     /share/locale/ru/LC_MESSAGES
117     /share/locale/ru
86      /share/locale/sk/LC_MESSAGES
87      /share/locale/sk
72      /share/locale/sl/LC_MESSAGES
73      /share/locale/sl
92      /share/locale/sv/LC_MESSAGES
93      /share/locale/sv
94      /share/locale/tr/LC_MESSAGES
95      /share/locale/tr
2079    /share/locale
4       /share/tuxbox/enigma/boot
207     /share/tuxbox/enigma/htdocs
84      /share/tuxbox/enigma/pictures/blueqt
63      /share/tuxbox/enigma/pictures/carbon
27      /share/tuxbox/enigma/pictures/chk_silver/mainmenu
69      /share/tuxbox/enigma/pictures/chk_silver
24      /share/tuxbox/enigma/pictures/chk_stone/mainmenu
73      /share/tuxbox/enigma/pictures/chk_stone
20      /share/tuxbox/enigma/pictures/chk_v2
34      /share/tuxbox/enigma/pictures/countries
17      /share/tuxbox/enigma/pictures/keypics
58      /share/tuxbox/enigma/pictures/mainmenu
4       /share/tuxbox/enigma/pictures/neutrino
8       /share/tuxbox/enigma/pictures/shortcut
18      /share/tuxbox/enigma/pictures/small
25      /share/tuxbox/enigma/pictures/small-red/mainmenu
29      /share/tuxbox/enigma/pictures/small-red
1174    /share/tuxbox/enigma/pictures
298     /share/tuxbox/enigma/resources
491     /share/tuxbox/enigma/skins
169     /share/tuxbox/enigma/templates
2342    /share/tuxbox/enigma
2624    /share/tuxbox
2       /share/udhcpc
51      /share/zoneinfo
5385    /share
0       /tmp/locks
24      /tmp
2       /var/bin
266     /var/etc
0       /var/log
0       /var/mnt/nfs
0       /var/mnt/usb
0       /var/mnt
1       /var/run
0       /var/tuxbox/config/enigma/cable
0       /var/tuxbox/config/enigma/fonts
0       /var/tuxbox/config/enigma/skins
0       /var/tuxbox/config/enigma/pictures
0       /var/tuxbox/config/enigma/resources
0       /var/tuxbox/config/enigma/terrestrial
411     /var/tuxbox/config/enigma
1       /var/tuxbox/config/tuxtxt
412     /var/tuxbox/config
0       /var/tuxbox/plugins
412     /var/tuxbox
681     /var
0       /var_init/bin
8       /var_init/etc
0       /var_init/log
0       /var_init/mnt/nfs
0       /var_init/mnt/usb
1       /var_init/mnt
0       /var_init/run
0       /var_init/tuxbox/config/enigma/cable
0       /var_init/tuxbox/config/enigma/fonts
0       /var_init/tuxbox/config/enigma/pictures
0       /var_init/tuxbox/config/enigma/resources
0       /var_init/tuxbox/config/enigma/skins
0       /var_init/tuxbox/config/enigma/terrestrial
132     /var_init/tuxbox/config/enigma
2       /var_init/tuxbox/config/tuxtxt
134     /var_init/tuxbox/config
0       /var_init/tuxbox/plugins
135     /var_init/tuxbox
146     /var_init
5638381
0       dev/scsi/host0/bus0/target0/lun0
0       dev/scsi/host0/bus0/target0
0       dev/scsi/host0/bus0
0       dev/scsi/host0
0       dev/scsi
0       dev/input
0       dev/shm
0       dev/fb
0       dev/vc
0       dev/vcc
0       dev/misc
0       dev/tts
0       dev/loop
0       dev/ide/host0/bus0/target0/lun0
0       dev/ide/host0/bus0/target0
0       dev/ide/host0/bus0
0       dev/ide/host0
0       dev/ide
0       dev/discs
0       dev/mtd
0       dev/mtdblock
0       dev/i2c
0       dev/sound
0       dev/dbox
0       dev/dvb/card0
0       dev/dvb
0       dev/card0
0       dev
[ITGATE(TGS100) />

AB IPBox 9000HD multiboot NLB-R8728 - Enigma2

Hors ligne Doume

  • The Boss
  • Administrateur
  • Membre Héroïque
  • *****
  • Messages: 6.185
  • Administrateur
    • Doume
Re: Problème d' accès à la carte SD
« Réponse #11 le: 06 mars 2007 à 14:42:36 »
D'après ce que je constate, la carte /mmc est physiquement accessible, car la commande 'du' y accède !

Donc, à mon avis, c'est un problème de montage.

Attention: quand on active une image multiboot, on DOIT voir /mmc montée 2 fois :
- Une fois par le système de la flash (avant menu iBoot)
- Une fois grâce au /var/bin/extra_run de l'image multiboot

exemple sur mon TGS100 ( Off 2.0.8 en flash, et CVS 2.0.8B-Doume en multiboot) :
Lorsque l'image multiboot est active :
[ITGATE(TGS100) var_doume> mount
/dev/root on / type squashfs (ro)
none on /dev type devfs (rw)
/proc on /proc type proc (rw,nodiratime)
devpts on /dev/pts type devpts (rw)
none on /tmp type ramfs (rw)
/dev/mtdblock/4 on /var type jffs2 (rw,noatime,nodiratime)
/dev/scsi/host0/bus0/target0/lun0/part1 on /mmc type ext3 (rw)
dev on /dev type devfs (rw)
/proc on /proc type proc (rw,nodiratime)
devpts on /dev/pts type devpts (rw)
none on /tmp type ramfs (rw)
/dev/scsi/host0/bus0/target0/lun0/part1 on /mmc type ext3 (rw)
//192.168.2.3/hdd on /hdd type cifs (rw,nodiratime,unc=\192.168.2.3\hdd,username=root,domain=,rsize=16384,wsize=16384)
J'ai tous les droits, je suis chez moi.
Au moindre non-respect des règles, je vire les importuns.

Hors ligne fluche

  • Membre Complet
  • ***
  • Messages: 145
Re: Problème d' accès à la carte SD
« Réponse #12 le: 06 mars 2007 à 23:04:33 »
Re,

voici pour moi (off 2.0.8 en flash, 2.0.8b doume multiboot).

doume active :

/dev/root on / type squashfs (ro)
none on /dev type devfs (rw)
/proc on /proc type proc (rw,nodiratime)
devpts on /dev/pts type devpts (rw)
none on /tmp type ramfs (rw)
/dev/mtdblock/4 on /var type jffs2 (rw,noatime,nodiratime)
/dev/scsi/host0/bus0/target0/lun0/disc on /mmc type ext3 (rw)
dev on /dev type devfs (rw)
/proc on /proc type proc (rw,nodiratime)
devpts on /dev/pts type devpts (rw)
none on /tmp type ramfs (rw)
/dev/ide/host0/bus0/target0/lun0/part1 on /hdd type ext3 (rw,noatime,nodiratim

il n'y a qu'une fois /mmc !!

@+

DM 7025S - HD 160gb
| OpenPLi |
VU+ Duo - HD 500gb
| OpenPLi |

Hors ligne Doume

  • The Boss
  • Administrateur
  • Membre Héroïque
  • *****
  • Messages: 6.185
  • Administrateur
    • Doume
Re: Problème d' accès à la carte SD
« Réponse #13 le: 07 mars 2007 à 08:48:54 »
@fluche : Pour moi, ton /var/bin/extra_run n'effectue probablement pas correctement le montage de la mmc

Ca expliquerait tes difficultés lorsque tu bootes une image multiboot
J'ai tous les droits, je suis chez moi.
Au moindre non-respect des règles, je vire les importuns.

Hors ligne fluche

  • Membre Complet
  • ***
  • Messages: 145
Re: Problème d' accès à la carte SD
« Réponse #14 le: 07 mars 2007 à 09:31:37 »
@fluche : Pour moi, ton /var/bin/extra_run n'effectue probablement pas correctement le montage de la mmc

Ca expliquerait tes difficultés lorsque tu bootes une image multiboot

Salut Doume

pour rappel, voici mon extra_run :

#!/bin/sh
#<iboot_start>#######Don't_remove_this_line######################
# Please don't edit this part of script : required by iboot #####
#################################################################
#
# Try to mount memory card
#
if [ -e "/dev/scsi/host0/bus0/target0/lun0/part1" ]; then
   mount -t ext3 /dev/scsi/host0/bus0/target0/lun0/part1 /mmc   
else
   if [ -e "/dev/scsi/host0/bus0/target0/lun0/disc" ]; then
      mount -t ext3 /dev/scsi/host0/bus0/target0/lun0/disc /mmc   
   fi
fi
#
# Try to mount harddisk
#
if [ -e "/dev/ide/host0/bus0/target0/lun0/part1" ]; then
   mount -t ext3 /dev/ide/host0/bus0/target0/lun0/part1 /hdd
else
   if [ -e "/dev/ide/host0/bus0/target0/lun0/disc" ]; then
      mount -t ext3 /dev/ide/host0/bus0/target0/lun0/disc /hdd   
   fi
fi
#
# Try to start swap files
#
if [ -e "/mmc/swapfile" ]; then
   /sbin/swapon /mmc/swapfile
else
if [ -e "/hdd/swapfile" ]; then
   /sbin/swapon /hdd/swapfile
fi
fi
#
# Now we can start bootmenue
#
if [ -e "/mmc/iboot/bin/bootmenue" ]; then
   /mmc/iboot/bin/bootmenue /mmc/iboot
   /tmp/bm.sh
fi

le problème, c'est quand je suis sur l'image en flash (rel 2.0.8 off) et que j'accède au disque dur, il n'y a plus moyen d'accèder à /mmc -> device or resource busy

Autre question, une fois que l'on est sur une image en multiboot, comment peut-on faire pour, par exemple, mettre à jour un fichier sur /mmc ??? Est-ce possible ou bien faut-il redémarrer sur l'image en flash pour pouvoir le faire ?

Merci.
DM 7025S - HD 160gb
| OpenPLi |
VU+ Duo - HD 500gb
| OpenPLi |