Re: Debian on HP Thin Client T5335z February 16, 2022 04:52PM |
Registered: 2 years ago Posts: 2 |
vi /etc/fw_env.config # MTD device name Device offset Env. size Flash sector size Number of sectors #/dev/mtd1 0x0000 0x80000 0x20000 4 /dev/mtd1 0x0000 0x2000 0x1000I could get correct printout from fw_printenv. But after running fw_setenv, it stopped working ("Cannot read environment, using default. Cannot read default environment from file"). So I managed to permanently set variables from U-boot as follows:
HP>> setenv set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 ${mtdparts} earlyprintk=serial' HP>> setenv bootcmd_usb 'usb start; ext2load usb 0:1 0x2000000 /boot/uImage; ext2load usb 0:1 0x3000000 /boot/uInitrd' HP>> setenv bootcmd_exec 'run set_bootargs; run bootcmd_usb; bootm 0x2000000 0x3000000' HP>> setenv bootcmd 'run bootcmd_exec; run thinpro' HP>> saveenv Saving Environment to SPI Flash... Erasing 0xc0000 - 0xc2000: [Done] Writing to SPI flash: [Done] Erasing 0xc2000 - 0xc4000: [Done] Writing to SPI flash: [Done] Erasing 0xc4000 - 0xc6000: [Done] Writing to SPI flash: [Done]
Re: Debian on HP Thin Client T5335z December 27, 2022 12:35AM |
Registered: 9 years ago Posts: 461 |
Re: Debian on HP Thin Client T5335z December 27, 2022 02:48PM |
Admin Registered: 13 years ago Posts: 18,997 |
Re: Debian on HP Thin Client T5335z December 28, 2022 03:00PM |
Registered: 9 years ago Posts: 461 |
Re: Debian on HP Thin Client T5335z December 28, 2022 04:05PM |
Admin Registered: 13 years ago Posts: 18,997 |
Re: Debian on HP Thin Client T5335z August 31, 2024 12:21AM |
Registered: 2 months ago Posts: 16 |
cd /media/rootfs/boot cp -a zImage-6.6.2-mvebu-tld-1 zImage.fdt cat dts/dove-hp-t5335z.dtb >> zImage.fdt mv uImage uImage.bak mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-6.6.2-mvebu-tld-1 -d zImage.fdt uImage sync4. Unmount, remove and insert USB to HP T5335z.
setenv set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 ${mtdparts} earlyprintk=serial' setenv bootcmd_usb 'usb start; ext2load usb 0:1 0x2000000 /boot/uImage; ext2load usb 0:1 0x3000000 /boot/uInitrd' setenv bootcmd_exec 'run set_bootargs; run bootcmd_usb; bootm 0x2000000 0x3000000' run bootcmd_exec
HP>> setenv set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 ${mtdparts} earlyprintk=serial' HP>> setenv bootcmd_usb 'usb start; ext2load usb 0:1 0x2000000 /boot/uImage; ext2load usb 0:1 0x3000000 /boot/uInitrd' HP>> setenv bootcmd_exec 'run set_bootargs; run bootcmd_usb; bootm 0x2000000 0x3000000' HP>> run bootcmd_exec Resethub..Start USB... USB: Register 10011 NbrPorts 1 USB EHCI 1.00 scanning bus for devices... 4 USB Device(s) found Waiting for storage device(s) to settle before scanning... scanning bus for storage devices... 1 Storage Device(s) found Loading file "/boot/uImage" from usb device 0:1 (usbda1) 5195296 bytes read Loading file "/boot/uInitrd" from usb device 0:1 (usbda1) 5257173 bytes read ## Booting kernel from Legacy Image at 02000000 ... Image Name: Linux-6.6.2-mvebu-tld-1 Created: 2024-08-31 4:52:50 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 5195232 Bytes = 5 MB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK ## Loading init Ramdisk from Legacy Image at 03000000 ... Image Name: initramfs-6.6.2-mvebu-tld-1 Created: 2023-12-12 22:03:52 UTC Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 5257109 Bytes = 5 MB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK Loading Kernel Image ... OK OK Starting kernel ... [ 0.000000][ T0] Booting Linux on physical CPU 0x0 [ 0.000000][ T0] Linux version 6.6.2-mvebu-tld-1 (root@tldDebian) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT Mon Nov 20 18:44:27 PST 2023 [ 0.000000][ T0] CPU: ARMv7 Processor [560f5815] revision 5 (ARMv7), cr=10c5387d [ 0.000000][ T0] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000][ T0] OF: fdt: Machine model: HP Thin Client T5335z [ 0.000000][ T0] printk: bootconsole [earlycon0] enabled [ 0.000000][ T0] Memory policy: Data cache writeback [ 0.000000][ T0] Zone ranges: [ 0.000000][ T0] Normal [mem 0x0000000000000000-0x000000002fffffff] [ 0.000000][ T0] HighMem [mem 0x0000000030000000-0x000000003fffffff] [ 0.000000][ T0] Movable zone start for each node [ 0.000000][ T0] Early memory node ranges [ 0.000000][ T0] node 0: [mem 0x0000000000000000-0x000000003fffffff] [ 0.000000][ T0] Initmem setup node 0 [mem 0x0000000000000000-0x000000003fffffff] [ 0.000000][ T0] CPU: All CPU(s) started in SVC mode. [ 0.000000][ T0] percpu: Embedded 29 pages/cpu s25364 r8192 d85228 u118784 [ 0.000000][ T0] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=spi0.0:768k(u-boot),8k(uboot_env),8k(pu_env),8k(hp_env) earlyprintk=serial [ 0.000000][ T0] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes, linear) [ 0.000000][ T0] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000][ T0] Built 1 zonelists, mobility grouping on. Total pages: 260416 [ 0.000000][ T0] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000][ T0] Memory: 1014464K/1048576K available (10240K kernel code, 873K rwdata, 3492K rodata, 1024K init, 314K bss, 34112K reserved, 0K cma-reserved, 262144K highmem) [ 0.000000][ T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000][ T0] rcu: Preemptible hierarchical RCU implementation. [ 0.000000][ T0] rcu: RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1. [ 0.000000][ T0] Trampoline variant of Tasks RCU enabled. [ 0.000000][ T0] Tracing variant of Tasks RCU enabled. [ 0.000000][ T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000][ T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 [ 0.000000][ T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000][ T0] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000][ T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11467562657 ns [ 0.000002][ T0] sched_clock: 32 bits at 167MHz, resolution 6ns, wraps every 12884901885ns [ 0.008524][ T0] Switching to timer-based delay loop, resolution 6ns [ 0.016001][ T0] kfence: initialized - using 2097152 bytes for 255 objects at 0x(ptrval)-0x(ptrval) [ 0.025824][ T0] Console: colour dummy device 80x30 [ 0.031041][ T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 333.33 BogoMIPS (lpj=1666666) [ 0.042265][ T0] CPU: Testing write buffer coherency: ok [ 0.047893][ T0] pid_max: default: 32768 minimum: 301 [ 0.059161][ T0] LSM: initializing lsm=capability,integrity [ 0.066654][ T0] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.074696][ T0] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.091533][ T1] CPU0: thread -1, cpu 0, socket -1, mpidr 0 [ 0.100344][ T1] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1. [ 0.108476][ T1] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1. [ 0.117163][ T1] Setting up static identity map for 0x100000 - 0x100060 [ 0.125074][ T1] rcu: Hierarchical SRCU implementation. [ 0.130610][ T1] rcu: Max phase no-delay instances is 1000. [ 0.138110][ T1] smp: Bringing up secondary CPUs ... [ 0.143452][ T1] smp: Brought up 1 node, 1 CPU [ 0.148152][ T1] SMP: Total of 1 processors activated (333.33 BogoMIPS). [ 0.155230][ T1] CPU: All CPU(s) started in SVC mode. [ 0.162335][ T1] devtmpfs: initialized [ 0.176166][ T1] VFP support v0.3: implementor 56 architecture 2 part 20 variant 9 rev 5 [ 0.185232][ T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.195806][ T1] futex hash table entries: 256 (order: 2, 16384 bytes, linear) [ 0.207260][ T1] prandom: seed boundary self test passed [ 0.216168][ T1] prandom: 100 self tests passed [ 0.220991][ T1] pinctrl core: initialized pinctrl subsystem [ 0.230669][ T1] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.238285][ T1] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.249898][ T1] audit: initializing netlink subsys (disabled) [ 0.256466][ T22] audit: type=2000 audit(0.240:1): state=initialized audit_enabled=0 res=1 [ 0.266317][ T1] thermal_sys: Registered thermal governor 'step_wise' [ 0.266485][ T1] cpuidle: using governor ladder [ 0.278079][ T1] cpuidle: using governor menu [ 0.282999][ T1] Dove 88AP510 SoC [ 0.286585][ T1] Tauros2: Disabling L2 prefetch. [ 0.291487][ T1] Tauros2: Disabling burst8 line fill. [ 0.296784][ T1] Tauros2: Enabling L2 cache. [ 0.301324][ T1] Tauros2: L2 cache support initialised in ARMv7 mode. [ 0.308725][ T1] hw-breakpoint: debug architecture 0x4 unsupported. [ 0.498557][ T1] raid6: int32x8 gen() 164 MB/s [ 0.668649][ T1] raid6: int32x4 gen() 180 MB/s [ 0.838608][ T1] raid6: int32x2 gen() 326 MB/s [ 1.008590][ T1] raid6: int32x1 gen() 326 MB/s [ 1.013540][ T1] raid6: using algorithm int32x2 gen() 326 MB/s [ 1.188586][ T1] raid6: .... xor() 181 MB/s, rmw enabled [ 1.194134][ T1] raid6: using intx1 recovery algorithm [ 1.201394][ T1] SCSI subsystem initialized [ 1.206519][ T1] usbcore: registered new interface driver usbfs [ 1.212767][ T1] usbcore: registered new interface driver hub [ 1.218825][ T1] usbcore: registered new device driver usb [ 1.225046][ T1] pps_core: LinuxPPS API ver. 1 registered [ 1.230704][ T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.240530][ T1] PTP clock support registered [ 1.248125][ T1] vgaarb: loaded [ 1.252328][ T1] clocksource: Switched to clocksource orion_clocksource [ 1.265624][ T1] VFS: Disk quotas dquot_6.6.0 [ 1.270528][ T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 1.294278][ T1] NET: Registered PF_INET protocol family [ 1.300136][ T1] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.310863][ T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 1.320098][ T1] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 1.328568][ T1] TCP established hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 1.337135][ T1] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear) [ 1.346112][ T1] TCP: Hash tables configured (established 8192 bind 8192) [ 1.353736][ T1] MPTCP token hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 1.361982][ T1] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.369334][ T1] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.377712][ T1] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.385003][ T1] RPC: Registered named UNIX socket transport module. [ 1.391593][ T1] RPC: Registered udp transport module. [ 1.396996][ T1] RPC: Registered tcp transport module. [ 1.402394][ T1] RPC: Registered tcp-with-tls transport module. [ 1.408544][ T1] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.415713][ T1] PCI: CLS 0 bytes, default 64 [ 1.420669][ T11] Trying to unpack rootfs image as initramfs... [ 1.446217][ T1] Initialise system trusted keyrings [ 1.451425][ T1] Key type blacklist registered [ 1.472780][ T1] workingset: timestamp_bits=14 max_order=18 bucket_order=4 [ 1.479962][ T1] zbud: loaded [ 1.514213][ T1] NFS: Registering the id_resolver key type [ 1.519977][ T1] Key type id_resolver registered [ 1.542392][ T1] Key type id_legacy registered [ 1.547330][ T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.562433][ T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 1.864840][ T1] xor: measuring software checksum speed [ 1.892664][ T1] arm4regs : 1415 MB/sec [ 1.912556][ T1] 8regs : 1166 MB/sec [ 1.932553][ T1] 32regs : 1301 MB/sec [ 1.937598][ T1] xor: using function: arm4regs (1415 MB/sec) [ 1.962481][ T1] async_tx: api initialized (async) [ 1.967538][ T1] Key type asymmetric registered [ 1.977175][ T11] Freeing initrd memory: 5136K [ 1.985205][ T1] Asymmetric key parser 'x509' registered [ 1.991307][ T1] bounce: pool size: 64 pages [ 1.997540][ T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 2.006048][ T1] io scheduler bfq registered [ 2.021843][ T1] dove-pinctrl f10d0200.pin-ctrl: falling back to hardcoded PMU resource [ 2.030611][ T1] dove-pinctrl f10d0200.pin-ctrl: [Firmware Bug]: Missing pinctrl regs in DTB. Please update your firmware. [ 2.043200][ T1] dove-pinctrl f10d0200.pin-ctrl: registered pinctrl driver [ 2.053800][ T1] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 2.067564][ T1] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 2.079490][ T1] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 2.093887][ T1] mvebu-pcie mbus:pcie: host bridge /mbus/pcie ranges: [ 2.100639][ T1] mvebu-pcie mbus:pcie: MEM 0x00f1040000..0x00f1041fff -> 0x0000040000 [ 2.109302][ T1] mvebu-pcie mbus:pcie: MEM 0x00f1080000..0x00f1081fff -> 0x0000080000 [ 2.117962][ T1] mvebu-pcie mbus:pcie: MEM 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 2.127138][ T1] mvebu-pcie mbus:pcie: IO 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 2.136237][ T1] mvebu-pcie mbus:pcie: MEM 0xffffffffffffffff..0x00fffffffe -> 0x0200000000 [ 2.145294][ T1] mvebu-pcie mbus:pcie: IO 0xffffffffffffffff..0x00fffffffe -> 0x0200000000 [ 2.155815][ T1] mvebu-pcie mbus:pcie: PCI host bridge to bus 0000:00 [ 2.162576][ T1] pci_bus 0000:00: root bus resource [bus 00-ff] [ 2.168740][ T1] pci_bus 0000:00: root bus resource [mem 0xf1040000-0xf1041fff] (bus address [0x00040000-0x00041fff]) [ 2.179646][ T1] pci_bus 0000:00: root bus resource [mem 0xf1080000-0xf1081fff] (bus address [0x00080000-0x00081fff]) [ 2.190599][ T1] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 2.198199][ T1] pci_bus 0000:00: root bus resource [io 0x1000-0xeffff] [ 2.205311][ T1] pci 0000:00:01.0: [11ab:0510] type 01 class 0x060400 [ 2.213700][ T1] pci 0000:00:02.0: [11ab:0510] type 01 class 0x060400 [ 2.223261][ T1] PCI: bus0: Fast back to back transfers disabled [ 2.229520][ T1] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 2.238265][ T1] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 2.247847][ T1] PCI: bus1: Fast back to back transfers enabled [ 2.254086][ T1] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 2.262157][ T1] PCI: bus2: Fast back to back transfers enabled [ 2.268401][ T1] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02 [ 2.275781][ T1] pci 0000:00:01.0: PCI bridge to [bus 01] [ 2.281431][ T1] pci 0000:00:02.0: PCI bridge to [bus 02] [ 2.290949][ T1] mv_xor f1060800.dma-engine: Marvell shared XOR driver [ 2.364734][ T1] mv_xor f1060800.dma-engine: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 2.380000][ T1] mv_xor f1060900.dma-engine: Marvell shared XOR driver [ 2.444761][ T1] mv_xor f1060900.dma-engine: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 2.783537][ T1] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [ 2.806793][ T1] printk: console [ttyS0] disabled [ 2.815895][ T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 28, base_baud = 10416666) is a 16550A [ 2.825657][ T1] printk: console [ttyS0] enabled [ 2.825657][ T1] printk: console [ttyS0] enabled [ 2.835429][ T1] printk: bootconsole [earlycon0] disabled [ 2.835429][ T1] printk: bootconsole [earlycon0] disabled [ 2.878825][ T1] f1012100.serial: ttyS1 at MMIO 0xf1012100 (irq = 29, base_baud = 10416666) is a 16550A [ 2.894195][ T1] sata_mv f10a0000.sata-host: slots 32 ports 1 [ 2.905890][ T1] scsi host0: sata_mv [ 2.911336][ T1] ata1: SATA max UDMA/133 irq 30 [ 2.924099][ T1] spi-nor spi0.0: sst25vf080b (1024 Kbytes) [ 2.929950][ T1] 4 cmdlinepart partitions found on MTD device spi0.0 [ 2.936968][ T1] Creating 4 MTD partitions on "spi0.0": [ 2.942476][ T1] 0x000000000000-0x0000000c0000 : "u-boot" [ 2.952603][ T1] 0x0000000c0000-0x0000000c2000 : "uboot_env" [ 2.962801][ T1] 0x0000000c2000-0x0000000c4000 : "pu_env" [ 2.973190][ T1] 0x0000000c4000-0x0000000c6000 : "hp_env" [ 2.985202][ T1] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information. [ 2.993784][ T1] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. [ 3.053547][ T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 3.067941][ T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address f4:ce:46:25:a2:f5 [ 3.081347][ T1] usbcore: registered new interface driver smsc75xx [ 3.088705][ T1] orion-ehci f1050000.usb-host: EHCI Host Controller [ 3.095437][ T1] orion-ehci f1050000.usb-host: new USB bus registered, assigned bus number 1 [ 3.104465][ T1] orion-ehci f1050000.usb-host: irq 33, io mem 0xf1050000 [ 3.132404][ T1] orion-ehci f1050000.usb-host: USB 2.0 started, EHCI 1.00 [ 3.139792][ T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06 [ 3.148771][ T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.156703][ T1] usb usb1: Product: EHCI Host Controller [ 3.162289][ T1] usb usb1: Manufacturer: Linux 6.6.2-mvebu-tld-1 ehci_hcd [ 3.169348][ T1] usb usb1: SerialNumber: f1050000.usb-host [ 3.177315][ T1] hub 1-0:1.0: USB hub found [ 3.181840][ T1] hub 1-0:1.0: 1 port detected [ 3.188953][ T1] orion-ehci f1051000.usb-host: EHCI Host Controller [ 3.195587][ T1] orion-ehci f1051000.usb-host: new USB bus registered, assigned bus number 2 [ 3.204590][ T1] orion-ehci f1051000.usb-host: irq 34, io mem 0xf1051000 [ 3.232341][ T1] orion-ehci f1051000.usb-host: USB 2.0 started, EHCI 1.00 [ 3.239729][ T1] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06 [ 3.248762][ T1] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.256674][ T1] usb usb2: Product: EHCI Host Controller [ 3.262225][ T1] usb usb2: Manufacturer: Linux 6.6.2-mvebu-tld-1 ehci_hcd [ 3.269267][ T1] usb usb2: SerialNumber: f1051000.usb-host [ 3.276973][ T1] hub 2-0:1.0: USB hub found [ 3.281460][ T1] hub 2-0:1.0: 1 port detected [ 3.290647][ T1] usbcore: registered new interface driver usblp [ 3.297421][ T1] usbcore: registered new interface driver usb-storage [ 3.306119][ T1] mousedev: PS/2 mouse device common for all mice [ 3.320236][ T1] rtc-mv f10d8500.real-time-clock: registered as rtc0 [ 3.327038][ T1] rtc-mv f10d8500.real-time-clock: setting system clock to 2024-08-31T06:58:14 UTC (1725087494) [ 3.340132][ T1] i2c_dev: i2c /dev entries driver [ 3.345957][ T1] mv64xxx_i2c f1011000.i2c: can't get pinctrl, bus recovery not supported [ 3.362300][ T1] orion_wdt: Initial timeout 25 sec [ 3.369559][ T1] device-mapper: uevent: version 1.0.3 [ 3.375820][ T1] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com [ 3.386153][ T1] device-mapper: multipath round-robin: version 1.2.0 loaded [ 3.393574][ T1] device-mapper: multipath queue-length: version 0.2.0 loaded [ 3.400857][ T1] device-mapper: multipath service-time: version 0.3.0 loaded [ 3.408424][ T1] device-mapper: dm-log-userspace: version 1.3.0 loaded [ 3.415417][ T679] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl F300) [ 3.423519][ T1] sdhci: Secure Digital Host Controller Interface driver [ 3.430375][ T1] sdhci: Copyright(c) Pierre Ossman [ 3.436228][ T1] sdhci-pltfm: SDHCI platform and OF driver helper [ 3.442754][ T679] ata1.00: ATA-7: JMicron, 100415, max UDMA/133 [ 3.448830][ T679] ata1.00: 946176 sectors, multi 1: LBA48 [ 3.456998][ T1] marvell-cesa f1030000.crypto-engine: CESA device successfully registered [ 3.467973][ T679] ata1.00: configured for UDMA/133 [ 3.473160][ T1] hid: raw HID events driver (C) Jiri Kosina [ 3.481076][ T1] usbcore: registered new interface driver usbhid [ 3.487536][ T60] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 3.495488][ T38] scsi 0:0:0:0: Direct-Access ATA JMicron 15 PQ: 0 ANSI: 5 [ 3.504835][ T1] usbhid: USB HID core driver [ 3.513839][ T1] NET: Registered PF_INET6 protocol family [ 3.520608][ T739] sd 0:0:0:0: [sda] 946176 512-byte logical blocks: (484 MB/462 MiB) [ 3.531796][ T1] Segment Routing with IPv6 [ 3.536402][ T739] sd 0:0:0:0: [sda] Write Protect is off [ 3.541957][ T739] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 3.551926][ T1] RPL Segment Routing with IPv6 [ 3.556765][ T1] In-situ OAM (IOAM) with IPv6 [ 3.561491][ T1] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 3.568250][ T739] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes [ 3.579905][ T1] NET: Registered PF_PACKET protocol family [ 3.588274][ T739] sda: sda1 [ 3.592817][ T739] sd 0:0:0:0: [sda] Attached SCSI disk [ 3.598859][ T1] 8021q: 802.1Q VLAN Support v1.8 [ 3.604074][ T1] Key type dns_resolver registered [ 3.609356][ T1] ThumbEE CPU extension supported. [ 3.614531][ T1] Registering SWP/SWPB emulation handler [ 3.620001][ T1] PJ4 iWMMXt v2 coprocessor enabled. [ 3.706958][ T60] usb 1-1: New USB device found, idVendor=058f, idProduct=6254, bcdDevice= 1.00 [ 3.729666][ T60] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 3.786384][ T1] registered taskstats version 1 [ 3.791275][ T1] Loading compiled-in X.509 certificates [ 3.801512][ T60] hub 1-1:1.0: USB hub found [ 3.812712][ T60] hub 1-1:1.0: 4 ports detected [ 3.846415][ T1] Key type .fscrypt registered [ 3.851054][ T1] Key type fscrypt-provisioning registered [ 3.856955][ T1] Key type big_key registered [ 3.865295][ T1] Key type encrypted registered [ 3.878846][ T1] clk: Disabling unused clocks [ 3.886773][ T1] Freeing unused kernel image (initmem) memory: 1024K [ 3.914546][ T1] Checked W+X mappings: passed, no W+X pages found [ 3.920899][ T1] Run /init as init process [ 3.926785][ T1] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000004 [ 3.935110][ T1] CPU: 0 PID: 1 Comm: init Not tainted 6.6.2-mvebu-tld-1 #1 [ 3.942225][ T1] Hardware name: Marvell Dove [ 3.946742][ T1] unwind_backtrace from show_stack+0x10/0x14 [ 3.952663][ T1] show_stack from dump_stack_lvl+0x40/0x4c [ 3.958401][ T1] dump_stack_lvl from panic+0x104/0x308 [ 3.963878][ T1] panic from do_exit+0x264/0x8c4 [ 3.968751][ T1] do_exit from sys_exit_group+0x0/0x10 [ 3.974147][ T1] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000004 ]---What's wrong?
Re: Debian on HP Thin Client T5335z August 31, 2024 02:45AM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 01, 2024 09:57AM |
Admin Registered: 13 years ago Posts: 18,997 |
> Debian-5.2.9-mvebu-tld-1-rootfs-bodhi.tar.bz2 >> Works fine.
Re: Debian on HP Thin Client T5335z September 02, 2024 10:09AM |
Registered: 2 months ago Posts: 16 |
__ _ .____ | ||_| | | _ \ |. _ | | (._))) | |-| | | | |_ | |_|. |_ | ... ** LOADER ** U-Boot 2009.08 (Aug 24 2011 - 15:11:17)HP version: 5.4.2-V28 BootROM: Version on chip: 2.33 Status: OK Retries #: 0 Board: RD-88AP510-Avengers SoC: 88AP510 (A1) CPU: Marvell Sheeva (Rev 5) CPU @ 1000Mhz, L2 @ 500Mhz Write Leveling Results: CS0, Lane: 0, value: 5 CS0, Lane: 1, value: 10 CS0, Lane: 2, value: 44 CS0, Lane: 3, value: 29 DRAM: 1 GB CS 0: base 0x00000000 size 1 GB Addresses 12M - 0M are saved for the U-Boot usage. Streaming disabled L2 Cache Prefetch disabled L2 Cache ECC disabled USB 0: Host Mode USB 1: Host Mode Setting VPU power ON. Setting GPU power ON. Net: egiga0 [PRIME] Hit any key to stop autoboot: 0 Resethub..Start USB... USB: Register 10011 NbrPorts 1 USB EHCI 1.00 scanning bus for devices... 4 USB Device(s) found Waiting for storage device(s) to settle before scanning... scanning bus for storage devices... 1 Storage Device(s) found Loading file "/boot/uImage" from usb device 0:1 (usbda1) 5195296 bytes read Loading file "/boot/uInitrd" from usb device 0:1 (usbda1) 10474889 bytes read ## Booting kernel from Legacy Image at 02000000 ... Image Name: Linux-6.6.2-mvebu-tld-1 Created: 2024-09-02 15:00:36 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 5195232 Bytes = 5 MB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK ## Loading init Ramdisk from Legacy Image at 03000000 ... Image Name: initramfs-6.6.2-mvebu-tld-1 Created: 2024-09-02 15:00:48 UTC Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 10474825 Bytes = 10 MB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK Loading Kernel Image ... OK OK Starting kernel ... [ 0.000000][ T0] Booting Linux on physical CPU 0x0 [ 0.000000][ T0] Linux version 6.6.2-mvebu-tld-1 (root@tldDebian) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT Mon Nov 20 18:44:27 PST 2023 [ 0.000000][ T0] CPU: ARMv7 Processor [560f5815] revision 5 (ARMv7), cr=10c5387d [ 0.000000][ T0] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000][ T0] OF: fdt: Machine model: HP Thin Client T5335z [ 0.000000][ T0] printk: bootconsole [earlycon0] enabled [ 0.000000][ T0] Memory policy: Data cache writeback [ 0.000000][ T0] Zone ranges: [ 0.000000][ T0] Normal [mem 0x0000000000000000-0x000000002fffffff] [ 0.000000][ T0] HighMem [mem 0x0000000030000000-0x000000003fffffff] [ 0.000000][ T0] Movable zone start for each node [ 0.000000][ T0] Early memory node ranges [ 0.000000][ T0] node 0: [mem 0x0000000000000000-0x000000003fffffff] [ 0.000000][ T0] Initmem setup node 0 [mem 0x0000000000000000-0x000000003fffffff] [ 0.000000][ T0] CPU: All CPU(s) started in SVC mode. [ 0.000000][ T0] percpu: Embedded 29 pages/cpu s25364 r8192 d85228 u118784 [ 0.000000][ T0] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=spi0.0:768k(u-boot),8k(uboot_env),8k(pu_env),8k(hp_env) earlyprintk=seri al [ 0.000000][ T0] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes, linear) [ 0.000000][ T0] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000][ T0] Built 1 zonelists, mobility grouping on. Total pages: 260416 [ 0.000000][ T0] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000][ T0] Memory: 1009368K/1048576K available (10240K kernel code, 873K rwdata, 3492K rodata, 1024K init, 314K bss, 39208K reserved, 0K cma-reserved, 262144K highme m) [ 0.000000][ T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000][ T0] rcu: Preemptible hierarchical RCU implementation. [ 0.000000][ T0] rcu: RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1. [ 0.000000][ T0] Trampoline variant of Tasks RCU enabled. [ 0.000000][ T0] Tracing variant of Tasks RCU enabled. [ 0.000000][ T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000][ T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 [ 0.000000][ T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000][ T0] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000][ T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11467562657 ns [ 0.000002][ T0] sched_clock: 32 bits at 167MHz, resolution 6ns, wraps every 12884901885ns [ 0.008532][ T0] Switching to timer-based delay loop, resolution 6ns [ 0.016011][ T0] kfence: initialized - using 2097152 bytes for 255 objects at 0x(ptrval)-0x(ptrval) [ 0.025839][ T0] Console: colour dummy device 80x30 [ 0.031060][ T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 333.33 BogoMIPS (lpj=1666666) [ 0.042280][ T0] CPU: Testing write buffer coherency: ok [ 0.047910][ T0] pid_max: default: 32768 minimum: 301 [ 0.059176][ T0] LSM: initializing lsm=capability,integrity [ 0.066678][ T0] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.074722][ T0] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.091558][ T1] CPU0: thread -1, cpu 0, socket -1, mpidr 0 [ 0.100358][ T1] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1. [ 0.108485][ T1] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1. [ 0.117172][ T1] Setting up static identity map for 0x100000 - 0x100060 [ 0.125082][ T1] rcu: Hierarchical SRCU implementation. [ 0.130617][ T1] rcu: Max phase no-delay instances is 1000. [ 0.138117][ T1] smp: Bringing up secondary CPUs ... [ 0.143458][ T1] smp: Brought up 1 node, 1 CPU [ 0.148160][ T1] SMP: Total of 1 processors activated (333.33 BogoMIPS). [ 0.155238][ T1] CPU: All CPU(s) started in SVC mode. [ 0.162341][ T1] devtmpfs: initialized [ 0.176188][ T1] VFP support v0.3: implementor 56 architecture 2 part 20 variant 9 rev 5 [ 0.185253][ T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.195822][ T1] futex hash table entries: 256 (order: 2, 16384 bytes, linear) [ 0.207279][ T1] prandom: seed boundary self test passed [ 0.216191][ T1] prandom: 100 self tests passed [ 0.221017][ T1] pinctrl core: initialized pinctrl subsystem [ 0.230703][ T1] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.238319][ T1] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.249933][ T1] audit: initializing netlink subsys (disabled) [ 0.256509][ T22] audit: type=2000 audit(0.240:1): state=initialized audit_enabled=0 res=1 [ 0.266359][ T1] thermal_sys: Registered thermal governor 'step_wise' [ 0.266527][ T1] cpuidle: using governor ladder [ 0.278123][ T1] cpuidle: using governor menu [ 0.283043][ T1] Dove 88AP510 SoC [ 0.286628][ T1] Tauros2: Disabling L2 prefetch. [ 0.291530][ T1] Tauros2: Disabling burst8 line fill. [ 0.296827][ T1] Tauros2: Enabling L2 cache. [ 0.301365][ T1] Tauros2: L2 cache support initialised in ARMv7 mode. [ 0.308767][ T1] hw-breakpoint: debug architecture 0x4 unsupported. [ 0.498705][ T1] raid6: int32x8 gen() 164 MB/s [ 0.668651][ T1] raid6: int32x4 gen() 180 MB/s [ 0.838619][ T1] raid6: int32x2 gen() 326 MB/s [ 1.008600][ T1] raid6: int32x1 gen() 326 MB/s [ 1.013549][ T1] raid6: using algorithm int32x2 gen() 326 MB/s [ 1.188587][ T1] raid6: .... xor() 181 MB/s, rmw enabled [ 1.194142][ T1] raid6: using intx1 recovery algorithm [ 1.201400][ T1] SCSI subsystem initialized [ 1.206525][ T1] usbcore: registered new interface driver usbfs [ 1.212777][ T1] usbcore: registered new interface driver hub [ 1.218832][ T1] usbcore: registered new device driver usb [ 1.225056][ T1] pps_core: LinuxPPS API ver. 1 registered [ 1.230712][ T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.240538][ T1] PTP clock support registered [ 1.248134][ T1] vgaarb: loaded [ 1.252332][ T1] clocksource: Switched to clocksource orion_clocksource [ 1.265629][ T1] VFS: Disk quotas dquot_6.6.0 [ 1.270538][ T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 1.294267][ T1] NET: Registered PF_INET protocol family [ 1.300128][ T1] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.310854][ T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 1.320089][ T1] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 1.328559][ T1] TCP established hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 1.337127][ T1] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear) [ 1.346103][ T1] TCP: Hash tables configured (established 8192 bind 8192) [ 1.353727][ T1] MPTCP token hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 1.361972][ T1] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.369325][ T1] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.377703][ T1] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.384987][ T1] RPC: Registered named UNIX socket transport module. [ 1.391575][ T1] RPC: Registered udp transport module. [ 1.396980][ T1] RPC: Registered tcp transport module. [ 1.402375][ T1] RPC: Registered tcp-with-tls transport module. [ 1.408526][ T1] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.415695][ T1] PCI: CLS 0 bytes, default 64 [ 1.420651][ T11] Trying to unpack rootfs image as initramfs... [ 1.446228][ T1] Initialise system trusted keyrings [ 1.451434][ T1] Key type blacklist registered [ 1.472826][ T1] workingset: timestamp_bits=14 max_order=18 bucket_order=4 [ 1.480005][ T1] zbud: loaded [ 1.514246][ T1] NFS: Registering the id_resolver key type [ 1.520034][ T1] Key type id_resolver registered [ 1.542451][ T1] Key type id_legacy registered [ 1.547389][ T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.562433][ T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 1.864957][ T1] xor: measuring software checksum speed [ 1.892570][ T1] arm4regs : 1415 MB/sec [ 1.912450][ T1] 8regs : 1166 MB/sec [ 1.932455][ T1] 32regs : 1301 MB/sec [ 1.937503][ T1] xor: using function: arm4regs (1415 MB/sec) [ 1.962464][ T1] async_tx: api initialized (async) [ 1.967520][ T1] Key type asymmetric registered [ 1.972288][ T1] Asymmetric key parser 'x509' registered [ 1.993025][ T1] bounce: pool size: 64 pages [ 1.998264][ T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 2.022888][ T1] io scheduler bfq registered [ 2.032087][ T1] dove-pinctrl f10d0200.pin-ctrl: falling back to hardcoded PMU resource [ 2.052792][ T1] dove-pinctrl f10d0200.pin-ctrl: [Firmware Bug]: Missing pinctrl regs in DTB. Please update your firmware. [ 2.073487][ T1] dove-pinctrl f10d0200.pin-ctrl: registered pinctrl driver [ 2.095377][ T1] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 2.123624][ T1] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 2.143355][ T1] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 2.165009][ T1] mvebu-pcie mbus:pcie: host bridge /mbus/pcie ranges: [ 2.171764][ T1] mvebu-pcie mbus:pcie: MEM 0x00f1040000..0x00f1041fff -> 0x0000040000 [ 2.192553][ T1] mvebu-pcie mbus:pcie: MEM 0x00f1080000..0x00f1081fff -> 0x0000080000 [ 2.201086][ T1] mvebu-pcie mbus:pcie: MEM 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 2.232472][ T1] mvebu-pcie mbus:pcie: IO 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 2.241527][ T1] mvebu-pcie mbus:pcie: MEM 0xffffffffffffffff..0x00fffffffe -> 0x0200000000 [ 2.272460][ T1] mvebu-pcie mbus:pcie: IO 0xffffffffffffffff..0x00fffffffe -> 0x0200000000 [ 2.292814][ T1] mvebu-pcie mbus:pcie: PCI host bridge to bus 0000:00 [ 2.299508][ T1] pci_bus 0000:00: root bus resource [bus 00-ff] [ 2.312433][ T1] pci_bus 0000:00: root bus resource [mem 0xf1040000-0xf1041fff] (bus address [0x00040000-0x00041fff]) [ 2.342507][ T1] pci_bus 0000:00: root bus resource [mem 0xf1080000-0xf1081fff] (bus address [0x00080000-0x00081fff]) [ 2.362457][ T1] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 2.370015][ T1] pci_bus 0000:00: root bus resource [io 0x1000-0xeffff] [ 2.392588][ T1] pci 0000:00:01.0: [11ab:0510] type 01 class 0x060400 [ 2.400416][ T1] pci 0000:00:02.0: [11ab:0510] type 01 class 0x060400 [ 2.424450][ T1] PCI: bus0: Fast back to back transfers disabled [ 2.430712][ T1] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 2.452504][ T1] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 2.472580][ T1] PCI: bus1: Fast back to back transfers enabled [ 2.478754][ T1] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 2.502868][ T1] PCI: bus2: Fast back to back transfers enabled [ 2.509045][ T1] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02 [ 2.522457][ T1] pci 0000:00:01.0: PCI bridge to [bus 01] [ 2.528112][ T1] pci 0000:00:02.0: PCI bridge to [bus 02] [ 2.554956][ T1] mv_xor f1060800.dma-engine: Marvell shared XOR driver [ 2.635287][ T1] mv_xor f1060800.dma-engine: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 2.658453][ T1] mv_xor f1060900.dma-engine: Marvell shared XOR driver [ 2.712281][ T11] Freeing initrd memory: 10232K [ 2.739641][ T1] mv_xor f1060900.dma-engine: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 3.080544][ T1] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [ 3.104128][ T1] printk: console [ttyS0] disabled [ 3.112230][ T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 28, base_baud = 10416666) is a 16550A [ 3.122281][ T1] printk: console [ttyS0] enabled [ 3.122281][ T1] printk: console [ttyS0] enabled [ 3.132193][ T1] printk: bootconsole [earlycon0] disabled [ 3.132193][ T1] printk: bootconsole [earlycon0] disabled [ 3.168815][ T1] f1012100.serial: ttyS1 at MMIO 0xf1012100 (irq = 29, base_baud = 10416666) is a 16550A [ 3.186189][ T1] sata_mv f10a0000.sata-host: slots 32 ports 1 [ 3.196232][ T1] scsi host0: sata_mv [ 3.201658][ T1] ata1: SATA max UDMA/133 irq 30 [ 3.214315][ T1] spi-nor spi0.0: sst25vf080b (1024 Kbytes) [ 3.220161][ T1] 4 cmdlinepart partitions found on MTD device spi0.0 [ 3.226977][ T1] Creating 4 MTD partitions on "spi0.0": [ 3.232571][ T1] 0x000000000000-0x0000000c0000 : "u-boot" [ 3.242679][ T1] 0x0000000c0000-0x0000000c2000 : "uboot_env" [ 3.252825][ T1] 0x0000000c2000-0x0000000c4000 : "pu_env" [ 3.262870][ T1] 0x0000000c4000-0x0000000c6000 : "hp_env" [ 3.274951][ T1] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information. [ 3.283575][ T1] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. [ 3.339951][ T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 3.354781][ T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address f4:ce:46:25:a2:f5 [ 3.368061][ T1] usbcore: registered new interface driver smsc75xx [ 3.375497][ T1] orion-ehci f1050000.usb-host: EHCI Host Controller [ 3.382038][ T1] orion-ehci f1050000.usb-host: new USB bus registered, assigned bus number 1 [ 3.391083][ T1] orion-ehci f1050000.usb-host: irq 33, io mem 0xf1050000 [ 3.422377][ T1] orion-ehci f1050000.usb-host: USB 2.0 started, EHCI 1.00 [ 3.429860][ T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06 [ 3.438841][ T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.446773][ T1] usb usb1: Product: EHCI Host Controller [ 3.452371][ T1] usb usb1: Manufacturer: Linux 6.6.2-mvebu-tld-1 ehci_hcd [ 3.459427][ T1] usb usb1: SerialNumber: f1050000.usb-host [ 3.467331][ T1] hub 1-0:1.0: USB hub found [ 3.471861][ T1] hub 1-0:1.0: 1 port detected [ 3.478595][ T1] orion-ehci f1051000.usb-host: EHCI Host Controller [ 3.485615][ T1] orion-ehci f1051000.usb-host: new USB bus registered, assigned bus number 2 [ 3.494583][ T1] orion-ehci f1051000.usb-host: irq 34, io mem 0xf1051000 [ 3.522353][ T1] orion-ehci f1051000.usb-host: USB 2.0 started, EHCI 1.00 [ 3.529798][ T1] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06 [ 3.538834][ T1] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.546743][ T1] usb usb2: Product: EHCI Host Controller [ 3.552295][ T1] usb usb2: Manufacturer: Linux 6.6.2-mvebu-tld-1 ehci_hcd [ 3.559338][ T1] usb usb2: SerialNumber: f1051000.usb-host [ 3.566078][ T1] hub 2-0:1.0: USB hub found [ 3.571493][ T1] hub 2-0:1.0: 1 port detected [ 3.580574][ T1] usbcore: registered new interface driver usblp [ 3.587348][ T1] usbcore: registered new interface driver usb-storage [ 3.595932][ T1] mousedev: PS/2 mouse device common for all mice [ 3.610550][ T1] rtc-mv f10d8500.real-time-clock: registered as rtc0 [ 3.617455][ T1] rtc-mv f10d8500.real-time-clock: setting system clock to 2024-09-02T15:07:17 UTC (1725289637) [ 3.630466][ T1] i2c_dev: i2c /dev entries driver [ 3.636466][ T1] mv64xxx_i2c f1011000.i2c: can't get pinctrl, bus recovery not supported [ 3.652546][ T1] orion_wdt: Initial timeout 25 sec [ 3.660400][ T1] device-mapper: uevent: version 1.0.3 [ 3.666785][ T1] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com [ 3.676584][ T1] device-mapper: multipath round-robin: version 1.2.0 loaded [ 3.683963][ T1] device-mapper: multipath queue-length: version 0.2.0 loaded [ 3.691246][ T1] device-mapper: multipath service-time: version 0.3.0 loaded [ 3.698786][ T1] device-mapper: dm-log-userspace: version 1.3.0 loaded [ 3.705809][ T686] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl F300) [ 3.713009][ T1] sdhci: Secure Digital Host Controller Interface driver [ 3.719857][ T1] sdhci: Copyright(c) Pierre Ossman [ 3.726644][ T1] sdhci-pltfm: SDHCI platform and OF driver helper [ 3.733182][ T686] ata1.00: ATA-7: JMicron, 100415, max UDMA/133 [ 3.739264][ T686] ata1.00: 946176 sectors, multi 1: LBA48 [ 3.747356][ T1] marvell-cesa f1030000.crypto-engine: CESA device successfully registered [ 3.758416][ T686] ata1.00: configured for UDMA/133 [ 3.763442][ T1] hid: raw HID events driver (C) Jiri Kosina [ 3.770434][ T11] scsi 0:0:0:0: Direct-Access ATA JMicron 15 PQ: 0 ANSI: 5 [ 3.779427][ T8] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 3.787145][ T1] usbcore: registered new interface driver usbhid [ 3.796262][ T1] usbhid: USB HID core driver [ 3.802119][ T38] sd 0:0:0:0: [sda] 946176 512-byte logical blocks: (484 MB/462 MiB) [ 3.814368][ T1] NET: Registered PF_INET6 protocol family [ 3.820396][ T38] sd 0:0:0:0: [sda] Write Protect is off [ 3.827722][ T1] Segment Routing with IPv6 [ 3.832075][ T1] RPL Segment Routing with IPv6 [ 3.837085][ T38] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 3.847048][ T1] In-situ OAM (IOAM) with IPv6 [ 3.851807][ T1] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 3.858542][ T38] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes [ 3.868161][ T38] sda: sda1 [ 3.876178][ T1] NET: Registered PF_PACKET protocol family [ 3.882636][ T38] sd 0:0:0:0: [sda] Attached SCSI disk [ 3.889240][ T1] 8021q: 802.1Q VLAN Support v1.8 [ 3.894371][ T1] Key type dns_resolver registered [ 3.899662][ T1] ThumbEE CPU extension supported. [ 3.904851][ T1] Registering SWP/SWPB emulation handler [ 3.910322][ T1] PJ4 iWMMXt v2 coprocessor enabled. [ 3.993092][ T8] usb 1-1: New USB device found, idVendor=058f, idProduct=6254, bcdDevice= 1.00 [ 4.001973][ T8] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 4.078596][ T1] registered taskstats version 1 [ 4.085099][ T1] Loading compiled-in X.509 certificates [ 4.094794][ T8] hub 1-1:1.0: USB hub found [ 4.100749][ T8] hub 1-1:1.0: 4 ports detected [ 4.138023][ T1] Key type .fscrypt registered [ 4.142752][ T1] Key type fscrypt-provisioning registered [ 4.148505][ T1] Key type big_key registered [ 4.156673][ T1] Key type encrypted registered [ 4.170292][ T1] clk: Disabling unused clocks [ 4.178217][ T1] Freeing unused kernel image (initmem) memory: 1024K [ 4.214577][ T1] Checked W+X mappings: passed, no W+X pages found [ 4.220922][ T1] Run /init as init process [ 4.227206][ T1] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000004 [ 4.235531][ T1] CPU: 0 PID: 1 Comm: init Not tainted 6.6.2-mvebu-tld-1 #1 [ 4.242637][ T1] Hardware name: Marvell Dove [ 4.247155][ T1] unwind_backtrace from show_stack+0x10/0x14 [ 4.253077][ T1] show_stack from dump_stack_lvl+0x40/0x4c [ 4.258813][ T1] dump_stack_lvl from panic+0x104/0x308 [ 4.264291][ T1] panic from do_exit+0x264/0x8c4 [ 4.269163][ T1] do_exit from sys_exit_group+0x0/0x10 [ 4.274560][ T1] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000004 ]---
Re: Debian on HP Thin Client T5335z September 02, 2024 10:21AM |
Admin Registered: 13 years ago Posts: 18,997 |
Quote
Latest released kernel: linux-6.9.6-mvebu-tld-1-bodhi.tar.bz2 (27 Jun 2024)
Re: Debian on HP Thin Client T5335z September 02, 2024 10:40AM |
Registered: 2 months ago Posts: 16 |
__ _ .____ | ||_| | | _ \ |. _ | | (._))) | |-| | | | |_ | |_|. |_ | ... ** LOADER ** U-Boot 2009.08 (Aug 24 2011 - 15:11:17)HP version: 5.4.2-V28 BootROM: Version on chip: 2.33 Status: OK Retries #: 0 Board: RD-88AP510-Avengers SoC: 88AP510 (A1) CPU: Marvell Sheeva (Rev 5) CPU @ 1000Mhz, L2 @ 500Mhz Write Leveling Results: CS0, Lane: 0, value: 5 CS0, Lane: 1, value: 9 CS0, Lane: 2, value: 43 CS0, Lane: 3, value: 29 DRAM: 1 GB CS 0: base 0x00000000 size 1 GB Addresses 12M - 0M are saved for the U-Boot usage. Streaming disabled L2 Cache Prefetch disabled L2 Cache ECC disabled USB 0: Host Mode USB 1: Host Mode Setting VPU power ON. Setting GPU power ON. Net: egiga0 [PRIME] Hit any key to stop autoboot: 0 Resethub..Start USB... USB: Register 10011 NbrPorts 1 USB EHCI 1.00 scanning bus for devices... 4 USB Device(s) found Waiting for storage device(s) to settle before scanning... scanning bus for storage devices... 1 Storage Device(s) found Loading file "/boot/uImage" from usb device 0:1 (usbda1) 5229264 bytes read Loading file "/boot/uInitrd" from usb device 0:1 (usbda1) 10304335 bytes read ## Booting kernel from Legacy Image at 02000000 ... Image Name: Linux-6.9.6-mvebu-tld-1 Created: 2024-09-02 15:34:40 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 5229200 Bytes = 5 MB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK ## Loading init Ramdisk from Legacy Image at 03000000 ... Image Name: initramfs-6.9.6-mvebu-tld-1 Created: 2024-09-02 15:34:50 UTC Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 10304271 Bytes = 9.8 MB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK Loading Kernel Image ... OK OK Starting kernel ... [ 0.000000][ T0] Booting Linux on physical CPU 0x0 [ 0.000000][ T0] Linux version 6.9.6-mvebu-tld-1 (root@tldDebian) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT Sat Jun 22 13:44:13 PDT 2024 [ 0.000000][ T0] CPU: ARMv7 Processor [560f5815] revision 5 (ARMv7), cr=10c5387d [ 0.000000][ T0] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000][ T0] OF: fdt: Machine model: HP Thin Client T5335z [ 0.000000][ T0] printk: legacy bootconsole [earlycon0] enabled [ 0.000000][ T0] Memory policy: Data cache writeback [ 0.000000][ T0] Zone ranges: [ 0.000000][ T0] Normal [mem 0x0000000000000000-0x000000002fffffff] [ 0.000000][ T0] HighMem [mem 0x0000000030000000-0x000000003fffffff] [ 0.000000][ T0] Movable zone start for each node [ 0.000000][ T0] Early memory node ranges [ 0.000000][ T0] node 0: [mem 0x0000000000000000-0x000000003fffffff] [ 0.000000][ T0] Initmem setup node 0 [mem 0x0000000000000000-0x000000003fffffff] [ 0.000000][ T0] CPU: All CPU(s) started in SVC mode. [ 0.000000][ T0] percpu: Embedded 30 pages/cpu s28948 r8192 d85740 u122880 [ 0.000000][ T0] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=spi0.0:768k(u-boot),8k(uboot_env),8k(pu_env),8k(hp_env) earlyprintk=serial [ 0.000000][ T0] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes, linear) [ 0.000000][ T0] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000][ T0] Built 1 zonelists, mobility grouping on. Total pages: 260416 [ 0.000000][ T0] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000][ T0] Memory: 1009544K/1048576K available (10240K kernel code, 859K rwdata, 3476K rodata, 1024K init, 319K bss, 39032K reserved, 0K cma-reserved, 262144K highmem) [ 0.000000][ T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000][ T0] rcu: Preemptible hierarchical RCU implementation. [ 0.000000][ T0] rcu: RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1. [ 0.000000][ T0] Trampoline variant of Tasks RCU enabled. [ 0.000000][ T0] Tracing variant of Tasks RCU enabled. [ 0.000000][ T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000][ T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 [ 0.000000][ T0] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1. [ 0.000000][ T0] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1. [ 0.000000][ T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000][ T0] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000][ T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11467562657 ns [ 0.000001][ T0] sched_clock: 32 bits at 167MHz, resolution 6ns, wraps every 12884901885ns [ 0.008531][ T0] Switching to timer-based delay loop, resolution 6ns [ 0.016031][ T0] kfence: initialized - using 2097152 bytes for 255 objects at 0x(ptrval)-0x(ptrval) [ 0.025847][ T0] Console: colour dummy device 80x30 [ 0.031081][ T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 333.33 BogoMIPS (lpj=1666666) [ 0.042307][ T0] CPU: Testing write buffer coherency: ok [ 0.047936][ T0] pid_max: default: 32768 minimum: 301 [ 0.061051][ T0] LSM: initializing lsm=capability [ 0.067341][ T0] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.075386][ T0] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.089661][ T1] CPU0: thread -1, cpu 0, socket -1, mpidr 0 [ 0.098991][ T1] Setting up static identity map for 0x100000 - 0x100060 [ 0.106925][ T1] rcu: Hierarchical SRCU implementation. [ 0.112461][ T1] rcu: Max phase no-delay instances is 1000. [ 0.120492][ T1] smp: Bringing up secondary CPUs ... [ 0.125742][ T1] smp: Brought up 1 node, 1 CPU [ 0.130556][ T1] SMP: Total of 1 processors activated (333.33 BogoMIPS). [ 0.137506][ T1] CPU: All CPU(s) started in SVC mode. [ 0.144700][ T1] devtmpfs: initialized [ 0.157781][ T1] VFP support v0.3: implementor 56 architecture 2 part 20 variant 9 rev 5 [ 0.166887][ T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.177462][ T1] futex hash table entries: 256 (order: 2, 16384 bytes, linear) [ 0.190034][ T1] prandom: seed boundary self test passed [ 0.198874][ T1] prandom: 100 self tests passed [ 0.203665][ T1] pinctrl core: initialized pinctrl subsystem [ 0.212721][ T1] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.221034][ T1] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.229742][ T1] audit: initializing netlink subsys (disabled) [ 0.236314][ T23] audit: type=2000 audit(0.220:1): state=initialized audit_enabled=0 res=1 [ 0.246288][ T1] thermal_sys: Registered thermal governor 'step_wise' [ 0.246456][ T1] cpuidle: using governor ladder [ 0.258061][ T1] cpuidle: using governor menu [ 0.262948][ T1] Dove 88AP510 SoC [ 0.266538][ T1] Tauros2: Disabling L2 prefetch. [ 0.271441][ T1] Tauros2: Disabling burst8 line fill. [ 0.276738][ T1] Tauros2: Enabling L2 cache. [ 0.281285][ T1] Tauros2: L2 cache support initialised in ARMv7 mode. [ 0.288755][ T1] hw-breakpoint: debug architecture 0x4 unsupported. [ 0.488590][ T1] raid6: int32x8 gen() 164 MB/s [ 0.658614][ T1] raid6: int32x4 gen() 177 MB/s [ 0.828587][ T1] raid6: int32x2 gen() 335 MB/s [ 0.998622][ T1] raid6: int32x1 gen() 335 MB/s [ 1.003569][ T1] raid6: using algorithm int32x1 gen() 335 MB/s [ 1.178598][ T1] raid6: .... xor() 181 MB/s, rmw enabled [ 1.184153][ T1] raid6: using intx1 recovery algorithm [ 1.191431][ T1] SCSI subsystem initialized [ 1.196499][ T1] usbcore: registered new interface driver usbfs [ 1.202777][ T1] usbcore: registered new interface driver hub [ 1.208833][ T1] usbcore: registered new device driver usb [ 1.215048][ T1] pps_core: LinuxPPS API ver. 1 registered [ 1.220706][ T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.230531][ T1] PTP clock support registered [ 1.237941][ T1] vgaarb: loaded [ 1.242147][ T1] clocksource: Switched to clocksource orion_clocksource [ 1.255433][ T1] VFS: Disk quotas dquot_6.6.0 [ 1.260338][ T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 1.284167][ T1] NET: Registered PF_INET protocol family [ 1.290033][ T1] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.300725][ T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 1.310036][ T1] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 1.318515][ T1] TCP established hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 1.327087][ T1] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear) [ 1.336062][ T1] TCP: Hash tables configured (established 8192 bind 8192) [ 1.343707][ T1] MPTCP token hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 1.351950][ T1] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.359303][ T1] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.367692][ T1] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.374964][ T1] RPC: Registered named UNIX socket transport module. [ 1.381561][ T1] RPC: Registered udp transport module. [ 1.386965][ T1] RPC: Registered tcp transport module. [ 1.392361][ T1] RPC: Registered tcp-with-tls transport module. [ 1.398512][ T1] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.405681][ T1] PCI: CLS 0 bytes, default 64 [ 1.410671][ T12] Trying to unpack rootfs image as initramfs... [ 1.435912][ T1] Initialise system trusted keyrings [ 1.441138][ T1] Key type blacklist registered [ 1.464057][ T1] workingset: timestamp_bits=14 max_order=18 bucket_order=4 [ 1.471244][ T1] zbud: loaded [ 1.504681][ T1] NFS: Registering the id_resolver key type [ 1.510446][ T1] Key type id_resolver registered [ 1.532244][ T1] Key type id_legacy registered [ 1.537188][ T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.552215][ T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 1.962051][ T1] xor: measuring software checksum speed [ 1.989253][ T1] arm4regs : 1415 MB/sec [ 2.020740][ T1] 8regs : 1166 MB/sec [ 2.049798][ T1] 32regs : 1301 MB/sec [ 2.062230][ T1] xor: using function: arm4regs (1415 MB/sec) [ 2.068156][ T1] async_tx: api initialized (async) [ 2.082298][ T1] Key type asymmetric registered [ 2.087088][ T1] Asymmetric key parser 'x509' registered [ 2.102794][ T1] bounce: pool size: 64 pages [ 2.122314][ T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 2.130705][ T1] io scheduler bfq registered [ 2.148525][ T1] dove-pinctrl f10d0200.pin-ctrl: falling back to hardcoded PMU resource [ 2.172687][ T1] dove-pinctrl f10d0200.pin-ctrl: [Firmware Bug]: Missing pinctrl regs in DTB. Please update your firmware. [ 2.193111][ T1] dove-pinctrl f10d0200.pin-ctrl: registered pinctrl driver [ 2.214103][ T1] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 2.233770][ T1] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 2.253778][ T1] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 2.283568][ T1] mvebu-pcie mbus:pcie: host bridge /mbus/pcie ranges: [ 2.290331][ T1] mvebu-pcie mbus:pcie: MEM 0x00f1040000..0x00f1041fff -> 0x0000040000 [ 2.312341][ T1] mvebu-pcie mbus:pcie: MEM 0x00f1080000..0x00f1081fff -> 0x0000080000 [ 2.320879][ T1] mvebu-pcie mbus:pcie: MEM 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 2.352284][ T1] mvebu-pcie mbus:pcie: IO 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 2.361346][ T1] mvebu-pcie mbus:pcie: MEM 0xffffffffffffffff..0x00fffffffe -> 0x0200000000 [ 2.382218][ T1] mvebu-pcie mbus:pcie: IO 0xffffffffffffffff..0x00fffffffe -> 0x0200000000 [ 2.402769][ T1] mvebu-pcie mbus:pcie: PCI host bridge to bus 0000:00 [ 2.409468][ T1] pci_bus 0000:00: root bus resource [bus 00-ff] [ 2.432255][ T1] pci_bus 0000:00: root bus resource [mem 0xf1040000-0xf1041fff] (bus address [0x00040000-0x00041fff]) [ 2.452246][ T1] pci_bus 0000:00: root bus resource [mem 0xf1080000-0xf1081fff] (bus address [0x00080000-0x00081fff]) [ 2.472208][ T1] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 2.479767][ T1] pci_bus 0000:00: root bus resource [io 0x1000-0xeffff] [ 2.502457][ T1] pci 0000:00:01.0: [11ab:0510] type 01 class 0x060400 PCIe Root Port [ 2.510459][ T1] pci 0000:00:01.0: PCI bridge to [bus 00] [ 2.532278][ T1] pci 0000:00:01.0: bridge window [io 0x0000-0x0fff] [ 2.539066][ T1] pci 0000:00:01.0: bridge window [mem 0x00000000-0x000fffff] [ 2.563052][ T1] pci 0000:00:02.0: [11ab:0510] type 01 class 0x060400 PCIe Root Port [ 2.571059][ T1] pci 0000:00:02.0: PCI bridge to [bus 00] [ 2.592298][ T1] pci 0000:00:02.0: bridge window [io 0x0000-0x0fff] [ 2.599088][ T1] pci 0000:00:02.0: bridge window [mem 0x00000000-0x000fffff] [ 2.624446][ T1] PCI: bus0: Fast back to back transfers disabled [ 2.630721][ T1] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 2.652577][ T1] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 2.672821][ T1] PCI: bus1: Fast back to back transfers enabled [ 2.678996][ T1] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 2.702868][ T1] PCI: bus2: Fast back to back transfers enabled [ 2.709045][ T1] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02 [ 2.732234][ T1] pci 0000:00:01.0: PCI bridge to [bus 01] [ 2.737892][ T1] pci 0000:00:02.0: PCI bridge to [bus 02] [ 2.747290][ T12] Freeing initrd memory: 10064K [ 2.759383][ T1] mv_xor f1060800.dma-engine: Marvell shared XOR driver [ 2.824082][ T1] mv_xor f1060800.dma-engine: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 2.838096][ T1] mv_xor f1060900.dma-engine: Marvell shared XOR driver [ 2.904083][ T1] mv_xor f1060900.dma-engine: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 3.112693][ T1] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [ 3.128736][ T1] printk: legacy console [ttyS0] disabled [ 3.136550][ T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 28, base_baud = 10416666) is a 16550A [ 3.146506][ T1] printk: legacy console [ttyS0] enabled [ 3.146506][ T1] printk: legacy console [ttyS0] enabled [ 3.157845][ T1] printk: legacy bootconsole [earlycon0] disabled [ 3.157845][ T1] printk: legacy bootconsole [earlycon0] disabled [ 3.196166][ T1] f1012100.serial: ttyS1 at MMIO 0xf1012100 (irq = 29, base_baud = 10416666) is a 16550A [ 3.210826][ T1] sata_mv f10a0000.sata-host: slots 32 ports 1 [ 3.219659][ T1] scsi host0: sata_mv [ 3.224876][ T1] ata1: SATA max UDMA/133 irq 30 lpm-pol 0 [ 3.236119][ T1] 4 cmdlinepart partitions found on MTD device spi0.0 [ 3.243103][ T1] Creating 4 MTD partitions on "spi0.0": [ 3.248586][ T1] 0x000000000000-0x0000000c0000 : "u-boot" [ 3.255744][ T1] 0x0000000c0000-0x0000000c2000 : "uboot_env" [ 3.263104][ T1] 0x0000000c2000-0x0000000c4000 : "pu_env" [ 3.269943][ T1] 0x0000000c4000-0x0000000c6000 : "hp_env" [ 3.278099][ T1] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information. [ 3.286764][ T1] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. [ 3.332526][ T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 3.344540][ T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address f4:ce:46:25:a2:f5 [ 3.356119][ T1] usbcore: registered new interface driver smsc75xx [ 3.363313][ T1] orion-ehci f1050000.usb-host: EHCI Host Controller [ 3.369852][ T1] orion-ehci f1050000.usb-host: new USB bus registered, assigned bus number 1 [ 3.378886][ T1] orion-ehci f1050000.usb-host: irq 33, io mem 0xf1050000 [ 3.412166][ T1] orion-ehci f1050000.usb-host: USB 2.0 started, EHCI 1.00 [ 3.419637][ T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09 [ 3.428599][ T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.436512][ T1] usb usb1: Product: EHCI Host Controller [ 3.442064][ T1] usb usb1: Manufacturer: Linux 6.9.6-mvebu-tld-1 ehci_hcd [ 3.449142][ T1] usb usb1: SerialNumber: f1050000.usb-host [ 3.456008][ T1] hub 1-0:1.0: USB hub found [ 3.460812][ T1] hub 1-0:1.0: 1 port detected [ 3.466989][ T1] orion-ehci f1051000.usb-host: EHCI Host Controller [ 3.473628][ T1] orion-ehci f1051000.usb-host: new USB bus registered, assigned bus number 2 [ 3.482653][ T1] orion-ehci f1051000.usb-host: irq 34, io mem 0xf1051000 [ 3.512168][ T1] orion-ehci f1051000.usb-host: USB 2.0 started, EHCI 1.00 [ 3.519608][ T1] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09 [ 3.528579][ T1] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.536513][ T1] usb usb2: Product: EHCI Host Controller [ 3.542105][ T1] usb usb2: Manufacturer: Linux 6.9.6-mvebu-tld-1 ehci_hcd [ 3.549172][ T1] usb usb2: SerialNumber: f1051000.usb-host [ 3.556298][ T1] hub 2-0:1.0: USB hub found [ 3.560865][ T1] hub 2-0:1.0: 1 port detected [ 3.566845][ T1] usbcore: registered new interface driver usblp [ 3.574539][ T1] usbcore: registered new interface driver usb-storage [ 3.582458][ T1] mousedev: PS/2 mouse device common for all mice [ 3.594141][ T1] rtc-mv f10d8500.real-time-clock: registered as rtc0 [ 3.600765][ T1] rtc-mv f10d8500.real-time-clock: setting system clock to 2024-09-02T15:36:59 UTC (1725291419) [ 3.612740][ T1] i2c_dev: i2c /dev entries driver [ 3.618432][ T1] mv64xxx_i2c f1011000.i2c: can't get pinctrl, bus recovery not supported [ 3.631763][ T1] orion_wdt: Initial timeout 25 sec [ 3.638328][ T1] device-mapper: uevent: version 1.0.3 [ 3.644461][ T1] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev [ 3.654741][ T1] device-mapper: multipath round-robin: version 1.2.0 loaded [ 3.661947][ T1] device-mapper: multipath queue-length: version 0.2.0 loaded [ 3.669340][ T1] device-mapper: multipath service-time: version 0.3.0 loaded [ 3.676853][ T1] device-mapper: dm-log-userspace: version 1.3.0 loaded [ 3.685062][ T1] sdhci: Secure Digital Host Controller Interface driver [ 3.691915][ T1] sdhci: Copyright(c) Pierre Ossman [ 3.697519][ T1] sdhci-pltfm: SDHCI platform and OF driver helper [ 3.705586][ T1] marvell-cesa f1030000.crypto-engine: CESA device successfully registered [ 3.715286][ T1] hid: raw HID events driver (C) Jiri Kosina [ 3.722285][ T688] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl F300) [ 3.729562][ T1] usbcore: registered new interface driver usbhid [ 3.736060][ T688] ata1.00: ATA-7: JMicron, 100415, max UDMA/133 [ 3.742264][ T1] usbhid: USB HID core driver [ 3.746925][ T688] ata1.00: 946176 sectors, multi 1: LBA48 [ 3.754338][ T1] NET: Registered PF_INET6 protocol family [ 3.762250][ T7] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 3.769786][ T688] ata1.00: configured for UDMA/133 [ 3.775152][ T1] Segment Routing with IPv6 [ 3.779499][ T1] RPL Segment Routing with IPv6 [ 3.784870][ T10] scsi 0:0:0:0: Direct-Access ATA JMicron 15 PQ: 0 ANSI: 5 [ 3.794191][ T1] In-situ OAM (IOAM) with IPv6 [ 3.798930][ T1] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 3.807560][ T12] sd 0:0:0:0: [sda] 946176 512-byte logical blocks: (484 MB/462 MiB) [ 3.816598][ T12] sd 0:0:0:0: [sda] Write Protect is off [ 3.825361][ T1] NET: Registered PF_PACKET protocol family [ 3.831369][ T12] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 3.841303][ T1] 8021q: 802.1Q VLAN Support v1.8 [ 3.846461][ T1] Key type dns_resolver registered [ 3.851759][ T1] ThumbEE CPU extension supported. [ 3.857008][ T12] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes [ 3.865907][ T1] Registering SWP/SWPB emulation handler [ 3.871559][ T12] sda: sda1 [ 3.885074][ T12] sd 0:0:0:0: [sda] Attached SCSI disk [ 3.959464][ T1] registered taskstats version 1 [ 3.965850][ T1] Loading compiled-in X.509 certificates [ 3.992894][ T7] usb 1-1: New USB device found, idVendor=058f, idProduct=6254, bcdDevice= 1.00 [ 4.001776][ T7] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 4.018352][ T1] Key type .fscrypt registered [ 4.023081][ T1] Key type fscrypt-provisioning registered [ 4.028910][ T1] Key type big_key registered [ 4.034702][ T7] hub 1-1:1.0: USB hub found [ 4.039653][ T7] hub 1-1:1.0: 4 ports detected [ 4.207317][ T1] Key type encrypted registered [ 4.218745][ T1] clk: Disabling unused clocks [ 4.223565][ T1] PM: genpd: Disabling unused power domains [ 4.232460][ T1] Freeing unused kernel image (initmem) memory: 1024K [ 4.241296][ T1] Checked W+X mappings: passed, no W+X pages found [ 4.247790][ T1] Run /init as init process Loading, please wait... [ 4.372361][ T7] usb 1-1.2: new low-speed USB device number 3 using orion-ehci Starting version 241 [ 4.535786][ T7] usb 1-1.2: New USB device found, idVendor=0513, idProduct=0318, bcdDevice= 1.00 [ 4.562320][ T7] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 4.592312][ T7] input: HID 0513:0318 as /devices/platform/mbus/mbus:internal-regs/f1050000.usb-host/usb1/1-1/1-1.2/1-1.2:1.0/0003:0513:0318.0001/input/input0 [ 4.696978][ T7] hid-generic 0003:0513:0318.0001: input,hidraw0: USB HID v1.10 Keyboard [HID 0513:0318] on usb-f1050000.usb-host-1.2/input0 [ 4.745931][ T7] input: HID 0513:0318 Mouse as /devices/platform/mbus/mbus:internal-regs/f1050000.usb-host/usb1/1-1/1-1.2/1-1.2:1.1/0003:0513:0318.0002/input/input1 [ 4.805275][ T7] input: HID 0513:0318 Consumer Control as /devices/platform/mbus/mbus:internal-regs/f1050000.usb-host/usb1/1-1/1-1.2/1-1.2:1.1/0003:0513:0318.0002/input/input2 [ 4.922921][ T7] input: HID 0513:0318 System Control as /devices/platform/mbus/mbus:internal-regs/f1050000.usb-host/usb1/1-1/1-1.2/1-1.2:1.1/0003:0513:0318.0002/input/input3 [ 4.951905][ T7] hid-generic 0003:0513:0318.0002: input,hidraw1: USB HID v1.10 Mouse [HID 0513:0318] on usb-f1050000.usb-host-1.2/input1 [ 5.072269][ T7] usb 1-1.3: new high-speed USB device number 4 using orion-ehci [ 5.233383][ T7] usb 1-1.3: New USB device found, idVendor=8564, idProduct=1000, bcdDevice=10.75 [ 5.242459][ T7] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 5.250461][ T7] usb 1-1.3: Product: Mass Storage Device [ 5.256041][ T7] usb 1-1.3: Manufacturer: Jetflash [ 5.261080][ T7] usb 1-1.3: SerialNumber: F6A09181600009AE [ 5.268567][ T7] usb-storage 1-1.3:1.0: USB Mass Storage device detected [ 5.278477][ T7] scsi host1: usb-storage 1-1.3:1.0 [ 5.292443][ T1231] usbcore: registered new interface driver uas [ 5.902794][ T1231] i2c i2c-0: Added multiplexed i2c bus 1 [ 5.924667][ T1231] i2c i2c-0: Added multiplexed i2c bus 2 [ 5.987005][ T1231] i2c i2c-0: Added multiplexed i2c bus 3 [ 6.170653][ T1032] mmc0 bounce up to 128 segments into one, max segment size 65536 bytes [ 6.208023][ T10] mmc1 bounce up to 128 segments into one, max segment size 65536 bytes [ 6.217271][ T1032] mmc0: SDHCI controller on f1090000.sdio-host [f1090000.sdio-host] using DMA [ 6.270882][ T10] mmc1: SDHCI controller on f1092000.sdio-host [f1092000.sdio-host] using DMA [ 6.390199][ T10] scsi 1:0:0:0: Direct-Access Jetflash Transcend 16G 1.00 PQ: 0 ANSI: 6 [ 6.409798][ T39] sd 1:0:0:0: [sdb] 30845501 512-byte logical blocks: (15.8 GB/14.7 GiB) [ 6.422687][ T39] sd 1:0:0:0: [sdb] Write Protect is off [ 6.433829][ T39] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: disabled, doesn't support DPO or FUA [ 6.465890][ T39] sdb: sdb1 [ 6.469692][ T39] sd 1:0:0:0: [sdb] Attached SCSI removable disk Begin: Loading essential drivers ... done. Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Running /scripts/local-premount ... done. [ 17.879640][ T1258] process '/usr/bin/fstype' started with executable stack Begin: Will now check root file system ... fsck from util-linux 2.33.1 [/sbin/fsck.ext3 (1) -- /dev/sdb1] fsck.ext3 -a -C0 /dev/sdb1 rootfs: clean, 33623/964768 files, 527370/3855426 blocks done. [ 18.086533][ T1268] EXT4-fs (sdb1): mounting ext3 file system using the ext4 subsystem [ 18.157353][ T1268] EXT4-fs (sdb1): mounted filesystem 17778c96-5b02-4c98-9478-b6a9b3c9b45f ro with ordered data mode. Quota mode: none. done. Begin: Running /scripts/local-bottom ... done. Begin: Running /scripts/init-bottom ... done. INIT: version 2.93 booting [info] Using makefile-style concurrent boot in runlevel S. [ ok ] Starting hotplug events dispatcher: systemd-udevd. [ ok ] Synthesizing the initial hotplug events (subsystems)...done. [ ok ] Synthesizing the initial hotplug events (devices)...done. [....] Waiting for /dev to be fully populated...[ 22.206179][ T1472] systemd-udevd[1472]: Using default interface naming scheme 'v240'. [ 22.373704][ T1472] systemd-udevd[1472]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable. [ 23.471969][ T1469] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 23.506155][ T1469] sd 1:0:0:0: Attached scsi generic sg1 type 0 [ 24.275955][ T1459] systemd-udevd[1459]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable. [ 24.289580][ T1465] systemd-udevd[1465]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable. [ 24.309099][ T1475] systemd-udevd[1475]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable. [ 24.374081][ T1459] systemd-udevd[1459]: Could not generate persistent MAC address for ip6tnl0: No such file or directory done. [ ok ] Setting hostname to 'debian'...done. [ ok ] Activating swap:. [ 27.103116][ T1670] EXT4-fs (sdb1): re-mounted 17778c96-5b02-4c98-9478-b6a9b3c9b45f r/w. Quota mode: none. [ 28.052223][ C0] random: crng init done [info] Will now check all file systems. fsck from util-linux 2.33.1 Checking all file systems. LABEL=rootfs is mounted [ ok ] Done checking file systems. A log is being saved in /var/log/fsck/checkfs if that 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 ] Starting Setting kernel variables: sysctl. [ ok ] Initializing random number generator...done. [....] Configuring network interfaces...Internet Systems Consortium DHCP Client 4.4.1 Copyright 2004-2018 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Listening on LPF/eth0/f4:ce:46:25:a2:f5 Sending on LPF/eth0/f4:ce:46:25:a2:f5 Sending on Socket/fallback DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4 [ 33.658741][ C0] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 100 Mb/s, full duplex, flow control disabled [ 34.412174][ T62] lcd-power: disabling DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11 DHCPOFFER of 192.168.2.38 from 192.168.2.1 DHCPREQUEST for 192.168.2.38 on eth0 to 255.255.255.255 port 67 DHCPACK of 192.168.2.38 from 192.168.2.1 bound to 192.168.2.38 -- renewal in 10845 seconds. 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... 2416 (syslogd) . ok [....] Starting busybox' klogd implementation : klogdStarting /sbin/klogd... 2443 (klogd) . ok [warn] Not starting NFS kernel daemon: no exports. ... (warning). [ ok ] Starting periodic command scheduler: cron. [ ok ] Starting system message bus: dbus. [ ok ] Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon. [ ok ] Starting NTP server: ntpd. [ ok ] Starting OpenBSD Secure Shell server: sshd. [....] Running local boot scripts (/etc/rc.local)<13>Sep 2 08:37:39 root[2657]: Persistent MAC address already set F4:CE:46:25:A2:F5 . ok Debian GNU/Linux 10 debian ttyS0 debian login: root Password: Last login: Mon Sep 2 08:15:20 PDT 2024 from 192.168.2.66 on pts/0 Linux debian 6.9.6-mvebu-tld-1 #1 SMP PREEMPT Sat Jun 22 13:44:13 PDT 2024 armv7l The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. debian 192.168.2.38 HP Thin Client T5335z Linux version 6.9.6-mvebu-tld-1 (root@tldDebian) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT Sat Jun 22 13:44:13 PDT 2024 Debian 10.13 Mon 02 Sep 2024 08:37:45 AM PDT up 0 minutes root@debian:~# uname -a Linux debian 6.9.6-mvebu-tld-1 #1 SMP PREEMPT Sat Jun 22 13:44:13 PDT 2024 armv7l GNU/Linux root@debian:~#Seems to be a problem in Initrd.
Re: Debian on HP Thin Client T5335z September 02, 2024 10:45AM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 02, 2024 11:11AM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 03, 2024 12:18AM |
Admin Registered: 13 years ago Posts: 18,997 |
Re: Debian on HP Thin Client T5335z September 03, 2024 01:25AM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 03, 2024 06:40AM |
Admin Registered: 13 years ago Posts: 18,997 |
Re: Debian on HP Thin Client T5335z September 03, 2024 12:14PM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 05, 2024 11:29AM |
Registered: 2 months ago Posts: 16 |
fw_setenv set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 ${mtdparts} earlyprintk=serial', and after run command:
fw_printenv, I got result:
root@debian:~# fw_printenv Cannot read environment, using default Cannot read default environment from file
root@debian:~# cat /etc/fw_env.config # MTD device name Device offset Env. size Flash sector size Number of sectors /dev/mtd1 0x0000 0x2000 0x1000
Re: Debian on HP Thin Client T5335z September 05, 2024 12:36PM |
Registered: 2 years ago Posts: 2 |
Re: Debian on HP Thin Client T5335z September 05, 2024 12:38PM |
Admin Registered: 13 years ago Posts: 18,997 |
fw_setenv set_bootargs 'setenv > bootargs console=ttyS0,115200 root=LABEL=rootfs > rootdelay=10 ${mtdparts} > earlyprintk=serial'
Re: Debian on HP Thin Client T5335z September 05, 2024 12:39PM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 05, 2024 12:44PM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 06, 2024 10:14AM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 06, 2024 12:05PM |
Admin Registered: 13 years ago Posts: 18,997 |
Re: Debian on HP Thin Client T5335z September 06, 2024 03:47PM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 06, 2024 04:03PM |
Registered: 2 months ago Posts: 16 |
Re: Debian on HP Thin Client T5335z September 06, 2024 11:10PM |
Admin Registered: 13 years ago Posts: 18,997 |
[ 2.856695] 4 cmdlinepart partitions found on MTD device spi0.0 [ 2.863498] Creating 4 MTD partitions on "spi0.0": [ 2.868978] 0x000000000000-0x0000000c0000 : "u-boot" [ 2.876219] 0x0000000c0000-0x0000000c2000 : "uboot_env" [ 2.883469] 0x0000000c2000-0x0000000c4000 : "pu_env" [ 2.890339] 0x0000000c4000-0x0000000c6000 : "hp_env"
cat /proc/mtd cat /etc/fw_env.config fw_printenv
Re: Debian on HP Thin Client T5335z September 07, 2024 12:32AM |
Registered: 2 months ago Posts: 16 |
root@debian:~# cat /proc/mtd dev: size erasesize name mtd0: 000c0000 00001000 "u-boot" mtd1: 00002000 00001000 "uboot_env" mtd2: 00002000 00001000 "pu_env" mtd3: 00002000 00001000 "hp_env"
root@debian:~# cat /etc/fw_env.config # MTD device name Device offset Env. size Flash sector size Number of sectors /dev/mtd1 0x0000 0x2000 0x1000
root@debian:~# fw_printenv CASset=min MALLOC_len=5 arcNumber=1789 autoload=no baudrate=115200 bootargs_end=:::dove:eth0:none bootargs_root=root=/dev/nfs rw bootcmd=run thinpro bootdelay=0 bootusb=sleep 2;usb start;mw 0xf10a239c 0x4025;fatload usb 0:1 0x2000000 /boot/uImage.usb.mc2;fatload usb 0 0x3000000 /boot/uInitrd.usb.mc2 console=console=ttys0,115200 disL2Cache=no disL2Ecc=no disaMvPnp=no enaMonExt=no ethaddr=F4:CE:46:25:A2:F5 ethprime=egiga0 hpmode=setenv bootdelay 0;setenv in_mfg No;setenv bootcmd run thinpro; saveenv; reset image_name=uImage in_mfg=no ipaddr=10.4.50.165 lcd0_enable=0 lcd0_params=1280x768-16@60 lcd1_enable=1 lcd1_params=1024x768-16@60 loads_echo=0 mainlineLinux=yes mb_sn=00000000 mfg_bootargs=console=ttyS0,115200 vmalloc=384M root=/dev/sdb1 rw rootdelay=12 video=dovefb:lcd0:1024x768-24@60-edid,lcd1:1024x768-16@60-edid clcd.lcd0_enable=1 clcd.lcd1_enable=1 oldI2Cbus=1 cpufreq_disable=1 splash quiet mfgargs=setenv bootargs ${mtdparts} ${mfg_bootargs} init=/init mfgboot=sleep 2;usb start;mw 0xf10a239c 0x4025;ext2load usb 0:1 0x2000000 /boot/uImage;run mfgargs;bootm 0x2000000 mfgmode=setenv bootdelay 4; setenv in_mfg Yes; setenvh GotoWOL No; setenvh WOLEnabled No; setenv bootcmd run mfgboot; saveenv; reset mtdids=nor0=spi0.0 mtdparts=mtdparts=spi0.0:768k(u-boot),8k(uboot_env),8k(pu_env),8k(hp_env) netmask=255.255.255.0 passDramInitTag=yes rootpath=/mnt/ARM_FS/ sata_dma_mode=yes serverip=10.4.50.5 stderr=serial stdin=serial stdout=serial thinpro=ide reset;mw f10a239c 0x4025;ext2load ide 0:1 0x2000000 /boot/uImage; hprecover; setenv bootargs ${mtdparts} ${thinpro_bootargs}; bootm 0x2000000 thinpro_bootargs=root=/dev/sda1 rw init=/init vmalloc=384M video=dovefb oldI2Cbus=1 cpufreq_disable=1 splash quiet ub_mfgphase=0000000 usb0Mode=host usb1Mode=host usb_bootargs=root=/dev/ram video=dovefb oldI2Cbus=1 cpufreq_disable=1 usbboot=setenv bootargs ${mtdparts} ${usb_bootargs}; run bootusb; bootm 0x2000000 0x3000000 root@debian:~#
Re: Debian on HP Thin Client T5335z September 07, 2024 12:49AM |
Admin Registered: 13 years ago Posts: 18,997 |
[ 26.481994] orion_spi orion_spi.0: use polling mode [ 26.486969] m25p80 spi0.0: sst25vf080b (1024 Kbytes) [ 26.491932] 4 cmdlinepart partitions found on MTD device spi0.0 [ 26.497834] Creating 4 MTD partitions on "spi0.0": [ 26.502607] 0x000000000000-0x0000000c0000 : "u-boot" [ 26.507914] 0x0000000c0000-0x0000000c2000 : "uboot_env" [ 26.513408] 0x0000000c2000-0x0000000c4000 : "pu_env" [ 26.518665] 0x0000000c4000-0x0000000c6000 : "hp_env"
[ 2.836257][ T1] 4 cmdlinepart partitions found on MTD device spi0.0 [ 2.843107][ T1] Creating 4 MTD partitions on "spi0.0": [ 2.848587][ T1] 0x000000000000-0x0000000c0000 : "u-boot" [ 2.855751][ T1] 0x0000000c0000-0x0000000c2000 : "uboot_env" [ 2.863029][ T1] 0x0000000c2000-0x0000000c4000 : "pu_env" [ 2.869851][ T1] 0x0000000c4000-0x0000000c6000 : "hp_env"
Re: Debian on HP Thin Client T5335z September 07, 2024 10:12PM |
Registered: 2 months ago Posts: 16 |