Welcome! Log In Create A New Profile

Advanced

SOLVED - Debian on LaCie 2Big v2

Posted by wdq 
Re: SOLVED - Debian on LaCie 2Big v2
June 01, 2024 11:25AM
Hi Bodhi,

thank you for your time. Here just a quick update.

Quote

> [ 0.000000] OF: fdt: Machine model: Seagate
> GoFlex Home

You are still booting with the GoFlex Home DTB, not the NAS2Big DTB that I posted above. Recreate the uImage with the NAS 2Big DTB.

I tried many times to recreate the uImage with the modified nas2Big DTB you provided. no luck at all!
It seems that the Seagate GoFlex Home dtb is the only one that can get network adapter working.

Quote

> [ 0.000000] INITRD: 0x01200000+0x00584000
> overlaps in-use memory region
> [ 0.000000] - disabling initrd

Your u-boot envs are not good.

I corrected this problem moving to 0x2600000 the memory point where initrd is allocated.

Quote

Did you use my instruction in the Wiki thread?

Of course I followed your instructions that work perfectly.
I just integrated the uboot envs in order to be able to launch alternatively from usb or from disk.
Down below the code. Maybe could help someone else.
setenv usb_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial'
setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage'
setenv load_uinitrd 'ext2load usb 0:1 0x2600000 /boot/uInitrd'
setenv usb_boot 'mw 0x800000 0 1; run load_uimage; run load_uinitrd; bootm 0x800000 0x2600000'
setenv usb_bootcmd 'run usb_set_bootargs; run usb_boot'

setenv ide_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial'
setenv ide_load_fs 'mw 0x800000 0 1; ide reset; ext2load ide 0:1 0x800000 /boot/uImage; ext2load ide 0:1 0x2600000 /boot/uInitrd; bootm 0x800000 0x2600000'
setenv ide_bootcmd 'run ide_set_bootargs; run ide_load_fs'

setenv bootcmd 'usb reset; run usb_bootcmd; usb stop; ide reset; run ide_bootcmd; ide stop; reset'

in addition, i succeded removing this errors caused by the envs loaded by the stock u-boot.

Quote

> [ 0.000000] Kernel command line:
> console=ttyS0,115200 root=/dev/sda1 rootdelay=10
> mtdparts=nand_mtd:1m(u-boot),16m(uImage),-(root)
> earlyprintk=serial cap=gpt,lba64
> [ 0.000000] Unknown kernel command line
> parameters "cap=gpt,lba64", will be passed to user
> space.

The u-boot env for bootargs has problem. mtdparts is wrong, also some garbage got in at the end. So it might have some side effects that mess up the kernel driver.

Now dmesg is as follow:
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 6.8.7-kirkwood-tld-1 (root@tldDebian) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 PREEMPT Wed Apr 17 17:22:34 PDT 2024
[    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 Home
[    0.000000] printk: legacy bootconsole [earlycon0] enabled
[    0.000000] Memory policy: Data cache writeback
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x000000000fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x000000000fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000000fffffff]
[    0.000000] pcpu-alloc: s0 r0 d131072 u131072 alloc=1*131072
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes, linear)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes, linear)
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 64960
[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000] Memory: 232276K/262144K available (12288K kernel code, 1722K rwdata, 5416K rodata, 1024K init, 307K bss, 29868K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] trace event string verifier disabled
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000001] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.008553] Switching to timer-based delay loop, resolution 5ns
[    0.015754] Console: colour dummy device 80x30
[    0.020977] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
[    0.032201] CPU: Testing write buffer coherency: ok
[    0.037855] pid_max: default: 32768 minimum: 301
[    0.048766] LSM: initializing lsm=capability,integrity
[    0.056106] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.064142] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.081630] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
[    0.089710] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
[    0.098312] Setting up static identity map for 0x100000 - 0x100058
[    0.105433] mvebu-soc-id: MVEBU SoC ID=0x6282, Rev=0x1
[    0.111621] rcu: Hierarchical SRCU implementation.
[    0.117102] rcu: 	Max phase no-delay instances is 1000.
[    0.125037] devtmpfs: initialized
[    0.136104] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.146685] futex hash table entries: 256 (order: -1, 3072 bytes, linear)
[    0.158373] prandom: seed boundary self test passed
[    0.166515] prandom: 100 self tests passed
[    0.171333] pinctrl core: initialized pinctrl subsystem
[    0.180709] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.187954] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.196745] audit: initializing netlink subsys (disabled)
[    0.203300] audit: type=2000 audit(0.190:1): state=initialized audit_enabled=0 res=1
[    0.213173] thermal_sys: Registered thermal governor 'step_wise'
[    0.213321] cpuidle: using governor ladder
[    0.224909] cpuidle: using governor menu
[    0.230008] Feroceon L2: Enabling L2
[    0.234292] Feroceon L2: Cache support initialised.
[    0.245997] No ATAGs?
[    0.598565] raid6: int32x8  gen()   187 MB/s
[    0.938563] raid6: int32x4  gen()   170 MB/s
[    1.278565] raid6: int32x2  gen()   222 MB/s
[    1.618563] raid6: int32x1  gen()   147 MB/s
[    1.623518] raid6: using algorithm int32x2 gen() 222 MB/s
[    1.978563] raid6: .... xor() 135 MB/s, rmw enabled
[    1.984118] raid6: using intx1 recovery algorithm
[    2.009894] SCSI subsystem initialized
[    2.014634] libata version 3.00 loaded.
[    2.014925] usbcore: registered new interface driver usbfs
[    2.028624] usbcore: registered new interface driver hub
[    2.034656] usbcore: registered new device driver usb
[    2.048805] pps_core: LinuxPPS API ver. 1 registered
[    2.054438] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.088603] PTP clock support registered
[    2.095375] vgaarb: loaded
[    2.109215] clocksource: Switched to clocksource orion_clocksource
[    2.124232] VFS: Disk quotas dquot_6.6.0
[    2.129105] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    2.181743] NET: Registered PF_INET protocol family
[    2.199303] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    2.219891] tcp_listen_portaddr_hash hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    2.229151] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    2.249279] TCP established hash table entries: 2048 (order: 1, 8192 bytes, linear)
[    2.257633] TCP bind hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    2.279275] TCP: Hash tables configured (established 2048 bind 2048)
[    2.286783] MPTCP token hash table entries: 512 (order: 0, 6144 bytes, linear)
[    2.319392] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)
[    2.326609] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)
[    2.349899] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.357132] RPC: Registered named UNIX socket transport module.
[    2.369231] RPC: Registered udp transport module.
[    2.374610] RPC: Registered tcp transport module.
[    2.399227] RPC: Registered tcp-with-tls transport module.
[    2.405377] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    2.419245] PCI: CLS 0 bytes, default 32
[    2.424389] Trying to unpack rootfs image as initramfs...
[    2.795317] Initialise system trusted keyrings
[    2.809444] Key type blacklist registered
[    2.814444] workingset: timestamp_bits=14 max_order=16 bucket_order=2
[    2.829449] zbud: loaded
[    2.860999] NFS: Registering the id_resolver key type
[    2.866766] Key type id_resolver registered
[    2.889359] Key type id_legacy registered
[    2.894217] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    2.909342] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    2.919086] fuse: init (API version 7.39)
[    2.940506] SGI XFS with ACLs, security attributes, realtime, scrub, quota, no debug enabled
[    3.071143] Freeing initrd memory: 5648K
[    3.184763] xor: measuring software checksum speed
[    3.195542]    arm4regs        :  1865 MB/sec
[    3.209387]    8regs           :  1119 MB/sec
[    3.220625]    32regs          :  1587 MB/sec
[    3.225650] xor: using function: arm4regs (1865 MB/sec)
[    3.231565] async_tx: api initialized (async)
[    3.236598] Key type asymmetric registered
[    3.241382] Asymmetric key parser 'x509' registered
[    3.283253] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    3.291793] io scheduler bfq registered
[    3.409909] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[    3.418974] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    3.429622] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    3.440213] mv_xor f1060800.xor: Marvell shared XOR driver
[    3.510399] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    3.521535] mv_xor f1060900.xor: Marvell shared XOR driver
[    3.590399] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    3.601713] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    3.610730] printk: legacy console [ttyS0] disabled
[    3.616791] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 27, base_baud = 12500000) is a 16550A
[    3.626524] printk: legacy console [ttyS0] enabled
[    3.637612] printk: legacy bootconsole [earlycon0] disabled
[    3.678304] loop: module loaded
[    3.682548] sata_mv f1080000.sata: version 1.28
[    3.682926] sata_mv f1080000.sata: slots 32 ports 1
[    3.690656] scsi host0: sata_mv
[    3.695199] ata1: SATA max UDMA/133 irq 28 lpm-pol 0
[    3.702263] Could not find a valid ONFI parameter page, trying bit-wise majority to recover it
[    3.711727] ONFI parameter recovery failed, aborting
[    3.717418] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xdc
[    3.724534] nand: Hynix NAND 512MiB 3,3V 8-bit
[    3.729731] nand: 512 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    3.738137] Scanning device for bad blocks
[    4.176175] 3 fixed-partitions partitions found on MTD device orion_nand
[    4.183633] Creating 3 MTD partitions on "orion_nand":
[    4.189512] 0x000000000000-0x000000100000 : "u-boot"
[    4.195864] 0x000000100000-0x000000700000 : "uImage"
[    4.201624] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[    4.209392] 0x000000600000-0x00000de00000 : "root"
[    4.216929] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[    4.225636] ata1.00: ATA-10: WDC WD5000AZLX-08K2TA0, 01.01A01, max UDMA/100
[    4.233385] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[    4.243729] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    4.259525] ata1.00: configured for UDMA/100
[    4.275167] scsi 0:0:0:0: Direct-Access     ATA      WDC WD5000AZLX-0 1A01 PQ: 0 ANSI: 5
[    4.284707] hwmon hwmon0: temp1_input not attached to any thermal zone
[    4.293412] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    4.302115] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    4.308186] sd 0:0:0:0: [sda] Write Protect is off
[    4.313776] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.313881] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.323839] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[    4.331413] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[    4.363085]  sda: sda1 sda2 sda3
[    4.367932] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.420830] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:d0:4b:93:58:4e
[    4.430844] orion-ehci f1050000.ehci: EHCI Host Controller
[    4.437087] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[    4.446273] orion-ehci f1050000.ehci: irq 31, io mem 0xf1050000
[    4.479232] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[    4.486275] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[    4.495310] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.503280] usb usb1: Product: EHCI Host Controller
[    4.508882] usb usb1: Manufacturer: Linux 6.8.7-kirkwood-tld-1 ehci_hcd
[    4.516237] usb usb1: SerialNumber: f1050000.ehci
[    4.522440] hub 1-0:1.0: USB hub found
[    4.526951] hub 1-0:1.0: 1 port detected
[    4.532365] usbcore: registered new interface driver usb-storage
[    4.539634] mousedev: PS/2 mouse device common for all mice
[    4.547066] rtc-mv f1010300.rtc: registered as rtc0
[    4.552769] rtc-mv f1010300.rtc: setting system clock to 2000-01-01T00:00:00 UTC (946684800)
[    4.562366] i2c_dev: i2c /dev entries driver
[    4.568155] device-mapper: uevent: version 1.0.3
[    4.574071] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[    4.583783] device-mapper: multipath round-robin: version 1.2.0 loaded
[    4.591098] device-mapper: multipath queue-length: version 0.2.0 loaded
[    4.598446] device-mapper: multipath service-time: version 0.3.0 loaded
[    4.605955] device-mapper: dm-log-userspace: version 1.3.0 loaded
[    4.613465] sdhci: Secure Digital Host Controller Interface driver
[    4.620402] sdhci: Copyright(c) Pierre Ossman
[    4.626478] ledtrig-cpu: registered to indicate activity on CPUs
[    4.633365] hid: raw HID events driver (C) Jiri Kosina
[    4.639606] drop_monitor: Initializing network drop monitor service
[    4.647673] NET: Registered PF_INET6 protocol family
[    4.655411] Segment Routing with IPv6
[    4.659830] RPL Segment Routing with IPv6
[    4.664618] In-situ OAM (IOAM) with IPv6
[    4.669364] NET: Registered PF_PACKET protocol family
[    4.675508] Key type dns_resolver registered
[    4.693964] registered taskstats version 1
[    4.698890] Loading compiled-in X.509 certificates
[    4.729155] Key type .fscrypt registered
[    4.733875] Key type fscrypt-provisioning registered
[    4.744078] Key type big_key registered
[    4.901525] Key type encrypted registered
[    4.975926] "cryptomgr_test" (109) uses obsolete ecb(arc4) skcipher
[    6.343833] clk: Disabling unused clocks
[    6.351906] Freeing unused kernel image (initmem) memory: 1024K
[    6.358953] Checked W+X mappings: passed, no W+X pages found
[    6.365409] Run /init as init process
[    6.369913]   with arguments:
[    6.369926]     /init
[    6.369933]   with environment:
[    6.369939]     HOME=/
[    6.369945]     TERM=linux
[   18.214778] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem
[   18.495246] EXT4-fs (sda1): mounted filesystem 6b41a748-e9fc-47e4-8b24-ec0ee0ac4c1f ro with ordered data mode. Quota mode: none.
[   19.599462] systemd[1]: System time before build time, advancing clock.
[   19.791623] systemd[1]: Inserted module 'autofs4'
[   19.969720] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[   20.003394] systemd[1]: Detected architecture arm.
[   20.094478] systemd[1]: Hostname set to <debian>.
[   22.300558] systemd[1]: Queued start job for default target graphical.target.
[   22.346077] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[   22.392609] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[   22.432682] systemd[1]: Created slice system-postgresql.slice - Slice /system/postgresql.
[   22.472614] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[   22.522618] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[   22.571631] systemd[1]: Created slice user.slice - User and Session Slice.
[   22.609993] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[   22.649952] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   22.690976] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   22.739585] systemd[1]: Expecting device dev-disk-by\x2duuid-7f7476a7\x2db630\x2d49f3\x2da266\x2d7f09e654edca.device - /dev/disk/by-uuid/7f7476a7-b630-49f3-a266-7f09e654edca...
[   22.789465] systemd[1]: Expecting device dev-disk-by\x2duuid-a936a2b1\x2d6520\x2d4ed2\x2da2d5\x2dfd26c1f2f3d5.device - /dev/disk/by-uuid/a936a2b1-6520-4ed2-a2d5-fd26c1f2f3d5...
[   22.839465] systemd[1]: Expecting device dev-ttyS0.device - /dev/ttyS0...
[   22.879545] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[   22.919745] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   22.959948] systemd[1]: Reached target paths.target - Path Units.
[   22.999843] systemd[1]: Reached target slices.target - Slice Units.
[   23.039845] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   23.127046] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[   23.170675] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[   23.210150] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   23.251185] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[   23.290677] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[   23.330734] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[   23.370932] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   23.410485] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   23.450741] systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
[   23.490734] systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages).
[   23.539794] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   23.586525] systemd[1]: Mounting proc-fs-nfsd.mount - NFSD configuration filesystem...
[   23.669774] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   23.696261] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[   23.749837] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[   23.800365] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[   23.890294] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[   23.980306] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[   24.037663] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[   24.097594] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   24.157614] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[   24.217722] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[   24.271331] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[   24.330520] systemd[1]: Starting systemd-journald.service - Journal Service...
[   24.410521] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   24.500358] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   24.610489] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   24.727355] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[   24.759675] EXT4-fs (sda1): re-mounted 6b41a748-e9fc-47e4-8b24-ec0ee0ac4c1f r/w. Quota mode: none.
[   24.786781] systemd[1]: Mounted proc-fs-nfsd.mount - NFSD configuration filesystem.
[   24.840839] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[   24.900520] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[   24.960265] systemd[1]: Started systemd-journald.service - Journal Service.
[   25.751384] systemd-journald[229]: Received client request to flush runtime journal.
[   25.895400] systemd-journald[229]: File /var/log/journal/c4334d5b2fba8bce5294b56551baee86/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   27.029270] random: crng init done
[   29.528604] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   30.235121] orion_wdt: Initial timeout 21 sec
[   30.719964] marvell-cesa f1030000.crypto: CESA device successfully registered
[   31.661224] Adding 2100580k swap on /dev/sda2.  Priority:-2 extents:1 across:2100580k 
[   34.487535] EXT4-fs (sda3): mounting ext3 file system using the ext4 subsystem
[   36.275903] EXT4-fs (sda3): mounted filesystem a936a2b1-6520-4ed2-a2d5-fd26c1f2f3d5 r/w with ordered data mode. Quota mode: none.
[   37.811653] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 100 Mb/s, full duplex, flow control disabled
[   64.060248] NFSD: Using nfsdcld client tracking operations.
[   64.066563] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000000)
[   69.694693] systemd-journald[229]: Oldest entry in /var/log/journal/c4334d5b2fba8bce5294b56551baee86/system.journal is older than the configured file retention duration (1month), suggesting rotation.
[   69.736509] systemd-journald[229]: /var/log/journal/c4334d5b2fba8bce5294b56551baee86/system.journal: Journal header limits reached or header out-of-date, rotating.

Still no control on fan and cpu rpm....
Re: SOLVED - Debian on LaCie 2Big v2
June 01, 2024 01:38PM
mdg69,

> Still no control on fan and cpu
> rpm....


Yes. There is no fan on the GF Home. That's why I modified the NAS 2Big DTS with GF Home ethernet definition. And I want to see the dmesg/bootlog when you use the modified NAS2 Big DTB (i.e. how the ethernet error still occurs).

And you need to connect serial console to run this test.

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



Edited 1 time(s). Last edit at 06/01/2024 01:55PM by bodhi.
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: