Welcome! Log In Create A New Profile

Advanced

Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM

Posted by argent88 
Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 19, 2018 01:42PM
Hello guys,
A long time ago I installed ArchLinuxARM on my GoFlexNet according to instructions in the wiki of ArchLinuxARM.
Everything worked without much trouble.
I tried to login as root via SSH, that was not possible but I didn't knew. I tried and maybe I suceeded changing root password via other Linux OSes, result is that still I am not able to login as root.

Whatever, I learned that is possible to have OpenMediaVault on the tiny box and I made a USB stick according to istructions on this doozan site, rootfs USB stick. U-boot may be old but that ought have been no trouble. I put the usb stick in the GoFlexNet and hoped my troubles were over, but it just keeps blinking. What shall I do guys?
Argent
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 19, 2018 03:45PM
Argent,

If you keep the log of your installation back then, then post it here.

Without the log, it still should be not be too difficult. But you need to remember the year and preferably also the month when you install Arch Linux. This is to identify the u-boot version on your box right now.

Arch rootfs files structure setup is slightly different. So in older version of its u-boot, the envs were not ready to boot Debian. Their newer u-boot versions are more robust so it will be easy with some minor adjustment.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 19, 2018 04:13PM
Thank you.
How do I find the log of my installation? Is it on the USB stick?
Oct 2015
Can I update my u-boot?
Argent
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 19, 2018 04:47PM
Argent,

> How do I find the log of my installation? Is it on
> the USB stick?

No, the log here means copying whatever on the terminal screen and save it to a text file.

> Oct 2015

This hopefully made it easier, it is relatively modern. But it would be much helpful if you can retrieve the a file named "uboot-goflexhome.env" or "uboot-goflexnet.env" from Arch u-boot repo (version Oct 2105 or just sometime before that date)

> Can I update my u-boot?

Not until you can log in. Or if you can connect serial console.

To connect serial console, see the Wiki

Quote
https://forum.doozan.com/read.php?2,23630
Serial Console & JTAG console

Repair Pogo E02 with Raspberry PI (JTAG) and OpenOCD
Serial Port connector - what are people using to make it work
Serial Console hookup - GoFlex Net (external link)
Serial Console hookup - Pogoplug E02 and Pogoplug Pro V3 (external link)
OSX Serial/Net Console
Use Phone Jack - Phone Jack Serial Console Pics
Adding serial connector to Pogoplug Mobile (external link)
WD Mycloud EX2100/4100 Serial Console pic1, also pic2, pic3
Dreamplug Serial Console
How to unbrick your box using serial console with kwboot


Let me know if you can or cannot connect serial console. And we'll go from there.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 19, 2018 05:50PM
Looks like this is the Arch envs on Aug 20, 2015:

https://github.com/archlinuxarm/PKGBUILDs/blob/a9347b2ee39082289e4747518d929cab462328fe/alarm/uboot-kirkwood/uboot-goflexnet.txt

bootcmd=run startboot;run bootubi
bootdir=/boot
bootfilem=uImage
bootfilez=zImage
bootubi=echo Trying to boot from NAND ...;if run mountubi; then ubifsload ${loadaddr} /boot/zImage;ubifsload ${fdtaddr} /boot/dtbs/${fdtfile};ubifsumount; setenv bootargs console=${console} ubi.mtd=1 root=ubi0:rootfs ro rootfstype=ubifs  rootwait ${mtdparts};bootz ${loadaddr} - ${fdtaddr};fi
console=ttyS0,115200
ethact=egiga0
fdtaddr=0x800000
fdtdir=/boot/dtbs
fdtfile=kirkwood-goflexnet.dtb
ipaddr=10.10.10.3
loadaddr=0x810000
loadfdt=echo loading ${fdtdir}/${fdtfile} ...; load ${devtype} ${bootpart} ${fdtaddr} ${fdtdir}/${fdtfile}
loadimage=load ${devtype} ${bootpart} ${loadaddr} ${bootdir}/${bootfilez} || load ${devtype} ${bootpart} ${loadaddr} ${bootdir}/${bootfilem}
loadrd=load ${devtype} ${bootpart} ${rdaddr} ${bootdir}/${rdfile}
mainargs=setenv bootargs console=${console} ${mtdparts} root=${root} rw rootwait ${optargs} ${ncargs}
mountubi=ubi part rootfs; ubifsmount ubi0:rootfs
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:1M(u-boot),-(rootfs)
ncip=10.10.10.5
ncipk=10.10.10.4
netconsole=on
preboot=if env exists netconsole && test ${netconsole} = on; then if ping ${ncip}; then  setenv stdin nc; setenv stdout nc;  setenv stderr nc; version; if env exists ncargsusr; then echo ncargs has been defined by user; setenv ncargs ${ncargsusr}; else setenv ncargs ignore_loglevel netconsole=6665@${ipaddr}/eth0,6666@${ncipk}/; fi; fi; else echo Netconsole has been turned off.; echo To turn it on, set netconsole variable to on.; setenv stdin; setenv stdout; setenv stderr; setenv ncargs; fi
rdaddr=0x1100000
rdfile=initramfs-linux.img
startboot=usb start; ide reset; for devtype in usb ide; do  setenv devnum 0; while ${devtype} dev ${devnum}; do  echo ${devtype} found on device ${devnum}; setenv bootpart ${devnum}:1; echo Checking for: ${bootdir}/uEnv.txt ...; if test -e ${devtype} ${bootpart} ${bootdir}/uEnv.txt; then  load ${devtype} ${bootpart} ${loadaddr} ${bootdir}/uEnv.txt; env import -t ${loadaddr} ${filesize}; echo Loaded environment from ${bootdir}/uEnv.txt; echo Checking if uenvcmd is set ...; if test -n ${uenvcmd}; then  echo Running uenvcmd ...; run uenvcmd; fi; fi; if run loadimage; then if env exists root; then echo root has been defined by user; else part uuid ${devtype} ${bootpart} uuid; setenv root PARTUUID=${uuid}; fi;  run mainargs; if run loadfdt; then  if run loadrd; then  bootz ${loadaddr} ${rdaddr}:${filesize} ${fdtaddr}; else  bootz ${loadaddr} - ${fdtaddr}; fi; else  if run loadrd; then echo Booting uImage with initrd;  bootm ${loadaddr} ${rdaddr}:${filesize}; else  bootm ${loadaddr}; fi; fi; else  echo No kernel found; fi; setexpr devnum ${devnum} + 1; done; done;

OK so it is not too bad. Let me write some instruction for you to attempt, even without serial console.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)



Edited 1 time(s). Last edit at 06/19/2018 06:58PM by bodhi.
How to boot Debian rootfs 4.12.1-kirkwood-tld-1 with Arch u-boot 2015
June 19, 2018 07:06PM
A. Create USB rootfs using Debian-4.12.1-kirkwood-tld-1-rootfs-bodhi.tar.bz2, following the instruction in:

https://forum.doozan.com/read.php?2,12096

Scroll down to section:

Quote

Updated 24 Jul 2017:

Basic Debian stretch Kirkwood rootfs for most Kirwood plugs:

- tarball size: 188M
- install size: 488M
- The init system used in this rootfs is sysvinit . To boot with systemd, see note 2 below.
- Installed packages: nano, avahi, ntp, busybox-syslogd (log to RAM), htop, isc-dhcp-client, dialog, bzip2, nfs server/client, iperf, ethtool, sysvinit-core, sysvinit, and sysvinit-utils.
- see LED controls in /etc/rc.local, and /etc/init.d/halt
- see some useful aliases in /root/.profile
- root password: root

Download at Dropbox:

Debian-4.12.1-kirkwood-tld-1-rootfs-bodhi.tar.bz2

md5:
bf3d29569943875df348fb5ca03b348c
sha256:
4ed5714fdb123cdb40e973f3d0754e91cd199b75a9874018f2b5dc9cfa8ae8bb

Remember to follow instruction very closely (copy/paste).

After you've reached the last step in the installation, don't umount the drive yet. Perform step B below.

B. Adjust the rootfs to boot with Arch u-boot

While this USB rootfs is still mounted on the Linux box you have been using to prepare it. Assuming it is still mounted at /media/sdb1. And you are still the root user.

cd /media/sdb1/boot
ln -s dts/ dtbs/
and sync the drive
sync

C. Done. Umount and take it to the GFNet and try booting with it.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 20, 2018 09:42AM
Read the command line and what it meant.
Feeling a little more dumb.



Edited 1 time(s). Last edit at 06/20/2018 01:09PM by argent88.
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 20, 2018 02:20PM
I tried making the USB stick as you said. No success.
I have myself a serial to USB cable. What shall I do?
Argent
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 20, 2018 06:40PM
argent88 Wrote:
-------------------------------------------------------
> I tried making the USB stick as you said. No
> success.
> I have myself a serial to USB cable. What shall I
> do?
> Argent

