LED control

Re: lacie 5 big network v.1 please support for fvdw

Postby Jocko » Tue Sep 09, 2014 3:40 pm

Thank for these movies.

~ # echo 0 > /devices/platform/leds-gpio/leds/net5big:blue:front/brightness
sh: can't create /devices/platform/leds-gpio/leds/net5big:blue:front/brightness: nonexistent directory
:scratch (may be is a valid path only for kernel version 2.6)
List the folder content
Code: Select all
ls -al  /devices/platform/leds-gpio/leds
and also
Code: Select all
 ls -al /sys/class/leds

if you see some subfolders like net5big:blue:front,...

Post their content
Code: Select all
ls -al  /sys/class/leds/net5big:blink:front
ls -al  /sys/class/leds/net5big:blue:front
ls -al  /sys/class/leds/net5big:red:sata0
Jocko
Site Admin - expert
 
Posts: 11529
Joined: Tue Apr 12, 2011 4:48 pm
Location: Orleans, France

Re: lacie 5 big network v.1 please support for fvdw

Postby taetae » Tue Sep 09, 2014 9:08 pm

Code: Select all
~ # ls -al  /devices/platform/leds-gpio/leds
ls: /devices/platform/leds-gpio/leds: No such file or directory



Code: Select all
~ # ls -al /sys/class/leds
total 0
drwxr-xr-x    2 root     0                0 Sep 14 02:05 .
drwxr-xr-x   35 root     0                0 Sep 14 02:05 ..
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 net5big:blink:front -> ../../devices/platform/leds-gpio/leds/net5big:blink:front
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 net5big:blue:front -> ../../devices/platform/leds-gpio/leds/net5big:blue:front
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 net5big:red:front -> ../../devices/platform/leds-gpio/leds/net5big:red:front
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 net5big:red:sata0 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata0
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 net5big:red:sata1 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata1
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 net5big:red:sata2 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata2
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 net5big:red:sata3 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata3
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 net5big:red:sata4 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata4
~ #


Code: Select all
~ # ls -al  /sys/class/leds/net5big:blink:front
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 /sys/class/leds/net5big:blink:front -> ../../devices/platform/leds-gpio/leds/net5big:blink:front
~ # ls -al  /sys/class/leds/net5big:blue:front
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 /sys/class/leds/net5big:blue:front -> ../../devices/platform/leds-gpio/leds/net5big:blue:front
~ # ls -al  /sys/class/leds/net5big:red:front
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 /sys/class/leds/net5big:red:front -> ../../devices/platform/leds-gpio/leds/net5big:red:front
~ # ls -al  /sys/class/leds/net5big:red:sata0
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 /sys/class/leds/net5big:red:sata0 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata0
~ # ls -al  /sys/class/leds/net5big:red:sata1
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 /sys/class/leds/net5big:red:sata1 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata1
~ # ls -al  /sys/class/leds/net5big:red:sata2
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 /sys/class/leds/net5big:red:sata2 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata2
~ # ls -al  /sys/class/leds/net5big:red:sata3
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 /sys/class/leds/net5big:red:sata3 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata3
~ # ls -al  /sys/class/leds/net5big:red:sata4
lrwxrwxrwx    1 root     0                0 Sep 14 02:05 /sys/class/leds/net5big:red:sata4 -> ../../devices/platform/leds-gpio/leds/net5big:red:sata4
~ #
taetae
Donator VIP
Donator VIP
 
Posts: 438
Joined: Mon Aug 26, 2013 9:02 am

Re: lacie 5 big network v.1 please support for fvdw

Postby Jocko » Wed Sep 10, 2014 11:33 am

Well,

First I made an error in the folder path (forgot a '/' at the end in the ls command).

But the issue is we made an error with the real folder path : /devices/platform/leds-gpio/leds :scratch instead of /sys/devices/platform/leds-gpio/leds

So do this
Code: Select all
ls -Rla  /sys/devices/platform/leds-gpio/leds


and try to do
Code: Select all
echo 0 > /sys/devices/platform/leds-gpio/leds/net5big:blue:front/brightness     (to switch off)
echo 1 > /sys/devices/platform/leds-gpio/leds/net5big:blue:front/brightness     (to switch on)
echo 127 > /sys/devices/platform/leds-gpio/leds/net5big:blue:front/brightness
echo 255 > /sys/devices/platform/leds-gpio/leds/net5big:blue:front/brightness
Jocko
Site Admin - expert
 
Posts: 11529
Joined: Tue Apr 12, 2011 4:48 pm
Location: Orleans, France

Re: lacie 5 big network v.1 please support for fvdw

Postby taetae » Wed Sep 10, 2014 12:00 pm

Code: Select all
~ # ls -Rla  /sys/devices/platform/leds-gpio/leds
/sys/devices/platform/leds-gpio/leds:
total 0
drwxr-xr-x   10 root     0                0 Sep 14 16:55 .
drwxr-xr-x    3 root     0                0 Sep 14 16:55 ..
drwxr-xr-x    2 root     0                0 Sep 14 16:55 net5big:blink:front
drwxr-xr-x    2 root     0                0 Sep 14 16:55 net5big:blue:front
drwxr-xr-x    2 root     0                0 Sep 14 16:55 net5big:red:front
drwxr-xr-x    2 root     0                0 Sep 14 16:55 net5big:red:sata0
drwxr-xr-x    2 root     0                0 Sep 14 16:55 net5big:red:sata1
drwxr-xr-x    2 root     0                0 Sep 14 16:55 net5big:red:sata2
drwxr-xr-x    2 root     0                0 Sep 14 16:55 net5big:red:sata3
drwxr-xr-x    2 root     0                0 Sep 14 16:55 net5big:red:sata4

/sys/devices/platform/leds-gpio/leds/net5big:blink:front:
total 0
drwxr-xr-x    2 root     0                0 Sep 14 16:55 .
drwxr-xr-x   10 root     0                0 Sep 14 16:55 ..
-rw-r--r--    1 root     0             4096 Sep 14 16:58 brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 device -> ../../../leds-gpio
-r--r--r--    1 root     0             4096 Sep 14 16:58 max_brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 subsystem -> ../../../../../class/leds
-rw-r--r--    1 root     0             4096 Sep 14 16:58 trigger
-rw-r--r--    1 root     0             4096 Sep 14 16:56 uevent

/sys/devices/platform/leds-gpio/leds/net5big:blue:front:
total 0
drwxr-xr-x    2 root     0                0 Sep 14 16:55 .
drwxr-xr-x   10 root     0                0 Sep 14 16:55 ..
-rw-r--r--    1 root     0             4096 Sep 14 16:58 brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 device -> ../../../leds-gpio
-r--r--r--    1 root     0             4096 Sep 14 16:58 max_brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 subsystem -> ../../../../../class/leds
-rw-r--r--    1 root     0             4096 Sep 14 16:58 trigger
-rw-r--r--    1 root     0             4096 Sep 14 16:56 uevent

/sys/devices/platform/leds-gpio/leds/net5big:red:front:
total 0
drwxr-xr-x    2 root     0                0 Sep 14 16:55 .
drwxr-xr-x   10 root     0                0 Sep 14 16:55 ..
-rw-r--r--    1 root     0             4096 Sep 14 16:58 brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 device -> ../../../leds-gpio
-r--r--r--    1 root     0             4096 Sep 14 16:58 max_brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 subsystem -> ../../../../../class/leds
-rw-r--r--    1 root     0             4096 Sep 14 16:58 trigger
-rw-r--r--    1 root     0             4096 Sep 14 16:56 uevent

/sys/devices/platform/leds-gpio/leds/net5big:red:sata0:
total 0
drwxr-xr-x    2 root     0                0 Sep 14 16:55 .
drwxr-xr-x   10 root     0                0 Sep 14 16:55 ..
-rw-r--r--    1 root     0             4096 Sep 14 16:58 brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 device -> ../../../leds-gpio
-r--r--r--    1 root     0             4096 Sep 14 16:58 max_brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 subsystem -> ../../../../../class/leds
-rw-r--r--    1 root     0             4096 Sep 14 16:58 trigger
-rw-r--r--    1 root     0             4096 Sep 14 16:56 uevent

/sys/devices/platform/leds-gpio/leds/net5big:red:sata1:
total 0
drwxr-xr-x    2 root     0                0 Sep 14 16:55 .
drwxr-xr-x   10 root     0                0 Sep 14 16:55 ..
-rw-r--r--    1 root     0             4096 Sep 14 16:58 brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 device -> ../../../leds-gpio
-r--r--r--    1 root     0             4096 Sep 14 16:58 max_brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 subsystem -> ../../../../../class/leds
-rw-r--r--    1 root     0             4096 Sep 14 16:58 trigger
-rw-r--r--    1 root     0             4096 Sep 14 16:56 uevent

/sys/devices/platform/leds-gpio/leds/net5big:red:sata2:
total 0
drwxr-xr-x    2 root     0                0 Sep 14 16:55 .
drwxr-xr-x   10 root     0                0 Sep 14 16:55 ..
-rw-r--r--    1 root     0             4096 Sep 14 16:58 brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 device -> ../../../leds-gpio
-r--r--r--    1 root     0             4096 Sep 14 16:58 max_brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 subsystem -> ../../../../../class/leds
-rw-r--r--    1 root     0             4096 Sep 14 16:58 trigger
-rw-r--r--    1 root     0             4096 Sep 14 16:56 uevent

/sys/devices/platform/leds-gpio/leds/net5big:red:sata3:
total 0
drwxr-xr-x    2 root     0                0 Sep 14 16:55 .
drwxr-xr-x   10 root     0                0 Sep 14 16:55 ..
-rw-r--r--    1 root     0             4096 Sep 14 16:58 brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 device -> ../../../leds-gpio
-r--r--r--    1 root     0             4096 Sep 14 16:58 max_brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 subsystem -> ../../../../../class/leds
-rw-r--r--    1 root     0             4096 Sep 14 16:58 trigger
-rw-r--r--    1 root     0             4096 Sep 14 16:56 uevent

/sys/devices/platform/leds-gpio/leds/net5big:red:sata4:
total 0
drwxr-xr-x    2 root     0                0 Sep 14 16:55 .
drwxr-xr-x   10 root     0                0 Sep 14 16:55 ..
-rw-r--r--    1 root     0             4096 Sep 14 16:58 brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 device -> ../../../leds-gpio
-r--r--r--    1 root     0             4096 Sep 14 16:58 max_brightness
lrwxrwxrwx    1 root     0                0 Sep 14 16:58 subsystem -> ../../../../../class/leds
-rw-r--r--    1 root     0             4096 Sep 14 16:58 trigger
-rw-r--r--    1 root     0             4096 Sep 14 16:56 uevent
~ #

there are no changes using these commands is always light blue alternate both ahead and astern
Code: Select all
~ # echo 0 > /sys/devices/platform/leds-gpio/leds/net5big:blue:front/brightness
~ # echo 1 > /sys/devices/platform/leds-gpio/leds/net5big:blue:front/brightness
~ # echo 127 > /sys/devices/platform/leds-gpio/leds/net5big:blue:front/brightnes
s
~ # echo 255 > /sys/devices/platform/leds-gpio/leds/net5big:blue:front/brightnes
s
~ #
taetae
Donator VIP
Donator VIP
 
Posts: 438
Joined: Mon Aug 26, 2013 9:02 am

Re: lacie 5 big network v.1 please support for fvdw

Postby Jocko » Wed Sep 10, 2014 6:04 pm

Ok

Could you post the content of the trigger file with net5big:blink:front and net5big:blue:front (use the command cat)
Jocko
Site Admin - expert
 
Posts: 11529
Joined: Tue Apr 12, 2011 4:48 pm
Location: Orleans, France

Re: lacie 5 big network v.1 please support for fvdw

Postby taetae » Wed Sep 10, 2014 7:42 pm

trigger net5big\:blink\:front/
Code: Select all
/sys/devices/platform/leds-gpio/leds # cd net5big\:blink\:front/
/sys/devices/platform/leds-gpio/leds/net5big:blink:front # ls
brightness      max_brightness  trigger
device          subsystem       uevent
/sys/devices/platform/leds-gpio/leds/net5big:blink:front # cat trigger
[none] timer heartbeat backlight gpio default-on
/sys/devices/platform/leds-gpio/leds/net5big:blink:front #


trigger net5big\:blue\:front/
Code: Select all
/sys/devices/platform/leds-gpio/leds # cd net5big\:blue\:front/
/sys/devices/platform/leds-gpio/leds/net5big:blue:front # ls
brightness      max_brightness  trigger
device          subsystem       uevent
/sys/devices/platform/leds-gpio/leds/net5big:blue:front # cat trigger
[none] timer heartbeat backlight gpio default-on
/sys/devices/platform/leds-gpio/leds/net5big:blue:front #
taetae
Donator VIP
Donator VIP
 
Posts: 438
Joined: Mon Aug 26, 2013 9:02 am

Re: lacie 5 big network v.1 please support for fvdw

Postby taetae » Wed Sep 10, 2014 8:17 pm

Code: Select all
/sys/devices/platform/leds-gpio/leds/net5big:blue:front # ls
brightness      max_brightness  trigger
device          subsystem       uevent
/sys/devices/platform/leds-gpio/leds/net5big:blue:front # echo 0 > brightness
/sys/devices/platform/leds-gpio/leds/net5big:blue:front # cat brightness
0
/sys/devices/platform/leds-gpio/leds/net5big:blue:front # cat max_brightness
255
/sys/devices/platform/leds-gpio/leds/net5big:blue:front # reboot

to reboot the front LED is off and the blue LED rear sata are fixed

https://www.dropbox.com/sh/o2m2g3ekv4ie ... jjY1a?dl=0

a second reboot is back to business as usual, all the LEDs flashing blue

I have noticed though that if using putty holding the boot leds are fixed on red and:

marvell> boot
a second reboot is back to business as usual, all the LEDs flashing blue

I have noticed though that if using putty holding the boot leds are fixed on red and:

marvell> boot
starts loading and the red LED will flash and then turn blue and then fix blue behind and off the LED on the front .. it is as if doing so takes some steps and if I leave it alone do not ..
But if I go to check the brightness settings remains 0

Code: Select all
~ # cd  /sys/devices/platform/leds-gpio/leds/
/sys/devices/platform/leds-gpio/leds # cd net5big\:blue\:front/
/sys/devices/platform/leds-gpio/leds/net5big:blue:front # cat brightness
0
/sys/devices/platform/leds-gpio/leds/net5big:blue:front #


Normal boot (automatic ignition boot countdown)
Code: Select all
 0
Waiting for LUMP (5)
no lump receive; continuing

Reset IDE:
Marvell Serial ATA Adapter
Found adapter at bus 1, device 7 ... Scanning channels
  Device 0: OK
Model: WDC WD20EZRX-00D8PB0                     Firm: 80.00A80 Ser#:      WD-WMC4M0218180
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 1907729.0 MB = 1863.0 GB (-387938128 x 512)
  Device 1: OK
Model: WDC WD20EZRX-00D8PB0                     Firm: 80.00A80 Ser#:      WD-WMC4M0410979
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 1907729.0 MB = 1863.0 GB (-387938128 x 512)
  Device 2: OK
Model: WDC WD20EZRX-00D8PB0                     Firm: 80.00A80 Ser#:      WD-WMC4M0424246
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 1907729.0 MB = 1863.0 GB (-387938128 x 512)
  Device 3: OK
Model: WDC WD20EZRX-00D8PB0                     Firm: 80.00A80 Ser#:      WD-WMC4M0219436
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 1907729.0 MB = 1863.0 GB (-387938128 x 512)
  Device 4: OK
Model: WDC WD5000AADS-00S9B0                    Firm: 01.00A01 Ser#:      WD-WCAV90478832
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 476940.0 MB = 465.7 GB (976773168 x 512)


Loading from IDE device 0, partition 6: Name: hda6
  Type: U-Boot

** Bad Magic Number **

Loading from IDE device 1, partition 6: Name: hdb6
  Type: U-Boot

** Bad Magic Number **

Loading from IDE device 2, partition 6: Name: hdc6
  Type: U-Boot

** Bad Magic Number **

Loading from IDE device 3, partition 6: Name: hdd6
  Type: U-Boot

** Bad Magic Number **

Loading from IDE device 4, partition 6: Name: hde6
  Type: U-Boot
   Image Name:   Linux-3.9.5
   Created:      2014-02-27  21:23:00 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    1851688 Bytes =  1.8 MB
   Load Address: 00008000
   Entry Point:  00008000
## Booting image at 00400000 ...
   Image Name:   Linux-3.9.5
   Created:      2014-02-27  21:23:00 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    1851688 Bytes =  1.8 MB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
Booting Linux on physical CPU 0x0
Linux version 3.9.5 (root@fvdwsl-5big2.local) (gcc version 4.8.1 (GCC) ) #25 Thu Feb 27 22:22:32 GMT+1 2014
CPU: Feroceon [41069260] revision 0 (ARMv5TEJ), cr=00053177
CPU: VIVT data cache, VIVT instruction cache
Machine: LaCie 5Big1 Network
Clearing invalid memory bank 0KB@0x00000000
Clearing invalid memory bank 0KB@0x00000000
Clearing invalid memory bank 0KB@0x00000000
Ignoring unrecognised tag 0x00000000
Ignoring unrecognised tag 0x00000000
Ignoring unrecognised tag 0x00000000
Ignoring unrecognised tag 0x41000403
Memory policy: ECC disabled, Data cache writeback
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 32512
Kernel command line: console=ttyS0,115200 root=/dev/sda7 ro boardType=mv88F5281 productType=5Big reset=0
PID hash table entries: 512 (order: -1, 2048 bytes)
Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
__ex_table already sorted, skipping sort
Memory: 128MB = 128MB total
Memory: 126024k/126024k available, 5048k reserved, 0K highmem
Virtual kernel memory layout:
    vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
    vmalloc : 0xc8800000 - 0xff000000   ( 872 MB)
    lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
    modules : 0xbf000000 - 0xc0000000   (  16 MB)
      .text : 0xc0008000 - 0xc0355fdc   (3384 kB)
      .init : 0xc0356000 - 0xc0374ebc   ( 124 kB)
      .data : 0xc0376000 - 0xc039bee0   ( 152 kB)
       .bss : 0xc039bee0 - 0xc03ca8dc   ( 187 kB)
NR_IRQS:64
sched_clock: 32 bits at 166MHz, resolution 5ns, wraps every 25769ms
Console: colour dummy device 80x30
Calibrating delay loop... 498.89 BogoMIPS (lpj=2494464)
pid_max: default: 32768 minimum: 301
Mount-cache hash table entries: 512
CPU: Testing write buffer coherency: ok
Setting up static identity map for 0xc028ffc8 - 0xc0290004
NET: Registered protocol family 16
DMA: preallocated 1024 KiB pool for atomic coherent allocations
Register Driver 'dummy'
5big1 init started
Orion ID: MV88F5281-D0. TCLK=166666667.
Orion: Applying 5281 D0 WFI workaround.
5big1 init 1
5big1 init 2
net5big: powering up SATA drives
5big1 init 3
5big1 init 4
5big1 init 5
5big1 init 6
5big1 init 7
5big1 init 8
5big1 init 9
5big1 init 10
5big1 init 11
5big1 init 12
net5big: turning off power-off control GPIO
net5big: Flash writing is not yet supported.
5big1 init end
net5big_pci_preinit failed to gpio_request 20
PCI host bridge to bus 0000:00
pci_bus 0000:00: root bus resource [mem 0xe0000000-0xe7ffffff]
pci_bus 0000:00: root bus resource [io  0x1000-0xffff]
pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
PCI: bus0: Fast back to back transfers disabled
PCI host bridge to bus 0000:01
pci_bus 0000:01: root bus resource [mem 0xe8000000-0xefffffff]
pci_bus 0000:01: root bus resource [io  0x10000-0x1ffff]
pci_bus 0000:01: No busn resource found for root bus, will use [bus 01-ff]
PCI: bus1: Fast back to back transfers enabled
pci 0000:01:07.0: BAR 0: assigned [mem 0xe8000000-0xe80fffff 64bit]
pci 0000:01:07.0: BAR 2: assigned [io  0x10000-0x100ff]
bio: create slab <bio-0> at 0
vgaarb: loaded
SCSI subsystem initialized
Register Driver 'Generic PHY'
Register Driver 'usbfs'
usbcore: registered new interface driver usbfs
Register Driver 'hub'
usbcore: registered new interface driver hub
Register Driver 'usb'
usbcore: registered new device driver usb
Register Driver 'i2c-gpio'
Switching to clocksource orion_clocksource
NET: Registered protocol family 2
TCP established hash table entries: 1024 (order: 1, 8192 bytes)
TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
TCP: Hash tables configured (established 1024 bind 1024)
TCP: reno registered
UDP hash table entries: 256 (order: 0, 4096 bytes)
UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
NET: Registered protocol family 1
Register Driver 'alarmtimer'
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
msgmni has been set to 246
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
Register Driver 'mv_xor'
mv_xor mv_xor.0: Marvell shared XOR driver
mv_xor mv_xor.0: Self-test copy failed compare, disabling
Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
Register Driver 'serial8250'
serial8250.0: ttyS0 at MMIO 0xf1012000 (irq = 3) is a 16550A
console [ttyS0] enabled
Register Driver 'serial'
brd: module loaded
loop: module loaded
Register Driver 'at24'
Register Driver 'eeprom'
Register Driver 'sd'
Register Driver 'ahci'
Register Driver 'sata_mv'
sata_mv 0000:01:07.0: Gen-II 32 slots 8 ports SCSI mode IRQ via INTx
scsi0 : sata_mv
scsi1 : sata_mv
scsi2 : sata_mv
scsi3 : sata_mv
scsi4 : sata_mv
scsi5 : sata_mv
scsi6 : sata_mv
scsi7 : sata_mv
ata1: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8022000 irq 52
ata2: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8024000 irq 52
ata3: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8026000 irq 52
ata4: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8028000 irq 52
ata5: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8032000 irq 52
ata6: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8034000 irq 52
ata7: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8036000 irq 52
ata8: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8038000 irq 52
Register Driver 'sata_mv'
sata_mv sata_mv.0: cannot get optional clkdev
sata_mv sata_mv.0: slots 32 ports 5
scsi8 : sata_mv
scsi9 : sata_mv
scsi10 : sata_mv
scsi11 : sata_mv
scsi12 : sata_mv
ata9: SATA max UDMA/133 irq 29
ata10: SATA max UDMA/133 irq 29
ata11: SATA max UDMA/133 irq 29
ata12: SATA max UDMA/133 irq 29
ata13: SATA max UDMA/133 irq 29
tun: Universal TUN/TAP device driver, 1.6
tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
ipddp.c:v0.01 8/28/97 Bradford W. Johnson <johns393@maroon.tc.umn.edu>
ipddp0: Appletalk-IP Encap. mode by Bradford W. Johnson <johns393@maroon.tc.umn.edu>
Register Driver 'mv643xx_eth'
mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
libphy: mv643xx_eth smi: probed
Register Driver 'mv643xx_eth_port'
mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:d0:4b:8b:60:2b
mousedev: PS/2 mouse device common for all mice
Register Driver 'rtc-ds1307'
Register Driver 'rtc-ds1374'
Register Driver 'rtc-rs5c372'
i2c /dev entries driver
Register Driver 'mv64xxx_i2c'
rtc-rs5c372 0-0032: rs5c372b found, 24hr, driver version 0.6
rtc-rs5c372 0-0032: rtc core: registered rtc-rs5c372 as rtc0
at24 0-0050: 1024 byte 24c08 EEPROM, writable, 1 bytes/write
Register Driver 'g762'
g762 probe started
g762 probe 1
g762 probe 2
g762 probe 3
g762 probe 4
g762 probe 5
g762 probe 6
g762 probe 7
Register Driver 'gpio-fan'
Register Driver 'lm75'
Register Driver 'lm77'
Register Driver 'leds-gpio'
Register Driver 'mv_crypto'
Netfilter messages via NETLINK v0.30.
IPv4 over IPv4 tunneling driver
TCP: cubic registered
NET: Registered protocol family 17
NET: Registered protocol family 5
VFP support v0.3: implementor 41 architecture 1 part 10 variant 9 rev 0
console [netcon0] enabled
netconsole: network logging started
rtc-rs5c372 0-0032: setting system clock to 2014-09-15 00:41:25 UTC (1410741685)
ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata1.00: ATA-9: WDC WD20EZRX-00D8PB0, 80.00A80, max UDMA/133
ata1.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access     ATA      WDC WD20EZRX-00D 80.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 0
device-name= sata_mv
fvdw2 disk index after get_sd_name = 4
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sde
sd 0:0:0:0: [sde] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
sd 0:0:0:0: [sde] 4096-byte physical blocks
sd 0:0:0:0: [sde] Write Protect is off
sd 0:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sde: sde4 < sde5 sde6 sde7 sde8 >
sd 0:0:0:0: [sde] Attached SCSI disk
ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata2.00: ATA-9: WDC WD20EZRX-00D8PB0, 80.00A80, max UDMA/133
ata2.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata9: failed to resume link (SControl 0)
ata9: SATA link down (SStatus 0 SControl 0)
ata2.00: configured for UDMA/133
scsi 1:0:0:0: Direct-Access     ATA      WDC WD20EZRX-00D 80.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 1
device-name= sata_mv
fvdw2 disk index after get_sd_name = 3
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sdd
sd 1:0:0:0: [sdd] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
sd 1:0:0:0: [sdd] 4096-byte physical blocks
sd 1:0:0:0: [sdd] Write Protect is off
sd 1:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdd: sdd4 < sdd5 sdd6 sdd7 sdd8 >
sd 1:0:0:0: [sdd] Attached SCSI disk
ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata3.00: ATA-9: WDC WD20EZRX-00D8PB0, 80.00A80, max UDMA/133
ata3.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata3.00: configured for UDMA/133
scsi 2:0:0:0: Direct-Access     ATA      WDC WD20EZRX-00D 80.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 2
device-name= sata_mv
fvdw2 disk index after get_sd_name = 2
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sdc
sd 2:0:0:0: [sdc] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
sd 2:0:0:0: [sdc] 4096-byte physical blocks
sd 2:0:0:0: [sdc] Write Protect is off
sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdc: sdc4 < sdc5 sdc6 sdc7 sdc8 >
sd 2:0:0:0: [sdc] Attached SCSI disk
ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata4.00: ATA-9: WDC WD20EZRX-00D8PB0, 80.00A80, max UDMA/133
ata4.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata4.00: configured for UDMA/133
scsi 3:0:0:0: Direct-Access     ATA      WDC WD20EZRX-00D 80.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 3
device-name= sata_mv
fvdw2 disk index after get_sd_name = 1
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sdb
sd 3:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
sd 3:0:0:0: [sdb] 4096-byte physical blocks
sd 3:0:0:0: [sdb] Write Protect is off
sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdb: sdb4 < sdb5 sdb6 sdb7 sdb8 >
sd 3:0:0:0: [sdb] Attached SCSI disk
ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata5.00: ATA-8: WDC WD5000AADS-00S9B0, 01.00A01, max UDMA/133
ata5.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata5.00: configured for UDMA/133
scsi 4:0:0:0: Direct-Access     ATA      WDC WD5000AADS-0 01.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 4
device-name= sata_mv
fvdw2 disk index after get_sd_name = 0
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sda
sd 4:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
sd 4:0:0:0: [sda] Write Protect is off
sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
sd 4:0:0:0: [sda] Attached SCSI disk
ata6: SATA link down (SStatus 0 SControl 300)
ata7: SATA link down (SStatus 0 SControl 300)
ata8: SATA link down (SStatus 0 SControl 300)
ata10: failed to resume link (SControl 0)
ata10: SATA link down (SStatus 0 SControl 0)
ata11: failed to resume link (SControl 0)
ata11: SATA link down (SStatus 0 SControl 0)
ata12: failed to resume link (SControl 0)
ata12: SATA link down (SStatus 0 SControl 0)
ata13: failed to resume link (SControl 0)
ata13: SATA link down (SStatus 0 SControl 0)
EXT3-fs (sda7): recovery required on readonly filesystem
EXT3-fs (sda7): write access will be enabled during recovery
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sda7): recovery complete
EXT3-fs (sda7): mounted filesystem with ordered data mode
VFS: Mounted root (ext3 filesystem) readonly on device 8:71.
Freeing init memory: 120K
start rcS
set global environment params
mount proc
remount root file system rw
EXT3-fs (sda7): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sda7): using internal journal
mount sysfs
start boot log
detect and set platform
5big1
update dev nodes
booting using sda2 file system...
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sda2): warning: checktime reached, running e2fsck is recommended
EXT3-fs (sda2): using internal journal
EXT3-fs (sda2): recovery complete
EXT3-fs (sda2): mounted filesystem with ordered data mode
start rcS
set global environment params
mount proc
remount root file system rw
mount sysfs
start boot log
detect and set platform
5big1
update dev nodes
booting using sda2 root file system...
mknod: /dev/null: File exists
make dev node for buttons...
mkdir: can't create directory '/dev/input': File exists
mknod: /dev/input/event0: File exists
make dev node for tun device...
mknod: /dev/net/tun: File exists
enable IP forwarding...
start buttons control daemon
create temporary passwd file
run udevstart to update dev nodes when necessary
mkdir: can't create directory 'rw_fs': File exists
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sda5): using internal journal
EXT3-fs (sda5): recovery complete
EXT3-fs (sda5): mounted filesystem with ordered data mode
Setting up swapspace version 1, size = 526413824 bytes
UUID=83ccb4cc-b788-4c63-be3b-50d5eaead590
Adding 514076k swap on /dev/sda3.  Priority:-1 extents:1 across:514076k
inserting kernel modules:
NTFS driver 2.1.30 [Flags: R/W MODULE].
fuse init (API version 7.21)
Register Driver 'usblp'
usbcore: registered new interface driver usblp
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
iSCSI Enterprise Target Software - version trunk
iscsi_trgt: Registered io type fileio
iscsi_trgt: Registered io type blockio
iscsi_trgt: Registered io type nullio
Loading iSCSI transport class v2.0-870.
iscsi: registered transport (tcp)
Linux video capture interface: v2.00
uvcvideo: Unable to create debugfs directory
Register Driver 'uvcvideo'
usbcore: registered new interface driver uvcvideo
USB Video Class driver (1.1.1)
configure loopback network interface
setting reboot and standby
start fan
starting php based setup routines step 1
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sda8): using internal journal
EXT3-fs (sda8): recovery complete
EXT3-fs (sda8): mounted filesystem with ordered data mode
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sdb8): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sdb8): using internal journal
EXT3-fs (sdb8): recovery complete
EXT3-fs (sdb8): mounted filesystem with ordered data mode
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sdc8): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sdc8): using internal journal
EXT3-fs (sdc8): recovery complete
EXT3-fs (sdc8): mounted filesystem with ordered data mode
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sdd8): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sdd8): using internal journal
EXT3-fs (sdd8): recovery complete
EXT3-fs (sdd8): mounted filesystem with ordered data mode
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sde8): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sde8): using internal journal
EXT3-fs (sde8): recovery complete
EXT3-fs (sde8): mounted filesystem with ordered data mode
udevd (952): /proc/952/oom_adj is deprecated, please use /proc/952/oom_score_adj instead.
udev: starting version 130
mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
passwd[1371]: password for `adelina' changed by user `root'
passwd[1375]: password for `lucio' changed by user `root'
passwd[1379]: password for `veronica' changed by user `root'
passwd[1383]: password for `carmine' changed by user `root'
start rpcbind service
rpcbind: cannot create socket for udp6
rpcbind: cannot create socket for tcp6
starting php based setup routines step2
starting php based setup routines step3
warning: `proftpd' uses 32-bit capabilities (legacy support in use)
starting php based setup routines step banner
php based setup routines finished
web permission on resolv.conf
set device tuning for dms performance
/etc/init.d/rcS: line 542: can't create /proc/resource_dump: Permission denied
------------------------
rcS finished
------------------------
 list boot.log file
start boot log
detect and set platform
5big1
UIMAGE-395-5BIG1-25
5big1
update dev nodes
booting using sda2 root file system...
make dev node for buttons...
make dev node for tun device...
enable IP forwarding...
start buttons control daemon
device = 5big1
source = buttons-nwsp2
buttons-nwsp2 daemon started
Mon Sep 15 00:41:36 UTC 2014
create temporary passwd file
run udevstart to update dev nodes when necessary
inserting kernel modules:
configure loopback netwerk interface
setting reboot and standby
5big1
rebootd-isp1
5big1
standbyd-isp1
start fan
fan5big daemon started
starting php based setup routines step 1

 * Found XML database configuration file...      [ OK ]
 * Updating Disks database...                    [ OK ]
 * Starting mount of volumes...
   - Mounting volume Vol-A:              [ OK ]
   - Mounting volume Vol-B:              [ OK ]
   - Mounting volume Vol-C:              [ OK ]
   - Mounting volume Vol-D:              [ OK ]
   - Mounting volume Vol-E:              [ OK ]
 * Finishing mount of volumes...                 [ OK ]
 * Starting udevd...                                     [ OK ]
 * Generating Hosts File...                      [ OK ]
 * Configuring System Hostname...                [ OK ]
 * Configuring LAN interface...                  [ OK ]
 * Initializing Timezone...                      [ OK ]
 * Starting web server...                                [ OK ]
 * Configuring Disks...                                  [ OK ]
 * Configuring Samba...                                  [ OK ]
 * Configuring System Users...
        Root password: use default password
        Set users, linux and samba accounts      [ OK ]
 * Starting syncawayd...                                 [ OK ]
 * Starting Fvdw-sl Discovery Daemon...  [ OK ]
start rpcbind service
starting php based setup routines step 2
 * Starting dropbear...                                  [ OK ]
 * Kill temporary dropbear...                    [ OK ]
starting php based setup routines step 3
 * Starting daemon update Hosts File...  [ OK ]
 * Starting Disk Temperature Guard...    [ OK ]
 * Starting mount of remote shares...
 * Finishing mount shares...                     [ OK ]
 * Starting FTP Service...                               [ OK ]
starting php based setup routines step banner


*** fvdw-sl NAS firmware
    This is fvdw-sl version: fvdw-sl 15.3
    built on: May 30 2014

    LAN IP address: 192.168.1.71 (static)

    Port configuration:

    LAN   -> eth0
php based setup routines finished
web permission on resolv.conf
set device tuning for dms performance
else loop1 finished
rcS finished
------------------------
rcS finished
------------------------
 list boot.log file
start boot log
detect and set platform
5big1
UIMAGE-26394-5BIG1-20
5big1
update dev nodes
booting using sda2 file system...
rcS finished
/bin/sh: can't access tty; job control turned off
~ #
Last edited by taetae on Thu Sep 11, 2014 8:49 am, edited 1 time in total.
taetae
Donator VIP
Donator VIP
 
Posts: 438
Joined: Mon Aug 26, 2013 9:02 am

Re: lacie 5 big network v.1 please support for fvdw

Postby taetae » Wed Sep 10, 2014 8:53 pm

reboot, stop countdown

and fan works on a regular basis
Code: Select all
~ # reboot
~ # params.c:OpenConfFile() - Unable to open configuration file "/usr/lib/smb.conf":
        No such file or directory
ERROR: Failed to initialise messages database
killall: zfs: no process killed
killall: zxtract: no process killed
killall: zappdms: no process killed
killall: udhcpc: no process killed
killall: ntpd: no process killed
killall: fanctld: no process killed
The system is going down NOW!
Sent SIGTERM to all processes
Sent SIGKILL to all processes
Requesting system reboot
sd 4:0:0:0: [sda] Synchronizing SCSI cache
sd 3:0:0:0: [sdb] Synchronizing SCSI cache
sd 2:0:0:0: [sdc] Synchronizing SCSI cache
sd 1:0:0:0: [sdd] Synchronizing SCSI cache
sd 0:0:0:0: [sde] Synchronizing SCSI cache
Restarting system.

         __  __                      _ _
        |  \/  | __ _ _ ____   _____| | |
        | |\/| |/ _` | '__\ \ / / _ \ | |
        | |  | | (_| | |   \ V /  __/ | |
        |_|  |_|\__,_|_|    \_/ \___|_|_|
 _   _     ____              _
| | | |   | __ )  ___   ___ | |_
| | | |___|  _ \ / _ \ / _ \| __|
| |_| |___| |_) | (_) | (_) | |_
 \___/    |____/ \___/ \___/ \__|  ** LOADER **
 ** MARVELL BOARD: RD-88F5281-LaCie LE

U-Boot 1.1.4 (Jun 26 2008 - 16:55:41) Marvell version: 2.4.9

U-Boot code: 00200000 -> 0026FFF0  BSS: -> 00283280

Soc: 88F5281 D0 (DDR2)
CPU running @ 500Mhz
SysClock = 166Mhz , TClock = 166Mhz

DRAM CS[0] base 0x00000000   size 128MB
DRAM Total size 128MB  32bit width
[4096kB@ffc00000] Flash:  4 MB
Addresses 4M - 0M are saved for the U-Boot usage.
Mem malloc Initialization (4M - 3M): Done
*** Warning - bad CRC, using default environment


CPU : ARM926 (Rev 0)
Streaming disabled
VFP initialized to Run Fast Mode.

USB 0: host mode
PCI 0: PCI Express Root Complex Interface
PCI 1: PCI-X, speed = 66000000
CPU: Write allocate Disabled
Net:   egiga0 [PRIME]
POWER ON
Hit any key to stop autoboot:  0
Marvell>> boot
Waiting for LUMP (5)
no lump receive; continuing

Reset IDE:
Marvell Serial ATA Adapter
Found adapter at bus 1, device 7 ... Scanning channels
Error - Failed initializing(SRST) drive on channel 0
Failed initializing storage deivce connected to SATA channel 0
  Device 1: OK
Model: WDC WD20EZRX-00D8PB0                     Firm: 80.00A80 Ser#:      WD-WMC4M0410979
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 1907729.0 MB = 1863.0 GB (-387938128 x 512)
  Device 2: OK
Model: WDC WD20EZRX-00D8PB0                     Firm: 80.00A80 Ser#:      WD-WMC4M0424246
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 1907729.0 MB = 1863.0 GB (-387938128 x 512)
  Device 3: OK
Model: WDC WD20EZRX-00D8PB0                     Firm: 80.00A80 Ser#:      WD-WMC4M0219436
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 1907729.0 MB = 1863.0 GB (-387938128 x 512)
  Device 4: OK
Model: WDC WD5000AADS-00S9B0                    Firm: 01.00A01 Ser#:      WD-WCAV90478832
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 476940.0 MB = 465.7 GB (976773168 x 512)


** Device 0 not available

** Device 0 not available

Loading from IDE device 1, partition 6: Name: hdb6
  Type: U-Boot

** Bad Magic Number **

Loading from IDE device 2, partition 6: Name: hdc6
  Type: U-Boot

** Bad Magic Number **

Loading from IDE device 3, partition 6: Name: hdd6
  Type: U-Boot

** Bad Magic Number **

Loading from IDE device 4, partition 6: Name: hde6
  Type: U-Boot
   Image Name:   Linux-3.9.5
   Created:      2014-02-27  21:23:00 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    1851688 Bytes =  1.8 MB
   Load Address: 00008000
   Entry Point:  00008000
## Booting image at 00400000 ...
   Image Name:   Linux-3.9.5
   Created:      2014-02-27  21:23:00 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    1851688 Bytes =  1.8 MB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
Booting Linux on physical CPU 0x0
Linux version 3.9.5 (root@fvdwsl-5big2.local) (gcc version 4.8.1 (GCC) ) #25 Thu Feb 27 22:22:32 GMT+1 2014
CPU: Feroceon [41069260] revision 0 (ARMv5TEJ), cr=00053177
CPU: VIVT data cache, VIVT instruction cache
Machine: LaCie 5Big1 Network
Clearing invalid memory bank 0KB@0x00000000
Clearing invalid memory bank 0KB@0x00000000
Clearing invalid memory bank 0KB@0x00000000
Ignoring unrecognised tag 0x00000000
Ignoring unrecognised tag 0x00000000
Ignoring unrecognised tag 0x00000000
Ignoring unrecognised tag 0x41000403
Memory policy: ECC disabled, Data cache writeback
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 32512
Kernel command line: console=ttyS0,115200 root=/dev/sda7 ro boardType=mv88F5281 productType=5Big reset=0
PID hash table entries: 512 (order: -1, 2048 bytes)
Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
__ex_table already sorted, skipping sort
Memory: 128MB = 128MB total
Memory: 126024k/126024k available, 5048k reserved, 0K highmem
Virtual kernel memory layout:
    vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
    vmalloc : 0xc8800000 - 0xff000000   ( 872 MB)
    lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
    modules : 0xbf000000 - 0xc0000000   (  16 MB)
      .text : 0xc0008000 - 0xc0355fdc   (3384 kB)
      .init : 0xc0356000 - 0xc0374ebc   ( 124 kB)
      .data : 0xc0376000 - 0xc039bee0   ( 152 kB)
       .bss : 0xc039bee0 - 0xc03ca8dc   ( 187 kB)
NR_IRQS:64
sched_clock: 32 bits at 166MHz, resolution 5ns, wraps every 25769ms
Console: colour dummy device 80x30
Calibrating delay loop... 498.89 BogoMIPS (lpj=2494464)
pid_max: default: 32768 minimum: 301
Mount-cache hash table entries: 512
CPU: Testing write buffer coherency: ok
Setting up static identity map for 0xc028ffc8 - 0xc0290004
NET: Registered protocol family 16
DMA: preallocated 1024 KiB pool for atomic coherent allocations
Register Driver 'dummy'
5big1 init started
Orion ID: MV88F5281-D0. TCLK=166666667.
Orion: Applying 5281 D0 WFI workaround.
5big1 init 1
5big1 init 2
net5big: powering up SATA drives
5big1 init 3
5big1 init 4
5big1 init 5
5big1 init 6
5big1 init 7
5big1 init 8
5big1 init 9
5big1 init 10
5big1 init 11
5big1 init 12
net5big: turning off power-off control GPIO
net5big: Flash writing is not yet supported.
5big1 init end
net5big_pci_preinit failed to gpio_request 20
PCI host bridge to bus 0000:00
pci_bus 0000:00: root bus resource [mem 0xe0000000-0xe7ffffff]
pci_bus 0000:00: root bus resource [io  0x1000-0xffff]
pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
PCI: bus0: Fast back to back transfers disabled
PCI host bridge to bus 0000:01
pci_bus 0000:01: root bus resource [mem 0xe8000000-0xefffffff]
pci_bus 0000:01: root bus resource [io  0x10000-0x1ffff]
pci_bus 0000:01: No busn resource found for root bus, will use [bus 01-ff]
PCI: bus1: Fast back to back transfers enabled
pci 0000:01:07.0: BAR 0: assigned [mem 0xe8000000-0xe80fffff 64bit]
pci 0000:01:07.0: BAR 2: assigned [io  0x10000-0x100ff]
bio: create slab <bio-0> at 0
vgaarb: loaded
SCSI subsystem initialized
Register Driver 'Generic PHY'
Register Driver 'usbfs'
usbcore: registered new interface driver usbfs
Register Driver 'hub'
usbcore: registered new interface driver hub
Register Driver 'usb'
usbcore: registered new device driver usb
Register Driver 'i2c-gpio'
Switching to clocksource orion_clocksource
NET: Registered protocol family 2
TCP established hash table entries: 1024 (order: 1, 8192 bytes)
TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
TCP: Hash tables configured (established 1024 bind 1024)
TCP: reno registered
UDP hash table entries: 256 (order: 0, 4096 bytes)
UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
NET: Registered protocol family 1
Register Driver 'alarmtimer'
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
msgmni has been set to 246
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
Register Driver 'mv_xor'
mv_xor mv_xor.0: Marvell shared XOR driver
mv_xor mv_xor.0: Self-test copy failed compare, disabling
Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
Register Driver 'serial8250'
serial8250.0: ttyS0 at MMIO 0xf1012000 (irq = 3) is a 16550A
console [ttyS0] enabled
Register Driver 'serial'
brd: module loaded
loop: module loaded
Register Driver 'at24'
Register Driver 'eeprom'
Register Driver 'sd'
Register Driver 'ahci'
Register Driver 'sata_mv'
sata_mv 0000:01:07.0: Gen-II 32 slots 8 ports SCSI mode IRQ via INTx
scsi0 : sata_mv
scsi1 : sata_mv
scsi2 : sata_mv
scsi3 : sata_mv
scsi4 : sata_mv
scsi5 : sata_mv
scsi6 : sata_mv
scsi7 : sata_mv
ata1: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8022000 irq 52
ata2: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8024000 irq 52
ata3: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8026000 irq 52
ata4: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8028000 irq 52
ata5: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8032000 irq 52
ata6: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8034000 irq 52
ata7: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8036000 irq 52
ata8: SATA max UDMA/133 mmio m1048576@0xe8000000 port 0xe8038000 irq 52
Register Driver 'sata_mv'
sata_mv sata_mv.0: cannot get optional clkdev
sata_mv sata_mv.0: slots 32 ports 5
scsi8 : sata_mv
scsi9 : sata_mv
scsi10 : sata_mv
scsi11 : sata_mv
scsi12 : sata_mv
ata9: SATA max UDMA/133 irq 29
ata10: SATA max UDMA/133 irq 29
ata11: SATA max UDMA/133 irq 29
ata12: SATA max UDMA/133 irq 29
ata13: SATA max UDMA/133 irq 29
tun: Universal TUN/TAP device driver, 1.6
tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
ipddp.c:v0.01 8/28/97 Bradford W. Johnson <johns393@maroon.tc.umn.edu>
ipddp0: Appletalk-IP Encap. mode by Bradford W. Johnson <johns393@maroon.tc.umn.edu>
Register Driver 'mv643xx_eth'
mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
libphy: mv643xx_eth smi: probed
Register Driver 'mv643xx_eth_port'
mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:d0:4b:8b:60:2b
mousedev: PS/2 mouse device common for all mice
Register Driver 'rtc-ds1307'
Register Driver 'rtc-ds1374'
Register Driver 'rtc-rs5c372'
i2c /dev entries driver
Register Driver 'mv64xxx_i2c'
rtc-rs5c372 0-0032: rs5c372b found, 24hr, driver version 0.6
rtc-rs5c372 0-0032: rtc core: registered rtc-rs5c372 as rtc0
at24 0-0050: 1024 byte 24c08 EEPROM, writable, 1 bytes/write
Register Driver 'g762'
g762 probe started
g762 probe 1
g762 probe 2
g762 probe 3
g762 probe 4
g762 probe 5
g762 probe 6
g762 probe 7
Register Driver 'gpio-fan'
Register Driver 'lm75'
Register Driver 'lm77'
Register Driver 'leds-gpio'
Register Driver 'mv_crypto'
Netfilter messages via NETLINK v0.30.
IPv4 over IPv4 tunneling driver
TCP: cubic registered
NET: Registered protocol family 17
NET: Registered protocol family 5
VFP support v0.3: implementor 41 architecture 1 part 10 variant 9 rev 0
console [netcon0] enabled
netconsole: network logging started
rtc-rs5c372 0-0032: setting system clock to 2014-09-15 00:48:35 UTC (1410742115)
ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata1.00: ATA-9: WDC WD20EZRX-00D8PB0, 80.00A80, max UDMA/133
ata1.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access     ATA      WDC WD20EZRX-00D 80.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 0
device-name= sata_mv
fvdw2 disk index after get_sd_name = 4
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sde
sd 0:0:0:0: [sde] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
sd 0:0:0:0: [sde] 4096-byte physical blocks
sd 0:0:0:0: [sde] Write Protect is off
sd 0:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sde: sde4 < sde5 sde6 sde7 sde8 >
sd 0:0:0:0: [sde] Attached SCSI disk
ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata2.00: ATA-9: WDC WD20EZRX-00D8PB0, 80.00A80, max UDMA/133
ata2.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata9: failed to resume link (SControl 0)
ata9: SATA link down (SStatus 0 SControl 0)
ata2.00: configured for UDMA/133
scsi 1:0:0:0: Direct-Access     ATA      WDC WD20EZRX-00D 80.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 1
device-name= sata_mv
fvdw2 disk index after get_sd_name = 3
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sdd
sd 1:0:0:0: [sdd] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
sd 1:0:0:0: [sdd] 4096-byte physical blocks
sd 1:0:0:0: [sdd] Write Protect is off
sd 1:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdd: sdd4 < sdd5 sdd6 sdd7 sdd8 >
sd 1:0:0:0: [sdd] Attached SCSI disk
ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata3.00: ATA-9: WDC WD20EZRX-00D8PB0, 80.00A80, max UDMA/133
ata3.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata3.00: configured for UDMA/133
scsi 2:0:0:0: Direct-Access     ATA      WDC WD20EZRX-00D 80.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 2
device-name= sata_mv
fvdw2 disk index after get_sd_name = 2
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sdc
sd 2:0:0:0: [sdc] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
sd 2:0:0:0: [sdc] 4096-byte physical blocks
sd 2:0:0:0: [sdc] Write Protect is off
sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdc: sdc4 < sdc5 sdc6 sdc7 sdc8 >
sd 2:0:0:0: [sdc] Attached SCSI disk
ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata4.00: ATA-9: WDC WD20EZRX-00D8PB0, 80.00A80, max UDMA/133
ata4.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata4.00: configured for UDMA/133
scsi 3:0:0:0: Direct-Access     ATA      WDC WD20EZRX-00D 80.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 3
device-name= sata_mv
fvdw2 disk index after get_sd_name = 1
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sdb
sd 3:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
sd 3:0:0:0: [sdb] 4096-byte physical blocks
sd 3:0:0:0: [sdb] Write Protect is off
sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdb: sdb4 < sdb5 sdb6 sdb7 sdb8 >
sd 3:0:0:0: [sdb] Attached SCSI disk
ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata5.00: ATA-8: WDC WD5000AADS-00S9B0, 01.00A01, max UDMA/133
ata5.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata5.00: configured for UDMA/133
scsi 4:0:0:0: Direct-Access     ATA      WDC WD5000AADS-0 01.0 PQ: 0 ANSI: 5
fvdw1 disk index before get_sd_name = 4
device-name= sata_mv
fvdw2 disk index after get_sd_name = 0
fvdw3 prefix[0]=s  prefix[1]=d
fvdw4 diskname = sda
sd 4:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
sd 4:0:0:0: [sda] Write Protect is off
sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
sd 4:0:0:0: [sda] Attached SCSI disk
ata6: SATA link down (SStatus 0 SControl 300)
ata7: SATA link down (SStatus 0 SControl 300)
ata8: SATA link down (SStatus 0 SControl 300)
ata10: failed to resume link (SControl 0)
ata10: SATA link down (SStatus 0 SControl 0)
ata11: failed to resume link (SControl 0)
ata11: SATA link down (SStatus 0 SControl 0)
ata12: failed to resume link (SControl 0)
ata12: SATA link down (SStatus 0 SControl 0)
ata13: failed to resume link (SControl 0)
ata13: SATA link down (SStatus 0 SControl 0)
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sda7): mounted filesystem with ordered data mode
VFS: Mounted root (ext3 filesystem) readonly on device 8:71.
Freeing init memory: 120K
start rcS
set global environment params
mount proc
remount root file system rw
EXT3-fs (sda7): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sda7): using internal journal
mount sysfs
start boot log
detect and set platform
5big1
update dev nodes
booting using sda2 file system...
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sda2): warning: checktime reached, running e2fsck is recommended
EXT3-fs (sda2): using internal journal
EXT3-fs (sda2): recovery complete
EXT3-fs (sda2): mounted filesystem with ordered data mode
start rcS
set global environment params
mount proc
remount root file system rw
mount sysfs
start boot log
detect and set platform
5big1
update dev nodes
booting using sda2 root file system...
mknod: /dev/null: File exists
make dev node for buttons...
mkdir: can't create directory '/dev/input': File exists
mknod: /dev/input/event0: File exists
make dev node for tun device...
mknod: /dev/net/tun: File exists
enable IP forwarding...
start buttons control daemon
create temporary passwd file
run udevstart to update dev nodes when necessary
mkdir: can't create directory 'rw_fs': File exists
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sda5): using internal journal
EXT3-fs (sda5): recovery complete
EXT3-fs (sda5): mounted filesystem with ordered data mode
Setting up swapspace version 1, size = 526413824 bytes
UUID=9edd4a65-e523-49d5-ae79-c8a47875c3b6
Adding 514076k swap on /dev/sda3.  Priority:-1 extents:1 across:514076k
inserting kernel modules:
NTFS driver 2.1.30 [Flags: R/W MODULE].
fuse init (API version 7.21)
Register Driver 'usblp'
usbcore: registered new interface driver usblp
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
iSCSI Enterprise Target Software - version trunk
iscsi_trgt: Registered io type fileio
iscsi_trgt: Registered io type blockio
iscsi_trgt: Registered io type nullio
Loading iSCSI transport class v2.0-870.
iscsi: registered transport (tcp)
Linux video capture interface: v2.00
uvcvideo: Unable to create debugfs directory
Register Driver 'uvcvideo'
usbcore: registered new interface driver uvcvideo
USB Video Class driver (1.1.1)
configure loopback network interface
setting reboot and standby
start fan
starting php based setup routines step 1
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sda8): using internal journal
EXT3-fs (sda8): recovery complete
EXT3-fs (sda8): mounted filesystem with ordered data mode
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sdb8): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sdb8): using internal journal
EXT3-fs (sdb8): recovery complete
EXT3-fs (sdb8): mounted filesystem with ordered data mode
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sdc8): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sdc8): using internal journal
EXT3-fs (sdc8): recovery complete
EXT3-fs (sdc8): mounted filesystem with ordered data mode
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sdd8): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sdd8): using internal journal
EXT3-fs (sdd8): recovery complete
EXT3-fs (sdd8): mounted filesystem with ordered data mode
kjournald starting.  Commit interval 5 seconds
EXT3-fs (sde8): warning: maximal mount count reached, running e2fsck is recommended
EXT3-fs (sde8): using internal journal
EXT3-fs (sde8): recovery complete
EXT3-fs (sde8): mounted filesystem with ordered data mode
udevd (951): /proc/951/oom_adj is deprecated, please use /proc/951/oom_score_adj instead.
udev: starting version 130
mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
passwd[1371]: password for `adelina' changed by user `root'
passwd[1375]: password for `lucio' changed by user `root'
passwd[1379]: password for `veronica' changed by user `root'
passwd[1383]: password for `carmine' changed by user `root'
start rpcbind service
rpcbind: cannot create socket for udp6
rpcbind: cannot create socket for tcp6
starting php based setup routines step2
starting php based setup routines step3
warning: `proftpd' uses 32-bit capabilities (legacy support in use)
starting php based setup routines step banner
php based setup routines finished
web permission on resolv.conf
set device tuning for dms performance
/etc/init.d/rcS: line 542: can't create /proc/resource_dump: Permission denied
------------------------
rcS finished
------------------------
 list boot.log file
start boot log
detect and set platform
5big1
UIMAGE-395-5BIG1-25
5big1
update dev nodes
booting using sda2 root file system...
make dev node for buttons...
make dev node for tun device...
enable IP forwarding...
start buttons control daemon
device = 5big1
source = buttons-nwsp2
buttons-nwsp2 daemon started
Mon Sep 15 00:48:45 UTC 2014
create temporary passwd file
run udevstart to update dev nodes when necessary
inserting kernel modules:
configure loopback netwerk interface
setting reboot and standby
5big1
rebootd-isp1
5big1
standbyd-isp1
start fan
fan5big daemon started
starting php based setup routines step 1

 * Found XML database configuration file...      [ OK ]
 * Updating Disks database...                    [ OK ]
 * Starting mount of volumes...
   - Mounting volume Vol-A:              [ OK ]
   - Mounting volume Vol-B:              [ OK ]
   - Mounting volume Vol-C:              [ OK ]
   - Mounting volume Vol-D:              [ OK ]
   - Mounting volume Vol-E:              [ OK ]
 * Finishing mount of volumes...                 [ OK ]
 * Starting udevd...                                     [ OK ]
 * Generating Hosts File...                      [ OK ]
 * Configuring System Hostname...                [ OK ]
 * Configuring LAN interface...                  [ OK ]
 * Initializing Timezone...                      [ OK ]
 * Starting web server...                                [ OK ]
 * Configuring Disks...                                  [ OK ]
 * Configuring Samba...                                  [ OK ]
 * Configuring System Users...
        Root password: use default password
        Set users, linux and samba accounts      [ OK ]
 * Starting syncawayd...                                 [ OK ]
 * Starting Fvdw-sl Discovery Daemon...  [ OK ]
start rpcbind service
starting php based setup routines step 2
 * Starting dropbear...                                  [ OK ]
 * Kill temporary dropbear...                    [ OK ]
starting php based setup routines step 3
 * Starting daemon update Hosts File...  [ OK ]
 * Starting Disk Temperature Guard...    [ OK ]
 * Starting mount of remote shares...
 * Finishing mount shares...                     [ OK ]
 * Starting FTP Service...                               [ OK ]
starting php based setup routines step banner


*** fvdw-sl NAS firmware
    This is fvdw-sl version: fvdw-sl 15.3
    built on: May 30 2014

    LAN IP address: 192.168.1.71 (static)

    Port configuration:

    LAN   -> eth0
php based setup routines finished
web permission on resolv.conf
set device tuning for dms performance
else loop1 finished
rcS finished
------------------------
rcS finished
------------------------
 list boot.log file
start boot log
detect and set platform
5big1
UIMAGE-26394-5BIG1-20
5big1
update dev nodes
booting using sda2 file system...
rcS finished
/bin/sh: can't access tty; job control turned off
~ #
taetae
Donator VIP
Donator VIP
 
Posts: 438
Joined: Mon Aug 26, 2013 9:02 am

Re: lacie 5 big network v.1 please support for fvdw

Postby Jocko » Thu Sep 11, 2014 10:02 am

Just a question why do you use clunc to stop/start you NAS:
Code: Select all
marvell> boot
In the usual way, how do you start your NAS ?

Otherwise, it is not clear for me your last posts (misunderstand your posts :scratch )

to reboot the front LED is off and the blue LED rear sata are fixed
So you mean that after echoing 0 in brightness, the LEDs switch off before restarting or after rebooting ?

marvell> boot
starts loading and the red LED will flash and then turn blue and then fix blue behind and off the LED on the front .. it is as if doing so takes some steps and if I leave it alone do not ..
Don't worry about it. It is not the issue. if you use clunc, red led switch on can be normal upto the kernel is loaded (and/or the system disk detected)

But if I go to check the brightness settings remains 0
No need that you spend time to check this : it seems that like other NAS, the value in the LED managing files are not set with their current status after starting (value 0 in brightness instead of the right value is 255)

It is why we must define exactly what is the current status of each LED and find the right command to set the wanted status.

So after a standard boot (don't use fvdw-console, clunc, ...)
try to do
a/
Code: Select all
cd /sys/devices/platform/leds-gpio/leds/net5big:blue:front:
echo 'default-on' > trigger
if nochange do
Code: Select all
echo 'default-on' > trigger
echo 'none' > trigger
echo 'default-on' > trigger

b/
Code: Select all
cd /sys/devices/platform/leds-gpio/leds/net5big:blue:front:
echo 0 > brightness
echo 255 > brightness
echo 0 > brightness

c/ with a back LED (for example sata0)
Code: Select all
/sys/devices/platform/leds-gpio/leds/net5big:red:sata0
cat trigger
echo 'default-on' > trigger
echo 0 > brightness
echo 255 > brightness
echo 0 > brightness

d/ with the blink folder (I don't understand its use)
Code: Select all
/sys/devices/platform/leds-gpio/leds/net5big:blink:front
cat trigger
echo 'none' > trigger
echo 'default-on' > trigger
echo 0 > brightness
echo 255 > brightness
echo 0 > brightness

Please, for each test (a,b,c and d) report at what step there is a LED status change( a movie can not help me)
Jocko
Site Admin - expert
 
Posts: 11529
Joined: Tue Apr 12, 2011 4:48 pm
Location: Orleans, France

Re: lacie 5 big network v.1 please support for fvdw

Postby taetae » Thu Sep 11, 2014 10:13 am

Jocko wrote:Just a question why do you use clunc to stop/start you NAS:
Code: Select all
marvell> boot
In the usual way, how do you start your NAS ?

Otherwise, it is not clear for me your last posts (misunderstand your posts :scratch )


My last two posts have been entered, thinking that he could see the problem in starting ....

Jocko wrote:
to reboot the front LED is off and the blue LED rear sata are fixed
So you mean that after echoing 0 in brightness, the LEDs switch off before restarting or after rebooting ?

then echo 0 nothing happens until you reboot the nas and block the automatic boot (countdown) Danto command boot the nas running everything perfectly remaining blue LEDs sata drives and the front LED off, otherwise if I let start automatically nas the settings of the LEDs do not sell taken into account and led the led front and rear sata flash always with blue light
taetae
Donator VIP
Donator VIP
 
Posts: 438
Joined: Mon Aug 26, 2013 9:02 am

PreviousNext

Return to Lacie 5Big Network vs1

Who is online

Users browsing this forum: No registered users and 9 guests