See the bold thread in the Wiki that I’ve posted above:

https://forum.doozan.com/read.php?2,61959,61974#msg-61974

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 21, 2018 02:02PM
When I connect it via serial or in any process should the Goflexnet be on?
Shall I connect it to the current?
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 21, 2018 03:21PM
argent88 Wrote:
-------------------------------------------------------
> When I connect it via serial or in any process
> should the Goflexnet be on?
> Shall I connect it to the current?

Is the serial module converter plugged into your PC or laptop? Which version is this module? CP2xx or PL3xx?

Warning: Don't connect the 3.3V. Should connect only TX, RX, and GND.

On your laptop/PC, start the putty session (if on Windows), screen (if on Mac OSX), or picocom/minicom (if on Linux).

And then power up the GoFlex Net.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)



Edited 1 time(s). Last edit at 06/21/2018 03:24PM by bodhi.
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 22, 2018 11:06AM
The converter is plugged into my notebook, it is a pl2303HX

Yeah, I read I shall only connect 3 out of 5 cables!
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 22, 2018 02:40PM
I see no result in the putty screen.
Tried it with and without ArchLinuxARM USB stick.
No result.
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 22, 2018 03:48PM
argent88 Wrote:
-------------------------------------------------------
> I see no result in the putty screen.
> Tried it with and without ArchLinuxARM USB stick.
> No result.


Try swapping TX and RX wire at the GoFlex Net port. The PLxxx and the CPxxx serial module pins are configure differently.

With the PLxxx you need to connect TX to RX, RX to TX. But with the CPxxx you need to connect RX to RX, TX to TX.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 12:55AM
Never knew that.

Little fact, hope this gets me out of troubles:
When OMV or Windows 10 are making boot I see the three lights of the usb to serial thing all on, when they are done the last one, T, which stands for TX, shuts. Is it worth making notice?

Tried Putty on windows 10, tried minicom on OMV, had no results til now.
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 02:41AM
argent88,

> Little fact, hope this gets me out of troubles:
> When OMV or Windows 10 are making boot I see the
> three lights of the usb to serial thing all on,
> when they are done the last one, T, which stands
> for TX, shuts. Is it worth making notice?

It does not sound meaningful.

>
> Tried Putty on windows 10, tried minicom on OMV,
> had no results til now.

Meaning you're seeing something now? or never been successful?

If not, I think most likely something is misconfigured in your Putty setup. Try loop back RX to TX on your converter and type something to see if it echoes back.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 08:22AM
Reverting cables worked!! :D
Here's what I see now!

U-Boot 2014.04.R2-1 (May 15 2014 - 14:36:22) Arch Linux ARM
Seagate GoFlex Net

SoC:   Kirkwood 88F6281_A1
DRAM:  128 MiB
WARNING: Caches not enabled
NAND:  256 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Hit any key to stop autoboot:  0

Reset IDE: ide_preinit failed
(Re)start USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 1 USB Device(s) found
       scanning usb for storage devices... 0 Storage Device(s) found

IDE device 0 not available

IDE device 1 not available

no USB devices available

no USB devices available
GoFlexNet>
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 08:46AM
This is the output I get when I connect it with ArchLinuxARM pendrive


▒▒▒▒▒▒

U-Boot 2014.04.R2-1 (May 15 2014 - 14:36:22) Arch Linux ARM
Seagate GoFlex Net

SoC:   Kirkwood 88F6281_A1
DRAM:  128 MiB
WARNING: Caches not enabled
NAND:  256 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Hit any key to stop autoboot:  0

Reset IDE: ide_preinit failed
(Re)start USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 2 USB Device(s) found
       scanning usb for storage devices... 1 Storage Device(s) found

IDE device 0 not available

IDE device 1 not available

Partition Map for USB device 0  --   Partition Type: DOS

Part    Start Sector    Num Sectors     UUID            Type
  1     42              3913686         00000000-01     83
Attempting to boot from usb 0:1...
** File not found /boot/uEnv.txt **
Checking if uenvcmd is set ...
Running default loadzimage ...
** File not found /boot/zImage **
Running default loaduimage ...
4079344 bytes read in 324 ms (12 MiB/s)
Booting from 0 ...
## Booting kernel from Legacy Image at 00810000 ...
   Image Name:   Linux-4.2.2-1-ARCH
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    4079280 Bytes = 3.9 MiB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.2.2-1-ARCH (builduser@leming) (gcc version 5.2.0 (GCC) ) #1 PREEMPT Thu Oct 1 06:28:12 MDT 2015
[    0.000000] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[    0.000000] CPU: VIVT data cache, VIVT instruction cache
[    0.000000] Machine: Seagate GoFlex Net
[    0.000000] Memory policy: Data cache writeback
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 32480
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/sda1 rw rootwait mtdparts=orion_nand:1M(u-boot),-(rootfs)
[    0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Memory: 120844K/131072K available (5805K kernel code, 428K rwdata, 1688K rodata, 264K init, 712K bss, 10228K reserved, 0K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xc8800000 - 0xff000000   ( 872 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc0759930   (7495 kB)
[    0.000000]       .init : 0xc075a000 - 0xc079c000   ( 264 kB)
[    0.000000]       .data : 0xc079c000 - 0xc0807254   ( 429 kB)
[    0.000000]        .bss : 0xc0807254 - 0xc08b94ec   ( 713 kB)
[    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 32.
[    0.000000] NR_IRQS:114
[    0.000013] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[   14.401535] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[   14.401723] Console: colour dummy device 80x30
[   14.401752] Calibrating delay loop... 1191.11 BogoMIPS (lpj=5955584)
[   14.491621] pid_max: default: 32768 minimum: 301
[   14.491714] Security Framework initialized
[   14.491786] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[   14.491804] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[   14.492503] Initializing cgroup subsys blkio
[   14.492533] Initializing cgroup subsys memory
[   14.492598] Initializing cgroup subsys devices
[   14.492624] Initializing cgroup subsys freezer
[   14.492644] Initializing cgroup subsys net_cls
[   14.492661] Initializing cgroup subsys bfqio
[   14.492678] Initializing cgroup subsys perf_event
[   14.492699] Initializing cgroup subsys net_prio
[   14.492779] CPU: Testing write buffer coherency: ok
[   14.493216] Setting up static identity map for 0x81e0 - 0x8238
[   14.495095] devtmpfs: initialized
[   14.497565] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[   14.497996] pinctrl core: initialized pinctrl subsystem
[   14.498708] NET: Registered protocol family 16
[   14.499176] DMA: preallocated 256 KiB pool for atomic coherent allocations
[   14.521628] cpuidle: using governor ladder
[   14.551624] cpuidle: using governor menu
[   14.551772] Kirkwood: MV88F6281-A1, TCLK=200000000.
[   14.551796] Feroceon L2: Enabling L2
[   14.551834] Feroceon L2: Cache support initialised.
[   14.583128] vgaarb: loaded
[   14.583458] SCSI subsystem initialized
[   14.583966] usbcore: registered new interface driver usbfs
[   14.584043] usbcore: registered new interface driver hub
[   14.584105] usbcore: registered new device driver usb
[   14.584266] pps_core: LinuxPPS API ver. 1 registered
[   14.584276] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   14.584310] PTP clock support registered
[   14.585377] clocksource: Switched to clocksource orion_clocksource
[   14.616433] FS-Cache: Loaded
[   14.629538] NET: Registered protocol family 2
[   14.630319] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[   14.630346] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[   14.630366] TCP: Hash tables configured (established 1024 bind 1024)
[   14.630437] UDP hash table entries: 256 (order: 0, 4096 bytes)
[   14.630462] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[   14.630657] NET: Registered protocol family 1
[   14.632774] futex hash table entries: 256 (order: -1, 3072 bytes)
[   14.645717] VFS: Disk quotas dquot_6.6.0
[   14.645987] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[   14.648007] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[   14.649076] fuse init (API version 7.23)
[   14.655870] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[   14.655893] io scheduler noop registered
[   14.655907] io scheduler deadline registered
[   14.656203] io scheduler cfq registered
[   14.656702] io scheduler bfq registered (default)
[   14.656711] BFQ I/O-scheduler: v7r8
[   14.656920] mv_xor mv_xor.0: Marvell shared XOR driver
[   14.696556] mv_xor mv_xor.0: Marvell XOR (Registers Mode): ( xor cpy )
[   14.736570] mv_xor mv_xor.0: Marvell XOR (Registers Mode): ( xor cpy )
[   14.736798] mv_xor mv_xor.1: Marvell shared XOR driver
[   14.776564] mv_xor mv_xor.1: Marvell XOR (Registers Mode): ( xor cpy )
[   14.816553] mv_xor mv_xor.1: Marvell XOR (Registers Mode): ( xor cpy )
[   14.822031] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[   14.823107] console [ttyS0] disabled
[   14.843222] serial8250.0: ttyS0 at MMIO 0xf1012000 (irq = 33, base_baud = 12500000) is a 16550A
[   15.369501] console [ttyS0] enabled
[   15.386450] brd: module loaded
[   15.395645] loop: module loaded
[   15.399184] sata_mv sata_mv.0: cannot get optional clkdev
[   15.404712] sata_mv sata_mv.0: slots 32 ports 2
[   15.412647] scsi host0: sata_mv
[   15.416391] scsi host1: sata_mv
[   15.419897] ata1: SATA max UDMA/133 irq 21
[   15.424011] ata2: SATA max UDMA/133 irq 21
[   15.429012] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xda
[   15.435635] nand: Micron MT29F2G08AAD
[   15.439315] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[   15.446955] Scanning device for bad blocks
[   15.500510] Bad eraseblock 464 at 0x000003a00000
[   15.511487] Bad eraseblock 524 at 0x000004180000
[   15.614878] Bad eraseblock 1453 at 0x00000b5a0000
[   15.682819] 2 cmdlinepart partitions found on MTD device orion_nand
[   15.689146] Creating 2 MTD partitions on "orion_nand":
[   15.694309] 0x000000000000-0x000000100000 : "u-boot"
[   15.699826] 0x000000100000-0x000010000000 : "rootfs"
[   15.712552] libphy: orion_mdio_bus: probed
[   15.716817] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[   15.785407] ata1: SATA link down (SStatus 0 SControl F300)
[   16.155397] ata2: SATA link down (SStatus 0 SControl F300)
[   16.802150] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:10:75:26:6d:1d
[   16.811119] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   16.817703] ehci-pci: EHCI PCI platform driver
[   16.822229] ehci-orion: EHCI orion driver
[   16.826353] orion-ehci orion-ehci.0: EHCI Host Controller
[   16.831803] orion-ehci orion-ehci.0: new USB bus registered, assigned bus number 1
[   16.839581] orion-ehci orion-ehci.0: irq 19, io mem 0xf1050000
[   16.865408] orion-ehci orion-ehci.0: USB 2.0 started, EHCI 1.00
[   16.872310] hub 1-0:1.0: USB hub found
[   16.876167] hub 1-0:1.0: 1 port detected
[   16.880714] usbcore: registered new interface driver uas
[   16.886239] usbcore: registered new interface driver usb-storage
[   16.892335] usbcore: registered new interface driver ums-alauda
[   16.898389] usbcore: registered new interface driver ums-cypress
[   16.904476] usbcore: registered new interface driver ums-datafab
[   16.910585] usbcore: registered new interface driver ums_eneub6250
[   16.916879] usbcore: registered new interface driver ums-freecom
[   16.922962] usbcore: registered new interface driver ums-isd200
[   16.928982] usbcore: registered new interface driver ums-jumpshot
[   16.935151] usbcore: registered new interface driver ums-karma
[   16.941086] usbcore: registered new interface driver ums-onetouch
[   16.947298] usbcore: registered new interface driver ums-realtek
[   16.953386] usbcore: registered new interface driver ums-sddr09
[   16.959407] usbcore: registered new interface driver ums-sddr55
[   16.965431] usbcore: registered new interface driver ums-usbat
[   16.971720] mousedev: PS/2 mouse device common for all mice
[   17.195406] usb 1-1: new high-speed USB device number 2 using orion-ehci
[   17.349250] usb-storage 1-1:1.0: USB Mass Storage device detected
[   17.355694] scsi host2: usb-storage 1-1:1.0
[   17.985403] rtc-mv rtc-mv: internal RTC not ticking
[   17.990446] i2c /dev entries driver
[   17.994562] sdhci: Secure Digital Host Controller Interface driver
[   18.000795] sdhci: Copyright(c) Pierre Ossman
[   18.005241] sdhci-pltfm: SDHCI platform and OF driver helper
[   18.012634] ledtrig-cpu: registered to indicate activity on CPUs
[   18.018850] usbcore: registered new interface driver r8712u
[   18.024699] gre: GRE over IPv4 demultiplexor driver
[   18.029671] NET: Registered protocol family 17
[   18.034192] Key type dns_resolver registered
[   18.039525] registered taskstats version 1
[   18.045801] Key type encrypted registered
[   18.050428] console [netcon0] enabled
[   18.054110] netconsole: network logging started
[   18.058818] hctosys: unable to open rtc device (rtc0)
[   18.065133] Waiting for root device /dev/sda1...
[   18.593194] scsi 2:0:0:0: Direct-Access     USB      Flash Disk       1100 PQ: 0 ANSI: 0 CCS
[   18.603032] sd 2:0:0:0: [sda] 3915776 512-byte logical blocks: (2.00 GB/1.86 GiB)
[   18.610629] sd 2:0:0:0: Attached scsi generic sg0 type 0
[   18.616906] sd 2:0:0:0: [sda] Write Protect is off
[   18.622619] sd 2:0:0:0: [sda] No Caching mode page found
[   18.628013] sd 2:0:0:0: [sda] Assuming drive cache: write through
[   18.639183]  sda: sda1
[   18.644996] sd 2:0:0:0: [sda] Attached SCSI removable disk
[   18.726880] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem
[   18.749152] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   18.756952] VFS: Mounted root (ext3 filesystem) on device 8:1.
[   18.770184] devtmpfs: mounted
[   18.774103] Freeing unused kernel memory: 264K (c075a000 - c079c000)
[   19.238199] NET: Registered protocol family 10
[   19.263019] ip_tables: (C) 2000-2006 Netfilter Core Team
[   19.290611] random: systemd urandom read with 34 bits of entropy available
[   19.315643] systemd[1]: systemd 226 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
[   19.334109] systemd[1]: Detected architecture arm.

Welcome to Arch Linux ARM!

[   19.367007] systemd[1]: Set hostname to <alarm>.
[   20.309365] systemd[1]: display-manager.service: Cannot add dependency job, ignoring: Unit display-manager.service failed to load: No such file or directory.
[   20.330650] systemd[1]: Listening on networkd rtnetlink socket.
[  OK  ] Listening on networkd rtnetlink socket.
[   20.355834] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   20.388082] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   20.415919] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   20.445852] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
[   20.475653] systemd[1]: Reached target Encrypted Volumes.
[  OK  ] Reached target Encrypted Volumes.
[   20.506533] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[  OK  ] Set up automount Arbitrary Executab...ats File System Automount Point.
[   20.536007] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password Requests to Wall Directory Watch.
[   20.565917] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   20.595857] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[  OK  ] Listening on Device-mapper event daemon FIFOs.
[   20.625646] systemd[1]: Reached target Swap.
[  OK  ] Reached target Swap.
[   20.645920] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   20.665952] systemd[1]: Listening on LVM2 metadata daemon socket.
[  OK  ] Listening on LVM2 metadata daemon socket.
[   20.695640] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   20.747001] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password Requests to Console Directory Watch.
[   20.775726] systemd[1]: Reached target Paths.
[  OK  ] Reached target Paths.
[   20.796762] systemd[1]: Created slice System Slice.
[  OK  ] Created slice System Slice.
[   20.819711] systemd[1]: Mounting Debug File System...
         Mounting Debug File System...
[   20.845221] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[   20.879416] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[   20.921910] systemd[1]: Starting Setup Virtual Console...
         Starting Setup Virtual Console...
[   20.954276] systemd[1]: Mounting FUSE Control File System...
         Mounting FUSE Control File System...
[   21.012006] systemd[1]: Mounting Temporary Directory...
         Mounting Temporary Directory...
[   21.050217] systemd[1]: Starting Create list of required static device nodes for the current kernel...
         Starting Create list of required st... nodes for the current kernel...
[   21.102766] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[   21.137036] systemd[1]: Created slice system-getty.slice.
[  OK  ] Created slice system-getty.slice.
[   21.166831] systemd[1]: Created slice system-serial\x2dgetty.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[   21.199261] systemd[1]: Reached target Slices.
[  OK  ] Reached target Slices.
[   21.230255] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[   21.279362] systemd[1]: Mounted POSIX Message Queue File System.
[  OK  ] Mounted POSIX Message Queue File System.
[   21.305900] systemd[1]: Mounted Debug File System.
[  OK  ] Mounted Debug File System.
[   21.335834] systemd[1]: Mounted FUSE Control File System.
[  OK  ] Mounted FUSE Control File System.
[   21.365789] systemd[1]: Mounted Temporary Directory.
[  OK  ] Mounted Temporary Directory.
[   21.389171] systemd[1]: Started Setup Virtual Console.
[  OK  ] Started Setup Virtual Console.
[   21.418798] systemd[1]: Started Create list of required static device nodes for the current kernel.
[  OK  ] Started Create list of required sta...ce nodes for the current kernel.
[   21.447558] systemd[1]: Started Apply Kernel Variables.
[  OK  ] Started Apply Kernel Variables.
[   21.477493] systemd[1]: Started Remount Root and Kernel File Systems.
[  OK  ] Started Remount Root and Kernel File Systems.
[   21.707240] systemd-journald[100]: File /var/log/journal/5e0ba6d2a3c54f4fbabbd2d933e8fb48/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   22.121312] systemd[1]: Starting udev Coldplug all Devices...
         Starting udev Coldplug all Devices...
[   22.169964] systemd[1]: Starting Load/Save Random Seed...
         Starting Load/Save Random Seed...
[   22.210180] systemd[1]: Starting Create Static Device Nodes in /dev...
         Starting Create Static Device Nodes in /dev...
[   22.320364] systemd[1]: Started Create Static Device Nodes in /dev.
[  OK  ] Started Create Static Device Nodes in /dev.
[   22.377653] systemd[1]: Started Load/Save Random Seed.
[  OK  ] Started Load/Save Random Seed.
[   22.772833] systemd[1]: Reached target Local File Systems (Pre).
[  OK  ] Reached target Local File Systems (Pre).
[   22.825972] systemd[1]: Reached target Local File Systems.
[  OK  ] Reached target Local File Systems.
[   22.860805] systemd[1]: Starting udev Kernel Device Manager...
         Starting udev Kernel Device Manager...
[   22.906329] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
         Starting Flush Journal to Persistent Storage...
[  OK  ] Started udev Coldplug all Devices.
[  OK  ] Started udev Kernel Device Manager.
[   23.160240] systemd-journald[100]: Received request to flush runtime journal from PID 1
[   24.286071] random: nonblocking pool is initialized
[  OK  ] Found device /dev/ttyS0.
[  OK  ] Started Flush Journal to Persistent Storage.
         Starting Create Volatile Files and Directories...
[  OK  ] Started Create Volatile Files and Directories.
         Starting Network Time Synchronization...
         Starting Update UTMP about System Boot/Shutdown...
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Time Synchronized.
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily rotation of log files.
[  OK  ] Started Daily man-db cache update.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
[  OK  ] Started Entropy Harvesting Daemon.
         Starting Permit User Sessions...
         Starting Login Service...
         Starting SSH Key Generation...
[  OK  ] Started D-Bus System Message Bus.
         Starting Network Service...
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Started Daily verification of password and group files.
[  OK  ] Reached target Timers.
[  OK  ] Started Permit User Sessions.
[  OK  ] Started SSH Key Generation.
[  OK  ] Started Network Service.
[  OK  ] Started Login Service.
[  OK  ] Reached target Network.
         Starting Network Name Resolution...
[  OK  ] Started OpenSSH Daemon.
[  OK  ] Started Serial Getty on ttyS0.
[  OK  ] Started Getty on tty1.
[  OK  ] Reached target Login Prompts.
[   32.405924] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Multi-User System.
[  OK  ] Reached target Graphical Interface.

Arch Linux 4.2.2-1-ARCH (ttyS0)

alarm login:

Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 08:54AM
This is the output I get with the Debian pendrive:


U-Boot 2014.04.R2-1 (May 15 2014 - 14:36:22) Arch Linux ARM
Seagate GoFlex Net

SoC:   Kirkwood 88F6281_A1
DRAM:  128 MiB
WARNING: Caches not enabled
NAND:  256 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Hit any key to stop autoboot:  0

Reset IDE: ide_preinit failed
(Re)start USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 2 USB Device(s) found
       scanning usb for storage devices... 1 Storage Device(s) found

IDE device 0 not available

IDE device 1 not available

Partition Map for USB device 0  --   Partition Type: EFI

Part    Start LBA       End LBA         Name
        Attributes
        Type GUID
        Partition GUID
  1     0x00000800      0x00e73fde      ""
        attrs:  0x0000000000000000
        type:   0fc63daf-8483-4772-8e79-3d69d8477de4
        guid:   bb66931d-c017-4141-b1f9-5c2331ea1a1c
Attempting to boot from usb 0:1...
** File not found /boot/uEnv.txt **
Checking if uenvcmd is set ...
Running default loadzimage ...
** File not found /boot/zImage **
Running default loaduimage ...
EHCI timed out on TD - token=0x90008d80
EHCI timed out on TD - token=0x80008d80
EHCI timed out on TD - token=0x80008d80
EHCI timed out on TD - token=0x80008d80
EHCI timed out on TD - token=0x80008d80
EHCI timed out on TD - token=0x80008d80
EHCI timed out on TD - token=0x80008d80
EHCI timed out on TD - token=0x80008d80
 ** ext4fs_devread read error - block

no USB devices available
GoFlexNet>

Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 04:32PM
argent88,

> Reverting cables worked!! :D

Congrats :)

> Here's what I see now!
>
> U-Boot 2014.04.R2-1 (May 15 2014 - 14:36:22) Arch
> Linux ARM
> Seagate GoFlex Net

It's an older but good Arch built u-boot.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 04:38PM
Cool xD
But I still want Debian / OpenMediaVault to run on my GoFlexNet, not an ArchlinuxARM I am STILL struggling with xD

I go straight to last points of installing your latest U-Boot and then I make the Debian pendrive again from scratch, just in case?
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 04:42PM
Now that you have a working serial console, everything else is easy!

Quote

Arch Linux 4.2.2-1-ARCH (ttyS0)

alarm login:

You got to this point, meaning there is nothing wrong with your Arch installation. The reason you could not SSH in was probably because some setting need to be adjusted.

You can log in with serial console and fix that, if you'd like to continue using Arch.


======

If you want to try Debian, then you need redo your USB rootfs. The 1st problem in booting this:

Quote

Running default loaduimage ...
EHCI timed out on TD - token=0x90008d80
EHCI timed out on TD - token=0x80008d80

This look like the pen drive is no good. Use a different one, some better brand such as Sandisk, Kingston, Trasncend is OK too. But the best is Sandisk.

I've posted above how to prepare Debian rootfs:
https://forum.doozan.com/read.php?2,61959,61984#msg-61984

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)



Edited 2 time(s). Last edit at 06/23/2018 04:50PM by bodhi.
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 04:51PM
argent88,

See the post right above, I've just edited it.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 04:53PM
bodhi Wrote:
-------------------------------------------------------
> Now that you have a working serial console,
> everything else is easy!
>
>
Quote

Arch Linux 4.2.2-1-ARCH (ttyS0)
>
> alarm login:
>
> You got to this point, meaning there is nothing
> wrong with your Arch installation. The reason you
> could not SSH in was probably because some setting
> need to be adjusted.
>
> You can log in with serial console and fix that,
> if you'd like to continue using Arch.
>

I want Debian / OpenMediaVault!!
Sure thing after the little device has been standing there useless for 3 years!

> ======
>
> If you want to try Debian, then you need redo your
> USB rootfs. The 1st problem in booting this:
>
>
Quote

Running default loaduimage ...
> EHCI timed out on TD - token=0x90008d80
> EHCI timed out on TD - token=0x80008d80
>
> This look like the pen drive is no good. Use a
> different one, some better brand such as Sandisk,
> Kingston, Trasncend is OK too. But the best is
> Sandisk.
>
> I've posted above how to prepare Debian rootfs:
> https://forum.doozan.com/read.php?2,61959,61984#msg-61984

Jeez, I have enough pendrives around the house already.
Upgrading U-Boot and then using the same pendrive that has ArchLinuxARM on it would be troublesome?

------------

Edit, found another one, will try as you say and post results asap!



Edited 1 time(s). Last edit at 06/23/2018 04:59PM by argent88.
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 05:33PM
Fresh debian pendrive, GoFlexNet connected on serial to USB

U-Boot 2014.04.R2-1 (May 15 2014 - 14:36:22) Arch Linux ARM
Seagate GoFlex Net

SoC:   Kirkwood 88F6281_A1
DRAM:  128 MiB
WARNING: Caches not enabled
NAND:  256 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Hit any key to stop autoboot:  0

Reset IDE: ide_preinit failed
(Re)start USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 2 USB Device(s) found
       scanning usb for storage devices... 1 Storage Device(s) found

IDE device 0 not available

IDE device 1 not available

Partition Map for USB device 0  --   Partition Type: EFI

Part    Start LBA       End LBA         Name
        Attributes
        Type GUID
        Partition GUID
  1     0x00000800      0x0773efde      ""
        attrs:  0x0000000000000000
        type:   0fc63daf-8483-4772-8e79-3d69d8477de4
        guid:   ebc8a46f-07d1-4a71-a593-df914a37b8d2
Attempting to boot from usb 0:1...
** File not found /boot/uEnv.txt **
Checking if uenvcmd is set ...
Running default loadzimage ...
** File not found /boot/zImage **
Running default loaduimage ...
3833487 bytes read in 863 ms (4.2 MiB/s)
Booting from 0 ...
## Booting kernel from Legacy Image at 00810000 ...
   Image Name:   Linux-4.12.1-kirkwood-tld-1
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    3833423 Bytes = 3.7 MiB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.12.1-kirkwood-tld-1 (root@tldDebian) (gcc version                                                                              4.9.2 (Debian 4.9.2-10) ) #1 PREEMPT Sat Jul 15 21:40:50 PDT 2017
[    0.000000] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397                                                                             f
[    0.000000] CPU: VIVT data cache, VIVT instruction cache
[    0.000000] OF: fdt: Machine model: Seagate GoFlex Net
[    0.000000] Memory policy: Data cache writeback
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pag                                                                             es: 32512
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/sda1 rw rootw                                                                             ait mtdparts=orion_nand:1M(u-boot),-(rootfs)
[    0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Memory: 116496K/131072K available (8192K kernel code, 716K rwdata                                                                             , 1972K rodata, 1024K init, 288K bss, 14576K reserved, 0K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xc8800000 - 0xff800000   ( 880 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc0900000   (9184 kB)
[    0.000000]       .init : 0xc0c00000 - 0xc0d00000   (1024 kB)
[    0.000000]       .data : 0xc0d00000 - 0xc0db3274   ( 717 kB)
[    0.000000]        .bss : 0xc0db9b9c - 0xc0e01e60   ( 289 kB)
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xff                                                                             ffffff, max_idle_ns: 9556302233 ns
[    0.000008] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737                                                                             418237ns
[    0.000042] Switching to timer-based delay loop, resolution 5ns
[    0.000514] Console: colour dummy device 80x30
[    0.000548] Calibrating delay loop (skipped), value calculated using timer fr                                                                             equency.. 400.00 BogoMIPS (lpj=2000000)
[    0.000571] pid_max: default: 32768 minimum: 301
[    0.000766] Security Framework initialized
[    0.000886] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.000906] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.001775] CPU: Testing write buffer coherency: ok
[    0.002821] Setting up static identity map for 0x100000 - 0x100058
[    0.003091] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[    0.006363] devtmpfs: initialized
[    0.010801] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ma                                                                             x_idle_ns: 19112604462750000 ns
[    0.010829] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.011228] prandom: seed boundary self test passed
[    0.014983] prandom: 100 self tests passed
[    0.014995] pinctrl core: initialized pinctrl subsystem
[    0.016156] NET: Registered protocol family 16
[    0.016648] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.018265] cpuidle: using governor ladder
[    0.018337] cpuidle: using governor menu
[    0.018789] Feroceon L2: Enabling L2
[    0.018836] Feroceon L2: Cache support initialised.
[    0.019196] [Firmware Info]: /ocp@f1000000/ethernet-controller@72000/ethernet                                                                             0-port@0: local-mac-address is not set
[    0.024032] No ATAGs?
[    0.033339] vgaarb: loaded
[    0.033664] SCSI subsystem initialized
[    0.034145] usbcore: registered new interface driver usbfs
[    0.034223] usbcore: registered new interface driver hub
[    0.034305] usbcore: registered new device driver usb
[    0.035450] clocksource: Switched to clocksource orion_clocksource
[    0.125128] VFS: Disk quotas dquot_6.6.0
[    0.125224] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.135903] NET: Registered protocol family 2
[    0.136658] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    0.136685] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[    0.136706] TCP: Hash tables configured (established 1024 bind 1024)
[    0.136793] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.136818] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.136996] NET: Registered protocol family 1
[    0.137419] RPC: Registered named UNIX socket transport module.
[    0.137432] RPC: Registered udp transport module.
[    0.137439] RPC: Registered tcp transport module.
[    0.137446] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.137825] NetWinder Floating Point Emulator V0.97 (double precision)
[    0.138770] audit: initializing netlink subsys (disabled)
[    0.139231] Initialise system trusted keyrings
[    0.139281] Key type blacklist registered
[    0.139374] audit: type=2000 audit(0.133:1): state=initialized audit_enabled=                                                                             0 res=1
[    0.139460] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    0.139528] zbud: loaded
[    0.140525] NFS: Registering the id_resolver key type
[    0.140550] Key type id_resolver registered
[    0.140559] Key type id_legacy registered
[    0.140577] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.140587] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    0.140781] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    0.140980] fuse init (API version 7.26)
[    0.141352] orangefs_debugfs_init: called with debug mask: :none: :0:
[    0.141622] orangefs_init: module version upstream loaded
[    0.141634] SGI XFS with ACLs, security attributes, realtime, no debug enable                                                                             d
[    2.555459] random: fast init done
[    6.007499] Key type asymmetric registered
[    6.007516] Asymmetric key parser 'x509' registered
[    6.007583] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 2                                                                             49)
[    6.007594] io scheduler noop registered
[    6.007603] io scheduler deadline registered
[    6.007681] io scheduler cfq registered (default)
[    6.008941] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driv                                                                             er
[    6.010701] mv_xor f1060800.xor: Marvell shared XOR driver
[    6.066212] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy sg i                                                                             ntr )
[    6.066450] mv_xor f1060900.xor: Marvell shared XOR driver
[    6.126208] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy sg i                                                                             ntr )
[    6.126638] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    6.127932] console [ttyS0] disabled
[    6.128002] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud =                                                                              12500000) is a 16550A
[    6.717936] console [ttyS0] enabled
[    6.730091] loop: module loaded
[    6.733825] sata_mv f1080000.sata: slots 32 ports 2
[    6.741574] scsi host0: sata_mv
[    6.745159] scsi host1: sata_mv
[    6.748600] ata1: SATA max UDMA/133 irq 32
[    6.752716] ata2: SATA max UDMA/133 irq 32
[    6.757789] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xda
[    6.764253] nand: Micron MT29F2G08AAD
[    6.767964] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB siz                                                                             e: 64
[    6.775596] Scanning device for bad blocks
[    6.829368] Bad eraseblock 464 at 0x000003a00000
[    6.840377] Bad eraseblock 524 at 0x000004180000
[    6.944325] Bad eraseblock 1453 at 0x00000b5a0000
[    7.012613] 2 cmdlinepart partitions found on MTD device orion_nand
[    7.018948] Creating 2 MTD partitions on "orion_nand":
[    7.024143] 0x000000000000-0x000000100000 : "u-boot"
[    7.030427] 0x000000100000-0x000010000000 : "rootfs"
[    7.039540] libphy: Fixed MDIO Bus: probed
[    7.044549] libphy: orion_mdio_bus: probed
[    7.049630] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[    7.086923] ata1: SATA link down (SStatus 0 SControl F300)
[    7.426873] ata2: SATA link down (SStatus 0 SControl F300)
[    8.162030] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address                                                                              00:10:75:26:6d:1d
[    8.170933] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    8.177538] ehci-pci: EHCI PCI platform driver
[    8.182065] ehci-orion: EHCI orion driver
[    8.186322] orion-ehci f1050000.ehci: EHCI Host Controller
[    8.191866] orion-ehci f1050000.ehci: new USB bus registered, assigned bus nu                                                                             mber 1
[    8.199754] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000
[    8.235484] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[    8.241758] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    8.248612] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=                                                                             1
[    8.255890] usb usb1: Product: EHCI Host Controller
[    8.260788] usb usb1: Manufacturer: Linux 4.12.1-kirkwood-tld-1 ehci_hcd
[    8.267538] usb usb1: SerialNumber: f1050000.ehci
[    8.273016] hub 1-0:1.0: USB hub found
[    8.276884] hub 1-0:1.0: 1 port detected
[    8.281463] usbcore: registered new interface driver usb-storage
[    8.287873] mousedev: PS/2 mouse device common for all mice
[    8.635482] usb 1-1: new high-speed USB device number 2 using orion-ehci
[    8.831008] usb 1-1: New USB device found, idVendor=05dc, idProduct=a83a
[    8.837769] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.844961] usb 1-1: Product: USB Flash Drive
[    8.849356] usb 1-1: Manufacturer: Lexar
[    8.853295] usb 1-1: SerialNumber: AA42XWF4SX8BX5KJFV
[    8.859718] usb-storage 1-1:1.0: USB Mass Storage device detected
[    8.866218] scsi host2: usb-storage 1-1:1.0
[    9.365480] rtc-mv f1010300.rtc: internal RTC not ticking
[    9.371084] i2c /dev entries driver
[    9.377077] hidraw: raw HID events driver (C) Jiri Kosina
[    9.382881] drop_monitor: Initializing network drop monitor service
[    9.389472] NET: Registered protocol family 17
[    9.394016] Key type dns_resolver registered
[    9.399117] registered taskstats version 1
[    9.403237] Loading compiled-in X.509 certificates
[    9.408140] zswap: loaded using pool lzo/zbud
[    9.414944] Key type big_key registered
[    9.420764] Key type encrypted registered
[    9.426158] hctosys: unable to open rtc device (rtc0)
[    9.431707] Waiting for root device /dev/sda1...
[   10.280237] scsi 2:0:0:0: Direct-Access     Lexar    USB Flash Drive  1100 PQ                                                                             : 0 ANSI: 6
[   10.290560] sd 2:0:0:0: [sda] 125038592 512-byte logical blocks: (64.0 GB/59.                                                                             6 GiB)
[   10.299166] sd 2:0:0:0: [sda] Write Protect is off
[   10.304789] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, does                                                                             n't support DPO or FUA
[   10.330309]  sda: sda1
[   10.336544] sd 2:0:0:0: [sda] Attached SCSI removable disk
[   10.344038] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsyste                                                                             m
[   10.371869] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts:                                                                              (null)
[   10.379656] VFS: Mounted root (ext3 filesystem) on device 8:1.
[   10.389960] devtmpfs: mounted
[   10.396246] Freeing unused kernel memory: 1024K
INIT: version 2.88 booting
[info] Using makefile-style concurrent boot in runlevel S.
ERROR: could not open /proc/stat: No such file or directory
findfs: unable to resolve 'LABEL=rootfs'
[warn] Files under mount point '/run' will be hidden. ... (warning).
[....] Starting the hotplug events dispatcher: systemd-udevdstarting version 232
. ok
[ ok ] Synthesizing the initial hotplug events...done.
[....] Waiting for /dev to be fully populated...[   12.610047] marvell-cesa f103                                                                             0000.crypto: CESA device successfully registered
[   12.649449] orion_wdt: Initial timeout 21 sec
[   12.698882] usbcore: registered new interface driver uas
[   12.766501] sd 2:0:0:0: Attached scsi generic sg0 type 0
done.
[ ok ] Setting hostname to 'debian'...done.
[ ok ] Activating swap:.
[   14.080178] EXT4-fs (sda1): re-mounted. Opts: (null)
[....] Will now check root file system:fsck from util-linux 2.29.2
[/sbin/fsck.ext3 (1) -- /] fsck.ext3 -y -C0 /dev/sda1
e2fsck 1.43.4 (31-Jan-2017)
rootfs: clean, 14457/3907584 files, 494346/15629563 blocks
. ok
[   14.616253] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ ok ] Will now activate lvm and md swap:done.
[info] Will now check all file systems.
fsck from util-linux 2.29.2
Checking all file systems.
LABEL=rootfs is mounted
[....] Done checking file systems. A log is being saved in /var/log/fsck/checkfs                                                                             [ ok hat location is writable..
[ ok ] Cleaning up temporary files...[....] Cleaning /tmp...done.
[ ok .
[ ok ] Will now mount local filesystems:.
[ ok ] Will now activate swapfile swap:done.
[ ok ] Checking minimum space in /tmp...done.
[ ok ] Cleaning up temporary files....
[ ok ] Setting kernel variables...done.
[....] Initializing random numbe[   17.049467] random: crng init done
[ ok erator...done.
[....] Configuring network interfaces...Internet Systems Consortium DHCP Client                                                                              4.3.5
Copyright 2004-2016 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/00:10:75:26:6d:1d
Sending on   LPF/eth0/00:10:75:26:6d:1d
Sending on   Socket/fallback
DHCPREQUEST of 192.168.0.14 on eth0 to 255.255.255.255 port 67

then it goes

[   98.704103] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   98.710671] Segment Routing with IPv6
DHCPREQUEST of 192.168.0.14 on eth0 to 255.255.255.255 port 67
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 19
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 9
No DHCPOFFERS received.
Trying recorded lease 192.168.0.14
PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 0ms

No working leases in persistent database - sleeping.
done.
[ ok ] Starting RPC port mapper daemon: rpcbind.
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Cleaning up temporary files....
INIT: Entering runlevel: 2
[info] Using makefile-style concurrent boot in runlevel 2.
[....] Starting busybox' syslogd implementation : syslogdStarting /sbin/syslogd...
1256 (syslogd)
. ok
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Starting system message bus: dbus.
[ ok ] Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon.
[warn] Not starting NFS kernel daemon: no exports. ... (warning).
[ ok ] Starting NTP server: ntpd.
[ ok ] Starting OpenBSD Secure Shell server: sshd.
[....] Starting busybox' klogd implementation : klogdStarting /sbin/klogd...
1255 (klogd)
. ok
[ ok ] Running local boot scripts (/etc/rc.local).

Debian GNU/Linux 9 debian ttyS0

debian login:


Yayyy :D
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 23, 2018 06:21PM
> Debian GNU/Linux 9 debian ttyS0
>
> debian login:

Cool :)

However, you've got it to boot into Debian because you did a wrong step during rootfs creation, and it happens to work with this Arch u-boot setup!

1. You must have performed Step 4, while you should have skipped this step. This Arch u-boot is considered "new" so it should load the DTB separately.

Quote

4. Create uImage with embedded DTB for booting with older u-boots (2012 or earlier). Skip this step if you have installed the latest U-Boot for Kirkwood (or are installing this u-boot at the same time).

Please replace kirkwood-goflexnet.dtb below with the correct DTB name for your box (see the folder /media/sdb1/boot/dts for the exact spelling of your Kirkwood box name).

Generate the uImage with DTB embedded inside:
cd /media/sdb1/boot
cp -a zImage-4.12.1-kirkwood-tld-1 zImage.fdt
cat dts/kirkwood-goflexnet.dtb >> zImage.fdt
mv uImage uImage.orig
mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-4.12.1-kirkwood-tld-1 -d zImage.fdt uImage
sync

2. Arch u-boot setup does not load uInitrd, so that's something you're missing right now. Debian is running OK, but a lot of modules are missing. The initrd was configured with a lot of modules. The kernel only run necessary modules during start up.

3. Network is not running. This might be because the lack of initrd, or might just be your network cable or router.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 24, 2018 03:00AM
bodhi Wrote:
-------------------------------------------------------
> > Debian GNU/Linux 9 debian ttyS0
> >
> > debian login:
>
> Cool :)
>
> However, you've got it to boot into Debian because
> you did a wrong step during rootfs creation, and
> it happens to work with this Arch u-boot setup!
>
> 1. You must have performed Step 4, while you
> should have skipped this step. This Arch u-boot is
> considered "new" so it should load the DTB
> separately.
>
>
Quote

4. Create uImage with embedded DTB for
> booting with older u-boots (2012 or earlier). Skip
> this step if you have installed the latest U-Boot
> for Kirkwood (or are installing this u-boot at the
> same time).
>
> Please replace kirkwood-goflexnet.dtb below with
> the correct DTB name for your box (see the folder
> /media/sdb1/boot/dts for the exact spelling of
> your Kirkwood box name).
>
> Generate the uImage with DTB embedded inside:
> cd /media/sdb1/boot
> cp -a zImage-4.12.1-kirkwood-tld-1 zImage.fdt
> cat dts/kirkwood-goflexnet.dtb >> zImage.fdt
> mv uImage uImage.orig
> mkimage -A arm -O linux -T kernel -C none -a
> 0x00008000 -e 0x00008000 -n
> Linux-4.12.1-kirkwood-tld-1 -d zImage.fdt uImage
> sync

"Better to add a little more than necessary than to take away too much"

> 2. Arch u-boot setup does not load uInitrd, so
> that's something you're missing right now. Debian
> is running OK, but a lot of modules are missing.
> The initrd was configured with a lot of modules.
> The kernel only run necessary modules during start
> up.

So I should update U-boot after all?

> 3. Network is not running. This might be because
> the lack of initrd, or might just be your network
> cable or router.

GFN is only attached to the Serial-USB cable and to his power supply atm.
:)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 24, 2018 04:11AM
argent88,

> "Better to add a little more than necessary than
> to take away too much"

This is actually counterproductive do do more than necessary in the embedded Linux worls (you will know what I mean when you see more booting scenarios). But in this case it happens to work:)


>
> > 2. Arch u-boot setup does not load uInitrd, so
> > that's something you're missing right now.
> Debian
> > is running OK, but a lot of modules are
> missing.
> > The initrd was configured with a lot of
> modules.
> > The kernel only run necessary modules during
> start
> > up.
>
> So I should update U-boot after all?

You are going to run Debian and OMV, then yes. You should install my latest u-boot release so that you will have supports should things go wrong. The current Arch u-boot is good, but the envs are setup to boot Arch, so it is lacking in booting Debian. We could tweak that, but why bother if you are going to Debian way.

>
> > 3. Network is not running. This might be
> because
> > the lack of initrd, or might just be your
> network
> > cable or router.
>
> GFN is only attached to the Serial-USB cable and
> to his power supply atm.
> :)

Cool :).

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 24, 2018 08:04AM
New Pendrive with fresh Debian install goes

U-Boot 2017.07-tld-1 (Sep 05 2017 - 00:17:19 -0700)
Seagate GoFlex Net

SoC:   Kirkwood 88F6281_A1
DRAM:  128 MiB
WARNING: Caches not enabled
NAND:  256 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Hit any key to stop autoboot:  0

Reset IDE: ide_preinit failed
starting USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 2 USB Device(s) found
       scanning usb for storage devices... 1 Storage Device(s) found
## Unknown partition table type 0
## Unknown partition table type 0

Partition Map for USB device 0  --   Partition Type: EFI

Part    Start LBA       End LBA         Name
        Attributes
        Type GUID
        Partition GUID
  1     0x00000800      0x003bbfde      ""
        attrs:  0x0000000000000000
        type:   0fc63daf-8483-4772-8e79-3d69d8477de4
        type:   linux
        guid:   c7dcc962-9672-4062-8dcf-46b090dad85b
Attempting to boot from usb 0:1...
** File not found /boot/uEnv.txt **
Checking if uenvcmd is set ...
Running default loadzimage ...
** File not found /boot/zImage **
Running default loaduimage ...
3821592 bytes read in 1002 ms (3.6 MiB/s)
Booting from 0 ...
## Booting kernel from Legacy Image at 00810000 ...
   Image Name:   Linux-4.12.1-kirkwood-tld-1
   Created:      2017-07-20   8:11:24 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    3821528 Bytes = 3.6 MiB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.

Error: unrecognized/unsupported machine ID (r1 = 0x00000c11).

Available machine support:

ID (hex)        NAME
ffffffff        Generic DT based system
ffffffff        Marvell Kirkwood (Flattened Device Tree)

Please check your kernel config and/or bootloader.


----------

Made Uimage with dtb (point 4)

U-Boot 2017.07-tld-1 (Sep 05 2017 - 00:17:19 -0700)
Seagate GoFlex Net

SoC:   Kirkwood 88F6281_A1
DRAM:  128 MiB
WARNING: Caches not enabled
NAND:  256 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Hit any key to stop autoboot:  0

Reset IDE: ide_preinit failed
starting USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 2 USB Device(s) found
       scanning usb for storage devices... 1 Storage Device(s) found
## Unknown partition table type 0
## Unknown partition table type 0

Partition Map for USB device 0  --   Partition Type: EFI

Part    Start LBA       End LBA         Name
        Attributes
        Type GUID
        Partition GUID
  1     0x00000800      0x003bbfde      ""
        attrs:  0x0000000000000000
        type:   0fc63daf-8483-4772-8e79-3d69d8477de4
        type:   linux
        guid:   c7dcc962-9672-4062-8dcf-46b090dad85b
Attempting to boot from usb 0:1...
** File not found /boot/uEnv.txt **
Checking if uenvcmd is set ...
Running default loadzimage ...
** File not found /boot/zImage **
Running default loaduimage ...
3833487 bytes read in 1004 ms (3.6 MiB/s)
Booting from 0 ...
## Booting kernel from Legacy Image at 00810000 ...
   Image Name:   Linux-4.12.1-kirkwood-tld-1
   Created:      2018-06-24  13:07:18 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    3833423 Bytes = 3.7 MiB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.12.1-kirkwood-tld-1 (root@tldDebian) (gcc version 4.9.2 (Debian 4.9.2-10) ) #1 PREEMPT Sat Jul 15 21:40:50 PDT 2017
[    0.000000] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[    0.000000] CPU: VIVT data cache, VIVT instruction cache
[    0.000000] OF: fdt: Machine model: Seagate GoFlex Net
[    0.000000] Memory policy: Data cache writeback
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 32512
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/sda1 rw rootwait mtdparts=orion_nand:1M(u-boot),-(rootfs)
[    0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Memory: 116496K/131072K available (8192K kernel code, 716K rwdata, 1972K rodata, 1024K init, 288K bss, 14576K reserved, 0K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xc8800000 - 0xff800000   ( 880 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc0900000   (9184 kB)
[    0.000000]       .init : 0xc0c00000 - 0xc0d00000   (1024 kB)
[    0.000000]       .data : 0xc0d00000 - 0xc0db3274   ( 717 kB)
[    0.000000]        .bss : 0xc0db9b9c - 0xc0e01e60   ( 289 kB)
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000007] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.000042] Switching to timer-based delay loop, resolution 5ns
[    0.000512] Console: colour dummy device 80x30
[    0.000545] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
[    0.000566] pid_max: default: 32768 minimum: 301
[    0.000762] Security Framework initialized
[    0.000886] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.000905] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.001772] CPU: Testing write buffer coherency: ok
[    0.002817] Setting up static identity map for 0x100000 - 0x100058
[    0.003087] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[    0.006360] devtmpfs: initialized
[    0.010818] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.010845] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.011245] prandom: seed boundary self test passed
[    0.015001] prandom: 100 self tests passed
[    0.015012] pinctrl core: initialized pinctrl subsystem
[    0.016172] NET: Registered protocol family 16
[    0.016667] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.018278] cpuidle: using governor ladder
[    0.018350] cpuidle: using governor menu
[    0.018801] Feroceon L2: Enabling L2
[    0.018848] Feroceon L2: Cache support initialised.
[    0.019208] [Firmware Info]: /ocp@f1000000/ethernet-controller@72000/ethernet0-port@0: local-mac-address is not set
[    0.024043] No ATAGs?
[    0.033335] vgaarb: loaded
[    0.033661] SCSI subsystem initialized
[    0.034144] usbcore: registered new interface driver usbfs
[    0.034220] usbcore: registered new interface driver hub
[    0.034303] usbcore: registered new device driver usb
[    0.035442] clocksource: Switched to clocksource orion_clocksource
[    0.125147] VFS: Disk quotas dquot_6.6.0
[    0.125243] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.135912] NET: Registered protocol family 2
[    0.136667] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    0.136694] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[    0.136715] TCP: Hash tables configured (established 1024 bind 1024)
[    0.136805] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.136830] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.137009] NET: Registered protocol family 1
[    0.137431] RPC: Registered named UNIX socket transport module.
[    0.137443] RPC: Registered udp transport module.
[    0.137451] RPC: Registered tcp transport module.
[    0.137458] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.137835] NetWinder Floating Point Emulator V0.97 (double precision)
[    0.138775] audit: initializing netlink subsys (disabled)
[    0.139236] Initialise system trusted keyrings
[    0.139286] Key type blacklist registered
[    0.139385] audit: type=2000 audit(0.133:1): state=initialized audit_enabled=0 res=1
[    0.139472] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    0.139540] zbud: loaded
[    0.140539] NFS: Registering the id_resolver key type
[    0.140571] Key type id_resolver registered
[    0.140580] Key type id_legacy registered
[    0.140598] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.140608] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    0.140803] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    0.141004] fuse init (API version 7.26)
[    0.141379] orangefs_debugfs_init: called with debug mask: :none: :0:
[    0.141649] orangefs_init: module version upstream loaded
[    0.141661] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[    2.555451] random: fast init done
[    6.007898] Key type asymmetric registered
[    6.007915] Asymmetric key parser 'x509' registered
[    6.007983] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    6.007994] io scheduler noop registered
[    6.008002] io scheduler deadline registered
[    6.008079] io scheduler cfq registered (default)
[    6.009341] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[    6.011109] mv_xor f1060800.xor: Marvell shared XOR driver
[    6.066206] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy sg intr )
[    6.066446] mv_xor f1060900.xor: Marvell shared XOR driver
[    6.126199] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy sg intr )
[    6.126627] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    6.127922] console [ttyS0] disabled
[    6.127991] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud = 12500000) is a 16550A
[    6.717925] console [ttyS0] enabled
[    6.730065] loop: module loaded
[    6.733795] sata_mv f1080000.sata: slots 32 ports 2
[    6.741548] scsi host0: sata_mv
[    6.745136] scsi host1: sata_mv
[    6.748573] ata1: SATA max UDMA/133 irq 32
[    6.752689] ata2: SATA max UDMA/133 irq 32
[    6.757762] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xda
[    6.764227] nand: Micron MT29F2G08AAD
[    6.767939] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    6.775571] Scanning device for bad blocks
[    6.829360] Bad eraseblock 464 at 0x000003a00000
[    6.840376] Bad eraseblock 524 at 0x000004180000
[    6.944322] Bad eraseblock 1453 at 0x00000b5a0000
[    7.012605] 2 cmdlinepart partitions found on MTD device orion_nand
[    7.018939] Creating 2 MTD partitions on "orion_nand":
[    7.024133] 0x000000000000-0x000000100000 : "u-boot"
[    7.030412] 0x000000100000-0x000010000000 : "rootfs"
[    7.039522] libphy: Fixed MDIO Bus: probed
[    7.044526] libphy: orion_mdio_bus: probed
[    7.049605] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[    7.086896] ata1: SATA link down (SStatus 0 SControl F300)
[    7.426862] ata2: SATA link down (SStatus 0 SControl F300)
[    8.162048] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:10:75:26:6d:1d
[    8.170947] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    8.177545] ehci-pci: EHCI PCI platform driver
[    8.182072] ehci-orion: EHCI orion driver
[    8.186334] orion-ehci f1050000.ehci: EHCI Host Controller
[    8.191874] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[    8.199764] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000
[    8.235476] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[    8.241760] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    8.248609] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.255889] usb usb1: Product: EHCI Host Controller
[    8.260787] usb usb1: Manufacturer: Linux 4.12.1-kirkwood-tld-1 ehci_hcd
[    8.267539] usb usb1: SerialNumber: f1050000.ehci
[    8.273015] hub 1-0:1.0: USB hub found
[    8.276884] hub 1-0:1.0: 1 port detected
[    8.281463] usbcore: registered new interface driver usb-storage
[    8.287873] mousedev: PS/2 mouse device common for all mice
[    8.635475] usb 1-1: new high-speed USB device number 2 using orion-ehci
[    8.828394] usb 1-1: New USB device found, idVendor=090c, idProduct=1000
[    8.835145] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.842354] usb 1-1: Product: Flash Disk
[    8.846312] usb 1-1: Manufacturer: USB
[    8.850076] usb 1-1: SerialNumber: FBF1009232302582
[    8.855726] usb-storage 1-1:1.0: USB Mass Storage device detected
[    8.862176] scsi host2: usb-storage 1-1:1.0
[    9.365472] rtc-mv f1010300.rtc: internal RTC not ticking
[    9.371072] i2c /dev entries driver
[    9.377065] hidraw: raw HID events driver (C) Jiri Kosina
[    9.382871] drop_monitor: Initializing network drop monitor service
[    9.389461] NET: Registered protocol family 17
[    9.394008] Key type dns_resolver registered
[    9.399116] registered taskstats version 1
[    9.403236] Loading compiled-in X.509 certificates
[    9.408139] zswap: loaded using pool lzo/zbud
[    9.414950] Key type big_key registered
[    9.420760] Key type encrypted registered
[    9.426149] hctosys: unable to open rtc device (rtc0)
[    9.431701] Waiting for root device /dev/sda1...
[   10.154991] scsi 2:0:0:0: Direct-Access     USB      Flash Disk       1100 PQ: 0 ANSI: 0 CCS
[   10.165316] sd 2:0:0:0: [sda] 3915776 512-byte logical blocks: (2.00 GB/1.87 GiB)
[   10.173799] sd 2:0:0:0: [sda] Write Protect is off
[   10.179547] sd 2:0:0:0: [sda] No Caching mode page found
[   10.184907] sd 2:0:0:0: [sda] Assuming drive cache: write through
[   10.209443]  sda: sda1
[   10.215304] sd 2:0:0:0: [sda] Attached SCSI removable disk
[   10.222422] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem
[   10.244092] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   10.251944] VFS: Mounted root (ext3 filesystem) on device 8:1.
[   10.265092] devtmpfs: mounted
[   10.271423] Freeing unused kernel memory: 1024K
INIT: version 2.88 booting
[info] Using makefile-style concurrent boot in runlevel S.
ERROR: could not open /proc/stat: No such file or directory
findfs: unable to resolve 'LABEL=rootfs'
[warn] Files under mount point '/run' will be hidden. ... (warning).
[....] Starting the hotplug events dispatcher: systemd-udevdstarting version 232
. ok
[ ok ] Synthesizing the initial hotplug events...done.
[....] Waiting for /dev to be fully populated...[   12.547045] marvell-cesa f1030000.crypto: CESA device successfully registered
[   12.580388] orion_wdt: Initial timeout 21 sec
[   12.617320] usbcore: registered new interface driver uas
[   12.681719] sd 2:0:0:0: Attached scsi generic sg0 type 0
done.
[ ok ] Setting hostname to 'debian'...done.
[ ok ] Activating swap:.
[   18.119078] EXT4-fs (sda1): re-mounted. Opts: (null)
[....] Will now check root file system:fsck from util-linux 2.29.2
[/sbin/fsck.ext3 (1) -- /] fsck.ext3 -y -C0 /dev/sda1
e2fsck 1.43.4 (31-Jan-2017)
rootfs: clean, 14457/122400 files, 186851/489211 blocks
. ok
[   18.529373] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ ok ] Will now activate lvm and md swap:done.
[info] Will now check all file systems.
[   19.381973] random: crng init done
fsck from util-linux 2.29.2
Checking all file systems.
LABEL=rootfs is mounted
[....] Done checking file systems. A log is being saved in /var/log/fsck/checkfs[ ok hat location is writable..
[ ok ] Cleaning up temporary files...[....] Cleaning /tmp...done.
[ ok .
[ ok ] Will now mount local filesystems:.
[ ok ] Will now activate swapfile swap:done.
[ ok ] Checking minimum space in /tmp...done.
[ ok ] Cleaning up temporary files....
[ ok ] Setting kernel variables...done.
[ ok ] Initializing random number generator...done.
[....] Configuring network interfaces...Internet Systems Consortium DHCP Client 4.3.5
Copyright 2004-2016 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/00:10:75:26:6d:1d
Sending on   LPF/eth0/00:10:75:26:6d:1d
Sending on   Socket/fallback
DHCPREQUEST of 192.168.0.14 on eth0 to 255.255.255.255 port 67
NET: Registered protocol family 10
[  100.828309] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[  100.834360] Segment Routing with IPv6
DHCPREQUEST of 192.168.0.14 on eth0 to 255.255.255.255 port 67
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 9
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 18
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 12
No DHCPOFFERS received.
Trying recorded lease 192.168.0.14
PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 0ms

No working leases in persistent database - sleeping.
done.
[ ok ] Starting RPC port mapper daemon: rpcbind.
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Cleaning up temporary files....
INIT: Entering runlevel: 2
[info] Using makefile-style concurrent boot in runlevel 2.
[....] Starting busybox' syslogd implementation : syslogdStarting /sbin/syslogd...
1256 (syslogd)
. ok
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Starting system message bus: dbus.
[ ok ] Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon.
[warn] Not starting NFS kernel daemon: no exports. ... (warning).
[ ok ] Starting NTP server: ntpd.
[ ok ] Starting OpenBSD Secure Shell server: sshd.
[....] Starting busybox' klogd implementation : klogdStarting /sbin/klogd...
1255 (klogd)
. ok
[ ok ] Running local boot scripts (/etc/rc.local).

Debian GNU/Linux 9 debian ttyS0

debian login:


Yayyy



Edited 1 time(s). Last edit at 06/24/2018 08:13AM by argent88.
Re: Want to have Debian / OpenMediaVault on GoFlexNet, stuck with ArchLinuxARM
June 24, 2018 09:52AM
I have latest U-boot and latest Debian running in my GFN but it won't run OpenMediaVault.
I get here:

root@FA78:~# apt-get install openmediavault
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 openmediavault : Depends: php5-fpm but it is not installable
                  Depends: php5-cgi but it is not installable
                  Depends: php5-cli but it is not installable
                  Depends: php5-pam but it is not going to be installed
                  Depends: openssh-blacklist-extra but it is not installable
                  Depends: php5-proctitle but it is not going to be installed
E: Unable to correct problems, you have held broken packages.


Should I really use an older version of debian?
Author:

Your Email:


Subject:


Spam prevention:
Please, enter the code that you see below in the input field. This is for blocking bots that try to post this form automatically. If the code is hard to read, then just try to guess it right. If you enter the wrong code, a new image is created and you get another chance to enter it right.
Message: