Jump to content

Search the Community

Showing results for 'zero rca'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Armbian
    • Armbian project administration
  • Community
    • Announcements
    • SBC News
    • Framework and userspace feature requests
    • Off-topic
  • Using Armbian
    • Beginners
    • Software, Applications, Userspace
    • Advanced users - Development
  • Standard support
    • Amlogic meson
    • Allwinner sunxi
    • Rockchip
    • Other families
  • Community maintained / Staging
    • TV boxes
    • Amlogic meson
    • Allwinner sunxi
    • Marvell mvebu
    • Rockchip
    • Other families
  • Support

Product Groups

  • Misc
  • Support

Categories

  • Armbian
  • Armbian releases

Categories

  • Volunteering opportunities

Calendars

  • Community Calendar

Categories

  • Members

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Matrix


Mastodon


IRC


Website URL


XMPP/Jabber


Skype


Github


Discord


Location


Interests

  1. There was a time, 45 years ago when I was carving code for an rca 1802 with nothing but the rca programmers manual and a hex editor in a cosmac super elf, when I would have been in hog heaven at the prospect of such an offer But now I'm 88 and have mechanical things in my heart to keep my diabetic ticker running & keeping me going. So the info traded would likely be from you to me, which doesn't pay your net bills However, there one law no one can break, TANSTAAFL. And I don't do business with paypal since their delays in approving an ebay purchase 20 years ago cost the owner of the tv station I was at, playing consulting engineer ar the time, about $50,000 in lost revenue, Rig your donation page to take my mastercard and you will see a donation as soon as I discover I can use one of my cards to pay w/o having to move it thru paypal. In the meantime Igor, take care and stay well. Cheers, <gheskett@shentel.net>
  2. Well it took me longer than i hoped but i have managed to forward port icenowys code for TVE on the H2+/H3 to mainline armbian. It seems to work totally fine, with a few caveats. First: Sample images of it in action -> https://imgur.com/a/vXQEM Second: the patch itself -> https://github.com/stevenj/h3-tve/tree/v0.0.11 Third a prebuilt image for Orange Pi Zero: -> https://github.com/stevenj/h3-tve/releases/tag/v0.0.11 Howto: just put the patch into userpatches for the sunxi-next kernel, and build. it should apply cleanly. Its for H2+/H3. I have only tried it on a orange pi zero, but it should work on all H2+/H3 boards. You then need to edit /boot/armbianEnv.txt add tve to overlays to enable it. the driver will only run and enable tv out when the tv out devices are specifically enabled, so i created an overlay which does this. If you want to turn TV out off, just remove tve from the overlays line. My armbianEnv.txt overlays looks like this: overlays=usbhost2 usbhost3 tve If you want copious amounts of DRM debug info in your logs, add this as well: extraargs=drm.debug=0xF Its not needed, unless you really want the debug info. Notes: 1. The default mode is PAL, with 720x576 resolution. Thats outside of normal PAL displayable area, and so the screen overscans. I dont know how to correct this, although its mostly just annoying with terminals. I also don't know how to change the video mode to NTSC. 2. The standard font is a bit thin for composite video, and causes slight strobing and color impurity. Its because PAL needs pixels to be a certain MINIMUM width or color information can not be properly encoded. A way to resolve this is use : # apt-get install fbterm ... $ fbterm -s 20 This will run a terminal which is easy to change the font, and pick a bigger one. its much easier to read. Look at the help for fbterm to work out everything it can do. 3. I used the program "fim" to display the test images. there are others for doing stuff on the terminal. 4. I haven't tried X. I am not interested in running an X terminal on a TV, but it should probably work fine. Other than that it all seems good. I originally tested my hardware with the legacy kernel, and the image quality from this patch seems superior to what the legacy kernel produces. (legacy was noisy) The only other thing you need to know is Orange Pi Zero is missing filter circuity from its Composite Output, the most important thing you need to do is put a 50 ohm resistor between the signal and GND. i soldered one inside my RCA connector, it fits fine and isn't too difficult. IF you don't do this the image will bloom and look like total crap, so you have been warned. As this patch allows TVE to be enabled/disabled through use of the Device Tree overlays, i think it should be fine if the Armbian devs want to include it. I am happy to clean out some of the debug messages i added if they are interested in making a standard part of the build. If not, its easy enough to build your own image, just follow the guides on how to rebuild armbian. EDIT: I need to mention, all props go to Icenowy Zheng who wrote the original driver. I just tweaked the device tree stuff and got it in a state where it can apply cleanly to the armbian mainline kernel and build system. Original code is here: https://github.com/Icenowy/linux/tree/tve-v2
  3. Description OrangePi kernel patched to enable TV Output on OrangePi Zero (LTE). Changes made according: https://github.com/robertojguerra/orangepi-zero-full-setup/blob/main/README2.md 7.3 Add the TV encoder driver to the Linux kernel source sunxi-6.1/0036-wip-h3-h5-cvbs-armbian.patch : makes additions to the "dts", which tells the kernel where are the new devices. Adds kernel code to interact with the tv encoder. With my modifications, now it is applicable to Armbian (this patch came from the LibreElec github). sunxi-6.1/zzzz2-tv.patch : by Armbian user "gleam2003", adds directives to make sure that the dtbo (device tree binary overlay) is compiled sunxi-6.1/zzzz3-tv.patch : more additions to the "dts" and "dtsi" (like C include files), which I noticed were included in "yam" patch, but missing from the LibreElec patch All merged into one patch file arm-dts-sun8i-h3-orangepizero-add_tve.patch AR-1660 OrangePi Zero (LTS) TV output not working [PATCHing needed] How Has This Been Tested? Image compiled using: ./compile.sh BOARD=orangepizero BRANCH=current RELEASE=bullseye BUILD_MINIMAL=yes BUILD_DESKTOP=no KERNEL_CONFIGURE=no COMPRESS_OUTPUTIMAGE=sha,img Image flashed to SD card OrangePi Zero LTE booted with image TV Output checked on monitor with RCA video input Checklist: [ ] My code follows the style guidelines of this project [ ] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [ ] I have made corresponding changes to the documentation [ ] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  4. i have a project and i need to activate the vga output on my banapi m1. I searched the forum and found this link https://forum.armbian.com/topic/6292-banana-pi-enable-tv-outrca/ but I think it only applies to old kernel versions. The only reference I entered for these more recent versions was this https://docs.armbian.com/Hardware_Allwinner/#how-to-reconfigure-video-output but I don't know how to activate the video output Can someone help me? thank you
  5. No wifi detected on the orange pi zero 2 Same issue as : Hardware is supported. (https://www.armbian.com/orange-pi-zero-2/) Any help is appreciated, if i resolve the issue i will post the solution here. ubuntu@orangepizero2:~$ sudo nmcli device wifi rescan Error: No Wi-Fi device found. ubuntu@orangepizero2:~$ armbianmonitor -U 1 2 ### Activated 1 lzo-rle zram swap devices with 492MB each. 3 ### Activated Armbian ramlog partition with zstd compression 4 5 ### Activated lzo-rle compressed /tmp 6 7 ### Activated 1 lzo-rle zram swap devices with 492MB each. 8 ### Activated Armbian ramlog partition with zstd compression 9 10 ### Activated 1 lzo-rle zram swap devices with 492MB each. 11 ### Activated Armbian ramlog partition with zstd compression 12 13 Sat 22 Oct 2022 07:17:07 PM UTC | Orange Pi Zero2 | 22.08.6 | arm64 | aarch64 | 5.19.16-sunxi64 14 15 ### dmesg: 16 17 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 18 [ 0.000000] Linux version 5.19.16-sunxi64 (root@6d820ce0d5d6) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #22.08.6 SMP Tue Oct 18 06:56:22 UTC 2022 19 [ 0.000000] Machine model: OrangePi Zero2 20 [ 0.000000] NUMA: No NUMA configuration found 21 [ 0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x000000007fffffff] 22 [ 0.000000] NUMA: NODE_DATA [mem 0x7fdde040-0x7fddffff] 23 [ 0.000000] Zone ranges: 24 [ 0.000000] DMA [mem 0x0000000040000000-0x000000007fffffff] 25 [ 0.000000] DMA32 empty 26 [ 0.000000] Normal empty 27 [ 0.000000] Movable zone start for each node 28 [ 0.000000] Early memory node ranges 29 [ 0.000000] node 0: [mem 0x0000000040000000-0x000000004007ffff] 30 [ 0.000000] node 0: [mem 0x0000000040080000-0x000000007fffffff] 31 [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000007fffffff] 32 [ 0.000000] cma: Reserved 128 MiB at 0x0000000076c00000 33 [ 0.000000] psci: probing for conduit method from DT. 34 [ 0.000000] psci: PSCIv1.1 detected in firmware. 35 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 36 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 37 [ 0.000000] psci: SMC Calling Convention v1.2 38 [ 0.000000] percpu: Embedded 19 pages/cpu s37608 r8192 d32024 u77824 39 [ 0.000000] pcpu-alloc: s37608 r8192 d32024 u77824 alloc=19*4096 40 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 41 [ 0.000000] Detected VIPT I-cache on CPU0 42 [ 0.000000] CPU features: detected: ARM erratum 845719 43 [ 0.000000] Fallback order for Node 0: 0 44 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 258048 45 [ 0.000000] Policy zone: DMA 46 [ 0.000000] Kernel command line: root=UUID=0ae80c94-60cd-4b15-b7f3-065f13ca80b6 rootwait rootfstype=ext4 splash=verbose console=ttyS0,115200 consoleblank=0 loglevel=1 ubootpart=da74ae41-01 usb-storage.quirks=0x2537:0x1066:u,0x2537:0x1068:u cgroup_enable=memory swapaccount=1 47 [ 0.000000] Unknown kernel command line parameters "splash=verbose ubootpart=da74ae41-01 cgroup_enable=memory", will be passed to user space. 48 [ 0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes 49 [ 0.000000] printk: log_buf_len total cpu_extra contributions: 12288 bytes 50 [ 0.000000] printk: log_buf_len min size: 16384 bytes 51 [ 0.000000] printk: log_buf_len: 32768 bytes 52 [ 0.000000] printk: early log buf free: 14048(85%) 53 [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) 54 [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) 55 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off 56 [ 0.000000] Memory: 862824K/1048576K available (13888K kernel code, 1038K rwdata, 4112K rodata, 2496K init, 387K bss, 54680K reserved, 131072K cma-reserved) 57 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 58 [ 0.000000] rcu: Hierarchical RCU implementation. 59 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. 60 [ 0.000000] Tracing variant of Tasks RCU enabled. 61 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 62 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 63 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 64 [ 0.000000] Root IRQ handler: gic_handle_irq 65 [ 0.000000] GIC: Using split EOI/Deactivate mode 66 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. 67 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 68 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 69 [ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 70 [ 0.000389] Console: colour dummy device 80x25 71 [ 0.000474] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 72 [ 0.000487] pid_max: default: 32768 minimum: 301 73 [ 0.000559] LSM: Security Framework initializing 74 [ 0.000589] Yama: becoming mindful. 75 [ 0.000682] AppArmor: AppArmor initialized 76 [ 0.000781] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) 77 [ 0.000794] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) 78 [ 0.002411] cblist_init_generic: Setting adjustable number of callback queues. 79 [ 0.002430] cblist_init_generic: Setting shift to 2 and lim to 1. 80 [ 0.002596] rcu: Hierarchical SRCU implementation. 81 [ 0.002601] rcu: Max phase no-delay instances is 1000. 82 [ 0.003865] smp: Bringing up secondary CPUs ... 83 [ 0.004465] Detected VIPT I-cache on CPU1 84 [ 0.004544] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 85 [ 0.005165] Detected VIPT I-cache on CPU2 86 [ 0.005232] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 87 [ 0.005819] Detected VIPT I-cache on CPU3 88 [ 0.005884] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 89 [ 0.005980] smp: Brought up 1 node, 4 CPUs 90 [ 0.005989] SMP: Total of 4 processors activated. 91 [ 0.005994] CPU features: detected: 32-bit EL0 Support 92 [ 0.005999] CPU features: detected: CRC32 instructions 93 [ 0.006331] CPU: All CPU(s) started at EL2 94 [ 0.006349] alternatives: patching kernel code 95 [ 0.007762] devtmpfs: initialized 96 [ 0.012256] Registered cp15_barrier emulation handler 97 [ 0.012276] Registered setend emulation handler 98 [ 0.012464] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 99 [ 0.012483] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 100 [ 0.016804] pinctrl core: initialized pinctrl subsystem 101 [ 0.018088] NET: Registered PF_NETLINK/PF_ROUTE protocol family 102 [ 0.019476] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations 103 [ 0.019774] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 104 [ 0.019901] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 105 [ 0.019970] audit: initializing netlink subsys (disabled) 106 [ 0.020216] audit: type=2000 audit(0.020:1): state=initialized audit_enabled=0 res=1 107 [ 0.020729] thermal_sys: Registered thermal governor 'fair_share' 108 [ 0.020738] thermal_sys: Registered thermal governor 'bang_bang' 109 [ 0.020742] thermal_sys: Registered thermal governor 'step_wise' 110 [ 0.020745] thermal_sys: Registered thermal governor 'user_space' 111 [ 0.021227] cpuidle: using governor menu 112 [ 0.021451] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 113 [ 0.021564] ASID allocator initialised with 65536 entries 114 [ 0.021572] HugeTLB: can optimize 4095 vmemmap pages for hugepages-1048576kB 115 [ 0.021578] HugeTLB: can optimize 127 vmemmap pages for hugepages-32768kB 116 [ 0.021583] HugeTLB: can optimize 7 vmemmap pages for hugepages-2048kB 117 [ 0.021588] HugeTLB: can optimize 0 vmemmap pages for hugepages-64kB 118 [ 0.021781] Serial: AMBA PL011 UART driver 119 [ 0.035060] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 120 [ 0.035076] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 121 [ 0.035082] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 122 [ 0.035088] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 123 [ 0.035752] cryptd: max_cpu_qlen set to 1000 124 [ 0.104293] raid6: neonx8 gen() 1808 MB/s 125 [ 0.172368] raid6: neonx4 gen() 1851 MB/s 126 [ 0.240454] raid6: neonx2 gen() 1754 MB/s 127 [ 0.308518] raid6: neonx1 gen() 1519 MB/s 128 [ 0.376593] raid6: int64x8 gen() 1252 MB/s 129 [ 0.444673] raid6: int64x4 gen() 1398 MB/s 130 [ 0.512738] raid6: int64x2 gen() 1185 MB/s 131 [ 0.580818] raid6: int64x1 gen() 883 MB/s 132 [ 0.580823] raid6: using algorithm neonx4 gen() 1851 MB/s 133 [ 0.648882] raid6: .... xor() 1334 MB/s, rmw enabled 134 [ 0.648887] raid6: using neon recovery algorithm 135 [ 0.649809] iommu: Default domain type: Translated 136 [ 0.649822] iommu: DMA domain TLB invalidation policy: strict mode 137 [ 0.650106] SCSI subsystem initialized 138 [ 0.650318] usbcore: registered new interface driver usbfs 139 [ 0.650356] usbcore: registered new interface driver hub 140 [ 0.650391] usbcore: registered new device driver usb 141 [ 0.650677] pps_core: LinuxPPS API ver. 1 registered 142 [ 0.650682] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 143 [ 0.650695] PTP clock support registered 144 [ 0.651110] ARM FF-A: FFA_VERSION returned not supported 145 [ 0.651494] Advanced Linux Sound Architecture Driver Initialized. 146 [ 0.652150] NetLabel: Initializing 147 [ 0.652155] NetLabel: domain hash size = 128 148 [ 0.652160] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 149 [ 0.652222] NetLabel: unlabeled traffic allowed by default 150 [ 0.652226] mctp: management component transport protocol core 151 [ 0.652230] NET: Registered PF_MCTP protocol family 152 [ 0.652790] clocksource: Switched to clocksource arch_sys_counter 153 [ 0.653129] VFS: Disk quotas dquot_6.6.0 154 [ 0.653177] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 155 [ 0.653724] AppArmor: AppArmor Filesystem Enabled 156 [ 0.660572] NET: Registered PF_INET protocol family 157 [ 0.660799] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) 158 [ 0.662031] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) 159 [ 0.662060] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 160 [ 0.662072] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) 161 [ 0.662141] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear) 162 [ 0.662263] TCP: Hash tables configured (established 8192 bind 8192) 163 [ 0.662379] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) 164 [ 0.662413] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) 165 [ 0.662609] NET: Registered PF_UNIX/PF_LOCAL protocol family 166 [ 0.663166] Trying to unpack rootfs image as initramfs... 167 [ 0.669907] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 168 [ 0.671431] Initialise system trusted keyrings 169 [ 0.671526] Key type blacklist registered 170 [ 0.671814] workingset: timestamp_bits=44 max_order=18 bucket_order=0 171 [ 0.677497] zbud: loaded 172 [ 0.679166] squashfs: version 4.0 (2009/01/31) Phillip Lougher 173 [ 0.681807] integrity: Platform Keyring initialized 174 [ 0.725142] xor: automatically using best checksumming function 32regs 175 [ 0.725161] async_tx: api initialized (async) 176 [ 0.725170] Key type asymmetric registered 177 [ 0.725175] Asymmetric key parser 'x509' registered 178 [ 1.259655] Freeing initrd memory: 11500K 179 [ 1.278369] alg: self-tests for CTR-KDF (hmac(sha256)) passed 180 [ 1.278486] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 181 [ 1.278625] io scheduler mq-deadline registered 182 [ 1.278632] io scheduler kyber registered 183 [ 1.278776] io scheduler bfq registered 184 [ 1.284943] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 185 [ 1.288589] cacheinfo: Unable to detect cache hierarchy for CPU 0 186 [ 1.293332] loop: module loaded 187 [ 1.295068] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 188 [ 1.295092] ehci-platform: EHCI generic platform driver 189 [ 1.295189] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 190 [ 1.295201] ohci-platform: OHCI generic platform driver 191 [ 1.295472] usbcore: registered new interface driver usb-storage 192 [ 1.295915] mousedev: PS/2 mouse device common for all mice 193 [ 1.297025] sun6i-rtc 7000000.rtc: registered as rtc0 194 [ 1.297070] sun6i-rtc 7000000.rtc: setting system clock to 1970-01-02T00:00:04 UTC (86404) 195 [ 1.297188] sun6i-rtc 7000000.rtc: RTC enabled 196 [ 1.297299] i2c_dev: i2c /dev entries driver 197 [ 1.298050] sunxi-wdt 30090a0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 198 [ 1.299463] sdhci: Secure Digital Host Controller Interface driver 199 [ 1.299477] sdhci: Copyright(c) Pierre Ossman 200 [ 1.299500] Synopsys Designware Multimedia Card Interface Driver 201 [ 1.299908] sdhci-pltfm: SDHCI platform and OF driver helper 202 [ 1.300380] ledtrig-cpu: registered to indicate activity on CPUs 203 [ 1.300648] SMCCC: SOC_ID: ID = jep106:091e:1823 Revision = 0x00000000 204 [ 1.300974] hid: raw HID events driver (C) Jiri Kosina 205 [ 1.301092] usbcore: registered new interface driver usbhid 206 [ 1.301097] usbhid: USB HID core driver 207 [ 1.310566] NET: Registered PF_INET6 protocol family 208 [ 1.329283] Segment Routing with IPv6 209 [ 1.329362] In-situ OAM (IOAM) with IPv6 210 [ 1.329449] NET: Registered PF_PACKET protocol family 211 [ 1.329632] 8021q: 802.1Q VLAN Support v1.8 212 [ 1.329786] 9pnet: Installing 9P2000 support 213 [ 1.329869] Key type dns_resolver registered 214 [ 1.330413] registered taskstats version 1 215 [ 1.330438] Loading compiled-in X.509 certificates 216 [ 1.334214] Loaded X.509 cert 'Build time autogenerated kernel key: 05920f111eead6a51cb60d55d842ed91645758e7' 217 [ 1.336646] zswap: loaded using pool zstd/z3fold 218 [ 1.337295] Key type ._fscrypt registered 219 [ 1.337308] Key type .fscrypt registered 220 [ 1.337311] Key type fscrypt-provisioning registered 221 [ 1.338437] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 222 [ 1.338796] Key type encrypted registered 223 [ 1.338815] AppArmor: AppArmor sha1 policy hashing enabled 224 [ 1.338852] ima: No TPM chip found, activating TPM-bypass! 225 [ 1.338877] ima: Allocated hash algorithm: sha1 226 [ 1.338910] ima: No architecture policies found 227 [ 1.338958] evm: Initialising EVM extended attributes: 228 [ 1.338961] evm: security.selinux 229 [ 1.338965] evm: security.SMACK64 230 [ 1.338968] evm: security.SMACK64EXEC 231 [ 1.338972] evm: security.SMACK64TRANSMUTE 232 [ 1.338975] evm: security.SMACK64MMAP 233 [ 1.338978] evm: security.apparmor 234 [ 1.338981] evm: security.ima 235 [ 1.338984] evm: security.capability 236 [ 1.338987] evm: HMAC attrs: 0x1 237 [ 1.361280] sun50i-h616-pinctrl 300b000.pinctrl: initialized sunXi PIO driver 238 [ 1.362805] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator 239 [ 1.363482] printk: console [ttyS0] disabled 240 [ 1.363581] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 283, base_baud = 1500000) is a 16550A 241 [ 1.363788] printk: console [ttyS0] enabled 242 [ 1.364741] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-pc not found, using dummy regulator 243 [ 1.365178] sun6i-spi 5010000.spi: Failed to request TX DMA channel 244 [ 1.365194] sun6i-spi 5010000.spi: Failed to request RX DMA channel 245 [ 1.365793] spi-nor spi0.0: supply vdd not found, using dummy regulator 246 [ 1.380999] spi-nor spi0.0: mx25l1606e (2048 Kbytes) 247 [ 1.396823] sun50i-h616-r-pinctrl 7022000.pinctrl: initialized sunXi PIO driver 248 [ 1.398055] usb_phy_generic usb_phy_generic.1.auto: supply vcc not found, using dummy regulator 249 [ 1.398098] ehci-platform 5200000.usb: EHCI Host Controller 250 [ 1.398124] ehci-platform 5200000.usb: new USB bus registered, assigned bus number 1 251 [ 1.398236] usb_phy_generic usb_phy_generic.1.auto: dummy supplies not allowed for exclusive requests 252 [ 1.398261] ehci-platform 5200000.usb: irq 286, io mem 0x05200000 253 [ 1.400181] sun50i-h616-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator 254 [ 1.400483] ohci-platform 5200400.usb: Generic Platform OHCI controller 255 [ 1.400519] ohci-platform 5200400.usb: new USB bus registered, assigned bus number 2 256 [ 1.400667] sunxi-rsb 7083000.rsb: RSB running at 3000000 Hz 257 [ 1.400673] ohci-platform 5200400.usb: irq 288, io mem 0x05200400 258 [ 1.401040] axp20x-rsb sunxi-rsb-745: AXP20x variant AXP806 found 259 [ 1.405045] axp20x-rsb sunxi-rsb-745: AXP20X driver loaded 260 [ 1.406317] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator 261 [ 1.406342] ALSA device list: 262 [ 1.406350] No soundcards found. 263 [ 1.407353] sunxi-mmc 4020000.mmc: Got CD GPIO 264 [ 1.412817] ehci-platform 5200000.usb: USB 2.0 started, EHCI 1.00 265 [ 1.413138] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19 266 [ 1.413153] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 267 [ 1.413162] usb usb1: Product: EHCI Host Controller 268 [ 1.413170] usb usb1: Manufacturer: Linux 5.19.16-sunxi64 ehci_hcd 269 [ 1.413178] usb usb1: SerialNumber: 5200000.usb 270 [ 1.413755] hub 1-0:1.0: USB hub found 271 [ 1.413800] hub 1-0:1.0: 1 port detected 272 [ 1.432969] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 273 [ 1.461048] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19 274 [ 1.461072] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 275 [ 1.461082] usb usb2: Product: Generic Platform OHCI controller 276 [ 1.461089] usb usb2: Manufacturer: Linux 5.19.16-sunxi64 ohci_hcd 277 [ 1.461097] usb usb2: SerialNumber: 5200400.usb 278 [ 1.461685] hub 2-0:1.0: USB hub found 279 [ 1.461734] hub 2-0:1.0: 1 port detected 280 [ 1.463056] Freeing unused kernel memory: 2496K 281 [ 1.467747] mmc0: host does not support reading read-only switch, assuming write-enable 282 [ 1.469515] mmc0: Problem switching card into high-speed mode! 283 [ 1.469618] mmc0: new SDHC card at address 0001 284 [ 1.470529] mmcblk0: mmc0:0001 SD32G 28.9 GiB 285 [ 1.472739] mmcblk0: p1 286 [ 1.476876] Run /init as init process 287 [ 1.476893] with arguments: 288 [ 1.476900] /init 289 [ 1.476905] with environment: 290 [ 1.476910] HOME=/ 291 [ 1.476915] TERM=linux 292 [ 1.476920] splash=verbose 293 [ 1.476925] ubootpart=da74ae41-01 294 [ 1.476930] cgroup_enable=memory 295 [ 1.807499] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-pi not found, using dummy regulator 296 [ 1.807968] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found 297 [ 1.807993] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found 298 [ 1.808301] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator 299 [ 1.808535] dwmac-sun8i 5020000.ethernet: PTP uses main clock 300 [ 1.808574] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 51fe6 (expect 50000) 301 [ 1.809220] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported 302 [ 1.809246] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported 303 [ 1.809253] dwmac-sun8i 5020000.ethernet: COE Type 2 304 [ 1.809260] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported 305 [ 1.809268] dwmac-sun8i 5020000.ethernet: Normal descriptors 306 [ 1.809275] dwmac-sun8i 5020000.ethernet: Chain mode enabled 307 [ 1.812478] panfrost 1800000.gpu: clock rate = 432000000 308 [ 1.812527] panfrost 1800000.gpu: bus_clock rate = 200000000 309 [ 1.813390] panfrost 1800000.gpu: mali-g31 id 0x7093 major 0x0 minor 0x0 status 0x0 310 [ 1.813426] panfrost 1800000.gpu: features: 00000000,000017f7, issues: 00000000,00000400 311 [ 1.813437] panfrost 1800000.gpu: Features: L2:0x07100206 Shader:0x00000000 Tiler:0x00000209 Mem:0x1 MMU:0x00002821 AS:0xff JS:0x7 312 [ 1.813450] panfrost 1800000.gpu: shader_present=0x1 l2_present=0x1 313 [ 1.830174] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 0 314 [ 2.659071] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Quota mode: none. 315 [ 3.966156] systemd[1]: System time before build time, advancing clock. 316 [ 4.015834] systemd[1]: systemd 247.3-7+deb11u1 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) 317 [ 4.016480] systemd[1]: Detected architecture arm64. 318 [ 4.031496] systemd[1]: Set hostname to <orangepizero2>. 319 [ 4.829581] systemd[255]: /usr/lib/systemd/system-generators/netplan failed with exit status 1. 320 [ 5.132473] systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 321 [ 5.348678] systemd[1]: Queued start job for default target Graphical Interface. 322 [ 6.708793] random: crng init done 323 [ 6.712242] systemd[1]: Created slice system-getty.slice. 324 [ 6.714578] systemd[1]: Created slice system-modprobe.slice. 325 [ 6.716434] systemd[1]: Created slice system-serial\x2dgetty.slice. 326 [ 6.718014] systemd[1]: Created slice User and Session Slice. 327 [ 6.718672] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 328 [ 6.719929] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 329 [ 6.720683] systemd[1]: Reached target Slices. 330 [ 6.721061] systemd[1]: Reached target Swap. 331 [ 6.721320] systemd[1]: Reached target System Time Set. 332 [ 6.739291] systemd[1]: Listening on RPCbind Server Activation Socket. 333 [ 6.740382] systemd[1]: Listening on Syslog Socket. 334 [ 6.741454] systemd[1]: Listening on fsck to fsckd communication Socket. 335 [ 6.742157] systemd[1]: Listening on initctl Compatibility Named Pipe. 336 [ 6.743421] systemd[1]: Listening on Journal Audit Socket. 337 [ 6.744374] systemd[1]: Listening on Journal Socket (/dev/log). 338 [ 6.745608] systemd[1]: Listening on Journal Socket. 339 [ 6.748150] systemd[1]: Listening on udev Control Socket. 340 [ 6.749121] systemd[1]: Listening on udev Kernel Socket. 341 [ 6.754056] systemd[1]: Mounting Huge Pages File System... 342 [ 6.759276] systemd[1]: Mounting POSIX Message Queue File System... 343 [ 6.764546] systemd[1]: Mounting RPC Pipe File System... 344 [ 6.771087] systemd[1]: Mounting Kernel Debug File System... 345 [ 6.772220] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 346 [ 6.773263] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 347 [ 6.780753] systemd[1]: Starting Restore / save the current clock... 348 [ 6.786975] systemd[1]: Starting Set the console keyboard layout... 349 [ 6.792818] systemd[1]: Starting Create list of static device nodes for the current kernel... 350 [ 6.798764] systemd[1]: Starting Load Kernel Module configfs... 351 [ 6.805381] systemd[1]: Starting Load Kernel Module drm... 352 [ 6.812160] systemd[1]: Starting Load Kernel Module fuse... 353 [ 6.818731] systemd[1]: Started Nameserver information manager. 354 [ 6.821019] systemd[1]: Reached target Network (Pre). 355 [ 6.861101] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 356 [ 6.861401] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 357 [ 6.870018] RPC: Registered named UNIX socket transport module. 358 [ 6.870043] RPC: Registered udp transport module. 359 [ 6.870048] RPC: Registered tcp transport module. 360 [ 6.870052] RPC: Registered tcp NFSv4.1 backchannel transport module. 361 [ 6.893527] systemd[1]: Starting Load Kernel Modules... 362 [ 6.899288] systemd[1]: Starting Remount Root and Kernel File Systems... 363 [ 6.904641] systemd[1]: Starting Coldplug All udev Devices... 364 [ 6.915146] fuse: init (API version 7.36) 365 [ 6.918019] systemd[1]: Mounted Huge Pages File System. 366 [ 6.920098] systemd[1]: Mounted POSIX Message Queue File System. 367 [ 6.921636] systemd[1]: Mounted RPC Pipe File System. 368 [ 6.923139] systemd[1]: Mounted Kernel Debug File System. 369 [ 6.925729] systemd[1]: Finished Restore / save the current clock. 370 [ 6.929018] systemd[1]: Finished Create list of static device nodes for the current kernel. 371 [ 6.931957] systemd[1]: modprobe@configfs.service: Succeeded. 372 [ 6.934013] systemd[1]: Finished Load Kernel Module configfs. 373 [ 6.936879] systemd[1]: modprobe@drm.service: Succeeded. 374 [ 6.938858] systemd[1]: Finished Load Kernel Module drm. 375 [ 6.942215] systemd[1]: modprobe@fuse.service: Succeeded. 376 [ 6.943882] systemd[1]: Finished Load Kernel Module fuse. 377 [ 6.954571] systemd[1]: Mounting FUSE Control File System... 378 [ 6.960654] systemd[1]: Mounting Kernel Configuration File System... 379 [ 6.966095] systemd[1]: Finished Load Kernel Modules. 380 [ 6.974572] systemd[1]: Mounted FUSE Control File System. 381 [ 6.975841] systemd[1]: Mounted Kernel Configuration File System. 382 [ 6.982055] systemd[1]: Starting Apply Kernel Variables... 383 [ 6.985073] EXT4-fs (mmcblk0p1): re-mounted. Quota mode: none. 384 [ 6.992219] systemd[1]: Finished Remount Root and Kernel File Systems. 385 [ 7.024350] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. 386 [ 7.024729] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 387 [ 7.029927] systemd[1]: Starting Load/Save Random Seed... 388 [ 7.036305] systemd[1]: Starting Create System Users... 389 [ 7.072405] systemd[1]: Finished Apply Kernel Variables. 390 [ 7.102901] systemd[1]: Finished Load/Save Random Seed. 391 [ 7.104739] systemd[1]: Condition check resulted in First Boot Complete being skipped. 392 [ 7.120859] systemd[1]: Finished Create System Users. 393 [ 7.127195] systemd[1]: Starting Create Static Device Nodes in /dev... 394 [ 7.201420] systemd[1]: Finished Create Static Device Nodes in /dev. 395 [ 7.210641] systemd[1]: Starting Rule-based Manager for Device Events and Files... 396 [ 7.325546] systemd[1]: Finished Set the console keyboard layout. 397 [ 7.326680] systemd[1]: Reached target Local File Systems (Pre). 398 [ 7.333121] systemd[1]: Mounting /tmp... 399 [ 7.346543] systemd[1]: Mounted /tmp. 400 [ 7.347567] systemd[1]: Reached target Local File Systems. 401 [ 7.353092] systemd[1]: Starting Armbian leds state... 402 [ 7.358758] systemd[1]: Starting Armbian ZRAM config... 403 [ 7.364567] systemd[1]: Starting Set console font and keymap... 404 [ 7.371542] systemd[1]: Starting Preprocess NFS configuration... 405 [ 7.380738] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... 406 [ 7.381532] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 407 [ 7.381937] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 408 [ 7.383796] systemd[1]: Started Rule-based Manager for Device Events and Files. 409 [ 7.391704] systemd[1]: Finished Coldplug All udev Devices. 410 [ 7.410488] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 411 [ 7.416974] systemd[1]: Starting Show Plymouth Boot Screen... 412 [ 7.424206] systemd[1]: nfs-config.service: Succeeded. 413 [ 7.426541] systemd[1]: Finished Preprocess NFS configuration. 414 [ 7.428139] systemd[1]: Condition check resulted in RPC security service for NFS client and server being skipped. 415 [ 7.428288] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 416 [ 7.428410] systemd[1]: Reached target NFS client services. 417 [ 7.441295] systemd[1]: Finished Set console font and keymap. 418 [ 7.466334] systemd[1]: Received SIGRTMIN+20 from PID 215 (plymouthd). 419 [ 7.513797] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 420 [ 7.522256] systemd[1]: Starting Raise network interfaces... 421 [ 7.527756] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. 422 [ 7.572859] systemd[1]: Started Show Plymouth Boot Screen. 423 [ 7.574842] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 424 [ 7.575854] systemd[1]: Started Forward Password Requests to Plymouth Directory Watch. 425 [ 7.576318] systemd[1]: Reached target Local Encrypted Volumes. 426 [ 7.576749] systemd[1]: Reached target Paths. 427 [ 7.611280] systemd[1]: Finished Armbian leds state. 428 [ 7.760275] systemd[1]: Found device /dev/ttyS0. 429 [ 7.901050] systemd[1]: Reached target Hardware activated USB gadget. 430 [ 7.969034] mc: Linux media interface: v0.10 431 [ 8.044065] videodev: Linux video capture interface: v2.00 432 [ 8.350568] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. 433 [ 8.352685] cedrus 1c0e000.video-codec: Device registered as /dev/video0 434 [ 8.378582] zram: Added device: zram0 435 [ 8.380544] zram: Added device: zram1 436 [ 8.381898] zram: Added device: zram2 437 [ 8.542259] zram0: detected capacity change from 0 to 1007896 438 [ 8.566239] systemd[1]: Finished Raise network interfaces. 439 [ 8.582567] Adding 503944k swap on /dev/zram0. Priority:5 extents:1 across:503944k SSFS 440 [ 8.804624] zram1: detected capacity change from 0 to 102400 441 [ 8.896180] systemd[1]: Finished Armbian ZRAM config. 442 [ 8.901609] systemd[1]: Starting Armbian memory supported logging... 443 [ 8.985388] EXT4-fs (zram1): mounted filesystem without journal. Quota mode: none. 444 [ 8.985439] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 445 [ 11.776447] systemd[1]: Finished Armbian memory supported logging. 446 [ 11.785039] systemd[1]: Starting Journal Service... 447 [ 11.996335] systemd[1]: Started Journal Service. 448 [ 12.041159] systemd-journald[528]: Received client request to flush runtime journal. 449 [ 12.055902] systemd-journald[528]: File /var/log/journal/0591d2673a8840eb8c934f5eaf48cb73/system.journal corrupted or uncleanly shut down, renaming and replacing. 450 451 ### armbian-release: 452 453 # PLEASE DO NOT EDIT THIS FILE 454 BOARD=orangepizero2 455 BOARD_NAME="Orange Pi Zero2" 456 BOARDFAMILY=sun50iw9 457 BUILD_REPOSITORY_URL=https://github.com/armbian/build 458 BUILD_REPOSITORY_COMMIT=aa881a6ecd6 459 VERSION=22.08.6 460 LINUXFAMILY=sunxi64 461 ARCH=arm64 462 IMAGE_TYPE=stable 463 BOARD_TYPE=conf 464 INITRD_ARCH=arm64 465 KERNEL_IMAGE_TYPE=stable 466 BRANCH=edge 467 468 ### boot environment: 469 470 verbosity=1 471 bootlogo=false 472 console=serial 473 disp_mode=1920x1080p60 474 rootdev=UUID=0ae80c94-60cd-4b15-b7f3-065f13ca80b6 475 rootfstype=ext4 476 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 477 478 479 ### lsusb: 480 481 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 482 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 483 484 ### lscpu: 485 486 Architecture: aarch64 487 CPU op-mode(s): 32-bit, 64-bit 488 Byte Order: Little Endian 489 CPU(s): 4 490 On-line CPU(s) list: 0-3 491 Thread(s) per core: 1 492 Core(s) per socket: 4 493 Socket(s): 1 494 NUMA node(s): 1 495 Vendor ID: ARM 496 Model: 4 497 Model name: Cortex-A53 498 Stepping: r0p4 499 BogoMIPS: 48.00 500 NUMA node0 CPU(s): 0-3 501 Vulnerability Itlb multihit: Not affected 502 Vulnerability L1tf: Not affected 503 Vulnerability Mds: Not affected 504 Vulnerability Meltdown: Not affected 505 Vulnerability Mmio stale data: Not affected 506 Vulnerability Retbleed: Not affected 507 Vulnerability Spec store bypass: Not affected 508 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 509 Vulnerability Spectre v2: Not affected 510 Vulnerability Srbds: Not affected 511 Vulnerability Tsx async abort: Not affected 512 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 513 514 ### cpuinfo: 515 516 processor : 0 517 BogoMIPS : 48.00 518 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 519 CPU implementer : 0x41 520 CPU architecture: 8 521 CPU variant : 0x0 522 CPU part : 0xd03 523 CPU revision : 4 524 525 processor : 1 526 BogoMIPS : 48.00 527 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 528 CPU implementer : 0x41 529 CPU architecture: 8 530 CPU variant : 0x0 531 CPU part : 0xd03 532 CPU revision : 4 533 534 processor : 2 535 BogoMIPS : 48.00 536 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 537 CPU implementer : 0x41 538 CPU architecture: 8 539 CPU variant : 0x0 540 CPU part : 0xd03 541 CPU revision : 4 542 543 processor : 3 544 BogoMIPS : 48.00 545 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 546 CPU implementer : 0x41 547 CPU architecture: 8 548 CPU variant : 0x0 549 CPU part : 0xd03 550 CPU revision : 4 551 552 553 ### meminfo: 554 555 MemTotal: 1007892 kB 556 MemFree: 871400 kB 557 MemAvailable: 867688 kB 558 Buffers: 10336 kB 559 Cached: 45300 kB 560 SwapCached: 0 kB 561 Active: 26520 kB 562 Inactive: 38512 kB 563 Active(anon): 252 kB 564 Inactive(anon): 12548 kB 565 Active(file): 26268 kB 566 Inactive(file): 25964 kB 567 Unevictable: 2876 kB 568 Mlocked: 0 kB 569 SwapTotal: 503944 kB 570 SwapFree: 503944 kB 571 Zswap: 0 kB 572 Zswapped: 0 kB 573 Dirty: 1072 kB 574 Writeback: 4 kB 575 AnonPages: 12368 kB 576 Mapped: 15732 kB 577 Shmem: 428 kB 578 KReclaimable: 7924 kB 579 Slab: 26968 kB 580 SReclaimable: 7924 kB 581 SUnreclaim: 19044 kB 582 KernelStack: 1992 kB 583 PageTables: 1204 kB 584 NFS_Unstable: 0 kB 585 Bounce: 0 kB 586 WritebackTmp: 0 kB 587 CommitLimit: 1007888 kB 588 Committed_AS: 37120 kB 589 VmallocTotal: 133143592960 kB 590 VmallocUsed: 19192 kB 591 VmallocChunk: 0 kB 592 Percpu: 1168 kB 593 AnonHugePages: 0 kB 594 ShmemHugePages: 0 kB 595 ShmemPmdMapped: 0 kB 596 FileHugePages: 0 kB 597 FilePmdMapped: 0 kB 598 CmaTotal: 131072 kB 599 CmaFree: 130688 kB 600 HugePages_Total: 0 601 HugePages_Free: 0 602 HugePages_Rsvd: 0 603 HugePages_Surp: 0 604 Hugepagesize: 2048 kB 605 Hugetlb: 0 kB 606 607 ### virtual memory: 608 609 vm.admin_reserve_kbytes = 8192 610 vm.compaction_proactiveness = 20 611 vm.compact_unevictable_allowed = 1 612 vm.dirty_background_bytes = 0 613 vm.dirty_background_ratio = 10 614 vm.dirty_bytes = 0 615 vm.dirty_expire_centisecs = 3000 616 vm.dirty_ratio = 20 617 vm.dirtytime_expire_seconds = 43200 618 vm.dirty_writeback_centisecs = 500 619 vm.extfrag_threshold = 500 620 vm.hugetlb_optimize_vmemmap = 0 621 vm.hugetlb_shm_group = 0 622 vm.laptop_mode = 0 623 vm.legacy_va_layout = 0 624 vm.lowmem_reserve_ratio = 256 256 32 0 625 vm.max_map_count = 65530 626 vm.min_free_kbytes = 22528 627 vm.min_slab_ratio = 5 628 vm.min_unmapped_ratio = 1 629 vm.mmap_min_addr = 4096 630 vm.mmap_rnd_bits = 18 631 vm.mmap_rnd_compat_bits = 11 632 vm.nr_hugepages = 0 633 vm.nr_hugepages_mempolicy = 0 634 vm.nr_overcommit_hugepages = 0 635 vm.numa_stat = 1 636 vm.numa_zonelist_order = Node 637 vm.oom_dump_tasks = 1 638 vm.oom_kill_allocating_task = 0 639 vm.overcommit_kbytes = 0 640 vm.overcommit_memory = 0 641 vm.overcommit_ratio = 50 642 vm.page-cluster = 0 643 vm.page_lock_unfairness = 5 644 vm.panic_on_oom = 0 645 vm.percpu_pagelist_high_fraction = 0 646 vm.stat_interval = 1 647 vm.swappiness = 100 648 vm.user_reserve_kbytes = 30913 649 vm.vfs_cache_pressure = 100 650 vm.watermark_boost_factor = 15000 651 vm.watermark_scale_factor = 10 652 vm.zone_reclaim_mode = 0 653 654 ### ip addr: 655 656 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 657 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 658 inet XXX.XXX.0.1/8 scope host lo 659 valid_lft forever preferred_lft forever 660 inet6 ::1/128 scope host 661 valid_lft forever preferred_lft forever 662 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 663 link/ether 02:00:62:71:18:3b brd ff:ff:ff:ff:ff:ff 664 665 ### partitions: 666 667 major minor #blocks name 668 669 31 0 2048 mtdblock0 670 179 0 30263296 mmcblk0 671 179 1 29945856 mmcblk0p1 672 252 0 503948 zram0 673 252 1 51200 zram1 674 675 ### df: 676 677 udev 422M 0 422M 0% /dev 678 tmpfs 99M 428K 99M 1% /run 679 /dev/mmcblk0p1 29G 1.5G 27G 6% / 680 tmpfs 493M 0 493M 0% /dev/shm 681 tmpfs 5.0M 0 5.0M 0% /run/lock 682 tmpfs 493M 4.0K 493M 1% /tmp 683 /dev/zram1 49M 688K 45M 2% /var/log 684 685 ### lsblk: 686 687 NAME FSTYPE SIZE MOUNTPOINT UUID 688 mtdblock0 2M 689 mmcblk0 28.9G 690 └─mmcblk0p1 ext4 28.6G / 0ae80c94-60cd-4b15-b7f3-065f13ca80b6 691 zram1 50M /var/log 692 693 ### zramctl: 694 695 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 696 /dev/zram1 zstd 50M 732K 115.4K 400K 4 /var/log 697 /dev/zram0 lzo-rle 492.1M 4K 73B 12K 4 [SWAP] 698 699 ### mtab: 700 701 /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 702 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 703 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 704 705 ### mmc0:0001 info: 706 707 fwrev: 0x0 708 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SD32G MODALIAS=mmc:block 709 cid: 27504853443332476000000596015bf1 710 rca: 0x0001 711 csd: 400e00325b590000e6e37f800a4000c9 712 manfid: 0x000027 713 ocr: 0x00200000 714 preferred_erase_size: 4194304 715 type: SD 716 hwrev: 0x6 717 date: 11/2021 718 dsr: 0x404 719 erase_size: 512 720 oemid: 0x5048 721 serial: 0x00000596 722 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 723 scr: 0285808200000000 724 name: SD32G 725 726 ### Boot system health: 727 728 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 729 19:17:09: --- 0.15 47% 18% 12% 0% 15% 0% 41.0 °C 730 19:17:10: --- 1.02 96% 38% 45% 0% 12% 0% 41.0 °C 731 19:17:10: --- 1.02 97% 20% 34% 0% 42% 0% 41.9 °C 732 19:17:10: --- 1.02 79% 9% 7% 0% 62% 0% 41.9 °C 733 19:17:11: --- 1.02 93% 17% 31% 0% 44% 0% 41.1 °C 734 735 ### Activated 1 lzo-rle zram swap devices with 492MB each. 736 ### Activated Armbian ramlog partition with zstd compression 737 738 ### Activated 1 lzo-rle zram swap devices with 492MB each. 739 ### Activated Armbian ramlog partition with zstd compression 740 741 Fri 11 Nov 2022 06:33:04 PM EST | Orange Pi Zero2 | 22.08.6 | arm64 | aarch64 | 5.19.16-sunxi64 742 743 ### dmesg: 744 745 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 746 [ 0.000000] Linux version 5.19.16-sunxi64 (root@6d820ce0d5d6) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #22.08.6 SMP Tue Oct 18 06:56:22 UTC 2022 747 [ 0.000000] Machine model: OrangePi Zero2 748 [ 0.000000] NUMA: No NUMA configuration found 749 [ 0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x000000007fffffff] 750 [ 0.000000] NUMA: NODE_DATA [mem 0x7fdde040-0x7fddffff] 751 [ 0.000000] Zone ranges: 752 [ 0.000000] DMA [mem 0x0000000040000000-0x000000007fffffff] 753 [ 0.000000] DMA32 empty 754 [ 0.000000] Normal empty 755 [ 0.000000] Movable zone start for each node 756 [ 0.000000] Early memory node ranges 757 [ 0.000000] node 0: [mem 0x0000000040000000-0x000000004007ffff] 758 [ 0.000000] node 0: [mem 0x0000000040080000-0x000000007fffffff] 759 [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000007fffffff] 760 [ 0.000000] cma: Reserved 128 MiB at 0x0000000076c00000 761 [ 0.000000] psci: probing for conduit method from DT. 762 [ 0.000000] psci: PSCIv1.1 detected in firmware. 763 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 764 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 765 [ 0.000000] psci: SMC Calling Convention v1.2 766 [ 0.000000] percpu: Embedded 19 pages/cpu s37608 r8192 d32024 u77824 767 [ 0.000000] pcpu-alloc: s37608 r8192 d32024 u77824 alloc=19*4096 768 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 769 [ 0.000000] Detected VIPT I-cache on CPU0 770 [ 0.000000] CPU features: detected: ARM erratum 845719 771 [ 0.000000] Fallback order for Node 0: 0 772 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 258048 773 [ 0.000000] Policy zone: DMA 774 [ 0.000000] Kernel command line: root=UUID=0ae80c94-60cd-4b15-b7f3-065f13ca80b6 rootwait rootfstype=ext4 splash=verbose console=ttyS0,115200 consoleblank=0 loglevel=1 ubootpart=da74ae41-01 usb-storage.quirks=0x2537:0x1066:u,0x2537:0x1068:u cgroup_enable=memory swapaccount=1 775 [ 0.000000] Unknown kernel command line parameters "splash=verbose ubootpart=da74ae41-01 cgroup_enable=memory", will be passed to user space. 776 [ 0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes 777 [ 0.000000] printk: log_buf_len total cpu_extra contributions: 12288 bytes 778 [ 0.000000] printk: log_buf_len min size: 16384 bytes 779 [ 0.000000] printk: log_buf_len: 32768 bytes 780 [ 0.000000] printk: early log buf free: 14048(85%) 781 [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) 782 [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) 783 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off 784 [ 0.000000] Memory: 862824K/1048576K available (13888K kernel code, 1038K rwdata, 4112K rodata, 2496K init, 387K bss, 54680K reserved, 131072K cma-reserved) 785 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 786 [ 0.000000] rcu: Hierarchical RCU implementation. 787 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. 788 [ 0.000000] Tracing variant of Tasks RCU enabled. 789 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 790 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 791 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 792 [ 0.000000] Root IRQ handler: gic_handle_irq 793 [ 0.000000] GIC: Using split EOI/Deactivate mode 794 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. 795 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 796 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 797 [ 0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 798 [ 0.000388] Console: colour dummy device 80x25 799 [ 0.000473] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 800 [ 0.000486] pid_max: default: 32768 minimum: 301 801 [ 0.000559] LSM: Security Framework initializing 802 [ 0.000589] Yama: becoming mindful. 803 [ 0.000682] AppArmor: AppArmor initialized 804 [ 0.000777] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) 805 [ 0.000790] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) 806 [ 0.002405] cblist_init_generic: Setting adjustable number of callback queues. 807 [ 0.002423] cblist_init_generic: Setting shift to 2 and lim to 1. 808 [ 0.002589] rcu: Hierarchical SRCU implementation. 809 [ 0.002593] rcu: Max phase no-delay instances is 1000. 810 [ 0.003874] smp: Bringing up secondary CPUs ... 811 [ 0.004476] Detected VIPT I-cache on CPU1 812 [ 0.004556] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 813 [ 0.005174] Detected VIPT I-cache on CPU2 814 [ 0.005242] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 815 [ 0.005827] Detected VIPT I-cache on CPU3 816 [ 0.005889] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 817 [ 0.005986] smp: Brought up 1 node, 4 CPUs 818 [ 0.005995] SMP: Total of 4 processors activated. 819 [ 0.006000] CPU features: detected: 32-bit EL0 Support 820 [ 0.006004] CPU features: detected: CRC32 instructions 821 [ 0.006339] CPU: All CPU(s) started at EL2 822 [ 0.006356] alternatives: patching kernel code 823 [ 0.007765] devtmpfs: initialized 824 [ 0.012263] Registered cp15_barrier emulation handler 825 [ 0.012283] Registered setend emulation handler 826 [ 0.012470] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 827 [ 0.012489] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 828 [ 0.016819] pinctrl core: initialized pinctrl subsystem 829 [ 0.018104] NET: Registered PF_NETLINK/PF_ROUTE protocol family 830 [ 0.019497] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations 831 [ 0.019800] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 832 [ 0.019924] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 833 [ 0.019996] audit: initializing netlink subsys (disabled) 834 [ 0.020237] audit: type=2000 audit(0.020:1): state=initialized audit_enabled=0 res=1 835 [ 0.020743] thermal_sys: Registered thermal governor 'fair_share' 836 [ 0.020751] thermal_sys: Registered thermal governor 'bang_bang' 837 [ 0.020755] thermal_sys: Registered thermal governor 'step_wise' 838 [ 0.020758] thermal_sys: Registered thermal governor 'user_space' 839 [ 0.021240] cpuidle: using governor menu 840 [ 0.021463] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 841 [ 0.021571] ASID allocator initialised with 65536 entries 842 [ 0.021579] HugeTLB: can optimize 4095 vmemmap pages for hugepages-1048576kB 843 [ 0.021585] HugeTLB: can optimize 127 vmemmap pages for hugepages-32768kB 844 [ 0.021590] HugeTLB: can optimize 7 vmemmap pages for hugepages-2048kB 845 [ 0.021595] HugeTLB: can optimize 0 vmemmap pages for hugepages-64kB 846 [ 0.021794] Serial: AMBA PL011 UART driver 847 [ 0.035091] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 848 [ 0.035108] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 849 [ 0.035114] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 850 [ 0.035120] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 851 [ 0.035785] cryptd: max_cpu_qlen set to 1000 852 [ 0.104313] raid6: neonx8 gen() 1807 MB/s 853 [ 0.172391] raid6: neonx4 gen() 1854 MB/s 854 [ 0.240468] raid6: neonx2 gen() 1754 MB/s 855 [ 0.308540] raid6: neonx1 gen() 1519 MB/s 856 [ 0.376603] raid6: int64x8 gen() 1251 MB/s 857 [ 0.444689] raid6: int64x4 gen() 1398 MB/s 858 [ 0.512761] raid6: int64x2 gen() 1185 MB/s 859 [ 0.580834] raid6: int64x1 gen() 882 MB/s 860 [ 0.580839] raid6: using algorithm neonx4 gen() 1854 MB/s 861 [ 0.648901] raid6: .... xor() 1334 MB/s, rmw enabled 862 [ 0.648906] raid6: using neon recovery algorithm 863 [ 0.649823] iommu: Default domain type: Translated 864 [ 0.649836] iommu: DMA domain TLB invalidation policy: strict mode 865 [ 0.650119] SCSI subsystem initialized 866 [ 0.650332] usbcore: registered new interface driver usbfs 867 [ 0.650369] usbcore: registered new interface driver hub 868 [ 0.650404] usbcore: registered new device driver usb 869 [ 0.650687] pps_core: LinuxPPS API ver. 1 registered 870 [ 0.650692] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 871 [ 0.650706] PTP clock support registered 872 [ 0.651113] ARM FF-A: FFA_VERSION returned not supported 873 [ 0.651494] Advanced Linux Sound Architecture Driver Initialized. 874 [ 0.652156] NetLabel: Initializing 875 [ 0.652161] NetLabel: domain hash size = 128 876 [ 0.652165] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 877 [ 0.652227] NetLabel: unlabeled traffic allowed by default 878 [ 0.652231] mctp: management component transport protocol core 879 [ 0.652235] NET: Registered PF_MCTP protocol family 880 [ 0.652813] clocksource: Switched to clocksource arch_sys_counter 881 [ 0.653150] VFS: Disk quotas dquot_6.6.0 882 [ 0.653198] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 883 [ 0.653747] AppArmor: AppArmor Filesystem Enabled 884 [ 0.660579] NET: Registered PF_INET protocol family 885 [ 0.660819] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) 886 [ 0.662051] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) 887 [ 0.662081] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 888 [ 0.662093] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) 889 [ 0.662161] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear) 890 [ 0.662283] TCP: Hash tables configured (established 8192 bind 8192) 891 [ 0.662400] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) 892 [ 0.662433] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) 893 [ 0.662625] NET: Registered PF_UNIX/PF_LOCAL protocol family 894 [ 0.663180] Trying to unpack rootfs image as initramfs... 895 [ 0.669928] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 896 [ 0.671452] Initialise system trusted keyrings 897 [ 0.671538] Key type blacklist registered 898 [ 0.671825] workingset: timestamp_bits=44 max_order=18 bucket_order=0 899 [ 0.677514] zbud: loaded 900 [ 0.679183] squashfs: version 4.0 (2009/01/31) Phillip Lougher 901 [ 0.681832] integrity: Platform Keyring initialized 902 [ 0.724930] xor: automatically using best checksumming function 32regs 903 [ 0.724952] async_tx: api initialized (async) 904 [ 0.724963] Key type asymmetric registered 905 [ 0.724969] Asymmetric key parser 'x509' registered 906 [ 1.259380] Freeing initrd memory: 11500K 907 [ 1.277965] alg: self-tests for CTR-KDF (hmac(sha256)) passed 908 [ 1.278073] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 909 [ 1.278215] io scheduler mq-deadline registered 910 [ 1.278222] io scheduler kyber registered 911 [ 1.278365] io scheduler bfq registered 912 [ 1.284387] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 913 [ 1.288025] cacheinfo: Unable to detect cache hierarchy for CPU 0 914 [ 1.292675] loop: module loaded 915 [ 1.294543] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 916 [ 1.294568] ehci-platform: EHCI generic platform driver 917 [ 1.294662] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 918 [ 1.294676] ohci-platform: OHCI generic platform driver 919 [ 1.294945] usbcore: registered new interface driver usb-storage 920 [ 1.295386] mousedev: PS/2 mouse device common for all mice 921 [ 1.296412] sun6i-rtc 7000000.rtc: registered as rtc0 922 [ 1.296452] sun6i-rtc 7000000.rtc: setting system clock to 1970-01-02T00:00:04 UTC (86404) 923 [ 1.296557] sun6i-rtc 7000000.rtc: RTC enabled 924 [ 1.296660] i2c_dev: i2c /dev entries driver 925 [ 1.297482] sunxi-wdt 30090a0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 926 [ 1.298867] sdhci: Secure Digital Host Controller Interface driver 927 [ 1.298881] sdhci: Copyright(c) Pierre Ossman 928 [ 1.298903] Synopsys Designware Multimedia Card Interface Driver 929 [ 1.299332] sdhci-pltfm: SDHCI platform and OF driver helper 930 [ 1.299801] ledtrig-cpu: registered to indicate activity on CPUs 931 [ 1.300061] SMCCC: SOC_ID: ID = jep106:091e:1823 Revision = 0x00000000 932 [ 1.300349] hid: raw HID events driver (C) Jiri Kosina 933 [ 1.300447] usbcore: registered new interface driver usbhid 934 [ 1.300452] usbhid: USB HID core driver 935 [ 1.310100] NET: Registered PF_INET6 protocol family 936 [ 1.328711] Segment Routing with IPv6 937 [ 1.328821] In-situ OAM (IOAM) with IPv6 938 [ 1.328910] NET: Registered PF_PACKET protocol family 939 [ 1.329086] 8021q: 802.1Q VLAN Support v1.8 940 [ 1.329243] 9pnet: Installing 9P2000 support 941 [ 1.329329] Key type dns_resolver registered 942 [ 1.329889] registered taskstats version 1 943 [ 1.329912] Loading compiled-in X.509 certificates 944 [ 1.333699] Loaded X.509 cert 'Build time autogenerated kernel key: 05920f111eead6a51cb60d55d842ed91645758e7' 945 [ 1.336164] zswap: loaded using pool zstd/z3fold 946 [ 1.336754] Key type ._fscrypt registered 947 [ 1.336765] Key type .fscrypt registered 948 [ 1.336769] Key type fscrypt-provisioning registered 949 [ 1.337921] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 950 [ 1.338336] Key type encrypted registered 951 [ 1.338357] AppArmor: AppArmor sha1 policy hashing enabled 952 [ 1.338395] ima: No TPM chip found, activating TPM-bypass! 953 [ 1.338421] ima: Allocated hash algorithm: sha1 954 [ 1.338466] ima: No architecture policies found 955 [ 1.338513] evm: Initialising EVM extended attributes: 956 [ 1.338516] evm: security.selinux 957 [ 1.338520] evm: security.SMACK64 958 [ 1.338523] evm: security.SMACK64EXEC 959 [ 1.338526] evm: security.SMACK64TRANSMUTE 960 [ 1.338530] evm: security.SMACK64MMAP 961 [ 1.338533] evm: security.apparmor 962 [ 1.338536] evm: security.ima 963 [ 1.338539] evm: security.capability 964 [ 1.338542] evm: HMAC attrs: 0x1 965 [ 1.360713] sun50i-h616-pinctrl 300b000.pinctrl: initialized sunXi PIO driver 966 [ 1.362320] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator 967 [ 1.362984] printk: console [ttyS0] disabled 968 [ 1.363069] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 283, base_baud = 1500000) is a 16550A 969 [ 1.363265] printk: console [ttyS0] enabled 970 [ 1.364125] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-pc not found, using dummy regulator 971 [ 1.364461] sun6i-spi 5010000.spi: Failed to request TX DMA channel 972 [ 1.364472] sun6i-spi 5010000.spi: Failed to request RX DMA channel 973 [ 1.365096] spi-nor spi0.0: supply vdd not found, using dummy regulator 974 [ 1.381032] spi-nor spi0.0: mx25l1606e (2048 Kbytes) 975 [ 1.397028] sun50i-h616-r-pinctrl 7022000.pinctrl: initialized sunXi PIO driver 976 [ 1.398320] ehci-platform 5200000.usb: EHCI Host Controller 977 [ 1.398345] usb_phy_generic usb_phy_generic.1.auto: supply vcc not found, using dummy regulator 978 [ 1.398360] ehci-platform 5200000.usb: new USB bus registered, assigned bus number 1 979 [ 1.398475] usb_phy_generic usb_phy_generic.1.auto: dummy supplies not allowed for exclusive requests 980 [ 1.398483] ehci-platform 5200000.usb: irq 286, io mem 0x05200000 981 [ 1.400439] sun50i-h616-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator 982 [ 1.400869] ohci-platform 5200400.usb: Generic Platform OHCI controller 983 [ 1.400910] ohci-platform 5200400.usb: new USB bus registered, assigned bus number 2 984 [ 1.400979] sunxi-rsb 7083000.rsb: RSB running at 3000000 Hz 985 [ 1.401024] ohci-platform 5200400.usb: irq 288, io mem 0x05200400 986 [ 1.401305] axp20x-rsb sunxi-rsb-745: AXP20x variant AXP806 found 987 [ 1.405182] axp20x-rsb sunxi-rsb-745: AXP20X driver loaded 988 [ 1.406465] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator 989 [ 1.406504] ALSA device list: 990 [ 1.406512] No soundcards found. 991 [ 1.407495] sunxi-mmc 4020000.mmc: Got CD GPIO 992 [ 1.412821] ehci-platform 5200000.usb: USB 2.0 started, EHCI 1.00 993 [ 1.413117] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19 994 [ 1.413133] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 995 [ 1.413142] usb usb1: Product: EHCI Host Controller 996 [ 1.413149] usb usb1: Manufacturer: Linux 5.19.16-sunxi64 ehci_hcd 997 [ 1.413157] usb usb1: SerialNumber: 5200000.usb 998 [ 1.413737] hub 1-0:1.0: USB hub found 999 [ 1.413791] hub 1-0:1.0: 1 port detected 1000 [ 1.433106] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1001 [ 1.465043] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19 1002 [ 1.465069] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1003 [ 1.465079] usb usb2: Product: Generic Platform OHCI controller 1004 [ 1.465087] usb usb2: Manufacturer: Linux 5.19.16-sunxi64 ohci_hcd 1005 [ 1.465094] usb usb2: SerialNumber: 5200400.usb 1006 [ 1.465672] hub 2-0:1.0: USB hub found 1007 [ 1.465721] hub 2-0:1.0: 1 port detected 1008 [ 1.467038] Freeing unused kernel memory: 2496K 1009 [ 1.467836] mmc0: host does not support reading read-only switch, assuming write-enable 1010 [ 1.469607] mmc0: Problem switching card into high-speed mode! 1011 [ 1.469722] mmc0: new SDHC card at address 0001 1012 [ 1.470630] mmcblk0: mmc0:0001 SD32G 28.9 GiB 1013 [ 1.472694] mmcblk0: p1 1014 [ 1.480880] Run /init as init process 1015 [ 1.480900] with arguments: 1016 [ 1.480907] /init 1017 [ 1.480912] with environment: 1018 [ 1.480917] HOME=/ 1019 [ 1.480922] TERM=linux 1020 [ 1.480927] splash=verbose 1021 [ 1.480932] ubootpart=da74ae41-01 1022 [ 1.480937] cgroup_enable=memory 1023 [ 1.840883] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-pi not found, using dummy regulator 1024 [ 1.841316] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found 1025 [ 1.841340] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found 1026 [ 1.841692] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator 1027 [ 1.842000] dwmac-sun8i 5020000.ethernet: PTP uses main clock 1028 [ 1.842063] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 51fe6 (expect 50000) 1029 [ 1.846392] panfrost 1800000.gpu: clock rate = 432000000 1030 [ 1.846436] panfrost 1800000.gpu: bus_clock rate = 200000000 1031 [ 1.846926] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported 1032 [ 1.846951] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported 1033 [ 1.846959] dwmac-sun8i 5020000.ethernet: COE Type 2 1034 [ 1.846968] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported 1035 [ 1.846976] dwmac-sun8i 5020000.ethernet: Normal descriptors 1036 [ 1.846982] dwmac-sun8i 5020000.ethernet: Chain mode enabled 1037 [ 1.850548] panfrost 1800000.gpu: mali-g31 id 0x7093 major 0x0 minor 0x0 status 0x0 1038 [ 1.850592] panfrost 1800000.gpu: features: 00000000,000017f7, issues: 00000000,00000400 1039 [ 1.850603] panfrost 1800000.gpu: Features: L2:0x07100206 Shader:0x00000000 Tiler:0x00000209 Mem:0x1 MMU:0x00002821 AS:0xff JS:0x7 1040 [ 1.850615] panfrost 1800000.gpu: shader_present=0x1 l2_present=0x1 1041 [ 1.857125] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 0 1042 [ 2.698073] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Quota mode: none. 1043 [ 4.091151] systemd[1]: System time before build time, advancing clock. 1044 [ 4.140950] systemd[1]: systemd 247.3-7+deb11u1 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) 1045 [ 4.141618] systemd[1]: Detected architecture arm64. 1046 [ 4.157085] systemd[1]: Set hostname to <orangepizero2>. 1047 [ 4.938803] systemd[255]: /usr/lib/systemd/system-generators/netplan failed with exit status 1. 1048 [ 5.240894] systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 1049 [ 5.456090] systemd[1]: Queued start job for default target Graphical Interface. 1050 [ 6.800801] random: crng init done 1051 [ 6.804255] systemd[1]: Created slice system-getty.slice. 1052 [ 6.806559] systemd[1]: Created slice system-modprobe.slice. 1053 [ 6.808408] systemd[1]: Created slice system-serial\x2dgetty.slice. 1054 [ 6.809997] systemd[1]: Created slice User and Session Slice. 1055 [ 6.810656] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 1056 [ 6.811902] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 1057 [ 6.812642] systemd[1]: Reached target Slices. 1058 [ 6.813004] systemd[1]: Reached target Swap. 1059 [ 6.813277] systemd[1]: Reached target System Time Set. 1060 [ 6.831442] systemd[1]: Listening on RPCbind Server Activation Socket. 1061 [ 6.832531] systemd[1]: Listening on Syslog Socket. 1062 [ 6.833598] systemd[1]: Listening on fsck to fsckd communication Socket. 1063 [ 6.834270] systemd[1]: Listening on initctl Compatibility Named Pipe. 1064 [ 6.835523] systemd[1]: Listening on Journal Audit Socket. 1065 [ 6.836480] systemd[1]: Listening on Journal Socket (/dev/log). 1066 [ 6.837681] systemd[1]: Listening on Journal Socket. 1067 [ 6.840507] systemd[1]: Listening on udev Control Socket. 1068 [ 6.841487] systemd[1]: Listening on udev Kernel Socket. 1069 [ 6.846376] systemd[1]: Mounting Huge Pages File System... 1070 [ 6.851622] systemd[1]: Mounting POSIX Message Queue File System... 1071 [ 6.857000] systemd[1]: Mounting RPC Pipe File System... 1072 [ 6.863557] systemd[1]: Mounting Kernel Debug File System... 1073 [ 6.864750] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 1074 [ 6.865743] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 1075 [ 6.874264] systemd[1]: Starting Restore / save the current clock... 1076 [ 6.880499] systemd[1]: Starting Set the console keyboard layout... 1077 [ 6.886191] systemd[1]: Starting Create list of static device nodes for the current kernel... 1078 [ 6.892105] systemd[1]: Starting Load Kernel Module configfs... 1079 [ 6.899060] systemd[1]: Starting Load Kernel Module drm... 1080 [ 6.906236] systemd[1]: Starting Load Kernel Module fuse... 1081 [ 6.912337] systemd[1]: Started Nameserver information manager. 1082 [ 6.914121] systemd[1]: Reached target Network (Pre). 1083 [ 6.953370] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 1084 [ 6.953629] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 1085 [ 6.962301] RPC: Registered named UNIX socket transport module. 1086 [ 6.962325] RPC: Registered udp transport module. 1087 [ 6.962330] RPC: Registered tcp transport module. 1088 [ 6.962334] RPC: Registered tcp NFSv4.1 backchannel transport module. 1089 [ 6.985174] systemd[1]: Starting Load Kernel Modules... 1090 [ 6.990748] systemd[1]: Starting Remount Root and Kernel File Systems... 1091 [ 6.996198] systemd[1]: Starting Coldplug All udev Devices... 1092 [ 7.007572] fuse: init (API version 7.36) 1093 [ 7.010404] systemd[1]: Mounted Huge Pages File System. 1094 [ 7.012317] systemd[1]: Mounted POSIX Message Queue File System. 1095 [ 7.013956] systemd[1]: Mounted RPC Pipe File System. 1096 [ 7.015239] systemd[1]: Mounted Kernel Debug File System. 1097 [ 7.017889] systemd[1]: Finished Restore / save the current clock. 1098 [ 7.020875] systemd[1]: Finished Create list of static device nodes for the current kernel. 1099 [ 7.023030] systemd[1]: modprobe@configfs.service: Succeeded. 1100 [ 7.024406] systemd[1]: Finished Load Kernel Module configfs. 1101 [ 7.026682] systemd[1]: modprobe@drm.service: Succeeded. 1102 [ 7.028198] systemd[1]: Finished Load Kernel Module drm. 1103 [ 7.031261] systemd[1]: modprobe@fuse.service: Succeeded. 1104 [ 7.033449] systemd[1]: Finished Load Kernel Module fuse. 1105 [ 7.043000] systemd[1]: Mounting FUSE Control File System... 1106 [ 7.048534] systemd[1]: Mounting Kernel Configuration File System... 1107 [ 7.054017] systemd[1]: Finished Load Kernel Modules. 1108 [ 7.064287] systemd[1]: Mounted FUSE Control File System. 1109 [ 7.065935] systemd[1]: Mounted Kernel Configuration File System. 1110 [ 7.072476] systemd[1]: Starting Apply Kernel Variables... 1111 [ 7.096997] EXT4-fs (mmcblk0p1): re-mounted. Quota mode: none. 1112 [ 7.104404] systemd[1]: Finished Remount Root and Kernel File Systems. 1113 [ 7.114106] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. 1114 [ 7.114483] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 1115 [ 7.119873] systemd[1]: Starting Load/Save Random Seed... 1116 [ 7.126176] systemd[1]: Starting Create System Users... 1117 [ 7.156972] systemd[1]: Finished Apply Kernel Variables. 1118 [ 7.192934] systemd[1]: Finished Load/Save Random Seed. 1119 [ 7.194158] systemd[1]: Condition check resulted in First Boot Complete being skipped. 1120 [ 7.218789] systemd[1]: Finished Create System Users. 1121 [ 7.225388] systemd[1]: Starting Create Static Device Nodes in /dev... 1122 [ 7.299084] systemd[1]: Finished Create Static Device Nodes in /dev. 1123 [ 7.308153] systemd[1]: Starting Rule-based Manager for Device Events and Files... 1124 [ 7.418174] systemd[1]: Finished Set the console keyboard layout. 1125 [ 7.419418] systemd[1]: Reached target Local File Systems (Pre). 1126 [ 7.425709] systemd[1]: Mounting /tmp... 1127 [ 7.429129] systemd[1]: Finished Coldplug All udev Devices. 1128 [ 7.437192] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 1129 [ 7.442963] systemd[1]: Mounted /tmp. 1130 [ 7.444107] systemd[1]: Reached target Local File Systems. 1131 [ 7.449648] systemd[1]: Starting Armbian leds state... 1132 [ 7.454895] systemd[1]: Starting Armbian ZRAM config... 1133 [ 7.461389] systemd[1]: Starting Set console font and keymap... 1134 [ 7.466960] systemd[1]: Starting Preprocess NFS configuration... 1135 [ 7.473497] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... 1136 [ 7.474034] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 1137 [ 7.474348] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 1138 [ 7.477359] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 1139 [ 7.483800] systemd[1]: Starting Raise network interfaces... 1140 [ 7.514473] systemd[1]: Finished Set console font and keymap. 1141 [ 7.516491] systemd[1]: nfs-config.service: Succeeded. 1142 [ 7.518580] systemd[1]: Finished Preprocess NFS configuration. 1143 [ 7.519575] systemd[1]: Condition check resulted in RPC security service for NFS client and server being skipped. 1144 [ 7.519669] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 1145 [ 7.519756] systemd[1]: Reached target NFS client services. 1146 [ 7.538000] systemd[1]: Received SIGRTMIN+20 from PID 214 (plymouthd). 1147 [ 7.548028] systemd[1]: Started Rule-based Manager for Device Events and Files. 1148 [ 7.552320] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. 1149 [ 7.559561] systemd[1]: Starting Show Plymouth Boot Screen... 1150 [ 7.676959] systemd[1]: Started Show Plymouth Boot Screen. 1151 [ 7.685667] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 1152 [ 7.686706] systemd[1]: Started Forward Password Requests to Plymouth Directory Watch. 1153 [ 7.688656] systemd[1]: Reached target Local Encrypted Volumes. 1154 [ 7.690569] systemd[1]: Reached target Paths. 1155 [ 7.759697] systemd[1]: Finished Armbian leds state. 1156 [ 7.915450] systemd[1]: Found device /dev/ttyS0. 1157 [ 8.065058] systemd[1]: Reached target Hardware activated USB gadget. 1158 [ 8.117080] mc: Linux media interface: v0.10 1159 [ 8.190232] videodev: Linux video capture interface: v2.00 1160 [ 8.514625] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. 1161 [ 8.516822] cedrus 1c0e000.video-codec: Device registered as /dev/video0 1162 [ 8.545282] zram: Added device: zram0 1163 [ 8.546185] zram: Added device: zram1 1164 [ 8.547900] zram: Added device: zram2 1165 [ 8.624553] systemd[1]: Finished Raise network interfaces. 1166 [ 8.682138] zram0: detected capacity change from 0 to 1007896 1167 [ 8.720060] Adding 503944k swap on /dev/zram0. Priority:5 extents:1 across:503944k SSFS 1168 [ 8.945381] zram1: detected capacity change from 0 to 102400 1169 [ 9.037309] systemd[1]: Finished Armbian ZRAM config. 1170 [ 9.042681] systemd[1]: Starting Armbian memory supported logging... 1171 [ 9.126907] EXT4-fs (zram1): mounted filesystem without journal. Quota mode: none. 1172 [ 9.126956] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 1173 [ 11.975541] systemd[1]: Finished Armbian memory supported logging. 1174 [ 11.984136] systemd[1]: Starting Journal Service... 1175 [ 12.185043] systemd[1]: Started Journal Service. 1176 [ 12.230126] systemd-journald[528]: Received client request to flush runtime journal. 1177 [ 12.256905] systemd-journald[528]: File /var/log/journal/0591d2673a8840eb8c934f5eaf48cb73/system.journal corrupted or uncleanly shut down, renaming and replacing. 1178 1179 ### armbian-release: 1180 1181 # PLEASE DO NOT EDIT THIS FILE 1182 BOARD=orangepizero2 1183 BOARD_NAME="Orange Pi Zero2" 1184 BOARDFAMILY=sun50iw9 1185 BUILD_REPOSITORY_URL=https://github.com/armbian/build 1186 BUILD_REPOSITORY_COMMIT=aa881a6ecd6 1187 VERSION=22.08.6 1188 LINUXFAMILY=sunxi64 1189 ARCH=arm64 1190 IMAGE_TYPE=stable 1191 BOARD_TYPE=conf 1192 INITRD_ARCH=arm64 1193 KERNEL_IMAGE_TYPE=stable 1194 BRANCH=edge 1195 1196 ### boot environment: 1197 1198 verbosity=1 1199 bootlogo=false 1200 console=serial 1201 disp_mode=1920x1080p60 1202 rootdev=UUID=0ae80c94-60cd-4b15-b7f3-065f13ca80b6 1203 rootfstype=ext4 1204 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 1205 1206 ### lsusb: 1207 1208 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 1209 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1210 1211 ### lscpu: 1212 1213 Architecture: aarch64 1214 CPU op-mode(s): 32-bit, 64-bit 1215 Byte Order: Little Endian 1216 CPU(s): 4 1217 On-line CPU(s) list: 0-3 1218 Thread(s) per core: 1 1219 Core(s) per socket: 4 1220 Socket(s): 1 1221 NUMA node(s): 1 1222 Vendor ID: ARM 1223 Model: 4 1224 Model name: Cortex-A53 1225 Stepping: r0p4 1226 BogoMIPS: 48.00 1227 NUMA node0 CPU(s): 0-3 1228 Vulnerability Itlb multihit: Not affected 1229 Vulnerability L1tf: Not affected 1230 Vulnerability Mds: Not affected 1231 Vulnerability Meltdown: Not affected 1232 Vulnerability Mmio stale data: Not affected 1233 Vulnerability Retbleed: Not affected 1234 Vulnerability Spec store bypass: Not affected 1235 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 1236 Vulnerability Spectre v2: Not affected 1237 Vulnerability Srbds: Not affected 1238 Vulnerability Tsx async abort: Not affected 1239 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1240 1241 ### cpuinfo: 1242 1243 processor : 0 1244 BogoMIPS : 48.00 1245 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1246 CPU implementer : 0x41 1247 CPU architecture: 8 1248 CPU variant : 0x0 1249 CPU part : 0xd03 1250 CPU revision : 4 1251 1252 processor : 1 1253 BogoMIPS : 48.00 1254 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1255 CPU implementer : 0x41 1256 CPU architecture: 8 1257 CPU variant : 0x0 1258 CPU part : 0xd03 1259 CPU revision : 4 1260 1261 processor : 2 1262 BogoMIPS : 48.00 1263 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1264 CPU implementer : 0x41 1265 CPU architecture: 8 1266 CPU variant : 0x0 1267 CPU part : 0xd03 1268 CPU revision : 4 1269 1270 processor : 3 1271 BogoMIPS : 48.00 1272 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1273 CPU implementer : 0x41 1274 CPU architecture: 8 1275 CPU variant : 0x0 1276 CPU part : 0xd03 1277 CPU revision : 4 1278 1279 1280 ### meminfo: 1281 1282 MemTotal: 1007892 kB 1283 MemFree: 871392 kB 1284 MemAvailable: 866872 kB 1285 Buffers: 10216 kB 1286 Cached: 43648 kB 1287 SwapCached: 0 kB 1288 Active: 26260 kB 1289 Inactive: 37236 kB 1290 Active(anon): 260 kB 1291 Inactive(anon): 12552 kB 1292 Active(file): 26000 kB 1293 Inactive(file): 24684 kB 1294 Unevictable: 2876 kB 1295 Mlocked: 0 kB 1296 SwapTotal: 503944 kB 1297 SwapFree: 503944 kB 1298 Zswap: 0 kB 1299 Zswapped: 0 kB 1300 Dirty: 1620 kB 1301 Writeback: 4 kB 1302 AnonPages: 12564 kB 1303 Mapped: 14340 kB 1304 Shmem: 404 kB 1305 KReclaimable: 7856 kB 1306 Slab: 26796 kB 1307 SReclaimable: 7856 kB 1308 SUnreclaim: 18940 kB 1309 KernelStack: 1960 kB 1310 PageTables: 1080 kB 1311 NFS_Unstable: 0 kB 1312 Bounce: 0 kB 1313 WritebackTmp: 0 kB 1314 CommitLimit: 1007888 kB 1315 Committed_AS: 38148 kB 1316 VmallocTotal: 133143592960 kB 1317 VmallocUsed: 19016 kB 1318 VmallocChunk: 0 kB 1319 Percpu: 1120 kB 1320 AnonHugePages: 0 kB 1321 ShmemHugePages: 0 kB 1322 ShmemPmdMapped: 0 kB 1323 FileHugePages: 0 kB 1324 FilePmdMapped: 0 kB 1325 CmaTotal: 131072 kB 1326 CmaFree: 130688 kB 1327 HugePages_Total: 0 1328 HugePages_Free: 0 1329 HugePages_Rsvd: 0 1330 HugePages_Surp: 0 1331 Hugepagesize: 2048 kB 1332 Hugetlb: 0 kB 1333 1334 ### virtual memory: 1335 1336 vm.admin_reserve_kbytes = 8192 1337 vm.compaction_proactiveness = 20 1338 vm.compact_unevictable_allowed = 1 1339 vm.dirty_background_bytes = 0 1340 vm.dirty_background_ratio = 10 1341 vm.dirty_bytes = 0 1342 vm.dirty_expire_centisecs = 3000 1343 vm.dirty_ratio = 20 1344 vm.dirtytime_expire_seconds = 43200 1345 vm.dirty_writeback_centisecs = 500 1346 vm.extfrag_threshold = 500 1347 vm.hugetlb_optimize_vmemmap = 0 1348 vm.hugetlb_shm_group = 0 1349 vm.laptop_mode = 0 1350 vm.legacy_va_layout = 0 1351 vm.lowmem_reserve_ratio = 256 256 32 0 1352 vm.max_map_count = 65530 1353 vm.min_free_kbytes = 22528 1354 vm.min_slab_ratio = 5 1355 vm.min_unmapped_ratio = 1 1356 vm.mmap_min_addr = 4096 1357 vm.mmap_rnd_bits = 18 1358 vm.mmap_rnd_compat_bits = 11 1359 vm.nr_hugepages = 0 1360 vm.nr_hugepages_mempolicy = 0 1361 vm.nr_overcommit_hugepages = 0 1362 vm.numa_stat = 1 1363 vm.numa_zonelist_order = Node 1364 vm.oom_dump_tasks = 1 1365 vm.oom_kill_allocating_task = 0 1366 vm.overcommit_kbytes = 0 1367 vm.overcommit_memory = 0 1368 vm.overcommit_ratio = 50 1369 vm.page-cluster = 0 1370 vm.page_lock_unfairness = 5 1371 vm.panic_on_oom = 0 1372 vm.percpu_pagelist_high_fraction = 0 1373 vm.stat_interval = 1 1374 vm.swappiness = 100 1375 vm.user_reserve_kbytes = 30913 1376 vm.vfs_cache_pressure = 100 1377 vm.watermark_boost_factor = 15000 1378 vm.watermark_scale_factor = 10 1379 vm.zone_reclaim_mode = 0 1380 1381 ### ip addr: 1382 1383 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 1384 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 1385 inet XXX.XXX.0.1/8 scope host lo 1386 valid_lft forever preferred_lft forever 1387 inet6 ::1/128 scope host 1388 valid_lft forever preferred_lft forever 1389 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 1390 link/ether 02:00:62:71:18:3b brd ff:ff:ff:ff:ff:ff 1391 1392 ### partitions: 1393 1394 major minor #blocks name 1395 1396 31 0 2048 mtdblock0 1397 179 0 30263296 mmcblk0 1398 179 1 29945856 mmcblk0p1 1399 252 0 503948 zram0 1400 252 1 51200 zram1 1401 1402 ### df: 1403 1404 udev 422M 0 422M 0% /dev 1405 tmpfs 99M 428K 99M 1% /run 1406 /dev/mmcblk0p1 29G 1.5G 27G 6% / 1407 tmpfs 493M 0 493M 0% /dev/shm 1408 tmpfs 5.0M 0 5.0M 0% /run/lock 1409 tmpfs 493M 0 493M 0% /tmp 1410 /dev/zram1 49M 1.4M 44M 3% /var/log 1411 1412 ### lsblk: 1413 1414 NAME FSTYPE SIZE MOUNTPOINT UUID 1415 mtdblock0 2M 1416 mmcblk0 28.9G 1417 └─mmcblk0p1 ext4 28.6G / 0ae80c94-60cd-4b15-b7f3-065f13ca80b6 1418 zram1 50M /var/log 1419 1420 ### zramctl: 1421 1422 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 1423 /dev/zram1 zstd 50M 1.3M 192.5K 532K 4 /var/log 1424 /dev/zram0 lzo-rle 492.1M 4K 73B 12K 4 [SWAP] 1425 1426 ### mtab: 1427 1428 /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 1429 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 1430 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 1431 1432 ### mmc0:0001 info: 1433 1434 fwrev: 0x0 1435 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SD32G MODALIAS=mmc:block 1436 cid: 27504853443332476000000596015bf1 1437 rca: 0x0001 1438 csd: 400e00325b590000e6e37f800a4000c9 1439 manfid: 0x000027 1440 ocr: 0x00200000 1441 preferred_erase_size: 4194304 1442 type: SD 1443 hwrev: 0x6 1444 date: 11/2021 1445 dsr: 0x404 1446 erase_size: 512 1447 oemid: 0x5048 1448 serial: 0x00000596 1449 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 1450 scr: 0285808200000000 1451 name: SD32G 1452 1453 ### Boot system health: 1454 1455 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 1456 18:33:07: --- 1.34 50% 18% 13% 0% 18% 0% 40.8 °C 1457 18:33:07: --- 1.34 97% 37% 51% 0% 9% 0% 40.8 °C 1458 18:33:08: --- 1.34 96% 23% 51% 0% 20% 0% 41.6 °C 1459 18:33:08: --- 1.34 62% 8% 13% 0% 41% 0% 41.6 °C 1460 18:33:08: --- 1.34 76% 3% 2% 1% 68% 0% 41.6 °C 1461 1462 ### lsusb: 1463 1464 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 1465 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1466 1467 /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ohci-platform/1p, 12M 1468 /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-platform/1p, 480M 1469 1470 ### Userland: 1471 1472 PRETTY_NAME="Armbian 22.08.7 Bullseye" 1473 1474 ### Installed packages: 1475 1476 ii armbian-bsp-cli-orangepizero2 22.08.6 arm64 Armbian board support files for orangepizero2 1477 ii armbian-config 22.08.6 all Armbian configuration utility 1478 ii armbian-firmware 22.08.6 all Linux firmware 1479 ii armbian-zsh 22.08.6 all Armbian improved ZShell 1480 ii hostapd 3:2.10-6~armbian22.02.3+1 arm64 IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator 1481 ii htop 3.1.0-0~armbian20.08.2+1 arm64 interactive processes viewer 1482 ii linux-base 4.6 all Linux image base package 1483 hi linux-dtb-edge-sunxi64 22.08.6 arm64 Armbian Linux DTB, version 5.19.16-sunxi64 edge 1484 hi linux-image-edge-sunxi64 22.08.6 arm64 Linux kernel, armbian version 5.19.16-sunxi64 edge 1485 ii linux-libc-dev:arm64 22.11.0-trunk.0075 arm64 Armbian Linux support headers for userspace development 1486 hi linux-u-boot-orangepizero2-edge 22.08.6 arm64 Uboot loader 2022.07 1487 1488 ### Loaded modules: 1489 1490 Module Size Used by 1491 rfkill 32768 1 1492 lz4hc 16384 0 1493 lz4 16384 0 1494 zram 32768 3 1495 sunxi_cedrus 49152 0 1496 videobuf2_dma_contig 24576 1 sunxi_cedrus 1497 v4l2_mem2mem 36864 1 sunxi_cedrus 1498 videobuf2_memops 20480 1 videobuf2_dma_contig 1499 videobuf2_v4l2 24576 2 sunxi_cedrus,v4l2_mem2mem 1500 videobuf2_common 49152 5 sunxi_cedrus,videobuf2_dma_contig,videobuf2_v4l2,v4l2_mem2mem,videobuf2_memops 1501 videodev 204800 4 sunxi_cedrus,videobuf2_v4l2,videobuf2_common,v4l2_mem2mem 1502 mc 49152 5 sunxi_cedrus,videodev,videobuf2_v4l2,videobuf2_common,v4l2_mem2mem 1503 fuse 126976 1 1504 sunrpc 278528 1 1505 realtek 32768 1 1506 panfrost 65536 0 1507 dwmac_sun8i 28672 0 1508 gpu_sched 32768 1 panfrost 1509 drm_shmem_helper 20480 1 panfrost 1510 mdio_mux 16384 1 dwmac_sun8i 1511 1512 ### Current system health: 1513 1514 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 1515 18:44:33: --- 0.32 17% 1% 13% 0% 1% 0% 43.6 °C 1516 18:44:33: --- 0.32 2% 2% 0% 0% 0% 0% 43.6 °C 1517 18:44:34: --- 0.32 2% 1% 0% 0% 0% 0% 44.1 °C 1518 18:44:34: --- 0.32 3% 2% 0% 0% 0% 0% 44.1 °C 1519 18:44:34: --- 0.32 2% 1% 0% 1% 0% 0% 43.8 °C 1520 18:44:38: --- 0.70 17% 1% 14% 0% 1% 0% 47.9 °C 1521 18:44:38: --- 0.70 46% 0% 45% 0% 0% 0% 47.9 °C 1522 18:44:38: --- 0.70 2% 2% 0% 0% 0% 0% 46.1 °C 1523 18:44:39: --- 0.70 2% 2% 0% 0% 0% 0% 46.1 °C 1524 18:44:39: --- 0.70 2% 2% 0% 0% 0% 0% 46.1 °C 1525 1526 ### resolv.conf 1527 1528 -rw-r--r-- 1 root root 92 Nov 11 18:33 /etc/resolv.conf 1529 # Generated by NetworkManager 1530 search home 1531 nameserver XXX.XXX.2.1 1532 nameserver XXX.XXX.234.129 1533 1534 ### Current sysinfo: 1535 1536 Linux 5.19.16-sunxi64 (orangepizero2) 2022-11-11 _aarch64_ (4 CPU) 1537 1538 avg-cpu: %user %nice %system %iowait %steal %idle 1539 14.30 0.02 1.83 1.49 0.00 82.36 1540 1541 Device tps kB_read/s kB_wrtn/s kB_dscd/s kB_read kB_wrtn kB_dscd 1542 mtdblock0 0.07 0.28 0.00 0.00 112 0 0 1543 mmcblk0 14.26 856.07 333.11 0.00 342427 133245 0 1544 mmcblk0p1 14.01 850.81 333.11 0.00 340323 133245 0 1545 zram0 1.50 5.98 0.01 0.00 2392 4 0 1546 zram1 0.68 1.19 4.60 0.00 476 1840 0 1547 zram2 0.00 0.00 0.00 0.00 0 0 0 1548 1549 --procs-- -----------------------memory---------------------- ---swap-- -----io---- -system-- --------cpu-------- 1550 r b swpd free buff cache si so bi bo in cs us sy id wa st 1551 0 0 0 451224 12980 402824 0 0 215 85 308 485 14 2 82 1 0 1552 1553 total used free shared buff/cache available 1554 Mem: 984Mi 137Mi 440Mi 1.0Mi 406Mi 776Mi 1555 Swap: 492Mi 0B 492Mi 1556 1557 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 1558 /dev/zram1 zstd 50M 1.4M 242.1K 592K 4 /var/log 1559 /dev/zram0 lzo-rle 492.1M 4K 73B 12K 4 [SWAP] 1560 1561 18:44:39 up 6 min, 3 users, load average: 0.70, 0.60, 0.30 1562 1563 [ 1.329086] 8021q: 802.1Q VLAN Support v1.8 1564 [ 1.329243] 9pnet: Installing 9P2000 support 1565 [ 1.329329] Key type dns_resolver registered 1566 [ 1.329889] registered taskstats version 1 1567 [ 1.329912] Loading compiled-in X.509 certificates 1568 [ 1.333699] Loaded X.509 cert 'Build time autogenerated kernel key: 05920f111eead6a51cb60d55d842ed91645758e7' 1569 [ 1.336164] zswap: loaded using pool zstd/z3fold 1570 [ 1.336754] Key type ._fscrypt registered 1571 [ 1.336765] Key type .fscrypt registered 1572 [ 1.336769] Key type fscrypt-provisioning registered 1573 [ 1.337921] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 1574 [ 1.338336] Key type encrypted registered 1575 [ 1.338357] AppArmor: AppArmor sha1 policy hashing enabled 1576 [ 1.338395] ima: No TPM chip found, activating TPM-bypass! 1577 [ 1.338421] ima: Allocated hash algorithm: sha1 1578 [ 1.338466] ima: No architecture policies found 1579 [ 1.338513] evm: Initialising EVM extended attributes: 1580 [ 1.338516] evm: security.selinux 1581 [ 1.338520] evm: security.SMACK64 1582 [ 1.338523] evm: security.SMACK64EXEC 1583 [ 1.338526] evm: security.SMACK64TRANSMUTE 1584 [ 1.338530] evm: security.SMACK64MMAP 1585 [ 1.338533] evm: security.apparmor 1586 [ 1.338536] evm: security.ima 1587 [ 1.338539] evm: security.capability 1588 [ 1.338542] evm: HMAC attrs: 0x1 1589 [ 1.360713] sun50i-h616-pinctrl 300b000.pinctrl: initialized sunXi PIO driver 1590 [ 1.362320] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator 1591 [ 1.362984] printk: console [ttyS0] disabled 1592 [ 1.363069] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 283, base_baud = 1500000) is a 16550A 1593 [ 1.363265] printk: console [ttyS0] enabled 1594 [ 1.364125] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-pc not found, using dummy regulator 1595 [ 1.364461] sun6i-spi 5010000.spi: Failed to request TX DMA channel 1596 [ 1.364472] sun6i-spi 5010000.spi: Failed to request RX DMA channel 1597 [ 1.365096] spi-nor spi0.0: supply vdd not found, using dummy regulator 1598 [ 1.381032] spi-nor spi0.0: mx25l1606e (2048 Kbytes) 1599 [ 1.397028] sun50i-h616-r-pinctrl 7022000.pinctrl: initialized sunXi PIO driver 1600 [ 1.398320] ehci-platform 5200000.usb: EHCI Host Controller 1601 [ 1.398345] usb_phy_generic usb_phy_generic.1.auto: supply vcc not found, using dummy regulator 1602 [ 1.398360] ehci-platform 5200000.usb: new USB bus registered, assigned bus number 1 1603 [ 1.398475] usb_phy_generic usb_phy_generic.1.auto: dummy supplies not allowed for exclusive requests 1604 [ 1.398483] ehci-platform 5200000.usb: irq 286, io mem 0x05200000 1605 [ 1.400439] sun50i-h616-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator 1606 [ 1.400869] ohci-platform 5200400.usb: Generic Platform OHCI controller 1607 [ 1.400910] ohci-platform 5200400.usb: new USB bus registered, assigned bus number 2 1608 [ 1.400979] sunxi-rsb 7083000.rsb: RSB running at 3000000 Hz 1609 [ 1.401024] ohci-platform 5200400.usb: irq 288, io mem 0x05200400 1610 [ 1.401305] axp20x-rsb sunxi-rsb-745: AXP20x variant AXP806 found 1611 [ 1.405182] axp20x-rsb sunxi-rsb-745: AXP20X driver loaded 1612 [ 1.406465] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator 1613 [ 1.406504] ALSA device list: 1614 [ 1.406512] No soundcards found. 1615 [ 1.407495] sunxi-mmc 4020000.mmc: Got CD GPIO 1616 [ 1.412821] ehci-platform 5200000.usb: USB 2.0 started, EHCI 1.00 1617 [ 1.413117] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19 1618 [ 1.413133] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1619 [ 1.413142] usb usb1: Product: EHCI Host Controller 1620 [ 1.413149] usb usb1: Manufacturer: Linux 5.19.16-sunxi64 ehci_hcd 1621 [ 1.413157] usb usb1: SerialNumber: 5200000.usb 1622 [ 1.413737] hub 1-0:1.0: USB hub found 1623 [ 1.413791] hub 1-0:1.0: 1 port detected 1624 [ 1.433106] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1625 [ 1.465043] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19 1626 [ 1.465069] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1627 [ 1.465079] usb usb2: Product: Generic Platform OHCI controller 1628 [ 1.465087] usb usb2: Manufacturer: Linux 5.19.16-sunxi64 ohci_hcd 1629 [ 1.465094] usb usb2: SerialNumber: 5200400.usb 1630 [ 1.465672] hub 2-0:1.0: USB hub found 1631 [ 1.465721] hub 2-0:1.0: 1 port detected 1632 [ 1.467038] Freeing unused kernel memory: 2496K 1633 [ 1.467836] mmc0: host does not support reading read-only switch, assuming write-enable 1634 [ 1.469607] mmc0: Problem switching card into high-speed mode! 1635 [ 1.469722] mmc0: new SDHC card at address 0001 1636 [ 1.470630] mmcblk0: mmc0:0001 SD32G 28.9 GiB 1637 [ 1.472694] mmcblk0: p1 1638 [ 1.480880] Run /init as init process 1639 [ 1.480900] with arguments: 1640 [ 1.480907] /init 1641 [ 1.480912] with environment: 1642 [ 1.480917] HOME=/ 1643 [ 1.480922] TERM=linux 1644 [ 1.480927] splash=verbose 1645 [ 1.480932] ubootpart=da74ae41-01 1646 [ 1.480937] cgroup_enable=memory 1647 [ 1.840883] sun50i-h616-pinctrl 300b000.pinctrl: supply vcc-pi not found, using dummy regulator 1648 [ 1.841316] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found 1649 [ 1.841340] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found 1650 [ 1.841692] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator 1651 [ 1.842000] dwmac-sun8i 5020000.ethernet: PTP uses main clock 1652 [ 1.842063] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 51fe6 (expect 50000) 1653 [ 1.846392] panfrost 1800000.gpu: clock rate = 432000000 1654 [ 1.846436] panfrost 1800000.gpu: bus_clock rate = 200000000 1655 [ 1.846926] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported 1656 [ 1.846951] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported 1657 [ 1.846959] dwmac-sun8i 5020000.ethernet: COE Type 2 1658 [ 1.846968] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported 1659 [ 1.846976] dwmac-sun8i 5020000.ethernet: Normal descriptors 1660 [ 1.846982] dwmac-sun8i 5020000.ethernet: Chain mode enabled 1661 [ 1.850548] panfrost 1800000.gpu: mali-g31 id 0x7093 major 0x0 minor 0x0 status 0x0 1662 [ 1.850592] panfrost 1800000.gpu: features: 00000000,000017f7, issues: 00000000,00000400 1663 [ 1.850603] panfrost 1800000.gpu: Features: L2:0x07100206 Shader:0x00000000 Tiler:0x00000209 Mem:0x1 MMU:0x00002821 AS:0xff JS:0x7 1664 [ 1.850615] panfrost 1800000.gpu: shader_present=0x1 l2_present=0x1 1665 [ 1.857125] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 0 1666 [ 2.698073] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Quota mode: none. 1667 [ 4.091151] systemd[1]: System time before build time, advancing clock. 1668 [ 4.140950] systemd[1]: systemd 247.3-7+deb11u1 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) 1669 [ 4.141618] systemd[1]: Detected architecture arm64. 1670 [ 4.157085] systemd[1]: Set hostname to <orangepizero2>. 1671 [ 4.938803] systemd[255]: /usr/lib/systemd/system-generators/netplan failed with exit status 1. 1672 [ 5.240894] systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 1673 [ 5.456090] systemd[1]: Queued start job for default target Graphical Interface. 1674 [ 6.800801] random: crng init done 1675 [ 6.804255] systemd[1]: Created slice system-getty.slice. 1676 [ 6.806559] systemd[1]: Created slice system-modprobe.slice. 1677 [ 6.808408] systemd[1]: Created slice system-serial-getty.slice. 1678 [ 6.809997] systemd[1]: Created slice User and Session Slice. 1679 [ 6.810656] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 1680 [ 6.811902] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 1681 [ 6.812642] systemd[1]: Reached target Slices. 1682 [ 6.813004] systemd[1]: Reached target Swap. 1683 [ 6.813277] systemd[1]: Reached target System Time Set. 1684 [ 6.831442] systemd[1]: Listening on RPCbind Server Activation Socket. 1685 [ 6.832531] systemd[1]: Listening on Syslog Socket. 1686 [ 6.833598] systemd[1]: Listening on fsck to fsckd communication Socket. 1687 [ 6.834270] systemd[1]: Listening on initctl Compatibility Named Pipe. 1688 [ 6.835523] systemd[1]: Listening on Journal Audit Socket. 1689 [ 6.836480] systemd[1]: Listening on Journal Socket (/dev/log). 1690 [ 6.837681] systemd[1]: Listening on Journal Socket. 1691 [ 6.840507] systemd[1]: Listening on udev Control Socket. 1692 [ 6.841487] systemd[1]: Listening on udev Kernel Socket. 1693 [ 6.846376] systemd[1]: Mounting Huge Pages File System... 1694 [ 6.851622] systemd[1]: Mounting POSIX Message Queue File System... 1695 [ 6.857000] systemd[1]: Mounting RPC Pipe File System... 1696 [ 6.863557] systemd[1]: Mounting Kernel Debug File System... 1697 [ 6.864750] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 1698 [ 6.865743] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 1699 [ 6.874264] systemd[1]: Starting Restore / save the current clock... 1700 [ 6.880499] systemd[1]: Starting Set the console keyboard layout... 1701 [ 6.886191] systemd[1]: Starting Create list of static device nodes for the current kernel... 1702 [ 6.892105] systemd[1]: Starting Load Kernel Module configfs... 1703 [ 6.899060] systemd[1]: Starting Load Kernel Module drm... 1704 [ 6.906236] systemd[1]: Starting Load Kernel Module fuse... 1705 [ 6.912337] systemd[1]: Started Nameserver information manager. 1706 [ 6.914121] systemd[1]: Reached target Network (Pre). 1707 [ 6.953370] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 1708 [ 6.953629] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 1709 [ 6.962301] RPC: Registered named UNIX socket transport module. 1710 [ 6.962325] RPC: Registered udp transport module. 1711 [ 6.962330] RPC: Registered tcp transport module. 1712 [ 6.962334] RPC: Registered tcp NFSv4.1 backchannel transport module. 1713 [ 6.985174] systemd[1]: Starting Load Kernel Modules... 1714 [ 6.990748] systemd[1]: Starting Remount Root and Kernel File Systems... 1715 [ 6.996198] systemd[1]: Starting Coldplug All udev Devices... 1716 [ 7.007572] fuse: init (API version 7.36) 1717 [ 7.010404] systemd[1]: Mounted Huge Pages File System. 1718 [ 7.012317] systemd[1]: Mounted POSIX Message Queue File System. 1719 [ 7.013956] systemd[1]: Mounted RPC Pipe File System. 1720 [ 7.015239] systemd[1]: Mounted Kernel Debug File System. 1721 [ 7.017889] systemd[1]: Finished Restore / save the current clock. 1722 [ 7.020875] systemd[1]: Finished Create list of static device nodes for the current kernel. 1723 [ 7.023030] systemd[1]: modprobe@configfs.service: Succeeded. 1724 [ 7.024406] systemd[1]: Finished Load Kernel Module configfs. 1725 [ 7.026682] systemd[1]: modprobe@drm.service: Succeeded. 1726 [ 7.028198] systemd[1]: Finished Load Kernel Module drm. 1727 [ 7.031261] systemd[1]: modprobe@fuse.service: Succeeded. 1728 [ 7.033449] systemd[1]: Finished Load Kernel Module fuse. 1729 [ 7.043000] systemd[1]: Mounting FUSE Control File System... 1730 [ 7.048534] systemd[1]: Mounting Kernel Configuration File System... 1731 [ 7.054017] systemd[1]: Finished Load Kernel Modules. 1732 [ 7.064287] systemd[1]: Mounted FUSE Control File System. 1733 [ 7.065935] systemd[1]: Mounted Kernel Configuration File System. 1734 [ 7.072476] systemd[1]: Starting Apply Kernel Variables... 1735 [ 7.096997] EXT4-fs (mmcblk0p1): re-mounted. Quota mode: none. 1736 [ 7.104404] systemd[1]: Finished Remount Root and Kernel File Systems. 1737 [ 7.114106] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. 1738 [ 7.114483] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 1739 [ 7.119873] systemd[1]: Starting Load/Save Random Seed... 1740 [ 7.126176] systemd[1]: Starting Create System Users... 1741 [ 7.156972] systemd[1]: Finished Apply Kernel Variables. 1742 [ 7.192934] systemd[1]: Finished Load/Save Random Seed. 1743 [ 7.194158] systemd[1]: Condition check resulted in First Boot Complete being skipped. 1744 [ 7.218789] systemd[1]: Finished Create System Users. 1745 [ 7.225388] systemd[1]: Starting Create Static Device Nodes in /dev... 1746 [ 7.299084] systemd[1]: Finished Create Static Device Nodes in /dev. 1747 [ 7.308153] systemd[1]: Starting Rule-based Manager for Device Events and Files... 1748 [ 7.418174] systemd[1]: Finished Set the console keyboard layout. 1749 [ 7.419418] systemd[1]: Reached target Local File Systems (Pre). 1750 [ 7.425709] systemd[1]: Mounting /tmp... 1751 [ 7.429129] systemd[1]: Finished Coldplug All udev Devices. 1752 [ 7.437192] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 1753 [ 7.442963] systemd[1]: Mounted /tmp. 1754 [ 7.444107] systemd[1]: Reached target Local File Systems. 1755 [ 7.449648] systemd[1]: Starting Armbian leds state... 1756 [ 7.454895] systemd[1]: Starting Armbian ZRAM config... 1757 [ 7.461389] systemd[1]: Starting Set console font and keymap... 1758 [ 7.466960] systemd[1]: Starting Preprocess NFS configuration... 1759 [ 7.473497] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... 1760 [ 7.474034] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 1761 [ 7.474348] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 1762 [ 7.477359] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 1763 [ 7.483800] systemd[1]: Starting Raise network interfaces... 1764 [ 7.514473] systemd[1]: Finished Set console font and keymap. 1765 [ 7.516491] systemd[1]: nfs-config.service: Succeeded. 1766 [ 7.518580] systemd[1]: Finished Preprocess NFS configuration. 1767 [ 7.519575] systemd[1]: Condition check resulted in RPC security service for NFS client and server being skipped. 1768 [ 7.519669] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 1769 [ 7.519756] systemd[1]: Reached target NFS client services. 1770 [ 7.538000] systemd[1]: Received SIGRTMIN+20 from PID 214 (plymouthd). 1771 [ 7.548028] systemd[1]: Started Rule-based Manager for Device Events and Files. 1772 [ 7.552320] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. 1773 [ 7.559561] systemd[1]: Starting Show Plymouth Boot Screen... 1774 [ 7.676959] systemd[1]: Started Show Plymouth Boot Screen. 1775 [ 7.685667] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 1776 [ 7.686706] systemd[1]: Started Forward Password Requests to Plymouth Directory Watch. 1777 [ 7.688656] systemd[1]: Reached target Local Encrypted Volumes. 1778 [ 7.690569] systemd[1]: Reached target Paths. 1779 [ 7.759697] systemd[1]: Finished Armbian leds state. 1780 [ 7.915450] systemd[1]: Found device /dev/ttyS0. 1781 [ 8.065058] systemd[1]: Reached target Hardware activated USB gadget. 1782 [ 8.117080] mc: Linux media interface: v0.10 1783 [ 8.190232] videodev: Linux video capture interface: v2.00 1784 [ 8.514625] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. 1785 [ 8.516822] cedrus 1c0e000.video-codec: Device registered as /dev/video0 1786 [ 8.545282] zram: Added device: zram0 1787 [ 8.546185] zram: Added device: zram1 1788 [ 8.547900] zram: Added device: zram2 1789 [ 8.624553] systemd[1]: Finished Raise network interfaces. 1790 [ 8.682138] zram0: detected capacity change from 0 to 1007896 1791 [ 8.720060] Adding 503944k swap on /dev/zram0. Priority:5 extents:1 across:503944k SSFS 1792 [ 8.945381] zram1: detected capacity change from 0 to 102400 1793 [ 9.037309] systemd[1]: Finished Armbian ZRAM config. 1794 [ 9.042681] systemd[1]: Starting Armbian memory supported logging... 1795 [ 9.126907] EXT4-fs (zram1): mounted filesystem without journal. Quota mode: none. 1796 [ 9.126956] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 1797 [ 11.975541] systemd[1]: Finished Armbian memory supported logging. 1798 [ 11.984136] systemd[1]: Starting Journal Service... 1799 [ 12.185043] systemd[1]: Started Journal Service. 1800 [ 12.230126] systemd-journald[528]: Received client request to flush runtime journal. 1801 [ 12.256905] systemd-journald[528]: File /var/log/journal/0591d2673a8840eb8c934f5eaf48cb73/system.journal corrupted or uncleanly shut down, renaming and replacing. 1802 [ 15.081417] systemd-journald[528]: Received client request to relinquish /var/log/journal/0591d2673a8840eb8c934f5eaf48cb73 access. 1803 [ 19.029930] phy_rtl8211f_led_fixup in 1804 [ 19.120890] dwmac-sun8i 5020000.ethernet eth0: PHY [stmmac-0:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL) 1805 [ 19.122058] dwmac-sun8i 5020000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0 1806 [ 19.122826] dwmac-sun8i 5020000.ethernet eth0: No Safety Features support found 1807 [ 19.122844] dwmac-sun8i 5020000.ethernet eth0: No MAC Management Counters available 1808 [ 19.122853] dwmac-sun8i 5020000.ethernet eth0: PTP not supported by HW 1809 [ 19.123436] dwmac-sun8i 5020000.ethernet eth0: configuring for phy/rgmii link mode 1810 [ 23.238199] dwmac-sun8i 5020000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx 1811 [ 23.238266] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 1812 [ 31.717022] cldo1: disabling 1813 1814 1815 1816 ### interrupts: 1817 CPU0 CPU1 CPU2 CPU3 1818 11: 26070 31515 19988 15365 GICv2 30 Level arch_timer 1819 14: 0 0 0 0 GICv2 172 Level arm-pmu 1820 15: 0 0 0 0 GICv2 173 Level arm-pmu 1821 16: 0 0 0 0 GICv2 174 Level arm-pmu 1822 17: 0 0 0 0 GICv2 175 Level arm-pmu 1823 18: 0 0 0 0 GICv2 133 Level 7000000.rtc 1824 161: 0 0 0 0 sunxi_pio_edge 134 Edge 4020000.mmc cd 1825 283: 831 0 0 0 GICv2 32 Level ttyS0 1826 284: 9690 0 0 0 GICv2 44 Level sun6i-spi 1827 285: 1594 0 0 0 GICv2 51 Level ths 1828 286: 0 0 0 0 GICv2 60 Level ehci_hcd:usb1 1829 287: 0 0 0 0 GICv2 57 Level musb-hdrc.2.auto 1830 288: 0 0 0 0 GICv2 61 Level ohci_hcd:usb2 1831 289: 23 0 0 0 GICv2 141 Level sunxi-rsb 1832 290: 3183 0 0 7453 GICv2 67 Level sunxi-mmc 1833 291: 2964 0 0 0 GICv2 46 Level eth0 1834 292: 2 0 0 0 GICv2 129 Level panfrost-gpu 1835 293: 0 0 0 0 GICv2 128 Level panfrost-mmu 1836 294: 0 0 0 0 GICv2 127 Level panfrost-job 1837 295: 0 0 0 0 GICv2 125 Level 1c0e000.video-codec 1838 IPI0: 1307 1862 1173 1202 Rescheduling interrupts 1839 IPI1: 31059 125571 124519 86335 Function call interrupts 1840 IPI2: 0 0 0 0 CPU stop interrupts 1841 IPI3: 0 0 0 0 CPU stop (for crash dump) interrupts 1842 IPI4: 0 0 0 0 Timer broadcast interrupts 1843 IPI5: 0 0 0 0 IRQ work interrupts 1844 IPI6: 0 0 0 0 CPU wake-up interrupts 1845 Err: 0 Please upload the whole output above to an online pasteboard service and provide the URL in the forum where you have been asked for this.
  6. armbianmonitor -U 1 2 ### Activated 1 lzo-rle zram swap devices with 994MB each. 3 ### Activated Armbian ramlog partition with zstd compression 4 5 Fri Dec 9 06:53:53 PM CET 2022 | Pine64 | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 6 7 ### dmesg: 8 9 [ 1.295379] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 10 [ 1.295388] sun8i-ce 1c15000.crypto: Register stdrng 11 [ 1.295556] sun8i-ce 1c15000.crypto: TRNG not supported 12 [ 1.295565] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 13 [ 1.296170] hid: raw HID events driver (C) Jiri Kosina 14 [ 1.296320] usbcore: registered new interface driver usbhid 15 [ 1.296327] usbhid: USB HID core driver 16 [ 1.302464] NET: Registered PF_INET6 protocol family 17 [ 1.955883] Freeing initrd memory: 12684K 18 [ 1.989691] Segment Routing with IPv6 19 [ 1.989807] In-situ OAM (IOAM) with IPv6 20 [ 1.989917] NET: Registered PF_PACKET protocol family 21 [ 1.990072] 8021q: 802.1Q VLAN Support v1.8 22 [ 1.990245] 9pnet: Installing 9P2000 support 23 [ 1.990335] Key type dns_resolver registered 24 [ 1.990873] registered taskstats version 1 25 [ 1.990891] Loading compiled-in X.509 certificates 26 [ 1.995134] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 27 [ 1.999519] zswap: loaded using pool zstd/z3fold 28 [ 2.000278] Key type ._fscrypt registered 29 [ 2.000287] Key type .fscrypt registered 30 [ 2.000293] Key type fscrypt-provisioning registered 31 [ 2.001478] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 32 [ 2.017261] Key type encrypted registered 33 [ 2.017301] AppArmor: AppArmor sha1 policy hashing enabled 34 [ 2.017348] ima: No TPM chip found, activating TPM-bypass! 35 [ 2.017386] ima: Allocated hash algorithm: sha1 36 [ 2.017458] ima: No architecture policies found 37 [ 2.017515] evm: Initialising EVM extended attributes: 38 [ 2.017520] evm: security.selinux 39 [ 2.017526] evm: security.SMACK64 40 [ 2.017530] evm: security.SMACK64EXEC 41 [ 2.017535] evm: security.SMACK64TRANSMUTE 42 [ 2.017539] evm: security.SMACK64MMAP 43 [ 2.017544] evm: security.apparmor 44 [ 2.017549] evm: security.ima 45 [ 2.017554] evm: security.capability 46 [ 2.017558] evm: HMAC attrs: 0x1 47 [ 2.030401] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 48 [ 2.030490] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 49 [ 2.031240] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 50 [ 2.031307] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 51 [ 2.032165] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 52 [ 2.032550] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 53 [ 2.034692] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 54 [ 2.037741] vcc-3v3: supplied by regulator-dummy 55 [ 2.038237] vdd-cpux: supplied by regulator-dummy 56 [ 2.038910] dcdc4: supplied by regulator-dummy 57 [ 2.039103] vcc-dram: supplied by regulator-dummy 58 [ 2.039531] vdd-sys: supplied by regulator-dummy 59 [ 2.040092] vcc-phy: supplied by regulator-dummy 60 [ 2.040434] aldo1: supplied by regulator-dummy 61 [ 2.040616] vcc-pl: supplied by regulator-dummy 62 [ 2.041085] vcc-pll-avcc: supplied by regulator-dummy 63 [ 2.041722] vcc-hdmi: supplied by regulator-dummy 64 [ 2.042088] vcc-mipi: supplied by regulator-dummy 65 [ 2.042472] dldo3: supplied by regulator-dummy 66 [ 2.042833] vcc-wifi: supplied by regulator-dummy 67 [ 2.043218] cpvdd: supplied by regulator-dummy 68 [ 2.043582] eldo2: supplied by regulator-dummy 69 [ 2.043950] eldo3: supplied by regulator-dummy 70 [ 2.044339] vcc-1v2-hsic: supplied by regulator-dummy 71 [ 2.044531] vdd-cpus: supplied by regulator-dummy 72 [ 2.044935] vcc-rtc: supplied by regulator-dummy 73 [ 2.045380] ldo-io0: supplied by regulator-dummy 74 [ 2.045759] ldo-io1: supplied by regulator-dummy 75 [ 2.045885] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 76 [ 2.050826] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 77 [ 2.051233] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 78 [ 2.051785] printk: console [ttyS0] disabled 79 [ 2.051872] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 80 [ 2.052086] printk: console [ttyS0] enabled 81 [ 2.052806] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 82 [ 2.053260] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 83 [ 2.053451] serial serial0: tty port ttyS1 registered 84 [ 2.083968] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 85 [ 2.085749] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 86 [ 2.086246] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 87 [ 2.086263] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 88 [ 2.086501] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 89 [ 2.087655] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 90 [ 2.088290] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 91 [ 2.088666] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 92 [ 2.089340] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 93 [ 2.089450] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 94 [ 2.090166] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 95 [ 2.090763] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 96 [ 2.091508] ehci-platform 1c1a000.usb: EHCI Host Controller 97 [ 2.091546] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 98 [ 2.091676] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 99 [ 2.105429] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 100 [ 2.105873] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 101 [ 2.105889] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 102 [ 2.105901] usb usb1: Product: EHCI Host Controller 103 [ 2.105910] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 104 [ 2.105920] usb usb1: SerialNumber: 1c1a000.usb 105 [ 2.106467] hub 1-0:1.0: USB hub found 106 [ 2.106516] hub 1-0:1.0: 1 port detected 107 [ 2.107527] ehci-platform 1c1b000.usb: EHCI Host Controller 108 [ 2.107553] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 109 [ 2.107679] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 110 [ 2.121430] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 111 [ 2.121720] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 112 [ 2.121735] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 113 [ 2.121747] usb usb2: Product: EHCI Host Controller 114 [ 2.121756] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 115 [ 2.121765] usb usb2: SerialNumber: 1c1b000.usb 116 [ 2.122246] hub 2-0:1.0: USB hub found 117 [ 2.122289] hub 2-0:1.0: 1 port detected 118 [ 2.301512] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 119 [ 2.301552] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 120 [ 2.301731] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 121 [ 2.365483] usb 1-1: new high-speed USB device number 2 using ehci-platform 122 [ 2.365752] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 123 [ 2.365768] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 124 [ 2.365780] usb usb3: Product: Generic Platform OHCI controller 125 [ 2.365789] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 126 [ 2.365799] usb usb3: SerialNumber: 1c1a400.usb 127 [ 2.366359] hub 3-0:1.0: USB hub found 128 [ 2.366410] hub 3-0:1.0: 1 port detected 129 [ 2.367435] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 130 [ 2.367463] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 131 [ 2.367603] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 132 [ 2.377431] usb 2-1: new high-speed USB device number 2 using ehci-platform 133 [ 2.433690] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 134 [ 2.433705] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 135 [ 2.433717] usb usb4: Product: Generic Platform OHCI controller 136 [ 2.433726] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 137 [ 2.433736] usb usb4: SerialNumber: 1c1b400.usb 138 [ 2.434255] hub 4-0:1.0: USB hub found 139 [ 2.434301] hub 4-0:1.0: 1 port detected 140 [ 2.435343] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 141 [ 2.435505] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 142 [ 2.509674] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 143 [ 2.509706] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 144 [ 2.509990] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 145 [ 2.510006] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 146 [ 2.510018] usb usb5: Product: MUSB HDRC host driver 147 [ 2.510027] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 148 [ 2.510036] usb usb5: SerialNumber: musb-hdrc.4.auto 149 [ 2.510603] hub 5-0:1.0: USB hub found 150 [ 2.510653] hub 5-0:1.0: 1 port detected 151 [ 2.514069] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 152 [ 2.514140] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 153 [ 2.515161] sunxi-mmc 1c0f000.mmc: Got CD GPIO 154 [ 2.515161] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 155 [ 2.515306] of_cfs_init 156 [ 2.515433] of_cfs_init: OK 157 [ 2.515791] ALSA device list: 158 [ 2.515798] No soundcards found. 159 [ 2.531360] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 160 [ 2.531379] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 161 [ 2.531391] usb 1-1: SerialNumber: 20181120 162 [ 2.532355] usb-storage 1-1:1.0: USB Mass Storage device detected 163 [ 2.532902] scsi host0: usb-storage 1-1:1.0 164 [ 2.536597] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 165 [ 2.536613] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 166 [ 2.536624] usb 2-1: Product: USB2.1 Hub 167 [ 2.536634] usb 2-1: Manufacturer: GenesysLogic 168 [ 2.537226] hub 2-1:1.0: USB hub found 169 [ 2.537598] hub 2-1:1.0: 4 ports detected 170 [ 2.540602] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 171 [ 2.540829] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 172 [ 2.542490] Freeing unused kernel memory: 2496K 173 [ 2.542625] Run /init as init process 174 [ 2.542633] with arguments: 175 [ 2.542639] /init 176 [ 2.542645] with environment: 177 [ 2.542650] HOME=/ 178 [ 2.542655] TERM=linux 179 [ 2.542661] ubootpart=ea5e158f-01 180 [ 2.542667] cgroup_enable=memory 181 [ 2.577256] mmc0: new high speed SDHC card at address 0001 182 [ 2.578372] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 183 [ 2.580778] mmcblk0: p1 184 [ 2.853458] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 185 [ 3.038364] usbcore: registered new interface driver uas 186 [ 3.053676] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 187 [ 3.080577] axp20x-gpio axp20x-gpio: DMA mask not set 188 [ 3.088676] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 189 [ 3.098900] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 190 [ 3.099216] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 191 [ 3.099233] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 192 [ 3.099565] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 193 [ 3.099821] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 194 [ 3.099870] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 195 [ 3.100314] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 196 [ 3.100337] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 197 [ 3.100344] dwmac-sun8i 1c30000.ethernet: COE Type 2 198 [ 3.100355] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 199 [ 3.100363] dwmac-sun8i 1c30000.ethernet: Normal descriptors 200 [ 3.100371] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 201 [ 3.205277] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 202 [ 3.205312] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 203 [ 3.205324] usb 2-1.1: SerialNumber: AA5FCF90 204 [ 3.313433] usb 2-1.2: new full-speed USB device number 4 using ehci-platform 205 [ 3.456351] usb 2-1.2: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 206 [ 3.456368] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 207 [ 3.456379] usb 2-1.2: Product: FT232R USB UART 208 [ 3.456388] usb 2-1.2: Manufacturer: FTDI 209 [ 3.456397] usb 2-1.2: SerialNumber: AR0K4JEL 210 [ 3.558452] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 211 [ 3.559075] sd 0:0:0:0: Attached scsi generic sg0 type 0 212 [ 3.560300] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 213 [ 3.561562] sd 0:0:0:0: [sda] Write Protect is off 214 [ 3.561591] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 215 [ 3.562830] sd 0:0:0:0: [sda] No Caching mode page found 216 [ 3.562870] sd 0:0:0:0: [sda] Assuming drive cache: write through 217 [ 3.568912] sda: sda1 218 [ 3.572400] sd 0:0:0:0: [sda] Attached SCSI disk 219 [ 3.938137] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 220 [ 4.530698] systemd[1]: systemd 249.11-0ubuntu3.4 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 221 [ 4.531436] systemd[1]: Detected architecture arm64. 222 [ 4.534489] systemd[1]: Hostname set to <pine64>. 223 [ 4.658087] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 224 [ 5.479982] systemd[1]: Queued start job for default target Graphical Interface. 225 [ 5.482130] random: systemd: uninitialized urandom read (16 bytes read) 226 [ 5.526010] systemd[1]: Created slice Slice /system/modprobe. 227 [ 5.526743] random: systemd: uninitialized urandom read (16 bytes read) 228 [ 5.529798] systemd[1]: Created slice Slice /system/serial-getty. 229 [ 5.530230] random: systemd: uninitialized urandom read (16 bytes read) 230 [ 5.532549] systemd[1]: Created slice User and Session Slice. 231 [ 5.533035] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 232 [ 5.533611] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 233 [ 5.535113] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 234 [ 5.535657] systemd[1]: Reached target Local Encrypted Volumes. 235 [ 5.536358] systemd[1]: Reached target Slice Units. 236 [ 5.536692] systemd[1]: Reached target Swaps. 237 [ 5.537002] systemd[1]: Reached target System Time Set. 238 [ 5.537587] systemd[1]: Reached target Local Verity Protected Volumes. 239 [ 5.559907] systemd[1]: Listening on RPCbind Server Activation Socket. 240 [ 5.561333] systemd[1]: Listening on Syslog Socket. 241 [ 5.562492] systemd[1]: Listening on fsck to fsckd communication Socket. 242 [ 5.563140] systemd[1]: Listening on initctl Compatibility Named Pipe. 243 [ 5.564650] systemd[1]: Listening on Journal Audit Socket. 244 [ 5.565663] systemd[1]: Listening on Journal Socket (/dev/log). 245 [ 5.566774] systemd[1]: Listening on Journal Socket. 246 [ 5.568082] systemd[1]: Listening on udev Control Socket. 247 [ 5.569057] systemd[1]: Listening on udev Kernel Socket. 248 [ 5.574683] systemd[1]: Mounting Huge Pages File System... 249 [ 5.581617] systemd[1]: Mounting POSIX Message Queue File System... 250 [ 5.587786] systemd[1]: Mounting NFSD configuration filesystem... 251 [ 5.594595] systemd[1]: Mounting Kernel Debug File System... 252 [ 5.595712] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 253 [ 5.596689] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 254 [ 5.605920] systemd[1]: Starting Restore / save the current clock... 255 [ 5.614353] systemd[1]: Starting Set the console keyboard layout... 256 [ 5.623063] systemd[1]: Starting Create List of Static Device Nodes... 257 [ 5.632107] systemd[1]: Starting Load Kernel Module chromeos_pstore... 258 [ 5.640267] systemd[1]: Starting Load Kernel Module configfs... 259 [ 5.648421] systemd[1]: Starting Load Kernel Module drm... 260 [ 5.656519] systemd[1]: Starting Load Kernel Module efi_pstore... 261 [ 5.667005] systemd[1]: Starting Load Kernel Module fuse... 262 [ 5.674704] systemd[1]: Starting Load Kernel Module mtdpstore... 263 [ 5.682795] systemd[1]: Starting Load Kernel Module pstore_blk... 264 [ 5.686006] RPC: Registered named UNIX socket transport module. 265 [ 5.686039] RPC: Registered udp transport module. 266 [ 5.686044] RPC: Registered tcp transport module. 267 [ 5.686049] RPC: Registered tcp NFSv4.1 backchannel transport module. 268 [ 5.691248] systemd[1]: Starting Load Kernel Module pstore_zone... 269 [ 5.699238] systemd[1]: Starting Load Kernel Module ramoops... 270 [ 5.710800] systemd[1]: Started Nameserver information manager. 271 [ 5.712507] systemd[1]: Reached target Preparation for Network. 272 [ 5.714142] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 273 [ 5.728169] fuse: init (API version 7.34) 274 [ 5.746976] systemd[1]: Starting Load Kernel Modules... 275 [ 5.755503] systemd[1]: Starting Remount Root and Kernel File Systems... 276 [ 5.766561] systemd[1]: Starting Coldplug All udev Devices... 277 [ 5.798255] systemd[1]: Mounted Huge Pages File System. 278 [ 5.799407] systemd[1]: Mounted POSIX Message Queue File System. 279 [ 5.800453] systemd[1]: Mounted Kernel Debug File System. 280 [ 5.802887] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). 281 [ 5.804360] systemd[1]: Finished Restore / save the current clock. 282 [ 5.809337] systemd[1]: Finished Create List of Static Device Nodes. 283 [ 5.812287] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 284 [ 5.819178] systemd[1]: Mounted NFSD configuration filesystem. 285 [ 5.821039] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 286 [ 5.822516] systemd[1]: Finished Load Kernel Module chromeos_pstore. 287 [ 5.824627] systemd[1]: modprobe@configfs.service: Deactivated successfully. 288 [ 5.846741] systemd[1]: Finished Load Kernel Module configfs. 289 [ 5.848800] systemd[1]: modprobe@drm.service: Deactivated successfully. 290 [ 5.850260] systemd[1]: Finished Load Kernel Module drm. 291 [ 5.852292] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 292 [ 5.854781] systemd[1]: Finished Load Kernel Module efi_pstore. 293 [ 5.856829] systemd[1]: modprobe@fuse.service: Deactivated successfully. 294 [ 5.858307] systemd[1]: Finished Load Kernel Module fuse. 295 [ 5.860388] systemd[1]: modprobe@mtdpstore.service: Deactivated successfully. 296 [ 5.861980] systemd[1]: Finished Load Kernel Module mtdpstore. 297 [ 5.864011] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 298 [ 5.865608] systemd[1]: Finished Load Kernel Module pstore_blk. 299 [ 5.867642] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 300 [ 5.869070] systemd[1]: Finished Load Kernel Module pstore_zone. 301 [ 5.871303] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 302 [ 5.872731] systemd[1]: Finished Load Kernel Module ramoops. 303 [ 5.878987] systemd[1]: Finished Load Kernel Modules. 304 [ 5.882737] systemd[1]: Finished Remount Root and Kernel File Systems. 305 [ 5.910247] systemd[1]: Mounting FUSE Control File System... 306 [ 5.921067] systemd[1]: Mounting Kernel Configuration File System... 307 [ 5.921836] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 308 [ 5.928548] systemd[1]: Starting Load/Save Random Seed... 309 [ 5.935441] systemd[1]: Starting Apply Kernel Variables... 310 [ 5.946632] systemd[1]: Starting Create System Users... 311 [ 5.964986] systemd[1]: Mounted FUSE Control File System. 312 [ 5.966445] systemd[1]: Mounted Kernel Configuration File System. 313 [ 6.006390] systemd[1]: Finished Create System Users. 314 [ 6.078730] systemd[1]: Starting Create Static Device Nodes in /dev... 315 [ 6.082512] systemd[1]: Finished Set the console keyboard layout. 316 [ 6.085782] systemd[1]: Finished Apply Kernel Variables. 317 [ 6.134253] systemd[1]: Finished Create Static Device Nodes in /dev. 318 [ 6.135343] systemd[1]: Reached target Preparation for Local File Systems. 319 [ 6.166200] systemd[1]: Mounting /tmp... 320 [ 6.176511] systemd[1]: Starting Rule-based Manager for Device Events and Files... 321 [ 6.181692] systemd[1]: Mounted /tmp. 322 [ 6.183036] systemd[1]: Reached target Local File Systems. 323 [ 6.191937] systemd[1]: Starting Armbian leds state... 324 [ 6.206231] systemd[1]: Starting Armbian ZRAM config... 325 [ 6.214844] systemd[1]: Starting Set console font and keymap... 326 [ 6.215844] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 327 [ 6.216334] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 328 [ 6.221977] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 329 [ 6.248638] systemd[1]: Finished Set console font and keymap. 330 [ 6.298156] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 331 [ 6.299141] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 332 [ 6.300999] systemd[1]: Failed to start Armbian leds state. 333 [ 6.310527] systemd[1]: Finished Coldplug All udev Devices. 334 [ 6.322224] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 335 [ 6.441891] systemd[1]: Started Rule-based Manager for Device Events and Files. 336 [ 6.570005] zram: Added device: zram0 337 [ 6.570788] zram: Added device: zram1 338 [ 6.571532] zram: Added device: zram2 339 [ 6.659205] urandom_read_iter: 54 callbacks suppressed 340 [ 6.659234] random: systemd: uninitialized urandom read (16 bytes read) 341 [ 6.679091] zram0: detected capacity change from 0 to 2037280 342 [ 6.757626] random: systemd: uninitialized urandom read (16 bytes read) 343 [ 6.757774] random: systemd: uninitialized urandom read (16 bytes read) 344 [ 6.841466] random: crng init done 345 [ 6.841488] random: 6 urandom warning(s) missed due to ratelimiting 346 [ 6.851333] systemd[1]: Finished Load/Save Random Seed. 347 [ 6.852488] systemd[1]: Condition check resulted in First Boot Complete being skipped. 348 [ 6.852618] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 349 [ 6.852764] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 350 [ 6.961299] mc: Linux media interface: v0.10 351 [ 6.976285] Adding 1018636k swap on /dev/zram0. Priority:5 extents:1 across:1018636k SSFS 352 [ 7.036741] systemd[1]: Found device /dev/ttyS0. 353 [ 7.047314] videodev: Linux video capture interface: v2.00 354 [ 7.274657] zram1: detected capacity change from 0 to 102400 355 [ 7.290084] lima 1c40000.gpu: gp - mali400 version major 1 minor 1 356 [ 7.290221] lima 1c40000.gpu: pp0 - mali400 version major 1 minor 1 357 [ 7.290277] lima 1c40000.gpu: pp1 - mali400 version major 1 minor 1 358 [ 7.290336] lima 1c40000.gpu: l2 cache 64K, 4-way, 64byte cache line, 64bit external bus 359 [ 7.292006] lima 1c40000.gpu: bus rate = 200000000 360 [ 7.292092] lima 1c40000.gpu: mod rate = 432000000 361 [ 7.317277] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. 362 [ 7.344557] [drm] Initialized lima 1.2.0 20200215 for 1c40000.gpu on minor 1 363 [ 7.418277] cedrus 1c0e000.video-codec: Device registered as /dev/video0 364 [ 7.455716] systemd[1]: Finished Armbian ZRAM config. 365 [ 7.475341] axp20x-battery-power-supply axp20x-battery-power-supply: DMA mask not set 366 [ 7.480922] axp20x-ac-power-supply axp20x-ac-power-supply: DMA mask not set 367 [ 7.483821] Bluetooth: Core ver 2.22 368 [ 7.484187] NET: Registered PF_BLUETOOTH protocol family 369 [ 7.484205] Bluetooth: HCI device and connection manager initialized 370 [ 7.484264] Bluetooth: HCI socket layer initialized 371 [ 7.484282] Bluetooth: L2CAP socket layer initialized 372 [ 7.484327] Bluetooth: SCO socket layer initialized 373 [ 7.589325] systemd[1]: Starting Armbian memory supported logging... 374 [ 7.598740] axp20x-adc axp813-adc: DMA mask not set 375 [ 7.612201] usbcore: registered new interface driver usbserial_generic 376 [ 7.612315] usbserial: USB Serial support registered for generic 377 [ 7.622639] hwmon hwmon4: temp1_input not attached to any thermal zone 378 [ 7.657205] usbcore: registered new interface driver ftdi_sio 379 [ 7.657375] usbserial: USB Serial support registered for FTDI USB Serial Device 380 [ 7.676661] usb 2-1.1: Found UVC 1.00 device <unnamed> (046d:081b) 381 [ 7.678801] ftdi_sio 2-1.2:1.0: FTDI USB Serial Device converter detected 382 [ 7.684383] usb 2-1.2: Detected FT232RL 383 [ 7.703921] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 384 [ 7.738461] input: UVC Camera (046d:081b) as /devices/platform/soc/1c1b000.usb/usb2/2-1/2-1.1/2-1.1:1.0/input/input1 385 [ 7.752488] usb 2-1.2: FTDI USB Serial Device converter now attached to ttyUSB0 386 [ 7.782744] Bluetooth: HCI UART driver ver 2.3 387 [ 7.782841] Bluetooth: HCI UART protocol H4 registered 388 [ 7.782850] Bluetooth: HCI UART protocol BCSP registered 389 [ 7.786686] systemd[1]: Started ifup for eth0. 390 [ 7.792020] usbcore: registered new interface driver uvcvideo 391 [ 7.809997] Bluetooth: HCI UART protocol LL registered 392 [ 7.810071] Bluetooth: HCI UART protocol ATH3K registered 393 [ 7.810347] Bluetooth: HCI UART protocol Three-wire (H5) registered 394 [ 7.810958] Bluetooth: HCI UART protocol Intel registered 395 [ 7.811175] dw-apb-uart 1c28400.serial: failed to request DMA 396 [ 7.811268] Bluetooth: HCI UART protocol Broadcom registered 397 [ 7.811332] Bluetooth: HCI UART protocol QCA registered 398 [ 7.811340] Bluetooth: HCI UART protocol AG6XX registered 399 [ 7.811389] Bluetooth: HCI UART protocol Marvell registered 400 [ 7.846757] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. 401 [ 7.917124] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 402 [ 7.918479] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 403 [ 8.319754] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. 404 [ 8.478418] jack: irq plug-in 405 [ 8.482104] input: sun50i-a64-audio Headset Jack as /devices/platform/sound/sound/card2/input2 406 [ 8.689482] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 407 [ 8.690039] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 408 [ 8.714465] systemd[1]: Starting Load Kernel Module chromeos_pstore... 409 [ 8.721368] systemd[1]: Starting Load Kernel Module efi_pstore... 410 [ 8.732748] systemd[1]: Starting Load Kernel Module mtdpstore... 411 [ 8.739423] systemd[1]: Starting Load Kernel Module pstore_blk... 412 [ 8.747849] systemd[1]: Starting Load Kernel Module pstore_zone... 413 [ 8.755291] systemd[1]: Starting Load Kernel Module ramoops... 414 [ 8.756221] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 415 [ 8.756466] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 416 [ 8.756695] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 417 [ 8.759961] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 418 [ 8.761898] systemd[1]: Finished Load Kernel Module chromeos_pstore. 419 [ 8.764356] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 420 [ 8.765893] systemd[1]: Finished Load Kernel Module efi_pstore. 421 [ 8.768350] systemd[1]: modprobe@mtdpstore.service: Deactivated successfully. 422 [ 8.769339] systemd[1]: Finished Load Kernel Module mtdpstore. 423 [ 8.771060] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 424 [ 8.772028] systemd[1]: Finished Load Kernel Module pstore_blk. 425 [ 8.774069] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 426 [ 8.775053] systemd[1]: Finished Load Kernel Module pstore_zone. 427 [ 8.781672] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 428 [ 8.782910] systemd[1]: Finished Load Kernel Module ramoops. 429 [ 8.784391] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 430 [ 9.163505] usb 2-1.1: set resolution quirk: cval->res = 384 431 [ 9.164160] usbcore: registered new interface driver snd-usb-audio 432 [ 9.229632] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 433 [ 9.230142] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 434 [ 9.266220] systemd[1]: Starting Load Kernel Module chromeos_pstore... 435 [ 9.273877] systemd[1]: Starting Load Kernel Module efi_pstore... 436 [ 9.279738] systemd[1]: Starting Load Kernel Module mtdpstore... 437 [ 9.285950] systemd[1]: Starting Load Kernel Module pstore_blk... 438 [ 9.292133] systemd[1]: Starting Load Kernel Module pstore_zone... 439 [ 9.298483] systemd[1]: Starting Load Kernel Module ramoops... 440 [ 9.299431] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 441 [ 9.299693] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 442 [ 9.299879] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 443 [ 9.302560] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 444 [ 9.304024] systemd[1]: Finished Load Kernel Module chromeos_pstore. 445 [ 9.306167] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 446 [ 9.307249] systemd[1]: Finished Load Kernel Module efi_pstore. 447 [ 9.309320] systemd[1]: modprobe@mtdpstore.service: Deactivated successfully. 448 [ 9.310390] systemd[1]: Finished Load Kernel Module mtdpstore. 449 [ 9.312050] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 450 [ 9.312975] systemd[1]: Finished Load Kernel Module pstore_blk. 451 [ 9.314656] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 452 [ 9.315585] systemd[1]: Finished Load Kernel Module pstore_zone. 453 [ 9.317200] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 454 [ 9.318222] systemd[1]: Finished Load Kernel Module ramoops. 455 [ 9.319228] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 456 [ 9.599031] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 457 [ 9.599538] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 458 [ 9.630260] systemd[1]: Starting Load Kernel Module chromeos_pstore... 459 [ 9.636198] systemd[1]: Starting Load Kernel Module efi_pstore... 460 [ 9.642285] systemd[1]: Starting Load Kernel Module mtdpstore... 461 [ 9.648507] systemd[1]: Starting Load Kernel Module pstore_blk... 462 [ 9.654783] systemd[1]: Starting Load Kernel Module pstore_zone... 463 [ 9.661018] systemd[1]: Starting Load Kernel Module ramoops... 464 [ 9.661938] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 465 [ 9.662180] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 466 [ 9.662379] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 467 [ 9.666196] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 468 [ 9.668105] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 469 [ 9.669272] systemd[1]: Finished Load Kernel Module chromeos_pstore. 470 [ 9.671364] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 471 [ 9.672277] systemd[1]: Finished Load Kernel Module efi_pstore. 472 [ 9.674113] systemd[1]: modprobe@mtdpstore.service: Deactivated successfully. 473 [ 9.675048] systemd[1]: Finished Load Kernel Module mtdpstore. 474 [ 9.676820] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 475 [ 9.677871] systemd[1]: Finished Load Kernel Module pstore_blk. 476 [ 9.679532] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 477 [ 9.680430] systemd[1]: Finished Load Kernel Module pstore_zone. 478 [ 9.682259] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 479 [ 9.683210] systemd[1]: Finished Load Kernel Module ramoops. 480 [ 9.689068] systemd[1]: Starting Raise network interfaces... 481 [ 9.689706] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 482 [ 10.079326] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 483 [ 10.079976] systemd[1]: networking.service: Failed with result 'exit-code'. 484 [ 10.081243] systemd[1]: Failed to start Raise network interfaces. 485 [ 11.214316] systemd[1]: Finished Armbian memory supported logging. 486 [ 11.261900] systemd[1]: Starting Journal Service... 487 [ 11.475047] systemd[1]: Started Journal Service. 488 [ 11.544421] systemd-journald[658]: Received client request to flush runtime journal. 489 490 ### armbian-release: 491 492 # PLEASE DO NOT EDIT THIS FILE 493 BOARD=pine64 494 BOARD_NAME="Pine64" 495 BOARDFAMILY=sun50iw1 496 BUILD_REPOSITORY_URL=https://github.com/armbian/build 497 BUILD_REPOSITORY_COMMIT=13f5fba13c1 498 VERSION=22.05.3 499 LINUXFAMILY=sunxi64 500 ARCH=arm64 501 IMAGE_TYPE=stable 502 BOARD_TYPE=conf 503 INITRD_ARCH=arm64 504 KERNEL_IMAGE_TYPE=stable 505 BRANCH=current 506 507 ### boot environment: 508 509 verbosity=1 510 bootlogo=false 511 console=both 512 disp_mode=1920x1080p60 513 overlay_prefix=sun50i-a64 514 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 515 rootfstype=ext4 516 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 517 518 ### lsusb: 519 520 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 521 Bus 002 Device 004: ID 0403:6001 Future Technology Devices International, Ltd FT232 Serial (UART) IC 522 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 523 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 524 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 525 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 526 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 527 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 528 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 529 530 ### lscpu: 531 532 Architecture: aarch64 533 CPU op-mode(s): 32-bit, 64-bit 534 Byte Order: Little Endian 535 CPU(s): 4 536 On-line CPU(s) list: 0-3 537 Vendor ID: ARM 538 Model name: Cortex-A53 539 Model: 4 540 Thread(s) per core: 1 541 Core(s) per cluster: 4 542 Socket(s): - 543 Cluster(s): 1 544 Stepping: r0p4 545 CPU max MHz: 1152.0000 546 CPU min MHz: 648.0000 547 BogoMIPS: 48.00 548 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 549 NUMA node(s): 1 550 NUMA node0 CPU(s): 0-3 551 Vulnerability Itlb multihit: Not affected 552 Vulnerability L1tf: Not affected 553 Vulnerability Mds: Not affected 554 Vulnerability Meltdown: Not affected 555 Vulnerability Mmio stale data: Not affected 556 Vulnerability Spec store bypass: Not affected 557 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 558 Vulnerability Spectre v2: Not affected 559 Vulnerability Srbds: Not affected 560 Vulnerability Tsx async abort: Not affected 561 562 ### cpuinfo: 563 564 processor : 0 565 BogoMIPS : 48.00 566 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 567 CPU implementer : 0x41 568 CPU architecture: 8 569 CPU variant : 0x0 570 CPU part : 0xd03 571 CPU revision : 4 572 573 processor : 1 574 BogoMIPS : 48.00 575 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 576 CPU implementer : 0x41 577 CPU architecture: 8 578 CPU variant : 0x0 579 CPU part : 0xd03 580 CPU revision : 4 581 582 processor : 2 583 BogoMIPS : 48.00 584 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 585 CPU implementer : 0x41 586 CPU architecture: 8 587 CPU variant : 0x0 588 CPU part : 0xd03 589 CPU revision : 4 590 591 processor : 3 592 BogoMIPS : 48.00 593 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 594 CPU implementer : 0x41 595 CPU architecture: 8 596 CPU variant : 0x0 597 CPU part : 0xd03 598 CPU revision : 4 599 600 601 ### meminfo: 602 603 MemTotal: 2037276 kB 604 MemFree: 1863420 kB 605 MemAvailable: 1876548 kB 606 Buffers: 11652 kB 607 Cached: 61360 kB 608 SwapCached: 0 kB 609 Active: 27756 kB 610 Inactive: 63724 kB 611 Active(anon): 348 kB 612 Inactive(anon): 21196 kB 613 Active(file): 27408 kB 614 Inactive(file): 42528 kB 615 Unevictable: 0 kB 616 Mlocked: 0 kB 617 SwapTotal: 1018636 kB 618 SwapFree: 1018636 kB 619 Dirty: 12512 kB 620 Writeback: 0 kB 621 AnonPages: 18340 kB 622 Mapped: 16968 kB 623 Shmem: 3252 kB 624 KReclaimable: 10284 kB 625 Slab: 34276 kB 626 SReclaimable: 10284 kB 627 SUnreclaim: 23992 kB 628 KernelStack: 2272 kB 629 PageTables: 1452 kB 630 NFS_Unstable: 0 kB 631 Bounce: 0 kB 632 WritebackTmp: 0 kB 633 CommitLimit: 2037272 kB 634 Committed_AS: 40296 kB 635 VmallocTotal: 133143592960 kB 636 VmallocUsed: 24140 kB 637 VmallocChunk: 0 kB 638 Percpu: 1264 kB 639 AnonHugePages: 0 kB 640 ShmemHugePages: 0 kB 641 ShmemPmdMapped: 0 kB 642 FileHugePages: 0 kB 643 FilePmdMapped: 0 kB 644 CmaTotal: 131072 kB 645 CmaFree: 128768 kB 646 HugePages_Total: 0 647 HugePages_Free: 0 648 HugePages_Rsvd: 0 649 HugePages_Surp: 0 650 Hugepagesize: 2048 kB 651 Hugetlb: 0 kB 652 653 ### virtual memory: 654 655 vm.admin_reserve_kbytes = 8192 656 vm.compaction_proactiveness = 20 657 vm.compact_unevictable_allowed = 1 658 vm.dirty_background_bytes = 0 659 vm.dirty_background_ratio = 10 660 vm.dirty_bytes = 0 661 vm.dirty_expire_centisecs = 3000 662 vm.dirty_ratio = 20 663 vm.dirtytime_expire_seconds = 43200 664 vm.dirty_writeback_centisecs = 500 665 vm.extfrag_threshold = 500 666 vm.hugetlb_shm_group = 0 667 vm.laptop_mode = 0 668 vm.legacy_va_layout = 0 669 vm.lowmem_reserve_ratio = 256 256 32 0 670 vm.max_map_count = 65530 671 vm.min_free_kbytes = 22528 672 vm.min_slab_ratio = 5 673 vm.min_unmapped_ratio = 1 674 vm.mmap_min_addr = 32768 675 vm.mmap_rnd_bits = 18 676 vm.mmap_rnd_compat_bits = 11 677 vm.nr_hugepages = 0 678 vm.nr_hugepages_mempolicy = 0 679 vm.nr_overcommit_hugepages = 0 680 vm.numa_stat = 1 681 vm.numa_zonelist_order = Node 682 vm.oom_dump_tasks = 1 683 vm.oom_kill_allocating_task = 0 684 vm.overcommit_kbytes = 0 685 vm.overcommit_memory = 0 686 vm.overcommit_ratio = 50 687 vm.page-cluster = 0 688 vm.page_lock_unfairness = 5 689 vm.panic_on_oom = 0 690 vm.percpu_pagelist_high_fraction = 0 691 vm.stat_interval = 1 692 vm.swappiness = 100 693 vm.user_reserve_kbytes = 63007 694 vm.vfs_cache_pressure = 100 695 vm.watermark_boost_factor = 15000 696 vm.watermark_scale_factor = 10 697 vm.zone_reclaim_mode = 0 698 699 ### ip addr: 700 701 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 702 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 703 inet XXX.XXX.0.1/8 scope host lo 704 valid_lft forever preferred_lft forever 705 inet6 ::1/128 scope host 706 valid_lft forever preferred_lft forever 707 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 708 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 709 710 ### partitions: 711 712 major minor #blocks name 713 714 179 0 31260672 mmcblk0 715 179 1 30928896 mmcblk0p1 716 8 0 117220824 sda 717 8 1 117218304 sda1 718 252 0 1018640 zram0 719 252 1 51200 zram1 720 721 ### df: 722 723 tmpfs 199M 3.2M 196M 2% /run 724 /dev/sda1 110G 19G 86G 19% / 725 tmpfs 995M 0 995M 0% /dev/shm 726 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 727 tmpfs 995M 0 995M 0% /tmp 728 /dev/zram1 47M 13M 32M 29% /var/log 729 730 ### lsblk: 731 732 NAME FSTYPE SIZE MOUNTPOINT UUID 733 sda 111.8G 734 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 735 mmcblk0 29.8G 736 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 737 zram1 50M /var/log 738 zram2 0B 739 740 ### zramctl: 741 742 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 743 /dev/zram1 zstd 50M 68K 732B 44K 4 /var/log 744 /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] 745 746 ### mtab: 747 748 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 749 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 750 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 751 752 ### mmc0:0001 info: 753 754 fwrev: 0x0 755 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 756 cid: 1b534d454231515430bc836120012941 757 rca: 0x0001 758 csd: 400e00325b590000ee7f7f800a404055 759 manfid: 0x00001b 760 ocr: 0x00200000 761 preferred_erase_size: 4194304 762 type: SD 763 hwrev: 0x3 764 date: 09/2018 765 dsr: 0x404 766 erase_size: 512 767 oemid: 0x534d 768 serial: 0xbc836120 769 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 770 scr: 02b5800200000000 771 name: EB1QT 772 773 ### Boot system health: 774 775 Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 776 18:53:54: 1152MHz 0.23 52% 30% 17% 0% 3% 0% 40.7°C 0/7 777 18:53:55: 1056MHz 0.23 54% 24% 28% 0% 0% 0% 41.2°C 0/7 778 18:53:55: 1152MHz 0.23 35% 19% 14% 0% 0% 1% 41.2°C 0/7 779 18:53:55: 1056MHz 0.23 36% 18% 15% 1% 0% 1% 36.1°C 0/7 780 18:53:56: 1008MHz 0.23 35% 17% 15% 1% 0% 0% 36.1°C 0/7 781 782 ### No more available zram devices () 783 784 Fri Dec 9 09:02:35 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 785 786 ### dmesg: 787 788 [ 0.003390] rcu: Hierarchical SRCU implementation. 789 [ 0.004905] smp: Bringing up secondary CPUs ... 790 [ 0.006156] Detected VIPT I-cache on CPU1 791 [ 0.006225] arch_timer: CPU1: Trapping CNTVCT access 792 [ 0.006242] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 793 [ 0.007054] Detected VIPT I-cache on CPU2 794 [ 0.007090] arch_timer: CPU2: Trapping CNTVCT access 795 [ 0.007101] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 796 [ 0.007832] Detected VIPT I-cache on CPU3 797 [ 0.007866] arch_timer: CPU3: Trapping CNTVCT access 798 [ 0.007876] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 799 [ 0.008000] smp: Brought up 1 node, 4 CPUs 800 [ 0.008017] SMP: Total of 4 processors activated. 801 [ 0.008024] CPU features: detected: 32-bit EL0 Support 802 [ 0.008030] CPU features: detected: CRC32 instructions 803 [ 0.022878] CPU: All CPU(s) started at EL2 804 [ 0.022912] alternatives: patching kernel code 805 [ 0.024731] devtmpfs: initialized 806 [ 0.032773] Registered cp15_barrier emulation handler 807 [ 0.032807] Registered setend emulation handler 808 [ 0.032990] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 809 [ 0.033014] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 810 [ 0.038461] pinctrl core: initialized pinctrl subsystem 811 [ 0.040135] NET: Registered PF_NETLINK/PF_ROUTE protocol family 812 [ 0.041986] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 813 [ 0.042165] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 814 [ 0.042365] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 815 [ 0.042476] audit: initializing netlink subsys (disabled) 816 [ 0.042691] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 817 [ 0.043293] thermal_sys: Registered thermal governor 'fair_share' 818 [ 0.043301] thermal_sys: Registered thermal governor 'bang_bang' 819 [ 0.043307] thermal_sys: Registered thermal governor 'step_wise' 820 [ 0.043312] thermal_sys: Registered thermal governor 'user_space' 821 [ 0.043749] cpuidle: using governor menu 822 [ 0.044007] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 823 [ 0.044119] ASID allocator initialised with 65536 entries 824 [ 0.044315] Serial: AMBA PL011 UART driver 825 [ 0.060307] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 826 [ 0.061835] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 827 [ 0.069915] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 828 [ 0.069939] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 829 [ 0.069948] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 830 [ 0.069956] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 831 [ 0.072137] cryptd: max_cpu_qlen set to 1000 832 [ 0.140260] raid6: neonx8 gen() 1456 MB/s 833 [ 0.208333] raid6: neonx8 xor() 1091 MB/s 834 [ 0.276415] raid6: neonx4 gen() 1495 MB/s 835 [ 0.344481] raid6: neonx4 xor() 1081 MB/s 836 [ 0.412575] raid6: neonx2 gen() 1411 MB/s 837 [ 0.480651] raid6: neonx2 xor() 991 MB/s 838 [ 0.548725] raid6: neonx1 gen() 1229 MB/s 839 [ 0.616797] raid6: neonx1 xor() 848 MB/s 840 [ 0.684870] raid6: int64x8 gen() 1019 MB/s 841 [ 0.752945] raid6: int64x8 xor() 533 MB/s 842 [ 0.821018] raid6: int64x4 gen() 1126 MB/s 843 [ 0.889081] raid6: int64x4 xor() 573 MB/s 844 [ 0.957167] raid6: int64x2 gen() 962 MB/s 845 [ 1.025230] raid6: int64x2 xor() 509 MB/s 846 [ 1.093311] raid6: int64x1 gen() 716 MB/s 847 [ 1.161376] raid6: int64x1 xor() 372 MB/s 848 [ 1.161383] raid6: using algorithm neonx4 gen() 1495 MB/s 849 [ 1.161389] raid6: .... xor() 1081 MB/s, rmw enabled 850 [ 1.161395] raid6: using neon recovery algorithm 851 [ 1.162072] iommu: Default domain type: Translated 852 [ 1.162081] iommu: DMA domain TLB invalidation policy: strict mode 853 [ 1.162408] SCSI subsystem initialized 854 [ 1.162634] usbcore: registered new interface driver usbfs 855 [ 1.162684] usbcore: registered new interface driver hub 856 [ 1.162720] usbcore: registered new device driver usb 857 [ 1.163047] pps_core: LinuxPPS API ver. 1 registered 858 [ 1.163054] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 859 [ 1.163073] PTP clock support registered 860 [ 1.163583] ARM FF-A: FFA_VERSION returned not supported 861 [ 1.163979] Advanced Linux Sound Architecture Driver Initialized. 862 [ 1.164722] NetLabel: Initializing 863 [ 1.164728] NetLabel: domain hash size = 128 864 [ 1.164734] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 865 [ 1.164818] NetLabel: unlabeled traffic allowed by default 866 [ 1.165322] clocksource: Switched to clocksource arch_sys_counter 867 [ 1.165555] VFS: Disk quotas dquot_6.6.0 868 [ 1.165617] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 869 [ 1.166276] AppArmor: AppArmor Filesystem Enabled 870 [ 1.173500] NET: Registered PF_INET protocol family 871 [ 1.173779] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 872 [ 1.175152] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 873 [ 1.175196] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 874 [ 1.175214] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 875 [ 1.175374] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 876 [ 1.175700] TCP: Hash tables configured (established 16384 bind 16384) 877 [ 1.175864] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 878 [ 1.175932] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 879 [ 1.176154] NET: Registered PF_UNIX/PF_LOCAL protocol family 880 [ 1.176746] Trying to unpack rootfs image as initramfs... 881 [ 1.186754] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 882 [ 1.193921] Initialise system trusted keyrings 883 [ 1.194017] Key type blacklist registered 884 [ 1.194270] workingset: timestamp_bits=44 max_order=19 bucket_order=0 885 [ 1.200671] zbud: loaded 886 [ 1.202448] squashfs: version 4.0 (2009/01/31) Phillip Lougher 887 [ 1.205034] integrity: Platform Keyring initialized 888 [ 1.258464] xor: automatically using best checksumming function 32regs 889 [ 1.258493] async_tx: api initialized (async) 890 [ 1.258505] Key type asymmetric registered 891 [ 1.258512] Asymmetric key parser 'x509' registered 892 [ 1.258656] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 893 [ 1.258833] io scheduler mq-deadline registered 894 [ 1.258842] io scheduler kyber registered 895 [ 1.259058] io scheduler bfq registered 896 [ 1.263135] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 897 [ 1.273197] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 898 [ 1.285222] loop: module loaded 899 [ 1.287819] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 900 [ 1.287855] ehci-platform: EHCI generic platform driver 901 [ 1.288013] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 902 [ 1.288028] ohci-platform: OHCI generic platform driver 903 [ 1.288523] usbcore: registered new interface driver usb-storage 904 [ 1.289104] mousedev: PS/2 mouse device common for all mice 905 [ 1.290282] sun6i-rtc 1f00000.rtc: registered as rtc0 906 [ 1.290323] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-09T20:02:25 UTC (1670616145) 907 [ 1.290445] sun6i-rtc 1f00000.rtc: RTC enabled 908 [ 1.290557] i2c_dev: i2c /dev entries driver 909 [ 1.291379] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 910 [ 1.293519] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 911 [ 1.294045] sdhci: Secure Digital Host Controller Interface driver 912 [ 1.294054] sdhci: Copyright(c) Pierre Ossman 913 [ 1.294083] Synopsys Designware Multimedia Card Interface Driver 914 [ 1.294845] sdhci-pltfm: SDHCI platform and OF driver helper 915 [ 1.295969] ledtrig-cpu: registered to indicate activity on CPUs 916 [ 1.296474] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 917 [ 1.296794] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 918 [ 1.297091] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 919 [ 1.297277] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 920 [ 1.297523] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 921 [ 1.297645] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 922 [ 1.297746] sun8i-ce 1c15000.crypto: Register cbc(aes) 923 [ 1.297935] sun8i-ce 1c15000.crypto: Register ecb(aes) 924 [ 1.298075] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 925 [ 1.298216] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 926 [ 1.298350] sun8i-ce 1c15000.crypto: Register md5 927 [ 1.298490] sun8i-ce 1c15000.crypto: Register sha1 928 [ 1.298623] sun8i-ce 1c15000.crypto: Register sha224 929 [ 1.298763] sun8i-ce 1c15000.crypto: Register sha256 930 [ 1.298897] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 931 [ 1.298908] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 932 [ 1.298916] sun8i-ce 1c15000.crypto: Register stdrng 933 [ 1.299072] sun8i-ce 1c15000.crypto: TRNG not supported 934 [ 1.299083] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 935 [ 1.299677] hid: raw HID events driver (C) Jiri Kosina 936 [ 1.299825] usbcore: registered new interface driver usbhid 937 [ 1.299833] usbhid: USB HID core driver 938 [ 1.305971] NET: Registered PF_INET6 protocol family 939 [ 1.956399] Freeing initrd memory: 12684K 940 [ 1.989933] Segment Routing with IPv6 941 [ 1.990034] In-situ OAM (IOAM) with IPv6 942 [ 1.990136] NET: Registered PF_PACKET protocol family 943 [ 1.990283] 8021q: 802.1Q VLAN Support v1.8 944 [ 1.990452] 9pnet: Installing 9P2000 support 945 [ 1.990566] Key type dns_resolver registered 946 [ 1.991114] registered taskstats version 1 947 [ 1.991132] Loading compiled-in X.509 certificates 948 [ 1.995427] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 949 [ 1.999778] zswap: loaded using pool zstd/z3fold 950 [ 2.000511] Key type ._fscrypt registered 951 [ 2.000519] Key type .fscrypt registered 952 [ 2.000525] Key type fscrypt-provisioning registered 953 [ 2.001703] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 954 [ 2.017536] Key type encrypted registered 955 [ 2.017572] AppArmor: AppArmor sha1 policy hashing enabled 956 [ 2.017617] ima: No TPM chip found, activating TPM-bypass! 957 [ 2.017661] ima: Allocated hash algorithm: sha1 958 [ 2.017704] ima: No architecture policies found 959 [ 2.017759] evm: Initialising EVM extended attributes: 960 [ 2.017764] evm: security.selinux 961 [ 2.017770] evm: security.SMACK64 962 [ 2.017774] evm: security.SMACK64EXEC 963 [ 2.017779] evm: security.SMACK64TRANSMUTE 964 [ 2.017783] evm: security.SMACK64MMAP 965 [ 2.017788] evm: security.apparmor 966 [ 2.017793] evm: security.ima 967 [ 2.017797] evm: security.capability 968 [ 2.017802] evm: HMAC attrs: 0x1 969 [ 2.030714] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 970 [ 2.030811] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 971 [ 2.031564] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 972 [ 2.031633] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 973 [ 2.032492] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 974 [ 2.032926] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 975 [ 2.035103] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 976 [ 2.038141] vcc-3v3: supplied by regulator-dummy 977 [ 2.038637] vdd-cpux: supplied by regulator-dummy 978 [ 2.039288] dcdc4: supplied by regulator-dummy 979 [ 2.039504] vcc-dram: supplied by regulator-dummy 980 [ 2.039949] vdd-sys: supplied by regulator-dummy 981 [ 2.040463] vcc-phy: supplied by regulator-dummy 982 [ 2.040836] aldo1: supplied by regulator-dummy 983 [ 2.041013] vcc-pl: supplied by regulator-dummy 984 [ 2.041491] vcc-pll-avcc: supplied by regulator-dummy 985 [ 2.042113] vcc-hdmi: supplied by regulator-dummy 986 [ 2.042474] vcc-mipi: supplied by regulator-dummy 987 [ 2.042859] dldo3: supplied by regulator-dummy 988 [ 2.043225] vcc-wifi: supplied by regulator-dummy 989 [ 2.043589] cpvdd: supplied by regulator-dummy 990 [ 2.043978] eldo2: supplied by regulator-dummy 991 [ 2.044351] eldo3: supplied by regulator-dummy 992 [ 2.044717] vcc-1v2-hsic: supplied by regulator-dummy 993 [ 2.044938] vdd-cpus: supplied by regulator-dummy 994 [ 2.045386] vcc-rtc: supplied by regulator-dummy 995 [ 2.045840] ldo-io0: supplied by regulator-dummy 996 [ 2.046176] ldo-io1: supplied by regulator-dummy 997 [ 2.046296] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 998 [ 2.051157] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 999 [ 2.051588] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 1000 [ 2.052176] printk: console [ttyS0] disabled 1001 [ 2.052263] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 1002 [ 2.052473] printk: console [ttyS0] enabled 1003 [ 2.053167] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 1004 [ 2.053687] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 1005 [ 2.053845] serial serial0: tty port ttyS1 registered 1006 [ 2.084440] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 1007 [ 2.086282] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 1008 [ 2.086798] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 1009 [ 2.086818] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 1010 [ 2.087052] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 1011 [ 2.088217] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 1012 [ 2.088848] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 1013 [ 2.089229] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 1014 [ 2.089992] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 1015 [ 2.090079] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 1016 [ 2.090792] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 1017 [ 2.091360] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 1018 [ 2.092081] ehci-platform 1c1a000.usb: EHCI Host Controller 1019 [ 2.092115] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 1020 [ 2.092247] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 1021 [ 2.105340] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 1022 [ 2.105712] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1023 [ 2.105728] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1024 [ 2.105740] usb usb1: Product: EHCI Host Controller 1025 [ 2.105749] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 1026 [ 2.105759] usb usb1: SerialNumber: 1c1a000.usb 1027 [ 2.106319] hub 1-0:1.0: USB hub found 1028 [ 2.106378] hub 1-0:1.0: 1 port detected 1029 [ 2.107445] ehci-platform 1c1b000.usb: EHCI Host Controller 1030 [ 2.107471] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 1031 [ 2.107612] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 1032 [ 2.121326] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 1033 [ 2.121651] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1034 [ 2.121667] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1035 [ 2.121678] usb usb2: Product: EHCI Host Controller 1036 [ 2.121687] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 1037 [ 2.121697] usb usb2: SerialNumber: 1c1b000.usb 1038 [ 2.122190] hub 2-0:1.0: USB hub found 1039 [ 2.122240] hub 2-0:1.0: 1 port detected 1040 [ 2.297431] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 1041 [ 2.297470] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 1042 [ 2.297607] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 1043 [ 2.361386] usb 1-1: new high-speed USB device number 2 using ehci-platform 1044 [ 2.361675] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 1045 [ 2.361690] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1046 [ 2.361702] usb usb3: Product: Generic Platform OHCI controller 1047 [ 2.361712] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 1048 [ 2.361721] usb usb3: SerialNumber: 1c1a400.usb 1049 [ 2.362233] hub 3-0:1.0: USB hub found 1050 [ 2.362281] hub 3-0:1.0: 1 port detected 1051 [ 2.363296] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 1052 [ 2.363323] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 1053 [ 2.363492] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 1054 [ 2.377341] usb 2-1: new high-speed USB device number 2 using ehci-platform 1055 [ 2.425592] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 1056 [ 2.425607] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1057 [ 2.425619] usb usb4: Product: Generic Platform OHCI controller 1058 [ 2.425629] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 1059 [ 2.425638] usb usb4: SerialNumber: 1c1b400.usb 1060 [ 2.426151] hub 4-0:1.0: USB hub found 1061 [ 2.426205] hub 4-0:1.0: 1 port detected 1062 [ 2.427269] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 1063 [ 2.427419] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 1064 [ 2.505603] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 1065 [ 2.505635] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 1066 [ 2.505915] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1067 [ 2.505931] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1068 [ 2.505943] usb usb5: Product: MUSB HDRC host driver 1069 [ 2.505952] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 1070 [ 2.505962] usb usb5: SerialNumber: musb-hdrc.4.auto 1071 [ 2.506486] hub 5-0:1.0: USB hub found 1072 [ 2.506535] hub 5-0:1.0: 1 port detected 1073 [ 2.509992] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 1074 [ 2.510054] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 1075 [ 2.511089] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 1076 [ 2.511096] sunxi-mmc 1c0f000.mmc: Got CD GPIO 1077 [ 2.511224] of_cfs_init 1078 [ 2.511388] of_cfs_init: OK 1079 [ 2.511811] ALSA device list: 1080 [ 2.511819] No soundcards found. 1081 [ 2.519310] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 1082 [ 2.519327] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 1083 [ 2.519338] usb 1-1: SerialNumber: 20181120 1084 [ 2.520305] usb-storage 1-1:1.0: USB Mass Storage device detected 1085 [ 2.520835] scsi host0: usb-storage 1-1:1.0 1086 [ 2.536408] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 1087 [ 2.536425] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1088 [ 2.536437] usb 2-1: Product: USB2.1 Hub 1089 [ 2.536446] usb 2-1: Manufacturer: GenesysLogic 1090 [ 2.536559] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1091 [ 2.536788] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1092 [ 2.538570] Freeing unused kernel memory: 2496K 1093 [ 2.538798] hub 2-1:1.0: USB hub found 1094 [ 2.538952] Run /init as init process 1095 [ 2.538960] with arguments: 1096 [ 2.538966] /init 1097 [ 2.538973] with environment: 1098 [ 2.538978] HOME=/ 1099 [ 2.538983] TERM=linux 1100 [ 2.538988] ubootpart=ea5e158f-01 1101 [ 2.538994] cgroup_enable=memory 1102 [ 2.539224] hub 2-1:1.0: 4 ports detected 1103 [ 2.573398] mmc0: new high speed SDHC card at address 0001 1104 [ 2.574518] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 1105 [ 2.576949] mmcblk0: p1 1106 [ 2.853398] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 1107 [ 3.043430] usbcore: registered new interface driver uas 1108 [ 3.058898] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 1109 [ 3.067368] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 1110 [ 3.067643] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 1111 [ 3.067658] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 1112 [ 3.067986] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 1113 [ 3.069558] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 1114 [ 3.069621] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 1115 [ 3.071253] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 1116 [ 3.071280] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 1117 [ 3.071288] dwmac-sun8i 1c30000.ethernet: COE Type 2 1118 [ 3.071298] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 1119 [ 3.071307] dwmac-sun8i 1c30000.ethernet: Normal descriptors 1120 [ 3.071315] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 1121 [ 3.093587] axp20x-gpio axp20x-gpio: DMA mask not set 1122 [ 3.094580] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 1123 [ 3.206728] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 1124 [ 3.206766] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 1125 [ 3.206779] usb 2-1.1: SerialNumber: AA5FCF90 1126 [ 3.313376] usb 2-1.2: new full-speed USB device number 4 using ehci-platform 1127 [ 3.452285] usb 2-1.2: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 1128 [ 3.452301] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 1129 [ 3.452313] usb 2-1.2: Product: FT232R USB UART 1130 [ 3.452323] usb 2-1.2: Manufacturer: FTDI 1131 [ 3.452332] usb 2-1.2: SerialNumber: AR0K4JEL 1132 [ 3.526365] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 1133 [ 3.527753] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 1134 [ 3.528870] sd 0:0:0:0: [sda] Write Protect is off 1135 [ 3.528902] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 1136 [ 3.529262] sd 0:0:0:0: Attached scsi generic sg0 type 0 1137 [ 3.530692] sd 0:0:0:0: [sda] No Caching mode page found 1138 [ 3.530722] sd 0:0:0:0: [sda] Assuming drive cache: write through 1139 [ 3.536985] sda: sda1 1140 [ 3.540595] sd 0:0:0:0: [sda] Attached SCSI disk 1141 [ 3.931963] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 1142 [ 4.528269] systemd[1]: systemd 249.11-0ubuntu3.6 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 1143 [ 4.528991] systemd[1]: Detected architecture arm64. 1144 [ 4.531890] systemd[1]: Hostname set to <pine64>. 1145 [ 4.621537] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 1146 [ 5.500464] systemd[1]: Queued start job for default target Graphical Interface. 1147 [ 5.502727] random: systemd: uninitialized urandom read (16 bytes read) 1148 [ 5.537903] systemd[1]: Created slice Slice /system/modprobe. 1149 [ 5.538624] random: systemd: uninitialized urandom read (16 bytes read) 1150 [ 5.541663] systemd[1]: Created slice Slice /system/serial-getty. 1151 [ 5.542122] random: systemd: uninitialized urandom read (16 bytes read) 1152 [ 5.544480] systemd[1]: Created slice User and Session Slice. 1153 [ 5.544953] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 1154 [ 5.545514] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 1155 [ 5.546961] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 1156 [ 5.547503] systemd[1]: Reached target Local Encrypted Volumes. 1157 [ 5.548232] systemd[1]: Reached target Slice Units. 1158 [ 5.548589] systemd[1]: Reached target Swaps. 1159 [ 5.548895] systemd[1]: Reached target System Time Set. 1160 [ 5.549405] systemd[1]: Reached target Local Verity Protected Volumes. 1161 [ 5.572118] systemd[1]: Listening on RPCbind Server Activation Socket. 1162 [ 5.574322] systemd[1]: Listening on Syslog Socket. 1163 [ 5.575558] systemd[1]: Listening on fsck to fsckd communication Socket. 1164 [ 5.576233] systemd[1]: Listening on initctl Compatibility Named Pipe. 1165 [ 5.577886] systemd[1]: Listening on Journal Audit Socket. 1166 [ 5.578920] systemd[1]: Listening on Journal Socket (/dev/log). 1167 [ 5.580016] systemd[1]: Listening on Journal Socket. 1168 [ 5.581504] systemd[1]: Listening on udev Control Socket. 1169 [ 5.582525] systemd[1]: Listening on udev Kernel Socket. 1170 [ 5.588297] systemd[1]: Mounting Huge Pages File System... 1171 [ 5.595231] systemd[1]: Mounting POSIX Message Queue File System... 1172 [ 5.601550] systemd[1]: Mounting NFSD configuration filesystem... 1173 [ 5.608288] systemd[1]: Mounting Kernel Debug File System... 1174 [ 5.609832] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 1175 [ 5.610770] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 1176 [ 5.619686] systemd[1]: Starting Restore / save the current clock... 1177 [ 5.628104] systemd[1]: Starting Set the console keyboard layout... 1178 [ 5.628788] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 1179 [ 5.635996] systemd[1]: Starting Load Kernel Module chromeos_pstore... 1180 [ 5.643611] systemd[1]: Starting Load Kernel Module configfs... 1181 [ 5.651538] systemd[1]: Starting Load Kernel Module drm... 1182 [ 5.659669] systemd[1]: Starting Load Kernel Module efi_pstore... 1183 [ 5.667830] systemd[1]: Starting Load Kernel Module fuse... 1184 [ 5.675761] systemd[1]: Starting Load Kernel Module pstore_blk... 1185 [ 5.683701] systemd[1]: Starting Load Kernel Module pstore_zone... 1186 [ 5.691618] systemd[1]: Starting Load Kernel Module ramoops... 1187 [ 5.699936] systemd[1]: Started Nameserver information manager. 1188 [ 5.701621] systemd[1]: Reached target Preparation for Network. 1189 [ 5.702869] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 1190 [ 5.716634] systemd[1]: Starting Load Kernel Modules... 1191 [ 5.725472] systemd[1]: Starting Remount Root and Kernel File Systems... 1192 [ 5.734296] systemd[1]: Starting Coldplug All udev Devices... 1193 [ 5.750420] systemd[1]: Mounted Huge Pages File System. 1194 [ 5.751616] systemd[1]: Mounted POSIX Message Queue File System. 1195 [ 5.753049] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 1196 [ 5.753100] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 1197 [ 5.755299] systemd[1]: Failed to mount NFSD configuration filesystem. 1198 [ 5.755680] systemd[1]: Dependency failed for NFS server and services. 1199 [ 5.755833] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 1200 [ 5.755984] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 1201 [ 5.756053] systemd[1]: Dependency failed for NFS Mount Daemon. 1202 [ 5.756189] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 1203 [ 5.756240] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 1204 [ 5.756380] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 1205 [ 5.756562] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 1206 [ 5.758112] systemd[1]: Mounted Kernel Debug File System. 1207 [ 5.761151] systemd[1]: Finished Restore / save the current clock. 1208 [ 5.763553] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 1209 [ 5.764878] systemd[1]: Finished Load Kernel Module chromeos_pstore. 1210 [ 5.767379] systemd[1]: modprobe@configfs.service: Deactivated successfully. 1211 [ 5.767574] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 1212 [ 5.768874] systemd[1]: Finished Load Kernel Module configfs. 1213 [ 5.776591] systemd[1]: modprobe@drm.service: Deactivated successfully. 1214 [ 5.778255] systemd[1]: Finished Load Kernel Module drm. 1215 [ 5.780632] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 1216 [ 5.782253] systemd[1]: Finished Load Kernel Module efi_pstore. 1217 [ 5.784523] systemd[1]: modprobe@fuse.service: Deactivated successfully. 1218 [ 5.798648] systemd[1]: Finished Load Kernel Module fuse. 1219 [ 5.800762] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 1220 [ 5.802373] systemd[1]: Finished Load Kernel Module pstore_blk. 1221 [ 5.804429] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 1222 [ 5.805902] systemd[1]: Finished Load Kernel Module pstore_zone. 1223 [ 5.807916] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 1224 [ 5.809433] systemd[1]: Finished Load Kernel Module ramoops. 1225 [ 5.814710] systemd[1]: Finished Load Kernel Modules. 1226 [ 5.817646] systemd[1]: Finished Remount Root and Kernel File Systems. 1227 [ 5.819844] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 1228 [ 5.826540] systemd[1]: Mounting Kernel Configuration File System... 1229 [ 5.827387] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 1230 [ 5.835049] systemd[1]: Starting Load/Save Random Seed... 1231 [ 5.844291] systemd[1]: Starting Apply Kernel Variables... 1232 [ 5.854674] systemd[1]: Starting Create System Users... 1233 [ 5.869265] systemd[1]: Mounted Kernel Configuration File System. 1234 [ 5.928348] systemd[1]: Finished Create System Users. 1235 [ 5.936531] systemd[1]: Starting Create Static Device Nodes in /dev... 1236 [ 5.942985] systemd[1]: Finished Apply Kernel Variables. 1237 [ 5.996023] systemd[1]: Finished Create Static Device Nodes in /dev. 1238 [ 6.009955] systemd[1]: Starting Rule-based Manager for Device Events and Files... 1239 [ 6.044327] systemd[1]: Finished Set the console keyboard layout. 1240 [ 6.045700] systemd[1]: Reached target Preparation for Local File Systems. 1241 [ 6.057748] systemd[1]: Mounting /tmp... 1242 [ 6.069732] systemd[1]: Mounted /tmp. 1243 [ 6.070790] systemd[1]: Reached target Local File Systems. 1244 [ 6.077945] systemd[1]: Starting Armbian leds state... 1245 [ 6.090143] systemd[1]: Starting Armbian ZRAM config... 1246 [ 6.107098] systemd[1]: Starting Set console font and keymap... 1247 [ 6.108139] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 1248 [ 6.108566] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 1249 [ 6.115447] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 1250 [ 6.138860] systemd[1]: Finished Set console font and keymap. 1251 [ 6.165497] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 1252 [ 6.166483] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 1253 [ 6.170132] systemd[1]: Failed to start Armbian leds state. 1254 [ 6.284623] systemd[1]: Finished Coldplug All udev Devices. 1255 [ 6.312456] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 1256 [ 6.343224] systemd[1]: Started Rule-based Manager for Device Events and Files. 1257 [ 6.431848] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 1258 [ 6.432784] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 1259 [ 6.434739] systemd[1]: Failed to start Armbian ZRAM config. 1260 [ 6.469719] systemd[1]: Starting Armbian memory supported logging... 1261 [ 6.555476] urandom_read_iter: 51 callbacks suppressed 1262 [ 6.555506] random: systemd: uninitialized urandom read (16 bytes read) 1263 [ 6.652261] random: systemd: uninitialized urandom read (16 bytes read) 1264 [ 6.652371] random: systemd: uninitialized urandom read (16 bytes read) 1265 [ 6.785166] random: crng init done 1266 [ 6.785195] random: 8 urandom warning(s) missed due to ratelimiting 1267 [ 6.807855] systemd[1]: Finished Load/Save Random Seed. 1268 [ 6.809714] systemd[1]: Condition check resulted in First Boot Complete being skipped. 1269 [ 6.809986] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 1270 [ 6.810286] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 1271 [ 6.872276] systemd[1]: Found device /dev/ttyS0. 1272 [ 7.432756] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 1273 [ 7.475372] systemd[1]: Started ifup for eth0. 1274 [ 7.479618] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 1275 [ 7.487385] systemd[1]: Starting Raise network interfaces... 1276 [ 7.492546] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 1277 [ 7.493724] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 1278 [ 8.020551] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 1279 [ 8.021493] systemd[1]: networking.service: Failed with result 'exit-code'. 1280 [ 8.023165] systemd[1]: Failed to start Raise network interfaces. 1281 [ 10.555645] systemd[1]: Finished Armbian memory supported logging. 1282 [ 10.593602] systemd[1]: Starting Journal Service... 1283 [ 10.855401] systemd[1]: Started Journal Service. 1284 [ 10.906967] systemd-journald[587]: Received client request to flush runtime journal. 1285 1286 ### armbian-release: 1287 1288 # PLEASE DO NOT EDIT THIS FILE 1289 BOARD=pine64 1290 BOARD_NAME="Pine64" 1291 BOARDFAMILY=sun50iw1 1292 BUILD_REPOSITORY_URL=https://github.com/armbian/build 1293 BUILD_REPOSITORY_COMMIT=84940abb 1294 VERSION=22.11.1 1295 LINUXFAMILY=sunxi64 1296 ARCH=arm64 1297 IMAGE_TYPE=stable 1298 BOARD_TYPE=conf 1299 INITRD_ARCH=arm64 1300 KERNEL_IMAGE_TYPE=Image 1301 1302 ### boot environment: 1303 1304 verbosity=1 1305 bootlogo=false 1306 console=both 1307 disp_mode=1920x1080p60 1308 overlay_prefix=sun50i-a64 1309 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 1310 rootfstype=ext4 1311 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 1312 1313 1314 ### lsusb: 1315 1316 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 1317 Bus 002 Device 004: ID 0403:6001 Future Technology Devices International, Ltd FT232 Serial (UART) IC 1318 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 1319 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 1320 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1321 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 1322 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 1323 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1324 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1325 1326 ### lscpu: 1327 1328 Architecture: aarch64 1329 CPU op-mode(s): 32-bit, 64-bit 1330 Byte Order: Little Endian 1331 CPU(s): 4 1332 On-line CPU(s) list: 0-3 1333 Vendor ID: ARM 1334 Model name: Cortex-A53 1335 Model: 4 1336 Thread(s) per core: 1 1337 Core(s) per cluster: 4 1338 Socket(s): - 1339 Cluster(s): 1 1340 Stepping: r0p4 1341 BogoMIPS: 48.00 1342 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1343 NUMA node(s): 1 1344 NUMA node0 CPU(s): 0-3 1345 Vulnerability Itlb multihit: Not affected 1346 Vulnerability L1tf: Not affected 1347 Vulnerability Mds: Not affected 1348 Vulnerability Meltdown: Not affected 1349 Vulnerability Mmio stale data: Not affected 1350 Vulnerability Spec store bypass: Not affected 1351 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 1352 Vulnerability Spectre v2: Not affected 1353 Vulnerability Srbds: Not affected 1354 Vulnerability Tsx async abort: Not affected 1355 1356 ### cpuinfo: 1357 1358 processor : 0 1359 BogoMIPS : 48.00 1360 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1361 CPU implementer : 0x41 1362 CPU architecture: 8 1363 CPU variant : 0x0 1364 CPU part : 0xd03 1365 CPU revision : 4 1366 1367 processor : 1 1368 BogoMIPS : 48.00 1369 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1370 CPU implementer : 0x41 1371 CPU architecture: 8 1372 CPU variant : 0x0 1373 CPU part : 0xd03 1374 CPU revision : 4 1375 1376 processor : 2 1377 BogoMIPS : 48.00 1378 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1379 CPU implementer : 0x41 1380 CPU architecture: 8 1381 CPU variant : 0x0 1382 CPU part : 0xd03 1383 CPU revision : 4 1384 1385 processor : 3 1386 BogoMIPS : 48.00 1387 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1388 CPU implementer : 0x41 1389 CPU architecture: 8 1390 CPU variant : 0x0 1391 CPU part : 0xd03 1392 CPU revision : 4 1393 1394 1395 ### meminfo: 1396 1397 MemTotal: 2037276 kB 1398 MemFree: 1893432 kB 1399 MemAvailable: 1887720 kB 1400 Buffers: 11348 kB 1401 Cached: 52144 kB 1402 SwapCached: 0 kB 1403 Active: 27656 kB 1404 Inactive: 52880 kB 1405 Active(anon): 288 kB 1406 Inactive(anon): 33144 kB 1407 Active(file): 27368 kB 1408 Inactive(file): 19736 kB 1409 Unevictable: 0 kB 1410 Mlocked: 0 kB 1411 SwapTotal: 0 kB 1412 SwapFree: 0 kB 1413 Dirty: 16 kB 1414 Writeback: 0 kB 1415 AnonPages: 17496 kB 1416 Mapped: 14724 kB 1417 Shmem: 16136 kB 1418 KReclaimable: 9056 kB 1419 Slab: 31508 kB 1420 SReclaimable: 9056 kB 1421 SUnreclaim: 22452 kB 1422 KernelStack: 2256 kB 1423 PageTables: 1528 kB 1424 NFS_Unstable: 0 kB 1425 Bounce: 0 kB 1426 WritebackTmp: 0 kB 1427 CommitLimit: 1018636 kB 1428 Committed_AS: 57456 kB 1429 VmallocTotal: 133143592960 kB 1430 VmallocUsed: 10308 kB 1431 VmallocChunk: 0 kB 1432 Percpu: 1024 kB 1433 AnonHugePages: 0 kB 1434 ShmemHugePages: 0 kB 1435 ShmemPmdMapped: 0 kB 1436 FileHugePages: 0 kB 1437 FilePmdMapped: 0 kB 1438 CmaTotal: 131072 kB 1439 CmaFree: 130304 kB 1440 HugePages_Total: 0 1441 HugePages_Free: 0 1442 HugePages_Rsvd: 0 1443 HugePages_Surp: 0 1444 Hugepagesize: 2048 kB 1445 Hugetlb: 0 kB 1446 1447 ### virtual memory: 1448 1449 vm.admin_reserve_kbytes = 8192 1450 vm.compaction_proactiveness = 20 1451 vm.compact_unevictable_allowed = 1 1452 vm.dirty_background_bytes = 0 1453 vm.dirty_background_ratio = 10 1454 vm.dirty_bytes = 0 1455 vm.dirty_expire_centisecs = 3000 1456 vm.dirty_ratio = 20 1457 vm.dirtytime_expire_seconds = 43200 1458 vm.dirty_writeback_centisecs = 500 1459 vm.extfrag_threshold = 500 1460 vm.hugetlb_shm_group = 0 1461 vm.laptop_mode = 0 1462 vm.legacy_va_layout = 0 1463 vm.lowmem_reserve_ratio = 256 256 32 0 1464 vm.max_map_count = 65530 1465 vm.min_free_kbytes = 22528 1466 vm.min_slab_ratio = 5 1467 vm.min_unmapped_ratio = 1 1468 vm.mmap_min_addr = 32768 1469 vm.mmap_rnd_bits = 18 1470 vm.mmap_rnd_compat_bits = 11 1471 vm.nr_hugepages = 0 1472 vm.nr_hugepages_mempolicy = 0 1473 vm.nr_overcommit_hugepages = 0 1474 vm.numa_stat = 1 1475 vm.numa_zonelist_order = Node 1476 vm.oom_dump_tasks = 1 1477 vm.oom_kill_allocating_task = 0 1478 vm.overcommit_kbytes = 0 1479 vm.overcommit_memory = 0 1480 vm.overcommit_ratio = 50 1481 vm.page-cluster = 3 1482 vm.page_lock_unfairness = 5 1483 vm.panic_on_oom = 0 1484 vm.percpu_pagelist_high_fraction = 0 1485 vm.stat_interval = 1 1486 vm.swappiness = 100 1487 vm.user_reserve_kbytes = 63003 1488 vm.vfs_cache_pressure = 100 1489 vm.watermark_boost_factor = 15000 1490 vm.watermark_scale_factor = 10 1491 vm.zone_reclaim_mode = 0 1492 1493 ### ip addr: 1494 1495 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 1496 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 1497 inet XXX.XXX.0.1/8 scope host lo 1498 valid_lft forever preferred_lft forever 1499 inet6 ::1/128 scope host 1500 valid_lft forever preferred_lft forever 1501 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 1502 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 1503 1504 ### partitions: 1505 1506 major minor #blocks name 1507 1508 179 0 31260672 mmcblk0 1509 179 1 30928896 mmcblk0p1 1510 8 0 117220824 sda 1511 8 1 117218304 sda1 1512 1513 ### df: 1514 1515 tmpfs 199M 3.1M 196M 2% /run 1516 /dev/sda1 110G 20G 85G 19% / 1517 tmpfs 995M 0 995M 0% /dev/shm 1518 tmpfs 5.0M 0 5.0M 0% /run/lock 1519 tmpfs 995M 4.0K 995M 1% /tmp 1520 1521 ### lsblk: 1522 1523 NAME FSTYPE SIZE MOUNTPOINT UUID 1524 sda 111.8G 1525 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 1526 mmcblk0 29.8G 1527 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 1528 1529 ### zramctl: 1530 1531 1532 1533 ### mtab: 1534 1535 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 1536 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 1537 1538 ### mmc0:0001 info: 1539 1540 fwrev: 0x0 1541 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 1542 cid: 1b534d454231515430bc836120012941 1543 rca: 0x0001 1544 csd: 400e00325b590000ee7f7f800a404055 1545 manfid: 0x00001b 1546 ocr: 0x00200000 1547 preferred_erase_size: 4194304 1548 type: SD 1549 hwrev: 0x3 1550 date: 09/2018 1551 dsr: 0x404 1552 erase_size: 512 1553 oemid: 0x534d 1554 serial: 0xbc836120 1555 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 1556 scr: 02b5800200000000 1557 name: EB1QT 1558 1559 ### Boot system health: 1560 1561 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 1562 21:02:38: --- 0.15 54% 29% 20% 0% 3% 0% 37.1 °C 1563 21:02:39: --- 0.15 84% 20% 23% 1% 34% 5% 37.1 °C 1564 21:02:39: --- 0.46 79% 16% 24% 0% 35% 2% 34.4 °C 1565 21:02:39: --- 0.46 35% 10% 8% 1% 14% 0% 34.4 °C 1566 21:02:40: --- 0.46 21% 6% 2% 0% 12% 0% 34.4 °C 1567 1568 ### No more available zram devices () 1569 1570 Fri Dec 9 10:03:41 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 1571 1572 ### dmesg: 1573 1574 [ 0.000967] pid_max: default: 32768 minimum: 301 1575 [ 0.001055] LSM: Security Framework initializing 1576 [ 0.001085] Yama: becoming mindful. 1577 [ 0.001182] AppArmor: AppArmor initialized 1578 [ 0.001295] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 1579 [ 0.001324] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 1580 [ 0.003393] rcu: Hierarchical SRCU implementation. 1581 [ 0.004901] smp: Bringing up secondary CPUs ... 1582 [ 0.006140] Detected VIPT I-cache on CPU1 1583 [ 0.006207] arch_timer: CPU1: Trapping CNTVCT access 1584 [ 0.006225] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 1585 [ 0.007049] Detected VIPT I-cache on CPU2 1586 [ 0.007084] arch_timer: CPU2: Trapping CNTVCT access 1587 [ 0.007095] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 1588 [ 0.007824] Detected VIPT I-cache on CPU3 1589 [ 0.007858] arch_timer: CPU3: Trapping CNTVCT access 1590 [ 0.007868] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 1591 [ 0.007963] smp: Brought up 1 node, 4 CPUs 1592 [ 0.007980] SMP: Total of 4 processors activated. 1593 [ 0.007987] CPU features: detected: 32-bit EL0 Support 1594 [ 0.007993] CPU features: detected: CRC32 instructions 1595 [ 0.022850] CPU: All CPU(s) started at EL2 1596 [ 0.022883] alternatives: patching kernel code 1597 [ 0.024714] devtmpfs: initialized 1598 [ 0.032755] Registered cp15_barrier emulation handler 1599 [ 0.032789] Registered setend emulation handler 1600 [ 0.032969] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 1601 [ 0.032992] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 1602 [ 0.038452] pinctrl core: initialized pinctrl subsystem 1603 [ 0.040122] NET: Registered PF_NETLINK/PF_ROUTE protocol family 1604 [ 0.041916] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 1605 [ 0.042094] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 1606 [ 0.042271] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 1607 [ 0.042379] audit: initializing netlink subsys (disabled) 1608 [ 0.042599] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 1609 [ 0.043211] thermal_sys: Registered thermal governor 'fair_share' 1610 [ 0.043218] thermal_sys: Registered thermal governor 'bang_bang' 1611 [ 0.043224] thermal_sys: Registered thermal governor 'step_wise' 1612 [ 0.043230] thermal_sys: Registered thermal governor 'user_space' 1613 [ 0.043694] cpuidle: using governor menu 1614 [ 0.043952] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 1615 [ 0.044060] ASID allocator initialised with 65536 entries 1616 [ 0.044260] Serial: AMBA PL011 UART driver 1617 [ 0.060255] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 1618 [ 0.061792] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 1619 [ 0.069877] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 1620 [ 0.069900] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 1621 [ 0.069909] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 1622 [ 0.069917] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 1623 [ 0.072108] cryptd: max_cpu_qlen set to 1000 1624 [ 0.140242] raid6: neonx8 gen() 1460 MB/s 1625 [ 0.208328] raid6: neonx8 xor() 1090 MB/s 1626 [ 0.276399] raid6: neonx4 gen() 1492 MB/s 1627 [ 0.344486] raid6: neonx4 xor() 1081 MB/s 1628 [ 0.412556] raid6: neonx2 gen() 1411 MB/s 1629 [ 0.480640] raid6: neonx2 xor() 995 MB/s 1630 [ 0.548723] raid6: neonx1 gen() 1232 MB/s 1631 [ 0.616795] raid6: neonx1 xor() 848 MB/s 1632 [ 0.684888] raid6: int64x8 gen() 1017 MB/s 1633 [ 0.752959] raid6: int64x8 xor() 533 MB/s 1634 [ 0.821043] raid6: int64x4 gen() 1127 MB/s 1635 [ 0.889126] raid6: int64x4 xor() 572 MB/s 1636 [ 0.957212] raid6: int64x2 gen() 962 MB/s 1637 [ 1.025290] raid6: int64x2 xor() 509 MB/s 1638 [ 1.093395] raid6: int64x1 gen() 717 MB/s 1639 [ 1.161484] raid6: int64x1 xor() 373 MB/s 1640 [ 1.161491] raid6: using algorithm neonx4 gen() 1492 MB/s 1641 [ 1.161497] raid6: .... xor() 1081 MB/s, rmw enabled 1642 [ 1.161503] raid6: using neon recovery algorithm 1643 [ 1.162148] iommu: Default domain type: Translated 1644 [ 1.162158] iommu: DMA domain TLB invalidation policy: strict mode 1645 [ 1.162483] SCSI subsystem initialized 1646 [ 1.162711] usbcore: registered new interface driver usbfs 1647 [ 1.162761] usbcore: registered new interface driver hub 1648 [ 1.162797] usbcore: registered new device driver usb 1649 [ 1.163127] pps_core: LinuxPPS API ver. 1 registered 1650 [ 1.163134] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 1651 [ 1.163153] PTP clock support registered 1652 [ 1.163617] ARM FF-A: FFA_VERSION returned not supported 1653 [ 1.164013] Advanced Linux Sound Architecture Driver Initialized. 1654 [ 1.164787] NetLabel: Initializing 1655 [ 1.164793] NetLabel: domain hash size = 128 1656 [ 1.164799] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 1657 [ 1.164877] NetLabel: unlabeled traffic allowed by default 1658 [ 1.165371] clocksource: Switched to clocksource arch_sys_counter 1659 [ 1.165601] VFS: Disk quotas dquot_6.6.0 1660 [ 1.165666] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 1661 [ 1.166323] AppArmor: AppArmor Filesystem Enabled 1662 [ 1.173624] NET: Registered PF_INET protocol family 1663 [ 1.173909] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 1664 [ 1.175290] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 1665 [ 1.175335] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 1666 [ 1.175353] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 1667 [ 1.175513] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 1668 [ 1.175838] TCP: Hash tables configured (established 16384 bind 16384) 1669 [ 1.176006] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 1670 [ 1.176075] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 1671 [ 1.176295] NET: Registered PF_UNIX/PF_LOCAL protocol family 1672 [ 1.176892] Trying to unpack rootfs image as initramfs... 1673 [ 1.191958] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 1674 [ 1.199069] Initialise system trusted keyrings 1675 [ 1.199153] Key type blacklist registered 1676 [ 1.199362] workingset: timestamp_bits=44 max_order=19 bucket_order=0 1677 [ 1.205839] zbud: loaded 1678 [ 1.207583] squashfs: version 4.0 (2009/01/31) Phillip Lougher 1679 [ 1.210115] integrity: Platform Keyring initialized 1680 [ 1.264129] xor: automatically using best checksumming function 32regs 1681 [ 1.264158] async_tx: api initialized (async) 1682 [ 1.264189] Key type asymmetric registered 1683 [ 1.264196] Asymmetric key parser 'x509' registered 1684 [ 1.264327] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 1685 [ 1.264505] io scheduler mq-deadline registered 1686 [ 1.264514] io scheduler kyber registered 1687 [ 1.264740] io scheduler bfq registered 1688 [ 1.268751] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 1689 [ 1.278783] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 1690 [ 1.290999] loop: module loaded 1691 [ 1.293557] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 1692 [ 1.293594] ehci-platform: EHCI generic platform driver 1693 [ 1.293755] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 1694 [ 1.293771] ohci-platform: OHCI generic platform driver 1695 [ 1.294264] usbcore: registered new interface driver usb-storage 1696 [ 1.294812] mousedev: PS/2 mouse device common for all mice 1697 [ 1.295921] sun6i-rtc 1f00000.rtc: registered as rtc0 1698 [ 1.295960] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-09T21:03:31 UTC (1670619811) 1699 [ 1.296086] sun6i-rtc 1f00000.rtc: RTC enabled 1700 [ 1.296193] i2c_dev: i2c /dev entries driver 1701 [ 1.297011] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 1702 [ 1.299211] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 1703 [ 1.299675] sdhci: Secure Digital Host Controller Interface driver 1704 [ 1.299684] sdhci: Copyright(c) Pierre Ossman 1705 [ 1.299713] Synopsys Designware Multimedia Card Interface Driver 1706 [ 1.300482] sdhci-pltfm: SDHCI platform and OF driver helper 1707 [ 1.301340] ledtrig-cpu: registered to indicate activity on CPUs 1708 [ 1.301915] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 1709 [ 1.302228] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 1710 [ 1.302536] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 1711 [ 1.302718] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 1712 [ 1.302835] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 1713 [ 1.302962] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 1714 [ 1.303055] sun8i-ce 1c15000.crypto: Register cbc(aes) 1715 [ 1.303247] sun8i-ce 1c15000.crypto: Register ecb(aes) 1716 [ 1.303387] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 1717 [ 1.303522] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 1718 [ 1.303662] sun8i-ce 1c15000.crypto: Register md5 1719 [ 1.303797] sun8i-ce 1c15000.crypto: Register sha1 1720 [ 1.303929] sun8i-ce 1c15000.crypto: Register sha224 1721 [ 1.304063] sun8i-ce 1c15000.crypto: Register sha256 1722 [ 1.304196] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 1723 [ 1.304207] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 1724 [ 1.304216] sun8i-ce 1c15000.crypto: Register stdrng 1725 [ 1.304372] sun8i-ce 1c15000.crypto: TRNG not supported 1726 [ 1.304382] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 1727 [ 1.304972] hid: raw HID events driver (C) Jiri Kosina 1728 [ 1.305156] usbcore: registered new interface driver usbhid 1729 [ 1.305164] usbhid: USB HID core driver 1730 [ 1.311428] NET: Registered PF_INET6 protocol family 1731 [ 1.956426] Freeing initrd memory: 12684K 1732 [ 1.989708] Segment Routing with IPv6 1733 [ 1.989802] In-situ OAM (IOAM) with IPv6 1734 [ 1.989900] NET: Registered PF_PACKET protocol family 1735 [ 1.990047] 8021q: 802.1Q VLAN Support v1.8 1736 [ 1.990233] 9pnet: Installing 9P2000 support 1737 [ 1.990359] Key type dns_resolver registered 1738 [ 1.990929] registered taskstats version 1 1739 [ 1.990947] Loading compiled-in X.509 certificates 1740 [ 1.995257] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 1741 [ 1.999607] zswap: loaded using pool zstd/z3fold 1742 [ 2.000376] Key type ._fscrypt registered 1743 [ 2.000386] Key type .fscrypt registered 1744 [ 2.000391] Key type fscrypt-provisioning registered 1745 [ 2.001590] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 1746 [ 2.017330] Key type encrypted registered 1747 [ 2.017399] AppArmor: AppArmor sha1 policy hashing enabled 1748 [ 2.017445] ima: No TPM chip found, activating TPM-bypass! 1749 [ 2.017482] ima: Allocated hash algorithm: sha1 1750 [ 2.017519] ima: No architecture policies found 1751 [ 2.017575] evm: Initialising EVM extended attributes: 1752 [ 2.017580] evm: security.selinux 1753 [ 2.017585] evm: security.SMACK64 1754 [ 2.017590] evm: security.SMACK64EXEC 1755 [ 2.017594] evm: security.SMACK64TRANSMUTE 1756 [ 2.017599] evm: security.SMACK64MMAP 1757 [ 2.017603] evm: security.apparmor 1758 [ 2.017608] evm: security.ima 1759 [ 2.017613] evm: security.capability 1760 [ 2.017617] evm: HMAC attrs: 0x1 1761 [ 2.030404] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 1762 [ 2.030497] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 1763 [ 2.031269] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 1764 [ 2.031335] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 1765 [ 2.032191] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 1766 [ 2.032600] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 1767 [ 2.034719] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 1768 [ 2.037837] vcc-3v3: supplied by regulator-dummy 1769 [ 2.038345] vdd-cpux: supplied by regulator-dummy 1770 [ 2.038994] dcdc4: supplied by regulator-dummy 1771 [ 2.039210] vcc-dram: supplied by regulator-dummy 1772 [ 2.039639] vdd-sys: supplied by regulator-dummy 1773 [ 2.040194] vcc-phy: supplied by regulator-dummy 1774 [ 2.040537] aldo1: supplied by regulator-dummy 1775 [ 2.040712] vcc-pl: supplied by regulator-dummy 1776 [ 2.041158] vcc-pll-avcc: supplied by regulator-dummy 1777 [ 2.041802] vcc-hdmi: supplied by regulator-dummy 1778 [ 2.042175] vcc-mipi: supplied by regulator-dummy 1779 [ 2.042556] dldo3: supplied by regulator-dummy 1780 [ 2.042918] vcc-wifi: supplied by regulator-dummy 1781 [ 2.043290] cpvdd: supplied by regulator-dummy 1782 [ 2.043671] eldo2: supplied by regulator-dummy 1783 [ 2.044042] eldo3: supplied by regulator-dummy 1784 [ 2.044409] vcc-1v2-hsic: supplied by regulator-dummy 1785 [ 2.044629] vdd-cpus: supplied by regulator-dummy 1786 [ 2.045036] vcc-rtc: supplied by regulator-dummy 1787 [ 2.045496] ldo-io0: supplied by regulator-dummy 1788 [ 2.045830] ldo-io1: supplied by regulator-dummy 1789 [ 2.045949] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 1790 [ 2.050823] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 1791 [ 2.051230] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 1792 [ 2.051810] printk: console [ttyS0] disabled 1793 [ 2.051897] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 1794 [ 2.052104] printk: console [ttyS0] enabled 1795 [ 2.052795] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 1796 [ 2.053242] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 1797 [ 2.053440] serial serial0: tty port ttyS1 registered 1798 [ 2.084008] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 1799 [ 2.085840] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 1800 [ 2.086356] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 1801 [ 2.086375] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 1802 [ 2.086605] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 1803 [ 2.087770] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 1804 [ 2.088379] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 1805 [ 2.088759] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 1806 [ 2.089438] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 1807 [ 2.089524] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 1808 [ 2.090247] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 1809 [ 2.090854] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 1810 [ 2.091619] ehci-platform 1c1a000.usb: EHCI Host Controller 1811 [ 2.091652] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 1812 [ 2.091798] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 1813 [ 2.105381] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 1814 [ 2.105771] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1815 [ 2.105787] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1816 [ 2.105798] usb usb1: Product: EHCI Host Controller 1817 [ 2.105807] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 1818 [ 2.105817] usb usb1: SerialNumber: 1c1a000.usb 1819 [ 2.106357] hub 1-0:1.0: USB hub found 1820 [ 2.106409] hub 1-0:1.0: 1 port detected 1821 [ 2.107444] ehci-platform 1c1b000.usb: EHCI Host Controller 1822 [ 2.107471] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 1823 [ 2.107603] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 1824 [ 2.121373] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 1825 [ 2.121684] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1826 [ 2.121699] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1827 [ 2.121710] usb usb2: Product: EHCI Host Controller 1828 [ 2.121720] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 1829 [ 2.121730] usb usb2: SerialNumber: 1c1b000.usb 1830 [ 2.122209] hub 2-0:1.0: USB hub found 1831 [ 2.122265] hub 2-0:1.0: 1 port detected 1832 [ 2.297464] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 1833 [ 2.297502] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 1834 [ 2.297644] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 1835 [ 2.365416] usb 1-1: new high-speed USB device number 2 using ehci-platform 1836 [ 2.365743] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 1837 [ 2.365759] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1838 [ 2.365771] usb usb3: Product: Generic Platform OHCI controller 1839 [ 2.365780] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 1840 [ 2.365789] usb usb3: SerialNumber: 1c1a400.usb 1841 [ 2.366313] hub 3-0:1.0: USB hub found 1842 [ 2.366362] hub 3-0:1.0: 1 port detected 1843 [ 2.367356] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 1844 [ 2.367382] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 1845 [ 2.367514] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 1846 [ 2.377379] usb 2-1: new high-speed USB device number 2 using ehci-platform 1847 [ 2.429643] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 1848 [ 2.429658] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1849 [ 2.429670] usb usb4: Product: Generic Platform OHCI controller 1850 [ 2.429679] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 1851 [ 2.429688] usb usb4: SerialNumber: 1c1b400.usb 1852 [ 2.430199] hub 4-0:1.0: USB hub found 1853 [ 2.430248] hub 4-0:1.0: 1 port detected 1854 [ 2.431312] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 1855 [ 2.431458] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 1856 [ 2.505659] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 1857 [ 2.505693] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 1858 [ 2.505982] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1859 [ 2.505998] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1860 [ 2.506010] usb usb5: Product: MUSB HDRC host driver 1861 [ 2.506020] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 1862 [ 2.506029] usb usb5: SerialNumber: musb-hdrc.4.auto 1863 [ 2.506585] hub 5-0:1.0: USB hub found 1864 [ 2.506643] hub 5-0:1.0: 1 port detected 1865 [ 2.510109] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 1866 [ 2.510177] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 1867 [ 2.511239] sunxi-mmc 1c0f000.mmc: Got CD GPIO 1868 [ 2.511243] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 1869 [ 2.511491] of_cfs_init 1870 [ 2.511626] of_cfs_init: OK 1871 [ 2.511987] ALSA device list: 1872 [ 2.511995] No soundcards found. 1873 [ 2.527348] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 1874 [ 2.527367] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 1875 [ 2.527379] usb 1-1: SerialNumber: 20181120 1876 [ 2.528345] usb-storage 1-1:1.0: USB Mass Storage device detected 1877 [ 2.528919] scsi host0: usb-storage 1-1:1.0 1878 [ 2.536523] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 1879 [ 2.536540] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1880 [ 2.536552] usb 2-1: Product: USB2.1 Hub 1881 [ 2.536561] usb 2-1: Manufacturer: GenesysLogic 1882 [ 2.536687] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1883 [ 2.536885] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1884 [ 2.537343] hub 2-1:1.0: USB hub found 1885 [ 2.537789] hub 2-1:1.0: 4 ports detected 1886 [ 2.538693] Freeing unused kernel memory: 2496K 1887 [ 2.538829] Run /init as init process 1888 [ 2.538836] with arguments: 1889 [ 2.538843] /init 1890 [ 2.538849] with environment: 1891 [ 2.538854] HOME=/ 1892 [ 2.538859] TERM=linux 1893 [ 2.538865] ubootpart=ea5e158f-01 1894 [ 2.538871] cgroup_enable=memory 1895 [ 2.572947] mmc0: new high speed SDHC card at address 0001 1896 [ 2.574020] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 1897 [ 2.576356] mmcblk0: p1 1898 [ 2.853435] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 1899 [ 3.041625] usbcore: registered new interface driver uas 1900 [ 3.079672] axp20x-gpio axp20x-gpio: DMA mask not set 1901 [ 3.080548] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 1902 [ 3.086177] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 1903 [ 3.088064] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 1904 [ 3.088347] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 1905 [ 3.088361] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 1906 [ 3.090157] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 1907 [ 3.090515] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 1908 [ 3.090575] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 1909 [ 3.092685] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 1910 [ 3.092717] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 1911 [ 3.092725] dwmac-sun8i 1c30000.ethernet: COE Type 2 1912 [ 3.092734] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 1913 [ 3.092743] dwmac-sun8i 1c30000.ethernet: Normal descriptors 1914 [ 3.092751] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 1915 [ 3.203500] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 1916 [ 3.203541] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 1917 [ 3.203553] usb 2-1.1: SerialNumber: AA5FCF90 1918 [ 3.562431] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 1919 [ 3.563045] sd 0:0:0:0: Attached scsi generic sg0 type 0 1920 [ 3.564037] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 1921 [ 3.565167] sd 0:0:0:0: [sda] Write Protect is off 1922 [ 3.565193] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 1923 [ 3.566442] sd 0:0:0:0: [sda] No Caching mode page found 1924 [ 3.566474] sd 0:0:0:0: [sda] Assuming drive cache: write through 1925 [ 3.602406] sda: sda1 1926 [ 3.606021] sd 0:0:0:0: [sda] Attached SCSI disk 1927 [ 3.971956] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 1928 [ 4.568206] systemd[1]: systemd 249.11-0ubuntu3.6 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 1929 [ 4.568949] systemd[1]: Detected architecture arm64. 1930 [ 4.571925] systemd[1]: Hostname set to <pine64>. 1931 [ 4.693665] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 1932 [ 5.509269] systemd[1]: Queued start job for default target Graphical Interface. 1933 [ 5.511390] random: systemd: uninitialized urandom read (16 bytes read) 1934 [ 5.554045] systemd[1]: Created slice Slice /system/modprobe. 1935 [ 5.554785] random: systemd: uninitialized urandom read (16 bytes read) 1936 [ 5.557809] systemd[1]: Created slice Slice /system/serial-getty. 1937 [ 5.558252] random: systemd: uninitialized urandom read (16 bytes read) 1938 [ 5.560597] systemd[1]: Created slice User and Session Slice. 1939 [ 5.561082] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 1940 [ 5.561662] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 1941 [ 5.563104] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 1942 [ 5.563653] systemd[1]: Reached target Local Encrypted Volumes. 1943 [ 5.564435] systemd[1]: Reached target Slice Units. 1944 [ 5.564764] systemd[1]: Reached target Swaps. 1945 [ 5.565071] systemd[1]: Reached target System Time Set. 1946 [ 5.565631] systemd[1]: Reached target Local Verity Protected Volumes. 1947 [ 5.587985] systemd[1]: Listening on RPCbind Server Activation Socket. 1948 [ 5.590149] systemd[1]: Listening on Syslog Socket. 1949 [ 5.591328] systemd[1]: Listening on fsck to fsckd communication Socket. 1950 [ 5.591968] systemd[1]: Listening on initctl Compatibility Named Pipe. 1951 [ 5.593623] systemd[1]: Listening on Journal Audit Socket. 1952 [ 5.594654] systemd[1]: Listening on Journal Socket (/dev/log). 1953 [ 5.595693] systemd[1]: Listening on Journal Socket. 1954 [ 5.597030] systemd[1]: Listening on udev Control Socket. 1955 [ 5.598188] systemd[1]: Listening on udev Kernel Socket. 1956 [ 5.603925] systemd[1]: Mounting Huge Pages File System... 1957 [ 5.610880] systemd[1]: Mounting POSIX Message Queue File System... 1958 [ 5.617185] systemd[1]: Mounting NFSD configuration filesystem... 1959 [ 5.624267] systemd[1]: Mounting Kernel Debug File System... 1960 [ 5.625550] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 1961 [ 5.626478] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 1962 [ 5.635416] systemd[1]: Starting Restore / save the current clock... 1963 [ 5.643601] systemd[1]: Starting Set the console keyboard layout... 1964 [ 5.644258] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 1965 [ 5.651346] systemd[1]: Starting Load Kernel Module chromeos_pstore... 1966 [ 5.659042] systemd[1]: Starting Load Kernel Module configfs... 1967 [ 5.666509] systemd[1]: Starting Load Kernel Module drm... 1968 [ 5.674892] systemd[1]: Starting Load Kernel Module efi_pstore... 1969 [ 5.683147] systemd[1]: Starting Load Kernel Module fuse... 1970 [ 5.691079] systemd[1]: Starting Load Kernel Module pstore_blk... 1971 [ 5.699079] systemd[1]: Starting Load Kernel Module pstore_zone... 1972 [ 5.706715] systemd[1]: Starting Load Kernel Module ramoops... 1973 [ 5.714880] systemd[1]: Started Nameserver information manager. 1974 [ 5.716525] systemd[1]: Reached target Preparation for Network. 1975 [ 5.717918] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 1976 [ 5.733004] systemd[1]: Starting Load Kernel Modules... 1977 [ 5.742850] systemd[1]: Starting Remount Root and Kernel File Systems... 1978 [ 5.750843] systemd[1]: Starting Coldplug All udev Devices... 1979 [ 5.766147] systemd[1]: Mounted Huge Pages File System. 1980 [ 5.767223] systemd[1]: Mounted POSIX Message Queue File System. 1981 [ 5.768269] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 1982 [ 5.768318] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 1983 [ 5.770692] systemd[1]: Failed to mount NFSD configuration filesystem. 1984 [ 5.771070] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 1985 [ 5.771217] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 1986 [ 5.771277] systemd[1]: Dependency failed for NFS server and services. 1987 [ 5.771404] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 1988 [ 5.771534] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 1989 [ 5.771578] systemd[1]: Dependency failed for NFS Mount Daemon. 1990 [ 5.771699] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 1991 [ 5.771748] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 1992 [ 5.772818] systemd[1]: Mounted Kernel Debug File System. 1993 [ 5.776040] systemd[1]: Finished Restore / save the current clock. 1994 [ 5.778317] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 1995 [ 5.779560] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 1996 [ 5.779726] systemd[1]: Finished Load Kernel Module chromeos_pstore. 1997 [ 5.786543] systemd[1]: modprobe@configfs.service: Deactivated successfully. 1998 [ 5.787893] systemd[1]: Finished Load Kernel Module configfs. 1999 [ 5.790160] systemd[1]: modprobe@drm.service: Deactivated successfully. 2000 [ 5.791531] systemd[1]: Finished Load Kernel Module drm. 2001 [ 5.793850] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 2002 [ 5.795314] systemd[1]: Finished Load Kernel Module efi_pstore. 2003 [ 5.797555] systemd[1]: modprobe@fuse.service: Deactivated successfully. 2004 [ 5.798916] systemd[1]: Finished Load Kernel Module fuse. 2005 [ 5.800986] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 2006 [ 5.802635] systemd[1]: Finished Load Kernel Module pstore_blk. 2007 [ 5.804723] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 2008 [ 5.806254] systemd[1]: Finished Load Kernel Module pstore_zone. 2009 [ 5.808329] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 2010 [ 5.810094] systemd[1]: Finished Load Kernel Module ramoops. 2011 [ 5.815380] systemd[1]: Finished Load Kernel Modules. 2012 [ 5.854561] systemd[1]: Finished Remount Root and Kernel File Systems. 2013 [ 5.856825] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 2014 [ 5.862500] systemd[1]: Mounting Kernel Configuration File System... 2015 [ 5.863300] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 2016 [ 5.873290] systemd[1]: Starting Load/Save Random Seed... 2017 [ 5.883239] systemd[1]: Starting Apply Kernel Variables... 2018 [ 5.894766] systemd[1]: Starting Create System Users... 2019 [ 5.917140] systemd[1]: Mounted Kernel Configuration File System. 2020 [ 5.952052] systemd[1]: Finished Apply Kernel Variables. 2021 [ 5.954898] systemd[1]: Finished Create System Users. 2022 [ 5.964573] systemd[1]: Starting Create Static Device Nodes in /dev... 2023 [ 6.017161] systemd[1]: Finished Create Static Device Nodes in /dev. 2024 [ 6.030235] systemd[1]: Starting Rule-based Manager for Device Events and Files... 2025 [ 6.069109] systemd[1]: Finished Set the console keyboard layout. 2026 [ 6.070546] systemd[1]: Reached target Preparation for Local File Systems. 2027 [ 6.102206] systemd[1]: Mounting /tmp... 2028 [ 6.113906] systemd[1]: Mounted /tmp. 2029 [ 6.114971] systemd[1]: Reached target Local File Systems. 2030 [ 6.124947] systemd[1]: Starting Armbian leds state... 2031 [ 6.134640] systemd[1]: Starting Armbian ZRAM config... 2032 [ 6.148623] systemd[1]: Starting Set console font and keymap... 2033 [ 6.149965] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 2034 [ 6.150279] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 2035 [ 6.162450] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 2036 [ 6.181233] systemd[1]: Finished Set console font and keymap. 2037 [ 6.226719] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 2038 [ 6.227647] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 2039 [ 6.229527] systemd[1]: Failed to start Armbian leds state. 2040 [ 6.303669] systemd[1]: Finished Coldplug All udev Devices. 2041 [ 6.312090] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 2042 [ 6.349680] systemd[1]: Started Rule-based Manager for Device Events and Files. 2043 [ 6.479572] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 2044 [ 6.480546] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 2045 [ 6.484262] systemd[1]: Failed to start Armbian ZRAM config. 2046 [ 6.524337] systemd[1]: Starting Armbian memory supported logging... 2047 [ 6.568364] urandom_read_iter: 51 callbacks suppressed 2048 [ 6.568396] random: systemd: uninitialized urandom read (16 bytes read) 2049 [ 6.655463] random: systemd: uninitialized urandom read (16 bytes read) 2050 [ 6.655580] random: systemd: uninitialized urandom read (16 bytes read) 2051 [ 6.781953] random: crng init done 2052 [ 6.781985] random: 8 urandom warning(s) missed due to ratelimiting 2053 [ 6.799828] systemd[1]: Finished Load/Save Random Seed. 2054 [ 6.801862] systemd[1]: Condition check resulted in First Boot Complete being skipped. 2055 [ 6.802097] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 2056 [ 6.802346] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 2057 [ 6.850157] systemd[1]: Found device /dev/ttyS0. 2058 [ 7.402721] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 2059 [ 7.430601] systemd[1]: Started ifup for eth0. 2060 [ 7.435878] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 2061 [ 7.444614] systemd[1]: Starting Raise network interfaces... 2062 [ 7.448556] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 2063 [ 7.449736] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 2064 [ 8.011502] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 2065 [ 8.012392] systemd[1]: networking.service: Failed with result 'exit-code'. 2066 [ 8.014158] systemd[1]: Failed to start Raise network interfaces. 2067 [ 10.585634] systemd[1]: Finished Armbian memory supported logging. 2068 [ 10.625744] systemd[1]: Starting Journal Service... 2069 [ 10.887291] systemd[1]: Started Journal Service. 2070 [ 10.944202] systemd-journald[590]: Received client request to flush runtime journal. 2071 2072 ### armbian-release: 2073 2074 # PLEASE DO NOT EDIT THIS FILE 2075 BOARD=pine64 2076 BOARD_NAME="Pine64" 2077 BOARDFAMILY=sun50iw1 2078 BUILD_REPOSITORY_URL=https://github.com/armbian/build 2079 BUILD_REPOSITORY_COMMIT=84940abb 2080 VERSION=22.11.1 2081 LINUXFAMILY=sunxi64 2082 ARCH=arm64 2083 IMAGE_TYPE=stable 2084 BOARD_TYPE=conf 2085 INITRD_ARCH=arm64 2086 KERNEL_IMAGE_TYPE=Image 2087 BRANCH=current 2088 2089 ### boot environment: 2090 2091 verbosity=1 2092 bootlogo=false 2093 console=both 2094 disp_mode=1920x1080p60 2095 overlay_prefix=sunxi64 2096 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 2097 rootfstype=ext4 2098 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 2099 2100 ### lsusb: 2101 2102 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 2103 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 2104 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 2105 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2106 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 2107 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 2108 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2109 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2110 2111 ### lscpu: 2112 2113 Architecture: aarch64 2114 CPU op-mode(s): 32-bit, 64-bit 2115 Byte Order: Little Endian 2116 CPU(s): 4 2117 On-line CPU(s) list: 0-3 2118 Vendor ID: ARM 2119 Model name: Cortex-A53 2120 Model: 4 2121 Thread(s) per core: 1 2122 Core(s) per cluster: 4 2123 Socket(s): - 2124 Cluster(s): 1 2125 Stepping: r0p4 2126 BogoMIPS: 48.00 2127 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2128 NUMA node(s): 1 2129 NUMA node0 CPU(s): 0-3 2130 Vulnerability Itlb multihit: Not affected 2131 Vulnerability L1tf: Not affected 2132 Vulnerability Mds: Not affected 2133 Vulnerability Meltdown: Not affected 2134 Vulnerability Mmio stale data: Not affected 2135 Vulnerability Spec store bypass: Not affected 2136 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 2137 Vulnerability Spectre v2: Not affected 2138 Vulnerability Srbds: Not affected 2139 Vulnerability Tsx async abort: Not affected 2140 2141 ### cpuinfo: 2142 2143 processor : 0 2144 BogoMIPS : 48.00 2145 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2146 CPU implementer : 0x41 2147 CPU architecture: 8 2148 CPU variant : 0x0 2149 CPU part : 0xd03 2150 CPU revision : 4 2151 2152 processor : 1 2153 BogoMIPS : 48.00 2154 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2155 CPU implementer : 0x41 2156 CPU architecture: 8 2157 CPU variant : 0x0 2158 CPU part : 0xd03 2159 CPU revision : 4 2160 2161 processor : 2 2162 BogoMIPS : 48.00 2163 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2164 CPU implementer : 0x41 2165 CPU architecture: 8 2166 CPU variant : 0x0 2167 CPU part : 0xd03 2168 CPU revision : 4 2169 2170 processor : 3 2171 BogoMIPS : 48.00 2172 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2173 CPU implementer : 0x41 2174 CPU architecture: 8 2175 CPU variant : 0x0 2176 CPU part : 0xd03 2177 CPU revision : 4 2178 2179 2180 ### meminfo: 2181 2182 MemTotal: 2037276 kB 2183 MemFree: 1888184 kB 2184 MemAvailable: 1882516 kB 2185 Buffers: 11376 kB 2186 Cached: 52504 kB 2187 SwapCached: 0 kB 2188 Active: 27956 kB 2189 Inactive: 53844 kB 2190 Active(anon): 408 kB 2191 Inactive(anon): 34116 kB 2192 Active(file): 27548 kB 2193 Inactive(file): 19728 kB 2194 Unevictable: 0 kB 2195 Mlocked: 0 kB 2196 SwapTotal: 0 kB 2197 SwapFree: 0 kB 2198 Dirty: 20 kB 2199 Writeback: 0 kB 2200 AnonPages: 18204 kB 2201 Mapped: 14816 kB 2202 Shmem: 16356 kB 2203 KReclaimable: 8964 kB 2204 Slab: 31468 kB 2205 SReclaimable: 8964 kB 2206 SUnreclaim: 22504 kB 2207 KernelStack: 2384 kB 2208 PageTables: 1636 kB 2209 NFS_Unstable: 0 kB 2210 Bounce: 0 kB 2211 WritebackTmp: 0 kB 2212 CommitLimit: 1018636 kB 2213 Committed_AS: 66116 kB 2214 VmallocTotal: 133143592960 kB 2215 VmallocUsed: 10284 kB 2216 VmallocChunk: 0 kB 2217 Percpu: 1072 kB 2218 AnonHugePages: 0 kB 2219 ShmemHugePages: 0 kB 2220 ShmemPmdMapped: 0 kB 2221 FileHugePages: 0 kB 2222 FilePmdMapped: 0 kB 2223 CmaTotal: 131072 kB 2224 CmaFree: 130304 kB 2225 HugePages_Total: 0 2226 HugePages_Free: 0 2227 HugePages_Rsvd: 0 2228 HugePages_Surp: 0 2229 Hugepagesize: 2048 kB 2230 Hugetlb: 0 kB 2231 2232 ### virtual memory: 2233 2234 vm.admin_reserve_kbytes = 8192 2235 vm.compaction_proactiveness = 20 2236 vm.compact_unevictable_allowed = 1 2237 vm.dirty_background_bytes = 0 2238 vm.dirty_background_ratio = 10 2239 vm.dirty_bytes = 0 2240 vm.dirty_expire_centisecs = 3000 2241 vm.dirty_ratio = 20 2242 vm.dirtytime_expire_seconds = 43200 2243 vm.dirty_writeback_centisecs = 500 2244 vm.extfrag_threshold = 500 2245 vm.hugetlb_shm_group = 0 2246 vm.laptop_mode = 0 2247 vm.legacy_va_layout = 0 2248 vm.lowmem_reserve_ratio = 256 256 32 0 2249 vm.max_map_count = 65530 2250 vm.min_free_kbytes = 22528 2251 vm.min_slab_ratio = 5 2252 vm.min_unmapped_ratio = 1 2253 vm.mmap_min_addr = 32768 2254 vm.mmap_rnd_bits = 18 2255 vm.mmap_rnd_compat_bits = 11 2256 vm.nr_hugepages = 0 2257 vm.nr_hugepages_mempolicy = 0 2258 vm.nr_overcommit_hugepages = 0 2259 vm.numa_stat = 1 2260 vm.numa_zonelist_order = Node 2261 vm.oom_dump_tasks = 1 2262 vm.oom_kill_allocating_task = 0 2263 vm.overcommit_kbytes = 0 2264 vm.overcommit_memory = 0 2265 vm.overcommit_ratio = 50 2266 vm.page-cluster = 3 2267 vm.page_lock_unfairness = 5 2268 vm.panic_on_oom = 0 2269 vm.percpu_pagelist_high_fraction = 0 2270 vm.stat_interval = 1 2271 vm.swappiness = 100 2272 vm.user_reserve_kbytes = 63000 2273 vm.vfs_cache_pressure = 100 2274 vm.watermark_boost_factor = 15000 2275 vm.watermark_scale_factor = 10 2276 vm.zone_reclaim_mode = 0 2277 2278 ### ip addr: 2279 2280 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 2281 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2282 inet XXX.XXX.0.1/8 scope host lo 2283 valid_lft forever preferred_lft forever 2284 inet6 ::1/128 scope host 2285 valid_lft forever preferred_lft forever 2286 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 2287 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 2288 2289 ### partitions: 2290 2291 major minor #blocks name 2292 2293 179 0 31260672 mmcblk0 2294 179 1 30928896 mmcblk0p1 2295 8 0 117220824 sda 2296 8 1 117218304 sda1 2297 2298 ### df: 2299 2300 tmpfs 199M 3.1M 196M 2% /run 2301 /dev/sda1 110G 20G 85G 19% / 2302 tmpfs 995M 0 995M 0% /dev/shm 2303 tmpfs 5.0M 0 5.0M 0% /run/lock 2304 tmpfs 995M 4.0K 995M 1% /tmp 2305 2306 ### lsblk: 2307 2308 NAME FSTYPE SIZE MOUNTPOINT UUID 2309 sda 111.8G 2310 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 2311 mmcblk0 29.8G 2312 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 2313 2314 ### zramctl: 2315 2316 2317 2318 ### mtab: 2319 2320 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 2321 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 2322 2323 ### mmc0:0001 info: 2324 2325 fwrev: 0x0 2326 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 2327 cid: 1b534d454231515430bc836120012941 2328 rca: 0x0001 2329 csd: 400e00325b590000ee7f7f800a404055 2330 manfid: 0x00001b 2331 ocr: 0x00200000 2332 preferred_erase_size: 4194304 2333 type: SD 2334 hwrev: 0x3 2335 date: 09/2018 2336 dsr: 0x404 2337 erase_size: 512 2338 oemid: 0x534d 2339 serial: 0xbc836120 2340 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2341 scr: 02b5800200000000 2342 name: EB1QT 2343 2344 ### Boot system health: 2345 2346 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 2347 22:03:44: --- 0.15 53% 29% 19% 0% 3% 0% 39.8 °C 2348 22:03:45: --- 0.15 91% 15% 38% 0% 33% 2% 39.8 °C 2349 22:03:45: --- 0.62 84% 20% 18% 0% 42% 2% 37.2 °C 2350 22:03:45: --- 0.62 67% 12% 17% 1% 35% 0% 37.2 °C 2351 22:03:46: --- 0.62 25% 4% 3% 0% 15% 1% 37.2 °C 2352 2353 ### No more available zram devices () 2354 2355 Fri Dec 9 10:41:36 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 2356 2357 ### dmesg: 2358 2359 [ 0.000966] pid_max: default: 32768 minimum: 301 2360 [ 0.001053] LSM: Security Framework initializing 2361 [ 0.001082] Yama: becoming mindful. 2362 [ 0.001177] AppArmor: AppArmor initialized 2363 [ 0.001290] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 2364 [ 0.001319] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 2365 [ 0.003384] rcu: Hierarchical SRCU implementation. 2366 [ 0.004894] smp: Bringing up secondary CPUs ... 2367 [ 0.006138] Detected VIPT I-cache on CPU1 2368 [ 0.006206] arch_timer: CPU1: Trapping CNTVCT access 2369 [ 0.006224] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 2370 [ 0.007051] Detected VIPT I-cache on CPU2 2371 [ 0.007088] arch_timer: CPU2: Trapping CNTVCT access 2372 [ 0.007098] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 2373 [ 0.007836] Detected VIPT I-cache on CPU3 2374 [ 0.007870] arch_timer: CPU3: Trapping CNTVCT access 2375 [ 0.007881] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 2376 [ 0.008001] smp: Brought up 1 node, 4 CPUs 2377 [ 0.008017] SMP: Total of 4 processors activated. 2378 [ 0.008025] CPU features: detected: 32-bit EL0 Support 2379 [ 0.008031] CPU features: detected: CRC32 instructions 2380 [ 0.022887] CPU: All CPU(s) started at EL2 2381 [ 0.022921] alternatives: patching kernel code 2382 [ 0.024757] devtmpfs: initialized 2383 [ 0.032795] Registered cp15_barrier emulation handler 2384 [ 0.032829] Registered setend emulation handler 2385 [ 0.033012] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 2386 [ 0.033037] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 2387 [ 0.038493] pinctrl core: initialized pinctrl subsystem 2388 [ 0.040177] NET: Registered PF_NETLINK/PF_ROUTE protocol family 2389 [ 0.041966] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 2390 [ 0.042142] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 2391 [ 0.042319] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 2392 [ 0.042425] audit: initializing netlink subsys (disabled) 2393 [ 0.042643] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 2394 [ 0.043252] thermal_sys: Registered thermal governor 'fair_share' 2395 [ 0.043259] thermal_sys: Registered thermal governor 'bang_bang' 2396 [ 0.043265] thermal_sys: Registered thermal governor 'step_wise' 2397 [ 0.043270] thermal_sys: Registered thermal governor 'user_space' 2398 [ 0.043734] cpuidle: using governor menu 2399 [ 0.043991] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 2400 [ 0.044102] ASID allocator initialised with 65536 entries 2401 [ 0.044296] Serial: AMBA PL011 UART driver 2402 [ 0.060271] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 2403 [ 0.061807] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 2404 [ 0.069882] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 2405 [ 0.069905] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 2406 [ 0.069914] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 2407 [ 0.069922] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 2408 [ 0.072138] cryptd: max_cpu_qlen set to 1000 2409 [ 0.140231] raid6: neonx8 gen() 1460 MB/s 2410 [ 0.208291] raid6: neonx8 xor() 1091 MB/s 2411 [ 0.276370] raid6: neonx4 gen() 1492 MB/s 2412 [ 0.344434] raid6: neonx4 xor() 1081 MB/s 2413 [ 0.412501] raid6: neonx2 gen() 1411 MB/s 2414 [ 0.480568] raid6: neonx2 xor() 991 MB/s 2415 [ 0.548634] raid6: neonx1 gen() 1231 MB/s 2416 [ 0.616706] raid6: neonx1 xor() 848 MB/s 2417 [ 0.684778] raid6: int64x8 gen() 1023 MB/s 2418 [ 0.752845] raid6: int64x8 xor() 533 MB/s 2419 [ 0.820906] raid6: int64x4 gen() 1126 MB/s 2420 [ 0.888991] raid6: int64x4 xor() 572 MB/s 2421 [ 0.957064] raid6: int64x2 gen() 962 MB/s 2422 [ 1.025139] raid6: int64x2 xor() 509 MB/s 2423 [ 1.093217] raid6: int64x1 gen() 716 MB/s 2424 [ 1.161276] raid6: int64x1 xor() 372 MB/s 2425 [ 1.161284] raid6: using algorithm neonx4 gen() 1492 MB/s 2426 [ 1.161290] raid6: .... xor() 1081 MB/s, rmw enabled 2427 [ 1.161296] raid6: using neon recovery algorithm 2428 [ 1.161949] iommu: Default domain type: Translated 2429 [ 1.161959] iommu: DMA domain TLB invalidation policy: strict mode 2430 [ 1.162284] SCSI subsystem initialized 2431 [ 1.162509] usbcore: registered new interface driver usbfs 2432 [ 1.162559] usbcore: registered new interface driver hub 2433 [ 1.162594] usbcore: registered new device driver usb 2434 [ 1.162925] pps_core: LinuxPPS API ver. 1 registered 2435 [ 1.162932] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 2436 [ 1.162952] PTP clock support registered 2437 [ 1.163416] ARM FF-A: FFA_VERSION returned not supported 2438 [ 1.163814] Advanced Linux Sound Architecture Driver Initialized. 2439 [ 1.164560] NetLabel: Initializing 2440 [ 1.164601] NetLabel: domain hash size = 128 2441 [ 1.164608] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 2442 [ 1.164688] NetLabel: unlabeled traffic allowed by default 2443 [ 1.165188] clocksource: Switched to clocksource arch_sys_counter 2444 [ 1.165420] VFS: Disk quotas dquot_6.6.0 2445 [ 1.165486] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 2446 [ 1.166160] AppArmor: AppArmor Filesystem Enabled 2447 [ 1.173302] NET: Registered PF_INET protocol family 2448 [ 1.173586] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 2449 [ 1.174959] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 2450 [ 1.175004] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 2451 [ 1.175022] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 2452 [ 1.175181] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 2453 [ 1.175511] TCP: Hash tables configured (established 16384 bind 16384) 2454 [ 1.175681] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 2455 [ 1.175750] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 2456 [ 1.175970] NET: Registered PF_UNIX/PF_LOCAL protocol family 2457 [ 1.176569] Trying to unpack rootfs image as initramfs... 2458 [ 1.186574] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 2459 [ 1.193922] Initialise system trusted keyrings 2460 [ 1.194032] Key type blacklist registered 2461 [ 1.194268] workingset: timestamp_bits=44 max_order=19 bucket_order=0 2462 [ 1.200682] zbud: loaded 2463 [ 1.202489] squashfs: version 4.0 (2009/01/31) Phillip Lougher 2464 [ 1.205065] integrity: Platform Keyring initialized 2465 [ 1.257974] xor: automatically using best checksumming function 32regs 2466 [ 1.258002] async_tx: api initialized (async) 2467 [ 1.258014] Key type asymmetric registered 2468 [ 1.258021] Asymmetric key parser 'x509' registered 2469 [ 1.258167] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 2470 [ 1.258340] io scheduler mq-deadline registered 2471 [ 1.258348] io scheduler kyber registered 2472 [ 1.258564] io scheduler bfq registered 2473 [ 1.262456] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 2474 [ 1.272519] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 2475 [ 1.284812] loop: module loaded 2476 [ 1.287435] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 2477 [ 1.287469] ehci-platform: EHCI generic platform driver 2478 [ 1.287632] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 2479 [ 1.287647] ohci-platform: OHCI generic platform driver 2480 [ 1.288140] usbcore: registered new interface driver usb-storage 2481 [ 1.288737] mousedev: PS/2 mouse device common for all mice 2482 [ 1.289877] sun6i-rtc 1f00000.rtc: registered as rtc0 2483 [ 1.289916] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-09T21:41:26 UTC (1670622086) 2484 [ 1.290039] sun6i-rtc 1f00000.rtc: RTC enabled 2485 [ 1.290147] i2c_dev: i2c /dev entries driver 2486 [ 1.290958] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 2487 [ 1.293120] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 2488 [ 1.293725] sdhci: Secure Digital Host Controller Interface driver 2489 [ 1.293736] sdhci: Copyright(c) Pierre Ossman 2490 [ 1.293764] Synopsys Designware Multimedia Card Interface Driver 2491 [ 1.294517] sdhci-pltfm: SDHCI platform and OF driver helper 2492 [ 1.295484] ledtrig-cpu: registered to indicate activity on CPUs 2493 [ 1.295997] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 2494 [ 1.296307] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 2495 [ 1.296608] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 2496 [ 1.296760] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 2497 [ 1.296888] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 2498 [ 1.297000] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 2499 [ 1.297098] sun8i-ce 1c15000.crypto: Register cbc(aes) 2500 [ 1.297339] sun8i-ce 1c15000.crypto: Register ecb(aes) 2501 [ 1.297504] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 2502 [ 1.297644] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 2503 [ 1.297776] sun8i-ce 1c15000.crypto: Register md5 2504 [ 1.297917] sun8i-ce 1c15000.crypto: Register sha1 2505 [ 1.298048] sun8i-ce 1c15000.crypto: Register sha224 2506 [ 1.298177] sun8i-ce 1c15000.crypto: Register sha256 2507 [ 1.298308] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 2508 [ 1.298318] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 2509 [ 1.298327] sun8i-ce 1c15000.crypto: Register stdrng 2510 [ 1.298504] sun8i-ce 1c15000.crypto: TRNG not supported 2511 [ 1.298515] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 2512 [ 1.299131] hid: raw HID events driver (C) Jiri Kosina 2513 [ 1.299282] usbcore: registered new interface driver usbhid 2514 [ 1.299291] usbhid: USB HID core driver 2515 [ 1.305618] NET: Registered PF_INET6 protocol family 2516 [ 1.956986] Freeing initrd memory: 12684K 2517 [ 1.990251] Segment Routing with IPv6 2518 [ 1.990345] In-situ OAM (IOAM) with IPv6 2519 [ 1.990444] NET: Registered PF_PACKET protocol family 2520 [ 1.990577] 8021q: 802.1Q VLAN Support v1.8 2521 [ 1.990741] 9pnet: Installing 9P2000 support 2522 [ 1.990844] Key type dns_resolver registered 2523 [ 1.991355] registered taskstats version 1 2524 [ 1.991379] Loading compiled-in X.509 certificates 2525 [ 1.995669] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 2526 [ 2.000062] zswap: loaded using pool zstd/z3fold 2527 [ 2.000790] Key type ._fscrypt registered 2528 [ 2.000800] Key type .fscrypt registered 2529 [ 2.000805] Key type fscrypt-provisioning registered 2530 [ 2.002013] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 2531 [ 2.017908] Key type encrypted registered 2532 [ 2.017945] AppArmor: AppArmor sha1 policy hashing enabled 2533 [ 2.017990] ima: No TPM chip found, activating TPM-bypass! 2534 [ 2.018035] ima: Allocated hash algorithm: sha1 2535 [ 2.018072] ima: No architecture policies found 2536 [ 2.018167] evm: Initialising EVM extended attributes: 2537 [ 2.018172] evm: security.selinux 2538 [ 2.018178] evm: security.SMACK64 2539 [ 2.018182] evm: security.SMACK64EXEC 2540 [ 2.018187] evm: security.SMACK64TRANSMUTE 2541 [ 2.018191] evm: security.SMACK64MMAP 2542 [ 2.018196] evm: security.apparmor 2543 [ 2.018201] evm: security.ima 2544 [ 2.018206] evm: security.capability 2545 [ 2.018210] evm: HMAC attrs: 0x1 2546 [ 2.031144] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 2547 [ 2.031237] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 2548 [ 2.032003] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 2549 [ 2.032072] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 2550 [ 2.032946] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 2551 [ 2.033409] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 2552 [ 2.035463] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 2553 [ 2.038624] vcc-3v3: supplied by regulator-dummy 2554 [ 2.039156] vdd-cpux: supplied by regulator-dummy 2555 [ 2.039819] dcdc4: supplied by regulator-dummy 2556 [ 2.040012] vcc-dram: supplied by regulator-dummy 2557 [ 2.040486] vdd-sys: supplied by regulator-dummy 2558 [ 2.041029] vcc-phy: supplied by regulator-dummy 2559 [ 2.041491] aldo1: supplied by regulator-dummy 2560 [ 2.041677] vcc-pl: supplied by regulator-dummy 2561 [ 2.042132] vcc-pll-avcc: supplied by regulator-dummy 2562 [ 2.042766] vcc-hdmi: supplied by regulator-dummy 2563 [ 2.043137] vcc-mipi: supplied by regulator-dummy 2564 [ 2.043506] dldo3: supplied by regulator-dummy 2565 [ 2.043905] vcc-wifi: supplied by regulator-dummy 2566 [ 2.044271] cpvdd: supplied by regulator-dummy 2567 [ 2.044643] eldo2: supplied by regulator-dummy 2568 [ 2.045041] eldo3: supplied by regulator-dummy 2569 [ 2.045467] vcc-1v2-hsic: supplied by regulator-dummy 2570 [ 2.045666] vdd-cpus: supplied by regulator-dummy 2571 [ 2.046100] vcc-rtc: supplied by regulator-dummy 2572 [ 2.046538] ldo-io0: supplied by regulator-dummy 2573 [ 2.046905] ldo-io1: supplied by regulator-dummy 2574 [ 2.047030] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 2575 [ 2.051973] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 2576 [ 2.052387] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 2577 [ 2.052963] printk: console [ttyS0] disabled 2578 [ 2.053053] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 2579 [ 2.053306] printk: console [ttyS0] enabled 2580 [ 2.054031] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 2581 [ 2.054553] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 2582 [ 2.054710] serial serial0: tty port ttyS1 registered 2583 [ 2.085328] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 2584 [ 2.087151] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 2585 [ 2.087670] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 2586 [ 2.087688] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 2587 [ 2.087911] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 2588 [ 2.089031] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 2589 [ 2.089726] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 2590 [ 2.090114] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 2591 [ 2.090804] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 2592 [ 2.090896] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 2593 [ 2.091602] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 2594 [ 2.092190] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 2595 [ 2.092943] ehci-platform 1c1a000.usb: EHCI Host Controller 2596 [ 2.092978] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 2597 [ 2.093124] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 2598 [ 2.105194] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 2599 [ 2.105531] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 2600 [ 2.105547] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2601 [ 2.105559] usb usb1: Product: EHCI Host Controller 2602 [ 2.105568] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 2603 [ 2.105577] usb usb1: SerialNumber: 1c1a000.usb 2604 [ 2.106127] hub 1-0:1.0: USB hub found 2605 [ 2.106175] hub 1-0:1.0: 1 port detected 2606 [ 2.107178] ehci-platform 1c1b000.usb: EHCI Host Controller 2607 [ 2.107204] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 2608 [ 2.107330] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 2609 [ 2.121193] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 2610 [ 2.121520] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 2611 [ 2.121536] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2612 [ 2.121547] usb usb2: Product: EHCI Host Controller 2613 [ 2.121556] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 2614 [ 2.121566] usb usb2: SerialNumber: 1c1b000.usb 2615 [ 2.122074] hub 2-0:1.0: USB hub found 2616 [ 2.122126] hub 2-0:1.0: 1 port detected 2617 [ 2.301288] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 2618 [ 2.301321] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 2619 [ 2.301460] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 2620 [ 2.365201] usb 1-1: new high-speed USB device number 2 using ehci-platform 2621 [ 2.369565] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 2622 [ 2.369581] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2623 [ 2.369593] usb usb3: Product: Generic Platform OHCI controller 2624 [ 2.369603] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 2625 [ 2.369613] usb usb3: SerialNumber: 1c1a400.usb 2626 [ 2.370136] hub 3-0:1.0: USB hub found 2627 [ 2.370190] hub 3-0:1.0: 1 port detected 2628 [ 2.371218] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 2629 [ 2.371246] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 2630 [ 2.371376] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 2631 [ 2.377231] usb 2-1: new high-speed USB device number 2 using ehci-platform 2632 [ 2.437518] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 2633 [ 2.437534] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2634 [ 2.437546] usb usb4: Product: Generic Platform OHCI controller 2635 [ 2.437555] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 2636 [ 2.437565] usb usb4: SerialNumber: 1c1b400.usb 2637 [ 2.438096] hub 4-0:1.0: USB hub found 2638 [ 2.438145] hub 4-0:1.0: 1 port detected 2639 [ 2.439238] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 2640 [ 2.439381] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 2641 [ 2.509460] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 2642 [ 2.509492] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 2643 [ 2.509762] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 2644 [ 2.509778] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2645 [ 2.509790] usb usb5: Product: MUSB HDRC host driver 2646 [ 2.509799] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 2647 [ 2.509809] usb usb5: SerialNumber: musb-hdrc.4.auto 2648 [ 2.510335] hub 5-0:1.0: USB hub found 2649 [ 2.510384] hub 5-0:1.0: 1 port detected 2650 [ 2.513812] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 2651 [ 2.513886] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 2652 [ 2.514907] sunxi-mmc 1c0f000.mmc: Got CD GPIO 2653 [ 2.514908] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 2654 [ 2.515157] of_cfs_init 2655 [ 2.515301] of_cfs_init: OK 2656 [ 2.515659] ALSA device list: 2657 [ 2.515667] No soundcards found. 2658 [ 2.531170] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 2659 [ 2.531189] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 2660 [ 2.531200] usb 1-1: SerialNumber: 20181120 2661 [ 2.532159] usb-storage 1-1:1.0: USB Mass Storage device detected 2662 [ 2.532709] scsi host0: usb-storage 1-1:1.0 2663 [ 2.536502] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 2664 [ 2.536519] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 2665 [ 2.536531] usb 2-1: Product: USB2.1 Hub 2666 [ 2.536540] usb 2-1: Manufacturer: GenesysLogic 2667 [ 2.537281] hub 2-1:1.0: USB hub found 2668 [ 2.537622] hub 2-1:1.0: 4 ports detected 2669 [ 2.540313] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 2670 [ 2.540574] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 2671 [ 2.542395] Freeing unused kernel memory: 2496K 2672 [ 2.542532] Run /init as init process 2673 [ 2.542540] with arguments: 2674 [ 2.542546] /init 2675 [ 2.542552] with environment: 2676 [ 2.542557] HOME=/ 2677 [ 2.542563] TERM=linux 2678 [ 2.542568] ubootpart=ea5e158f-01 2679 [ 2.542574] cgroup_enable=memory 2680 [ 2.577098] mmc0: new high speed SDHC card at address 0001 2681 [ 2.578229] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 2682 [ 2.580821] mmcblk0: p1 2683 [ 2.853225] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 2684 [ 3.043135] usbcore: registered new interface driver uas 2685 [ 3.071499] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 2686 [ 3.071803] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 2687 [ 3.071819] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 2688 [ 3.072121] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 2689 [ 3.072335] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 2690 [ 3.072377] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 2691 [ 3.072789] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 2692 [ 3.072801] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 2693 [ 3.072809] dwmac-sun8i 1c30000.ethernet: COE Type 2 2694 [ 3.072818] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 2695 [ 3.072827] dwmac-sun8i 1c30000.ethernet: Normal descriptors 2696 [ 3.072835] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 2697 [ 3.074674] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 2698 [ 3.103692] axp20x-gpio axp20x-gpio: DMA mask not set 2699 [ 3.104370] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 2700 [ 3.202549] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 2701 [ 3.202584] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 2702 [ 3.202597] usb 2-1.1: SerialNumber: AA5FCF90 2703 [ 3.558252] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 2704 [ 3.558876] sd 0:0:0:0: Attached scsi generic sg0 type 0 2705 [ 3.560234] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 2706 [ 3.561480] sd 0:0:0:0: [sda] Write Protect is off 2707 [ 3.561510] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 2708 [ 3.562876] sd 0:0:0:0: [sda] No Caching mode page found 2709 [ 3.562906] sd 0:0:0:0: [sda] Assuming drive cache: write through 2710 [ 3.568847] sda: sda1 2711 [ 3.572330] sd 0:0:0:0: [sda] Attached SCSI disk 2712 [ 3.937663] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 2713 [ 4.533416] systemd[1]: systemd 249.11-0ubuntu3.6 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 2714 [ 4.534138] systemd[1]: Detected architecture arm64. 2715 [ 4.537128] systemd[1]: Hostname set to <pine64>. 2716 [ 4.643661] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 2717 [ 5.465445] systemd[1]: Queued start job for default target Graphical Interface. 2718 [ 5.467501] random: systemd: uninitialized urandom read (16 bytes read) 2719 [ 5.501798] systemd[1]: Created slice Slice /system/modprobe. 2720 [ 5.502609] random: systemd: uninitialized urandom read (16 bytes read) 2721 [ 5.505674] systemd[1]: Created slice Slice /system/serial-getty. 2722 [ 5.506158] random: systemd: uninitialized urandom read (16 bytes read) 2723 [ 5.508498] systemd[1]: Created slice User and Session Slice. 2724 [ 5.508980] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 2725 [ 5.509557] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 2726 [ 5.511026] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 2727 [ 5.511589] systemd[1]: Reached target Local Encrypted Volumes. 2728 [ 5.512336] systemd[1]: Reached target Slice Units. 2729 [ 5.512688] systemd[1]: Reached target Swaps. 2730 [ 5.512992] systemd[1]: Reached target System Time Set. 2731 [ 5.513493] systemd[1]: Reached target Local Verity Protected Volumes. 2732 [ 5.535773] systemd[1]: Listening on RPCbind Server Activation Socket. 2733 [ 5.537986] systemd[1]: Listening on Syslog Socket. 2734 [ 5.539145] systemd[1]: Listening on fsck to fsckd communication Socket. 2735 [ 5.539789] systemd[1]: Listening on initctl Compatibility Named Pipe. 2736 [ 5.541438] systemd[1]: Listening on Journal Audit Socket. 2737 [ 5.542435] systemd[1]: Listening on Journal Socket (/dev/log). 2738 [ 5.543551] systemd[1]: Listening on Journal Socket. 2739 [ 5.544909] systemd[1]: Listening on udev Control Socket. 2740 [ 5.545983] systemd[1]: Listening on udev Kernel Socket. 2741 [ 5.551869] systemd[1]: Mounting Huge Pages File System... 2742 [ 5.558599] systemd[1]: Mounting POSIX Message Queue File System... 2743 [ 5.564562] systemd[1]: Mounting NFSD configuration filesystem... 2744 [ 5.571494] systemd[1]: Mounting Kernel Debug File System... 2745 [ 5.572681] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 2746 [ 5.573820] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 2747 [ 5.582872] systemd[1]: Starting Restore / save the current clock... 2748 [ 5.591281] systemd[1]: Starting Set the console keyboard layout... 2749 [ 5.591942] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 2750 [ 5.598892] systemd[1]: Starting Load Kernel Module chromeos_pstore... 2751 [ 5.606654] systemd[1]: Starting Load Kernel Module configfs... 2752 [ 5.614350] systemd[1]: Starting Load Kernel Module drm... 2753 [ 5.623111] systemd[1]: Starting Load Kernel Module efi_pstore... 2754 [ 5.631419] systemd[1]: Starting Load Kernel Module fuse... 2755 [ 5.639431] systemd[1]: Starting Load Kernel Module pstore_blk... 2756 [ 5.647085] systemd[1]: Starting Load Kernel Module pstore_zone... 2757 [ 5.654915] systemd[1]: Starting Load Kernel Module ramoops... 2758 [ 5.663254] systemd[1]: Started Nameserver information manager. 2759 [ 5.664770] systemd[1]: Reached target Preparation for Network. 2760 [ 5.666087] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 2761 [ 5.679719] systemd[1]: Starting Load Kernel Modules... 2762 [ 5.687988] systemd[1]: Starting Remount Root and Kernel File Systems... 2763 [ 5.696136] systemd[1]: Starting Coldplug All udev Devices... 2764 [ 5.711434] systemd[1]: Mounted Huge Pages File System. 2765 [ 5.712532] systemd[1]: Mounted POSIX Message Queue File System. 2766 [ 5.713822] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 2767 [ 5.713874] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 2768 [ 5.715963] systemd[1]: Failed to mount NFSD configuration filesystem. 2769 [ 5.716336] systemd[1]: Dependency failed for NFS Mount Daemon. 2770 [ 5.716464] systemd[1]: Dependency failed for NFS server and services. 2771 [ 5.716594] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 2772 [ 5.716733] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 2773 [ 5.716799] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 2774 [ 5.716861] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 2775 [ 5.716894] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 2776 [ 5.717037] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 2777 [ 5.718124] systemd[1]: Mounted Kernel Debug File System. 2778 [ 5.720789] systemd[1]: Finished Restore / save the current clock. 2779 [ 5.723322] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 2780 [ 5.724584] systemd[1]: Finished Load Kernel Module chromeos_pstore. 2781 [ 5.726949] systemd[1]: modprobe@configfs.service: Deactivated successfully. 2782 [ 5.728465] systemd[1]: Finished Load Kernel Module configfs. 2783 [ 5.730739] systemd[1]: modprobe@drm.service: Deactivated successfully. 2784 [ 5.732189] systemd[1]: Finished Load Kernel Module drm. 2785 [ 5.734356] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 2786 [ 5.735248] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 2787 [ 5.735950] systemd[1]: Finished Load Kernel Module efi_pstore. 2788 [ 5.743452] systemd[1]: modprobe@fuse.service: Deactivated successfully. 2789 [ 5.744772] systemd[1]: Finished Load Kernel Module fuse. 2790 [ 5.748151] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 2791 [ 5.749943] systemd[1]: Finished Load Kernel Module pstore_blk. 2792 [ 5.752231] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 2793 [ 5.754200] systemd[1]: Finished Load Kernel Module pstore_zone. 2794 [ 5.756520] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 2795 [ 5.758095] systemd[1]: Finished Load Kernel Module ramoops. 2796 [ 5.763450] systemd[1]: Finished Load Kernel Modules. 2797 [ 5.766370] systemd[1]: Finished Remount Root and Kernel File Systems. 2798 [ 5.768589] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 2799 [ 5.774330] systemd[1]: Mounting Kernel Configuration File System... 2800 [ 5.775200] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 2801 [ 5.783620] systemd[1]: Starting Load/Save Random Seed... 2802 [ 5.791612] systemd[1]: Starting Apply Kernel Variables... 2803 [ 5.799215] systemd[1]: Starting Create System Users... 2804 [ 5.813047] systemd[1]: Mounted Kernel Configuration File System. 2805 [ 5.871513] systemd[1]: Finished Apply Kernel Variables. 2806 [ 5.900148] systemd[1]: Finished Create System Users. 2807 [ 5.909830] systemd[1]: Starting Create Static Device Nodes in /dev... 2808 [ 5.963331] systemd[1]: Finished Create Static Device Nodes in /dev. 2809 [ 6.004820] systemd[1]: Starting Rule-based Manager for Device Events and Files... 2810 [ 6.008640] systemd[1]: Finished Set the console keyboard layout. 2811 [ 6.010136] systemd[1]: Reached target Preparation for Local File Systems. 2812 [ 6.017941] systemd[1]: Mounting /tmp... 2813 [ 6.030336] systemd[1]: Mounted /tmp. 2814 [ 6.031404] systemd[1]: Reached target Local File Systems. 2815 [ 6.040860] systemd[1]: Starting Armbian leds state... 2816 [ 6.050947] systemd[1]: Starting Armbian ZRAM config... 2817 [ 6.062549] systemd[1]: Starting Set console font and keymap... 2818 [ 6.063435] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 2819 [ 6.063757] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 2820 [ 6.068190] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 2821 [ 6.087450] systemd[1]: Finished Set console font and keymap. 2822 [ 6.134144] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 2823 [ 6.135531] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 2824 [ 6.137662] systemd[1]: Failed to start Armbian leds state. 2825 [ 6.243271] systemd[1]: Finished Coldplug All udev Devices. 2826 [ 6.268275] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 2827 [ 6.321451] systemd[1]: Started Rule-based Manager for Device Events and Files. 2828 [ 6.399318] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 2829 [ 6.400319] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 2830 [ 6.402585] systemd[1]: Failed to start Armbian ZRAM config. 2831 [ 6.436958] systemd[1]: Starting Armbian memory supported logging... 2832 [ 6.525925] urandom_read_iter: 51 callbacks suppressed 2833 [ 6.525957] random: systemd: uninitialized urandom read (16 bytes read) 2834 [ 6.619367] random: systemd: uninitialized urandom read (16 bytes read) 2835 [ 6.619524] random: systemd: uninitialized urandom read (16 bytes read) 2836 [ 6.767198] random: crng init done 2837 [ 6.767233] random: 8 urandom warning(s) missed due to ratelimiting 2838 [ 6.798682] systemd[1]: Finished Load/Save Random Seed. 2839 [ 6.800108] systemd[1]: Condition check resulted in First Boot Complete being skipped. 2840 [ 6.800301] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 2841 [ 6.800484] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 2842 [ 6.820307] systemd[1]: Found device /dev/ttyS0. 2843 [ 7.415765] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 2844 [ 7.451135] systemd[1]: Started ifup for eth0. 2845 [ 7.455837] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 2846 [ 7.464084] systemd[1]: Starting Raise network interfaces... 2847 [ 7.467871] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 2848 [ 7.468865] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 2849 [ 7.971765] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 2850 [ 7.972653] systemd[1]: networking.service: Failed with result 'exit-code'. 2851 [ 7.974369] systemd[1]: Failed to start Raise network interfaces. 2852 [ 10.475090] systemd[1]: Finished Armbian memory supported logging. 2853 [ 10.497465] systemd[1]: Starting Journal Service... 2854 [ 10.752630] systemd[1]: Started Journal Service. 2855 [ 10.802840] systemd-journald[584]: Received client request to flush runtime journal. 2856 2857 ### armbian-release: 2858 2859 # PLEASE DO NOT EDIT THIS FILE 2860 BOARD=pine64 2861 BOARD_NAME="Pine64" 2862 BOARDFAMILY=sun50iw1 2863 BUILD_REPOSITORY_URL=https://github.com/armbian/build 2864 BUILD_REPOSITORY_COMMIT=84940abb 2865 VERSION=22.11.1 2866 LINUXFAMILY=sunxi64 2867 ARCH=arm64 2868 IMAGE_TYPE=stable 2869 BOARD_TYPE=conf 2870 INITRD_ARCH=arm64 2871 KERNEL_IMAGE_TYPE=Image 2872 BRANCH=current 2873 2874 ### boot environment: 2875 2876 verbosity=1 2877 bootlogo=false 2878 console=both 2879 disp_mode=1920x1080p60 2880 overlay_prefix=sunxi64 2881 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 2882 rootfstype=ext4 2883 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 2884 2885 2886 ### lsusb: 2887 2888 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 2889 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 2890 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 2891 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2892 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 2893 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 2894 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2895 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2896 2897 ### lscpu: 2898 2899 Architecture: aarch64 2900 CPU op-mode(s): 32-bit, 64-bit 2901 Byte Order: Little Endian 2902 CPU(s): 4 2903 On-line CPU(s) list: 0-3 2904 Vendor ID: ARM 2905 Model name: Cortex-A53 2906 Model: 4 2907 Thread(s) per core: 1 2908 Core(s) per cluster: 4 2909 Socket(s): - 2910 Cluster(s): 1 2911 Stepping: r0p4 2912 BogoMIPS: 48.00 2913 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2914 NUMA node(s): 1 2915 NUMA node0 CPU(s): 0-3 2916 Vulnerability Itlb multihit: Not affected 2917 Vulnerability L1tf: Not affected 2918 Vulnerability Mds: Not affected 2919 Vulnerability Meltdown: Not affected 2920 Vulnerability Mmio stale data: Not affected 2921 Vulnerability Spec store bypass: Not affected 2922 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 2923 Vulnerability Spectre v2: Not affected 2924 Vulnerability Srbds: Not affected 2925 Vulnerability Tsx async abort: Not affected 2926 2927 ### cpuinfo: 2928 2929 processor : 0 2930 BogoMIPS : 48.00 2931 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2932 CPU implementer : 0x41 2933 CPU architecture: 8 2934 CPU variant : 0x0 2935 CPU part : 0xd03 2936 CPU revision : 4 2937 2938 processor : 1 2939 BogoMIPS : 48.00 2940 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2941 CPU implementer : 0x41 2942 CPU architecture: 8 2943 CPU variant : 0x0 2944 CPU part : 0xd03 2945 CPU revision : 4 2946 2947 processor : 2 2948 BogoMIPS : 48.00 2949 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2950 CPU implementer : 0x41 2951 CPU architecture: 8 2952 CPU variant : 0x0 2953 CPU part : 0xd03 2954 CPU revision : 4 2955 2956 processor : 3 2957 BogoMIPS : 48.00 2958 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2959 CPU implementer : 0x41 2960 CPU architecture: 8 2961 CPU variant : 0x0 2962 CPU part : 0xd03 2963 CPU revision : 4 2964 2965 2966 ### meminfo: 2967 2968 MemTotal: 2037276 kB 2969 MemFree: 1885780 kB 2970 MemAvailable: 1881352 kB 2971 Buffers: 11772 kB 2972 Cached: 54292 kB 2973 SwapCached: 0 kB 2974 Active: 27796 kB 2975 Inactive: 60192 kB 2976 Active(anon): 412 kB 2977 Inactive(anon): 38068 kB 2978 Active(file): 27384 kB 2979 Inactive(file): 22124 kB 2980 Unevictable: 0 kB 2981 Mlocked: 0 kB 2982 SwapTotal: 0 kB 2983 SwapFree: 0 kB 2984 Dirty: 16 kB 2985 Writeback: 0 kB 2986 AnonPages: 21732 kB 2987 Mapped: 16396 kB 2988 Shmem: 16552 kB 2989 KReclaimable: 9212 kB 2990 Slab: 31852 kB 2991 SReclaimable: 9212 kB 2992 SUnreclaim: 22640 kB 2993 KernelStack: 2384 kB 2994 PageTables: 2032 kB 2995 NFS_Unstable: 0 kB 2996 Bounce: 0 kB 2997 WritebackTmp: 0 kB 2998 CommitLimit: 1018636 kB 2999 Committed_AS: 69264 kB 3000 VmallocTotal: 133143592960 kB 3001 VmallocUsed: 10324 kB 3002 VmallocChunk: 0 kB 3003 Percpu: 1072 kB 3004 AnonHugePages: 0 kB 3005 ShmemHugePages: 0 kB 3006 ShmemPmdMapped: 0 kB 3007 FileHugePages: 0 kB 3008 FilePmdMapped: 0 kB 3009 CmaTotal: 131072 kB 3010 CmaFree: 130304 kB 3011 HugePages_Total: 0 3012 HugePages_Free: 0 3013 HugePages_Rsvd: 0 3014 HugePages_Surp: 0 3015 Hugepagesize: 2048 kB 3016 Hugetlb: 0 kB 3017 3018 ### virtual memory: 3019 3020 vm.admin_reserve_kbytes = 8192 3021 vm.compaction_proactiveness = 20 3022 vm.compact_unevictable_allowed = 1 3023 vm.dirty_background_bytes = 0 3024 vm.dirty_background_ratio = 10 3025 vm.dirty_bytes = 0 3026 vm.dirty_expire_centisecs = 3000 3027 vm.dirty_ratio = 20 3028 vm.dirtytime_expire_seconds = 43200 3029 vm.dirty_writeback_centisecs = 500 3030 vm.extfrag_threshold = 500 3031 vm.hugetlb_shm_group = 0 3032 vm.laptop_mode = 0 3033 vm.legacy_va_layout = 0 3034 vm.lowmem_reserve_ratio = 256 256 32 0 3035 vm.max_map_count = 65530 3036 vm.min_free_kbytes = 22528 3037 vm.min_slab_ratio = 5 3038 vm.min_unmapped_ratio = 1 3039 vm.mmap_min_addr = 32768 3040 vm.mmap_rnd_bits = 18 3041 vm.mmap_rnd_compat_bits = 11 3042 vm.nr_hugepages = 0 3043 vm.nr_hugepages_mempolicy = 0 3044 vm.nr_overcommit_hugepages = 0 3045 vm.numa_stat = 1 3046 vm.numa_zonelist_order = Node 3047 vm.oom_dump_tasks = 1 3048 vm.oom_kill_allocating_task = 0 3049 vm.overcommit_kbytes = 0 3050 vm.overcommit_memory = 0 3051 vm.overcommit_ratio = 50 3052 vm.page-cluster = 3 3053 vm.page_lock_unfairness = 5 3054 vm.panic_on_oom = 0 3055 vm.percpu_pagelist_high_fraction = 0 3056 vm.stat_interval = 1 3057 vm.swappiness = 100 3058 vm.user_reserve_kbytes = 63000 3059 vm.vfs_cache_pressure = 100 3060 vm.watermark_boost_factor = 15000 3061 vm.watermark_scale_factor = 10 3062 vm.zone_reclaim_mode = 0 3063 3064 ### ip addr: 3065 3066 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 3067 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 3068 inet XXX.XXX.0.1/8 scope host lo 3069 valid_lft forever preferred_lft forever 3070 inet6 ::1/128 scope host 3071 valid_lft forever preferred_lft forever 3072 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 3073 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 3074 3075 ### partitions: 3076 3077 major minor #blocks name 3078 3079 179 0 31260672 mmcblk0 3080 179 1 30928896 mmcblk0p1 3081 8 0 117220824 sda 3082 8 1 117218304 sda1 3083 3084 ### df: 3085 3086 tmpfs 199M 3.1M 196M 2% /run 3087 /dev/sda1 110G 29G 76G 28% / 3088 tmpfs 995M 0 995M 0% /dev/shm 3089 tmpfs 5.0M 0 5.0M 0% /run/lock 3090 tmpfs 995M 4.0K 995M 1% /tmp 3091 3092 ### lsblk: 3093 3094 NAME FSTYPE SIZE MOUNTPOINT UUID 3095 sda 111.8G 3096 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 3097 mmcblk0 29.8G 3098 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 3099 3100 ### zramctl: 3101 3102 3103 3104 ### mtab: 3105 3106 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 3107 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 3108 3109 ### mmc0:0001 info: 3110 3111 fwrev: 0x0 3112 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 3113 cid: 1b534d454231515430bc836120012941 3114 rca: 0x0001 3115 csd: 400e00325b590000ee7f7f800a404055 3116 manfid: 0x00001b 3117 ocr: 0x00200000 3118 preferred_erase_size: 4194304 3119 type: SD 3120 hwrev: 0x3 3121 date: 09/2018 3122 dsr: 0x404 3123 erase_size: 512 3124 oemid: 0x534d 3125 serial: 0xbc836120 3126 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 3127 scr: 02b5800200000000 3128 name: EB1QT 3129 3130 ### Boot system health: 3131 3132 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 3133 22:41:39: --- 0.15 55% 28% 20% 0% 5% 0% 38.6 °C 3134 22:41:40: --- 0.15 82% 13% 16% 1% 48% 2% 38.6 °C 3135 22:41:40: --- 0.78 85% 16% 29% 0% 37% 1% 35.3 °C 3136 22:41:40: --- 0.78 35% 11% 5% 0% 17% 0% 35.3 °C 3137 22:41:41: --- 0.78 37% 7% 0% 0% 29% 0% 33.3 °C 3138 3139 ### No more available zram devices () 3140 3141 Fri Dec 9 11:10:51 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 3142 3143 ### dmesg: 3144 3145 [ 0.000961] pid_max: default: 32768 minimum: 301 3146 [ 0.001049] LSM: Security Framework initializing 3147 [ 0.001078] Yama: becoming mindful. 3148 [ 0.001175] AppArmor: AppArmor initialized 3149 [ 0.001289] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 3150 [ 0.001319] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 3151 [ 0.003382] rcu: Hierarchical SRCU implementation. 3152 [ 0.004911] smp: Bringing up secondary CPUs ... 3153 [ 0.006154] Detected VIPT I-cache on CPU1 3154 [ 0.006223] arch_timer: CPU1: Trapping CNTVCT access 3155 [ 0.006241] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 3156 [ 0.007053] Detected VIPT I-cache on CPU2 3157 [ 0.007088] arch_timer: CPU2: Trapping CNTVCT access 3158 [ 0.007099] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 3159 [ 0.007827] Detected VIPT I-cache on CPU3 3160 [ 0.007861] arch_timer: CPU3: Trapping CNTVCT access 3161 [ 0.007872] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 3162 [ 0.007963] smp: Brought up 1 node, 4 CPUs 3163 [ 0.007979] SMP: Total of 4 processors activated. 3164 [ 0.007987] CPU features: detected: 32-bit EL0 Support 3165 [ 0.007992] CPU features: detected: CRC32 instructions 3166 [ 0.022846] CPU: All CPU(s) started at EL2 3167 [ 0.022879] alternatives: patching kernel code 3168 [ 0.024705] devtmpfs: initialized 3169 [ 0.032765] Registered cp15_barrier emulation handler 3170 [ 0.032799] Registered setend emulation handler 3171 [ 0.032982] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 3172 [ 0.033006] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 3173 [ 0.038448] pinctrl core: initialized pinctrl subsystem 3174 [ 0.040128] NET: Registered PF_NETLINK/PF_ROUTE protocol family 3175 [ 0.041913] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 3176 [ 0.042090] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 3177 [ 0.042269] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 3178 [ 0.042378] audit: initializing netlink subsys (disabled) 3179 [ 0.042595] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 3180 [ 0.043204] thermal_sys: Registered thermal governor 'fair_share' 3181 [ 0.043212] thermal_sys: Registered thermal governor 'bang_bang' 3182 [ 0.043217] thermal_sys: Registered thermal governor 'step_wise' 3183 [ 0.043223] thermal_sys: Registered thermal governor 'user_space' 3184 [ 0.043686] cpuidle: using governor menu 3185 [ 0.043945] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 3186 [ 0.044054] ASID allocator initialised with 65536 entries 3187 [ 0.044251] Serial: AMBA PL011 UART driver 3188 [ 0.060244] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 3189 [ 0.061780] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 3190 [ 0.069851] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 3191 [ 0.069875] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 3192 [ 0.069883] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 3193 [ 0.069891] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 3194 [ 0.072097] cryptd: max_cpu_qlen set to 1000 3195 [ 0.140256] raid6: neonx8 gen() 1461 MB/s 3196 [ 0.208322] raid6: neonx8 xor() 1092 MB/s 3197 [ 0.276417] raid6: neonx4 gen() 1494 MB/s 3198 [ 0.344484] raid6: neonx4 xor() 1081 MB/s 3199 [ 0.412569] raid6: neonx2 gen() 1411 MB/s 3200 [ 0.480652] raid6: neonx2 xor() 993 MB/s 3201 [ 0.548727] raid6: neonx1 gen() 1232 MB/s 3202 [ 0.616803] raid6: neonx1 xor() 848 MB/s 3203 [ 0.684883] raid6: int64x8 gen() 1013 MB/s 3204 [ 0.752964] raid6: int64x8 xor() 533 MB/s 3205 [ 0.821043] raid6: int64x4 gen() 1126 MB/s 3206 [ 0.889139] raid6: int64x4 xor() 573 MB/s 3207 [ 0.957232] raid6: int64x2 gen() 962 MB/s 3208 [ 1.025317] raid6: int64x2 xor() 507 MB/s 3209 [ 1.093386] raid6: int64x1 gen() 716 MB/s 3210 [ 1.161495] raid6: int64x1 xor() 373 MB/s 3211 [ 1.161502] raid6: using algorithm neonx4 gen() 1494 MB/s 3212 [ 1.161508] raid6: .... xor() 1081 MB/s, rmw enabled 3213 [ 1.161514] raid6: using neon recovery algorithm 3214 [ 1.162165] iommu: Default domain type: Translated 3215 [ 1.162175] iommu: DMA domain TLB invalidation policy: strict mode 3216 [ 1.162498] SCSI subsystem initialized 3217 [ 1.162723] usbcore: registered new interface driver usbfs 3218 [ 1.162773] usbcore: registered new interface driver hub 3219 [ 1.162808] usbcore: registered new device driver usb 3220 [ 1.163144] pps_core: LinuxPPS API ver. 1 registered 3221 [ 1.163151] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 3222 [ 1.163171] PTP clock support registered 3223 [ 1.163645] ARM FF-A: FFA_VERSION returned not supported 3224 [ 1.164038] Advanced Linux Sound Architecture Driver Initialized. 3225 [ 1.164811] NetLabel: Initializing 3226 [ 1.164818] NetLabel: domain hash size = 128 3227 [ 1.164824] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 3228 [ 1.164901] NetLabel: unlabeled traffic allowed by default 3229 [ 1.165402] clocksource: Switched to clocksource arch_sys_counter 3230 [ 1.165636] VFS: Disk quotas dquot_6.6.0 3231 [ 1.165701] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 3232 [ 1.166360] AppArmor: AppArmor Filesystem Enabled 3233 [ 1.173672] NET: Registered PF_INET protocol family 3234 [ 1.173960] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 3235 [ 1.175335] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 3236 [ 1.175380] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 3237 [ 1.175398] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 3238 [ 1.175557] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 3239 [ 1.175880] TCP: Hash tables configured (established 16384 bind 16384) 3240 [ 1.176046] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 3241 [ 1.176116] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 3242 [ 1.176335] NET: Registered PF_UNIX/PF_LOCAL protocol family 3243 [ 1.176930] Trying to unpack rootfs image as initramfs... 3244 [ 1.191944] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 3245 [ 1.199141] Initialise system trusted keyrings 3246 [ 1.199227] Key type blacklist registered 3247 [ 1.199443] workingset: timestamp_bits=44 max_order=19 bucket_order=0 3248 [ 1.205913] zbud: loaded 3249 [ 1.207637] squashfs: version 4.0 (2009/01/31) Phillip Lougher 3250 [ 1.210199] integrity: Platform Keyring initialized 3251 [ 1.263942] xor: automatically using best checksumming function 32regs 3252 [ 1.263971] async_tx: api initialized (async) 3253 [ 1.264004] Key type asymmetric registered 3254 [ 1.264012] Asymmetric key parser 'x509' registered 3255 [ 1.264144] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 3256 [ 1.264322] io scheduler mq-deadline registered 3257 [ 1.264331] io scheduler kyber registered 3258 [ 1.264554] io scheduler bfq registered 3259 [ 1.268255] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 3260 [ 1.278295] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 3261 [ 1.290093] loop: module loaded 3262 [ 1.292585] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 3263 [ 1.292620] ehci-platform: EHCI generic platform driver 3264 [ 1.292776] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 3265 [ 1.292791] ohci-platform: OHCI generic platform driver 3266 [ 1.293287] usbcore: registered new interface driver usb-storage 3267 [ 1.293879] mousedev: PS/2 mouse device common for all mice 3268 [ 1.294991] sun6i-rtc 1f00000.rtc: registered as rtc0 3269 [ 1.295032] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-09T22:10:41 UTC (1670623841) 3270 [ 1.295156] sun6i-rtc 1f00000.rtc: RTC enabled 3271 [ 1.295261] i2c_dev: i2c /dev entries driver 3272 [ 1.296072] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 3273 [ 1.298213] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 3274 [ 1.298742] sdhci: Secure Digital Host Controller Interface driver 3275 [ 1.298751] sdhci: Copyright(c) Pierre Ossman 3276 [ 1.298780] Synopsys Designware Multimedia Card Interface Driver 3277 [ 1.299548] sdhci-pltfm: SDHCI platform and OF driver helper 3278 [ 1.300748] ledtrig-cpu: registered to indicate activity on CPUs 3279 [ 1.301272] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 3280 [ 1.301628] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 3281 [ 1.301942] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 3282 [ 1.302096] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 3283 [ 1.302212] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 3284 [ 1.302331] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 3285 [ 1.302430] sun8i-ce 1c15000.crypto: Register cbc(aes) 3286 [ 1.302622] sun8i-ce 1c15000.crypto: Register ecb(aes) 3287 [ 1.302765] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 3288 [ 1.302903] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 3289 [ 1.303035] sun8i-ce 1c15000.crypto: Register md5 3290 [ 1.303181] sun8i-ce 1c15000.crypto: Register sha1 3291 [ 1.303312] sun8i-ce 1c15000.crypto: Register sha224 3292 [ 1.303450] sun8i-ce 1c15000.crypto: Register sha256 3293 [ 1.303582] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 3294 [ 1.303592] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 3295 [ 1.303601] sun8i-ce 1c15000.crypto: Register stdrng 3296 [ 1.303762] sun8i-ce 1c15000.crypto: TRNG not supported 3297 [ 1.303772] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 3298 [ 1.304346] hid: raw HID events driver (C) Jiri Kosina 3299 [ 1.304506] usbcore: registered new interface driver usbhid 3300 [ 1.304515] usbhid: USB HID core driver 3301 [ 1.310770] NET: Registered PF_INET6 protocol family 3302 [ 1.956025] Freeing initrd memory: 12684K 3303 [ 1.989310] Segment Routing with IPv6 3304 [ 1.989432] In-situ OAM (IOAM) with IPv6 3305 [ 1.989537] NET: Registered PF_PACKET protocol family 3306 [ 1.989671] 8021q: 802.1Q VLAN Support v1.8 3307 [ 1.989840] 9pnet: Installing 9P2000 support 3308 [ 1.989930] Key type dns_resolver registered 3309 [ 1.990452] registered taskstats version 1 3310 [ 1.990470] Loading compiled-in X.509 certificates 3311 [ 1.994776] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 3312 [ 1.999127] zswap: loaded using pool zstd/z3fold 3313 [ 1.999894] Key type ._fscrypt registered 3314 [ 1.999903] Key type .fscrypt registered 3315 [ 1.999908] Key type fscrypt-provisioning registered 3316 [ 2.001080] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 3317 [ 2.017042] Key type encrypted registered 3318 [ 2.017078] AppArmor: AppArmor sha1 policy hashing enabled 3319 [ 2.017123] ima: No TPM chip found, activating TPM-bypass! 3320 [ 2.017162] ima: Allocated hash algorithm: sha1 3321 [ 2.017199] ima: No architecture policies found 3322 [ 2.017253] evm: Initialising EVM extended attributes: 3323 [ 2.017258] evm: security.selinux 3324 [ 2.017263] evm: security.SMACK64 3325 [ 2.017268] evm: security.SMACK64EXEC 3326 [ 2.017272] evm: security.SMACK64TRANSMUTE 3327 [ 2.017277] evm: security.SMACK64MMAP 3328 [ 2.017281] evm: security.apparmor 3329 [ 2.017286] evm: security.ima 3330 [ 2.017290] evm: security.capability 3331 [ 2.017295] evm: HMAC attrs: 0x1 3332 [ 2.030161] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 3333 [ 2.030249] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 3334 [ 2.031020] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 3335 [ 2.031108] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 3336 [ 2.031972] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 3337 [ 2.032376] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 3338 [ 2.034453] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 3339 [ 2.037470] vcc-3v3: supplied by regulator-dummy 3340 [ 2.037986] vdd-cpux: supplied by regulator-dummy 3341 [ 2.038636] dcdc4: supplied by regulator-dummy 3342 [ 2.038825] vcc-dram: supplied by regulator-dummy 3343 [ 2.039282] vdd-sys: supplied by regulator-dummy 3344 [ 2.039806] vcc-phy: supplied by regulator-dummy 3345 [ 2.040176] aldo1: supplied by regulator-dummy 3346 [ 2.040354] vcc-pl: supplied by regulator-dummy 3347 [ 2.040794] vcc-pll-avcc: supplied by regulator-dummy 3348 [ 2.041439] vcc-hdmi: supplied by regulator-dummy 3349 [ 2.041809] vcc-mipi: supplied by regulator-dummy 3350 [ 2.042175] dldo3: supplied by regulator-dummy 3351 [ 2.042558] vcc-wifi: supplied by regulator-dummy 3352 [ 2.042930] cpvdd: supplied by regulator-dummy 3353 [ 2.043293] eldo2: supplied by regulator-dummy 3354 [ 2.043682] eldo3: supplied by regulator-dummy 3355 [ 2.044050] vcc-1v2-hsic: supplied by regulator-dummy 3356 [ 2.044245] vdd-cpus: supplied by regulator-dummy 3357 [ 2.044680] vcc-rtc: supplied by regulator-dummy 3358 [ 2.045100] ldo-io0: supplied by regulator-dummy 3359 [ 2.045541] ldo-io1: supplied by regulator-dummy 3360 [ 2.045666] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 3361 [ 2.050601] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 3362 [ 2.051007] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 3363 [ 2.051577] printk: console [ttyS0] disabled 3364 [ 2.051665] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 3365 [ 2.051872] printk: console [ttyS0] enabled 3366 [ 2.052561] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 3367 [ 2.053041] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 3368 [ 2.053190] serial serial0: tty port ttyS1 registered 3369 [ 2.083829] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 3370 [ 2.085658] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 3371 [ 2.086184] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 3372 [ 2.086203] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 3373 [ 2.086439] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 3374 [ 2.087576] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 3375 [ 2.088225] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 3376 [ 2.088595] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 3377 [ 2.089281] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 3378 [ 2.089363] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 3379 [ 2.090107] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 3380 [ 2.090746] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 3381 [ 2.091506] ehci-platform 1c1a000.usb: EHCI Host Controller 3382 [ 2.091537] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 3383 [ 2.091683] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 3384 [ 2.105401] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 3385 [ 2.105770] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 3386 [ 2.105785] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3387 [ 2.105797] usb usb1: Product: EHCI Host Controller 3388 [ 2.105806] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 3389 [ 2.105815] usb usb1: SerialNumber: 1c1a000.usb 3390 [ 2.106366] hub 1-0:1.0: USB hub found 3391 [ 2.106416] hub 1-0:1.0: 1 port detected 3392 [ 2.107429] ehci-platform 1c1b000.usb: EHCI Host Controller 3393 [ 2.107462] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 3394 [ 2.107597] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 3395 [ 2.121411] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 3396 [ 2.121744] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 3397 [ 2.121759] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3398 [ 2.121771] usb usb2: Product: EHCI Host Controller 3399 [ 2.121780] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 3400 [ 2.121790] usb usb2: SerialNumber: 1c1b000.usb 3401 [ 2.122275] hub 2-0:1.0: USB hub found 3402 [ 2.122323] hub 2-0:1.0: 1 port detected 3403 [ 2.297505] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 3404 [ 2.297539] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 3405 [ 2.297677] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 3406 [ 2.365448] usb 1-1: new high-speed USB device number 2 using ehci-platform 3407 [ 2.365749] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 3408 [ 2.365766] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3409 [ 2.365777] usb usb3: Product: Generic Platform OHCI controller 3410 [ 2.365787] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 3411 [ 2.365797] usb usb3: SerialNumber: 1c1a400.usb 3412 [ 2.366312] hub 3-0:1.0: USB hub found 3413 [ 2.366362] hub 3-0:1.0: 1 port detected 3414 [ 2.367363] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 3415 [ 2.367395] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 3416 [ 2.367525] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 3417 [ 2.377409] usb 2-1: new high-speed USB device number 2 using ehci-platform 3418 [ 2.433753] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 3419 [ 2.433768] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3420 [ 2.433780] usb usb4: Product: Generic Platform OHCI controller 3421 [ 2.433790] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 3422 [ 2.433799] usb usb4: SerialNumber: 1c1b400.usb 3423 [ 2.434305] hub 4-0:1.0: USB hub found 3424 [ 2.434351] hub 4-0:1.0: 1 port detected 3425 [ 2.435414] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 3426 [ 2.435571] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 3427 [ 2.505675] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 3428 [ 2.505706] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 3429 [ 2.505975] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 3430 [ 2.505990] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3431 [ 2.506002] usb usb5: Product: MUSB HDRC host driver 3432 [ 2.506011] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 3433 [ 2.506020] usb usb5: SerialNumber: musb-hdrc.4.auto 3434 [ 2.506564] hub 5-0:1.0: USB hub found 3435 [ 2.506619] hub 5-0:1.0: 1 port detected 3436 [ 2.510044] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 3437 [ 2.510109] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 3438 [ 2.511217] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 3439 [ 2.511235] sunxi-mmc 1c0f000.mmc: Got CD GPIO 3440 [ 2.511391] of_cfs_init 3441 [ 2.511556] of_cfs_init: OK 3442 [ 2.511949] ALSA device list: 3443 [ 2.511956] No soundcards found. 3444 [ 2.527356] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 3445 [ 2.527374] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 3446 [ 2.527386] usb 1-1: SerialNumber: 20181120 3447 [ 2.528351] usb-storage 1-1:1.0: USB Mass Storage device detected 3448 [ 2.528902] scsi host0: usb-storage 1-1:1.0 3449 [ 2.534454] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 3450 [ 2.536517] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 3451 [ 2.536533] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 3452 [ 2.536545] usb 2-1: Product: USB2.1 Hub 3453 [ 2.536554] usb 2-1: Manufacturer: GenesysLogic 3454 [ 2.536659] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 3455 [ 2.537474] hub 2-1:1.0: USB hub found 3456 [ 2.537902] hub 2-1:1.0: 4 ports detected 3457 [ 2.538633] Freeing unused kernel memory: 2496K 3458 [ 2.538772] Run /init as init process 3459 [ 2.538780] with arguments: 3460 [ 2.538787] /init 3461 [ 2.538792] with environment: 3462 [ 2.538797] HOME=/ 3463 [ 2.538803] TERM=linux 3464 [ 2.538808] ubootpart=ea5e158f-01 3465 [ 2.538814] cgroup_enable=memory 3466 [ 2.573473] mmc0: new high speed SDHC card at address 0001 3467 [ 2.574613] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 3468 [ 2.577205] mmcblk0: p1 3469 [ 2.853441] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 3470 [ 3.035518] usbcore: registered new interface driver uas 3471 [ 3.053085] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 3472 [ 3.060429] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 3473 [ 3.060745] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 3474 [ 3.060759] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 3475 [ 3.061055] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 3476 [ 3.061330] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 3477 [ 3.061373] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 3478 [ 3.062494] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 3479 [ 3.062526] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 3480 [ 3.062535] dwmac-sun8i 1c30000.ethernet: COE Type 2 3481 [ 3.062547] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 3482 [ 3.062556] dwmac-sun8i 1c30000.ethernet: Normal descriptors 3483 [ 3.062564] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 3484 [ 3.087854] axp20x-gpio axp20x-gpio: DMA mask not set 3485 [ 3.095679] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 3486 [ 3.202316] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 3487 [ 3.202351] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 3488 [ 3.202363] usb 2-1.1: SerialNumber: AA5FCF90 3489 [ 3.562441] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 3490 [ 3.563055] sd 0:0:0:0: Attached scsi generic sg0 type 0 3491 [ 3.563937] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 3492 [ 3.565187] sd 0:0:0:0: [sda] Write Protect is off 3493 [ 3.565216] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 3494 [ 3.566698] sd 0:0:0:0: [sda] No Caching mode page found 3495 [ 3.566729] sd 0:0:0:0: [sda] Assuming drive cache: write through 3496 [ 3.572533] sda: sda1 3497 [ 3.576019] sd 0:0:0:0: [sda] Attached SCSI disk 3498 [ 3.941793] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 3499 [ 4.534335] systemd[1]: systemd 249.11-0ubuntu3.6 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 3500 [ 4.535051] systemd[1]: Detected architecture arm64. 3501 [ 4.537814] systemd[1]: Hostname set to <pine64>. 3502 [ 4.647470] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 3503 [ 5.519748] systemd[1]: Queued start job for default target Graphical Interface. 3504 [ 5.521821] random: systemd: uninitialized urandom read (16 bytes read) 3505 [ 5.561939] systemd[1]: Created slice Slice /system/modprobe. 3506 [ 5.562744] random: systemd: uninitialized urandom read (16 bytes read) 3507 [ 5.565808] systemd[1]: Created slice Slice /system/serial-getty. 3508 [ 5.566250] random: systemd: uninitialized urandom read (16 bytes read) 3509 [ 5.568563] systemd[1]: Created slice User and Session Slice. 3510 [ 5.569047] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 3511 [ 5.569631] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 3512 [ 5.571081] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 3513 [ 5.571652] systemd[1]: Reached target Local Encrypted Volumes. 3514 [ 5.572432] systemd[1]: Reached target Slice Units. 3515 [ 5.572777] systemd[1]: Reached target Swaps. 3516 [ 5.573074] systemd[1]: Reached target System Time Set. 3517 [ 5.573615] systemd[1]: Reached target Local Verity Protected Volumes. 3518 [ 5.595826] systemd[1]: Listening on RPCbind Server Activation Socket. 3519 [ 5.598000] systemd[1]: Listening on Syslog Socket. 3520 [ 5.599199] systemd[1]: Listening on fsck to fsckd communication Socket. 3521 [ 5.599868] systemd[1]: Listening on initctl Compatibility Named Pipe. 3522 [ 5.601548] systemd[1]: Listening on Journal Audit Socket. 3523 [ 5.602604] systemd[1]: Listening on Journal Socket (/dev/log). 3524 [ 5.603689] systemd[1]: Listening on Journal Socket. 3525 [ 5.605033] systemd[1]: Listening on udev Control Socket. 3526 [ 5.606101] systemd[1]: Listening on udev Kernel Socket. 3527 [ 5.612010] systemd[1]: Mounting Huge Pages File System... 3528 [ 5.618862] systemd[1]: Mounting POSIX Message Queue File System... 3529 [ 5.624862] systemd[1]: Mounting NFSD configuration filesystem... 3530 [ 5.631727] systemd[1]: Mounting Kernel Debug File System... 3531 [ 5.632872] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 3532 [ 5.633936] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 3533 [ 5.642680] systemd[1]: Starting Restore / save the current clock... 3534 [ 5.651075] systemd[1]: Starting Set the console keyboard layout... 3535 [ 5.651713] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 3536 [ 5.658803] systemd[1]: Starting Load Kernel Module chromeos_pstore... 3537 [ 5.666580] systemd[1]: Starting Load Kernel Module configfs... 3538 [ 5.674433] systemd[1]: Starting Load Kernel Module drm... 3539 [ 5.683124] systemd[1]: Starting Load Kernel Module efi_pstore... 3540 [ 5.690801] systemd[1]: Starting Load Kernel Module fuse... 3541 [ 5.699057] systemd[1]: Starting Load Kernel Module pstore_blk... 3542 [ 5.707156] systemd[1]: Starting Load Kernel Module pstore_zone... 3543 [ 5.715305] systemd[1]: Starting Load Kernel Module ramoops... 3544 [ 5.723427] systemd[1]: Started Nameserver information manager. 3545 [ 5.725374] systemd[1]: Reached target Preparation for Network. 3546 [ 5.726945] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 3547 [ 5.740081] systemd[1]: Starting Load Kernel Modules... 3548 [ 5.748382] systemd[1]: Starting Remount Root and Kernel File Systems... 3549 [ 5.756653] systemd[1]: Starting Coldplug All udev Devices... 3550 [ 5.772040] systemd[1]: Mounted Huge Pages File System. 3551 [ 5.773571] systemd[1]: Mounted POSIX Message Queue File System. 3552 [ 5.774663] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 3553 [ 5.774709] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 3554 [ 5.776644] systemd[1]: Failed to mount NFSD configuration filesystem. 3555 [ 5.776986] systemd[1]: Dependency failed for NFS server and services. 3556 [ 5.777130] systemd[1]: Dependency failed for NFS Mount Daemon. 3557 [ 5.777289] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 3558 [ 5.777364] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 3559 [ 5.777707] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 3560 [ 5.777769] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 3561 [ 5.777815] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 3562 [ 5.777965] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 3563 [ 5.779146] systemd[1]: Mounted Kernel Debug File System. 3564 [ 5.782216] systemd[1]: Finished Restore / save the current clock. 3565 [ 5.784571] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 3566 [ 5.786149] systemd[1]: Finished Load Kernel Module chromeos_pstore. 3567 [ 5.788554] systemd[1]: modprobe@configfs.service: Deactivated successfully. 3568 [ 5.790159] systemd[1]: Finished Load Kernel Module configfs. 3569 [ 5.792370] systemd[1]: modprobe@drm.service: Deactivated successfully. 3570 [ 5.793826] systemd[1]: Finished Load Kernel Module drm. 3571 [ 5.793936] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 3572 [ 5.800680] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 3573 [ 5.802129] systemd[1]: Finished Load Kernel Module efi_pstore. 3574 [ 5.804313] systemd[1]: modprobe@fuse.service: Deactivated successfully. 3575 [ 5.805798] systemd[1]: Finished Load Kernel Module fuse. 3576 [ 5.807983] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 3577 [ 5.809338] systemd[1]: Finished Load Kernel Module pstore_blk. 3578 [ 5.811537] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 3579 [ 5.813044] systemd[1]: Finished Load Kernel Module pstore_zone. 3580 [ 5.815232] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 3581 [ 5.816651] systemd[1]: Finished Load Kernel Module ramoops. 3582 [ 5.822188] systemd[1]: Finished Load Kernel Modules. 3583 [ 5.825012] systemd[1]: Finished Remount Root and Kernel File Systems. 3584 [ 5.828361] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 3585 [ 5.834192] systemd[1]: Mounting Kernel Configuration File System... 3586 [ 5.835047] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 3587 [ 5.841886] systemd[1]: Starting Load/Save Random Seed... 3588 [ 5.850972] systemd[1]: Starting Apply Kernel Variables... 3589 [ 5.862584] systemd[1]: Starting Create System Users... 3590 [ 5.881556] systemd[1]: Mounted Kernel Configuration File System. 3591 [ 5.953137] systemd[1]: Finished Apply Kernel Variables. 3592 [ 5.956492] systemd[1]: Finished Create System Users. 3593 [ 5.966766] systemd[1]: Starting Create Static Device Nodes in /dev... 3594 [ 6.019115] systemd[1]: Finished Create Static Device Nodes in /dev. 3595 [ 6.058919] systemd[1]: Starting Rule-based Manager for Device Events and Files... 3596 [ 6.062336] systemd[1]: Finished Set the console keyboard layout. 3597 [ 6.063631] systemd[1]: Reached target Preparation for Local File Systems. 3598 [ 6.073804] systemd[1]: Mounting /tmp... 3599 [ 6.086424] systemd[1]: Mounted /tmp. 3600 [ 6.087442] systemd[1]: Reached target Local File Systems. 3601 [ 6.094717] systemd[1]: Starting Armbian leds state... 3602 [ 6.103067] systemd[1]: Starting Armbian ZRAM config... 3603 [ 6.114026] systemd[1]: Starting Set console font and keymap... 3604 [ 6.114912] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 3605 [ 6.115266] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 3606 [ 6.123357] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 3607 [ 6.142276] systemd[1]: Finished Set console font and keymap. 3608 [ 6.186192] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 3609 [ 6.187149] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 3610 [ 6.188916] systemd[1]: Failed to start Armbian leds state. 3611 [ 6.295776] systemd[1]: Finished Coldplug All udev Devices. 3612 [ 6.324488] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 3613 [ 6.355988] systemd[1]: Started Rule-based Manager for Device Events and Files. 3614 [ 6.444119] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 3615 [ 6.445085] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 3616 [ 6.447079] systemd[1]: Failed to start Armbian ZRAM config. 3617 [ 6.487209] systemd[1]: Starting Armbian memory supported logging... 3618 [ 6.595495] urandom_read_iter: 51 callbacks suppressed 3619 [ 6.595525] random: systemd: uninitialized urandom read (16 bytes read) 3620 [ 6.686377] random: systemd: uninitialized urandom read (16 bytes read) 3621 [ 6.686491] random: systemd: uninitialized urandom read (16 bytes read) 3622 [ 6.793477] random: crng init done 3623 [ 6.793506] random: 8 urandom warning(s) missed due to ratelimiting 3624 [ 6.807282] systemd[1]: Finished Load/Save Random Seed. 3625 [ 6.809192] systemd[1]: Condition check resulted in First Boot Complete being skipped. 3626 [ 6.809622] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 3627 [ 6.809876] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 3628 [ 6.929530] systemd[1]: Found device /dev/ttyS0. 3629 [ 7.481698] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 3630 [ 7.507475] systemd[1]: Started ifup for eth0. 3631 [ 7.513528] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 3632 [ 7.522254] systemd[1]: Starting Raise network interfaces... 3633 [ 7.524346] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 3634 [ 7.525658] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 3635 [ 8.061538] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 3636 [ 8.062437] systemd[1]: networking.service: Failed with result 'exit-code'. 3637 [ 8.064099] systemd[1]: Failed to start Raise network interfaces. 3638 [ 10.623768] systemd[1]: Finished Armbian memory supported logging. 3639 [ 10.685675] systemd[1]: Starting Journal Service... 3640 [ 10.940110] systemd[1]: Started Journal Service. 3641 [ 10.996353] systemd-journald[586]: Received client request to flush runtime journal. 3642 3643 ### armbian-release: 3644 3645 # PLEASE DO NOT EDIT THIS FILE 3646 BOARD=pine64 3647 BOARD_NAME="Pine64" 3648 BOARDFAMILY=sun50iw1 3649 BUILD_REPOSITORY_URL=https://github.com/armbian/build 3650 BUILD_REPOSITORY_COMMIT=84940abb 3651 VERSION=22.11.1 3652 LINUXFAMILY=sunxi64 3653 ARCH=arm64 3654 IMAGE_TYPE=stable 3655 BOARD_TYPE=conf 3656 INITRD_ARCH=arm64 3657 KERNEL_IMAGE_TYPE=Image 3658 BRANCH=current 3659 3660 ### boot environment: 3661 3662 verbosity=1 3663 bootlogo=false 3664 console=both 3665 disp_mode=1920x1080p60 3666 overlay_prefix=sun50i-a64 3667 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 3668 rootfstype=ext4 3669 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 3670 3671 ### lsusb: 3672 3673 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 3674 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 3675 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 3676 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 3677 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 3678 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 3679 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 3680 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 3681 3682 ### lscpu: 3683 3684 Architecture: aarch64 3685 CPU op-mode(s): 32-bit, 64-bit 3686 Byte Order: Little Endian 3687 CPU(s): 4 3688 On-line CPU(s) list: 0-3 3689 Vendor ID: ARM 3690 Model name: Cortex-A53 3691 Model: 4 3692 Thread(s) per core: 1 3693 Core(s) per cluster: 4 3694 Socket(s): - 3695 Cluster(s): 1 3696 Stepping: r0p4 3697 BogoMIPS: 48.00 3698 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3699 NUMA node(s): 1 3700 NUMA node0 CPU(s): 0-3 3701 Vulnerability Itlb multihit: Not affected 3702 Vulnerability L1tf: Not affected 3703 Vulnerability Mds: Not affected 3704 Vulnerability Meltdown: Not affected 3705 Vulnerability Mmio stale data: Not affected 3706 Vulnerability Spec store bypass: Not affected 3707 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 3708 Vulnerability Spectre v2: Not affected 3709 Vulnerability Srbds: Not affected 3710 Vulnerability Tsx async abort: Not affected 3711 3712 ### cpuinfo: 3713 3714 processor : 0 3715 BogoMIPS : 48.00 3716 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3717 CPU implementer : 0x41 3718 CPU architecture: 8 3719 CPU variant : 0x0 3720 CPU part : 0xd03 3721 CPU revision : 4 3722 3723 processor : 1 3724 BogoMIPS : 48.00 3725 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3726 CPU implementer : 0x41 3727 CPU architecture: 8 3728 CPU variant : 0x0 3729 CPU part : 0xd03 3730 CPU revision : 4 3731 3732 processor : 2 3733 BogoMIPS : 48.00 3734 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3735 CPU implementer : 0x41 3736 CPU architecture: 8 3737 CPU variant : 0x0 3738 CPU part : 0xd03 3739 CPU revision : 4 3740 3741 processor : 3 3742 BogoMIPS : 48.00 3743 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3744 CPU implementer : 0x41 3745 CPU architecture: 8 3746 CPU variant : 0x0 3747 CPU part : 0xd03 3748 CPU revision : 4 3749 3750 3751 ### meminfo: 3752 3753 MemTotal: 2037276 kB 3754 MemFree: 1889588 kB 3755 MemAvailable: 1885804 kB 3756 Buffers: 11664 kB 3757 Cached: 56400 kB 3758 SwapCached: 0 kB 3759 Active: 27768 kB 3760 Inactive: 55144 kB 3761 Active(anon): 344 kB 3762 Inactive(anon): 31716 kB 3763 Active(file): 27424 kB 3764 Inactive(file): 23428 kB 3765 Unevictable: 0 kB 3766 Mlocked: 0 kB 3767 SwapTotal: 0 kB 3768 SwapFree: 0 kB 3769 Dirty: 16 kB 3770 Writeback: 0 kB 3771 AnonPages: 15624 kB 3772 Mapped: 15984 kB 3773 Shmem: 16716 kB 3774 KReclaimable: 9160 kB 3775 Slab: 31644 kB 3776 SReclaimable: 9160 kB 3777 SUnreclaim: 22484 kB 3778 KernelStack: 2192 kB 3779 PageTables: 1504 kB 3780 NFS_Unstable: 0 kB 3781 Bounce: 0 kB 3782 WritebackTmp: 0 kB 3783 CommitLimit: 1018636 kB 3784 Committed_AS: 52328 kB 3785 VmallocTotal: 133143592960 kB 3786 VmallocUsed: 10116 kB 3787 VmallocChunk: 0 kB 3788 Percpu: 1072 kB 3789 AnonHugePages: 0 kB 3790 ShmemHugePages: 0 kB 3791 ShmemPmdMapped: 0 kB 3792 FileHugePages: 0 kB 3793 FilePmdMapped: 0 kB 3794 CmaTotal: 131072 kB 3795 CmaFree: 130304 kB 3796 HugePages_Total: 0 3797 HugePages_Free: 0 3798 HugePages_Rsvd: 0 3799 HugePages_Surp: 0 3800 Hugepagesize: 2048 kB 3801 Hugetlb: 0 kB 3802 3803 ### virtual memory: 3804 3805 vm.admin_reserve_kbytes = 8192 3806 vm.compaction_proactiveness = 20 3807 vm.compact_unevictable_allowed = 1 3808 vm.dirty_background_bytes = 0 3809 vm.dirty_background_ratio = 10 3810 vm.dirty_bytes = 0 3811 vm.dirty_expire_centisecs = 3000 3812 vm.dirty_ratio = 20 3813 vm.dirtytime_expire_seconds = 43200 3814 vm.dirty_writeback_centisecs = 500 3815 vm.extfrag_threshold = 500 3816 vm.hugetlb_shm_group = 0 3817 vm.laptop_mode = 0 3818 vm.legacy_va_layout = 0 3819 vm.lowmem_reserve_ratio = 256 256 32 0 3820 vm.max_map_count = 65530 3821 vm.min_free_kbytes = 22528 3822 vm.min_slab_ratio = 5 3823 vm.min_unmapped_ratio = 1 3824 vm.mmap_min_addr = 32768 3825 vm.mmap_rnd_bits = 18 3826 vm.mmap_rnd_compat_bits = 11 3827 vm.nr_hugepages = 0 3828 vm.nr_hugepages_mempolicy = 0 3829 vm.nr_overcommit_hugepages = 0 3830 vm.numa_stat = 1 3831 vm.numa_zonelist_order = Node 3832 vm.oom_dump_tasks = 1 3833 vm.oom_kill_allocating_task = 0 3834 vm.overcommit_kbytes = 0 3835 vm.overcommit_memory = 0 3836 vm.overcommit_ratio = 50 3837 vm.page-cluster = 3 3838 vm.page_lock_unfairness = 5 3839 vm.panic_on_oom = 0 3840 vm.percpu_pagelist_high_fraction = 0 3841 vm.stat_interval = 1 3842 vm.swappiness = 100 3843 vm.user_reserve_kbytes = 63000 3844 vm.vfs_cache_pressure = 100 3845 vm.watermark_boost_factor = 15000 3846 vm.watermark_scale_factor = 10 3847 vm.zone_reclaim_mode = 0 3848 3849 ### ip addr: 3850 3851 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 3852 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 3853 inet XXX.XXX.0.1/8 scope host lo 3854 valid_lft forever preferred_lft forever 3855 inet6 ::1/128 scope host 3856 valid_lft forever preferred_lft forever 3857 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 3858 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 3859 3860 ### partitions: 3861 3862 major minor #blocks name 3863 3864 179 0 31260672 mmcblk0 3865 179 1 30928896 mmcblk0p1 3866 8 0 117220824 sda 3867 8 1 117218304 sda1 3868 3869 ### df: 3870 3871 tmpfs 199M 3.1M 196M 2% /run 3872 /dev/sda1 110G 29G 76G 28% / 3873 tmpfs 995M 0 995M 0% /dev/shm 3874 tmpfs 5.0M 0 5.0M 0% /run/lock 3875 tmpfs 995M 4.0K 995M 1% /tmp 3876 3877 ### lsblk: 3878 3879 NAME FSTYPE SIZE MOUNTPOINT UUID 3880 sda 111.8G 3881 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 3882 mmcblk0 29.8G 3883 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 3884 3885 ### zramctl: 3886 3887 3888 3889 ### mtab: 3890 3891 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 3892 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 3893 3894 ### mmc0:0001 info: 3895 3896 fwrev: 0x0 3897 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 3898 cid: 1b534d454231515430bc836120012941 3899 rca: 0x0001 3900 csd: 400e00325b590000ee7f7f800a404055 3901 manfid: 0x00001b 3902 ocr: 0x00200000 3903 preferred_erase_size: 4194304 3904 type: SD 3905 hwrev: 0x3 3906 date: 09/2018 3907 dsr: 0x404 3908 erase_size: 512 3909 oemid: 0x534d 3910 serial: 0xbc836120 3911 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 3912 scr: 02b5800200000000 3913 name: EB1QT 3914 3915 ### Boot system health: 3916 3917 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 3918 23:10:54: --- 0.30 54% 29% 20% 0% 4% 0% 38.8 °C 3919 23:10:55: --- 0.30 82% 13% 20% 0% 45% 2% 38.8 °C 3920 23:10:55: --- 0.84 82% 20% 23% 0% 37% 0% 37.2 °C 3921 23:10:55: --- 0.84 53% 10% 12% 0% 28% 2% 37.2 °C 3922 23:10:56: --- 0.84 23% 7% 2% 0% 11% 1% 35.0 °C 3923 3924 ### No more available zram devices () 3925 3926 Sat Dec 10 05:37:11 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 3927 3928 ### dmesg: 3929 3930 [ 0.000968] pid_max: default: 32768 minimum: 301 3931 [ 0.001054] LSM: Security Framework initializing 3932 [ 0.001083] Yama: becoming mindful. 3933 [ 0.001180] AppArmor: AppArmor initialized 3934 [ 0.001293] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 3935 [ 0.001322] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 3936 [ 0.003389] rcu: Hierarchical SRCU implementation. 3937 [ 0.004901] smp: Bringing up secondary CPUs ... 3938 [ 0.006147] Detected VIPT I-cache on CPU1 3939 [ 0.006215] arch_timer: CPU1: Trapping CNTVCT access 3940 [ 0.006233] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 3941 [ 0.007043] Detected VIPT I-cache on CPU2 3942 [ 0.007078] arch_timer: CPU2: Trapping CNTVCT access 3943 [ 0.007089] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 3944 [ 0.007815] Detected VIPT I-cache on CPU3 3945 [ 0.007848] arch_timer: CPU3: Trapping CNTVCT access 3946 [ 0.007859] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 3947 [ 0.007961] smp: Brought up 1 node, 4 CPUs 3948 [ 0.007977] SMP: Total of 4 processors activated. 3949 [ 0.007984] CPU features: detected: 32-bit EL0 Support 3950 [ 0.007990] CPU features: detected: CRC32 instructions 3951 [ 0.022845] CPU: All CPU(s) started at EL2 3952 [ 0.022878] alternatives: patching kernel code 3953 [ 0.024694] devtmpfs: initialized 3954 [ 0.032744] Registered cp15_barrier emulation handler 3955 [ 0.032777] Registered setend emulation handler 3956 [ 0.032961] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 3957 [ 0.032985] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 3958 [ 0.038435] pinctrl core: initialized pinctrl subsystem 3959 [ 0.040112] NET: Registered PF_NETLINK/PF_ROUTE protocol family 3960 [ 0.041898] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 3961 [ 0.042075] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 3962 [ 0.042252] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 3963 [ 0.042363] audit: initializing netlink subsys (disabled) 3964 [ 0.042577] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 3965 [ 0.043188] thermal_sys: Registered thermal governor 'fair_share' 3966 [ 0.043196] thermal_sys: Registered thermal governor 'bang_bang' 3967 [ 0.043202] thermal_sys: Registered thermal governor 'step_wise' 3968 [ 0.043207] thermal_sys: Registered thermal governor 'user_space' 3969 [ 0.043671] cpuidle: using governor menu 3970 [ 0.043930] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 3971 [ 0.044037] ASID allocator initialised with 65536 entries 3972 [ 0.044233] Serial: AMBA PL011 UART driver 3973 [ 0.060227] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 3974 [ 0.061746] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 3975 [ 0.069833] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 3976 [ 0.069856] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 3977 [ 0.069864] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 3978 [ 0.069872] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 3979 [ 0.072081] cryptd: max_cpu_qlen set to 1000 3980 [ 0.140238] raid6: neonx8 gen() 1457 MB/s 3981 [ 0.208316] raid6: neonx8 xor() 1091 MB/s 3982 [ 0.276404] raid6: neonx4 gen() 1494 MB/s 3983 [ 0.344481] raid6: neonx4 xor() 1082 MB/s 3984 [ 0.412557] raid6: neonx2 gen() 1412 MB/s 3985 [ 0.480637] raid6: neonx2 xor() 990 MB/s 3986 [ 0.548715] raid6: neonx1 gen() 1231 MB/s 3987 [ 0.616793] raid6: neonx1 xor() 848 MB/s 3988 [ 0.684884] raid6: int64x8 gen() 1014 MB/s 3989 [ 0.752954] raid6: int64x8 xor() 533 MB/s 3990 [ 0.821049] raid6: int64x4 gen() 1127 MB/s 3991 [ 0.889123] raid6: int64x4 xor() 572 MB/s 3992 [ 0.957211] raid6: int64x2 gen() 962 MB/s 3993 [ 1.025288] raid6: int64x2 xor() 509 MB/s 3994 [ 1.093390] raid6: int64x1 gen() 716 MB/s 3995 [ 1.161483] raid6: int64x1 xor() 373 MB/s 3996 [ 1.161490] raid6: using algorithm neonx4 gen() 1494 MB/s 3997 [ 1.161497] raid6: .... xor() 1082 MB/s, rmw enabled 3998 [ 1.161502] raid6: using neon recovery algorithm 3999 [ 1.162153] iommu: Default domain type: Translated 4000 [ 1.162162] iommu: DMA domain TLB invalidation policy: strict mode 4001 [ 1.162486] SCSI subsystem initialized 4002 [ 1.162711] usbcore: registered new interface driver usbfs 4003 [ 1.162762] usbcore: registered new interface driver hub 4004 [ 1.162799] usbcore: registered new device driver usb 4005 [ 1.163132] pps_core: LinuxPPS API ver. 1 registered 4006 [ 1.163140] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 4007 [ 1.163159] PTP clock support registered 4008 [ 1.163630] ARM FF-A: FFA_VERSION returned not supported 4009 [ 1.164022] Advanced Linux Sound Architecture Driver Initialized. 4010 [ 1.164800] NetLabel: Initializing 4011 [ 1.164806] NetLabel: domain hash size = 128 4012 [ 1.164812] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 4013 [ 1.164889] NetLabel: unlabeled traffic allowed by default 4014 [ 1.165390] clocksource: Switched to clocksource arch_sys_counter 4015 [ 1.165681] VFS: Disk quotas dquot_6.6.0 4016 [ 1.165750] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 4017 [ 1.166413] AppArmor: AppArmor Filesystem Enabled 4018 [ 1.173634] NET: Registered PF_INET protocol family 4019 [ 1.173921] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 4020 [ 1.175317] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 4021 [ 1.175360] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 4022 [ 1.175378] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 4023 [ 1.175539] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 4024 [ 1.175865] TCP: Hash tables configured (established 16384 bind 16384) 4025 [ 1.176029] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 4026 [ 1.176098] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 4027 [ 1.176311] NET: Registered PF_UNIX/PF_LOCAL protocol family 4028 [ 1.176960] Trying to unpack rootfs image as initramfs... 4029 [ 1.186133] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 4030 [ 1.193488] Initialise system trusted keyrings 4031 [ 1.193594] Key type blacklist registered 4032 [ 1.193805] workingset: timestamp_bits=44 max_order=19 bucket_order=0 4033 [ 1.200226] zbud: loaded 4034 [ 1.202015] squashfs: version 4.0 (2009/01/31) Phillip Lougher 4035 [ 1.204510] integrity: Platform Keyring initialized 4036 [ 1.257825] xor: automatically using best checksumming function 32regs 4037 [ 1.257855] async_tx: api initialized (async) 4038 [ 1.257866] Key type asymmetric registered 4039 [ 1.257873] Asymmetric key parser 'x509' registered 4040 [ 1.258040] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 4041 [ 1.258234] io scheduler mq-deadline registered 4042 [ 1.258243] io scheduler kyber registered 4043 [ 1.258457] io scheduler bfq registered 4044 [ 1.262137] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 4045 [ 1.272169] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 4046 [ 1.284000] loop: module loaded 4047 [ 1.286584] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 4048 [ 1.286619] ehci-platform: EHCI generic platform driver 4049 [ 1.286778] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 4050 [ 1.286793] ohci-platform: OHCI generic platform driver 4051 [ 1.287289] usbcore: registered new interface driver usb-storage 4052 [ 1.287846] mousedev: PS/2 mouse device common for all mice 4053 [ 1.288942] sun6i-rtc 1f00000.rtc: registered as rtc0 4054 [ 1.288983] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-10T16:37:01 UTC (1670690221) 4055 [ 1.289111] sun6i-rtc 1f00000.rtc: RTC enabled 4056 [ 1.289220] i2c_dev: i2c /dev entries driver 4057 [ 1.290083] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 4058 [ 1.292200] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 4059 [ 1.292701] sdhci: Secure Digital Host Controller Interface driver 4060 [ 1.292710] sdhci: Copyright(c) Pierre Ossman 4061 [ 1.292738] Synopsys Designware Multimedia Card Interface Driver 4062 [ 1.293553] sdhci-pltfm: SDHCI platform and OF driver helper 4063 [ 1.294593] ledtrig-cpu: registered to indicate activity on CPUs 4064 [ 1.295105] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 4065 [ 1.295419] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 4066 [ 1.295728] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 4067 [ 1.295876] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 4068 [ 1.295989] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 4069 [ 1.296117] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 4070 [ 1.296215] sun8i-ce 1c15000.crypto: Register cbc(aes) 4071 [ 1.296403] sun8i-ce 1c15000.crypto: Register ecb(aes) 4072 [ 1.296540] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 4073 [ 1.296686] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 4074 [ 1.296804] sun8i-ce 1c15000.crypto: Register md5 4075 [ 1.296931] sun8i-ce 1c15000.crypto: Register sha1 4076 [ 1.297058] sun8i-ce 1c15000.crypto: Register sha224 4077 [ 1.297182] sun8i-ce 1c15000.crypto: Register sha256 4078 [ 1.297305] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 4079 [ 1.297315] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 4080 [ 1.297324] sun8i-ce 1c15000.crypto: Register stdrng 4081 [ 1.297520] sun8i-ce 1c15000.crypto: TRNG not supported 4082 [ 1.297531] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 4083 [ 1.298131] hid: raw HID events driver (C) Jiri Kosina 4084 [ 1.298311] usbcore: registered new interface driver usbhid 4085 [ 1.298319] usbhid: USB HID core driver 4086 [ 1.304440] NET: Registered PF_INET6 protocol family 4087 [ 1.956867] Freeing initrd memory: 12684K 4088 [ 1.990455] Segment Routing with IPv6 4089 [ 1.990549] In-situ OAM (IOAM) with IPv6 4090 [ 1.990648] NET: Registered PF_PACKET protocol family 4091 [ 1.990785] 8021q: 802.1Q VLAN Support v1.8 4092 [ 1.990961] 9pnet: Installing 9P2000 support 4093 [ 1.991095] Key type dns_resolver registered 4094 [ 1.991631] registered taskstats version 1 4095 [ 1.991650] Loading compiled-in X.509 certificates 4096 [ 1.995895] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 4097 [ 2.000372] zswap: loaded using pool zstd/z3fold 4098 [ 2.001199] Key type ._fscrypt registered 4099 [ 2.001208] Key type .fscrypt registered 4100 [ 2.001213] Key type fscrypt-provisioning registered 4101 [ 2.002405] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 4102 [ 2.018331] Key type encrypted registered 4103 [ 2.018369] AppArmor: AppArmor sha1 policy hashing enabled 4104 [ 2.018414] ima: No TPM chip found, activating TPM-bypass! 4105 [ 2.018451] ima: Allocated hash algorithm: sha1 4106 [ 2.018490] ima: No architecture policies found 4107 [ 2.018576] evm: Initialising EVM extended attributes: 4108 [ 2.018581] evm: security.selinux 4109 [ 2.018587] evm: security.SMACK64 4110 [ 2.018591] evm: security.SMACK64EXEC 4111 [ 2.018596] evm: security.SMACK64TRANSMUTE 4112 [ 2.018600] evm: security.SMACK64MMAP 4113 [ 2.018605] evm: security.apparmor 4114 [ 2.018610] evm: security.ima 4115 [ 2.018615] evm: security.capability 4116 [ 2.018619] evm: HMAC attrs: 0x1 4117 [ 2.031490] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 4118 [ 2.031575] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 4119 [ 2.032330] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 4120 [ 2.032405] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 4121 [ 2.033239] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 4122 [ 2.033693] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 4123 [ 2.035666] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 4124 [ 2.038746] vcc-3v3: supplied by regulator-dummy 4125 [ 2.039253] vdd-cpux: supplied by regulator-dummy 4126 [ 2.039936] dcdc4: supplied by regulator-dummy 4127 [ 2.040125] vcc-dram: supplied by regulator-dummy 4128 [ 2.040592] vdd-sys: supplied by regulator-dummy 4129 [ 2.041149] vcc-phy: supplied by regulator-dummy 4130 [ 2.041524] aldo1: supplied by regulator-dummy 4131 [ 2.041708] vcc-pl: supplied by regulator-dummy 4132 [ 2.042174] vcc-pll-avcc: supplied by regulator-dummy 4133 [ 2.042781] vcc-hdmi: supplied by regulator-dummy 4134 [ 2.043162] vcc-mipi: supplied by regulator-dummy 4135 [ 2.043527] dldo3: supplied by regulator-dummy 4136 [ 2.043894] vcc-wifi: supplied by regulator-dummy 4137 [ 2.044317] cpvdd: supplied by regulator-dummy 4138 [ 2.044680] eldo2: supplied by regulator-dummy 4139 [ 2.045041] eldo3: supplied by regulator-dummy 4140 [ 2.045472] vcc-1v2-hsic: supplied by regulator-dummy 4141 [ 2.045671] vdd-cpus: supplied by regulator-dummy 4142 [ 2.046104] vcc-rtc: supplied by regulator-dummy 4143 [ 2.046548] ldo-io0: supplied by regulator-dummy 4144 [ 2.046879] ldo-io1: supplied by regulator-dummy 4145 [ 2.047001] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 4146 [ 2.051925] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 4147 [ 2.052343] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 4148 [ 2.052902] printk: console [ttyS0] disabled 4149 [ 2.052988] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 4150 [ 2.053198] printk: console [ttyS0] enabled 4151 [ 2.053947] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 4152 [ 2.054421] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 4153 [ 2.054571] serial serial0: tty port ttyS1 registered 4154 [ 2.085122] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 4155 [ 2.086991] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 4156 [ 2.087485] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 4157 [ 2.087504] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 4158 [ 2.087767] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 4159 [ 2.088941] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 4160 [ 2.089629] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 4161 [ 2.090014] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 4162 [ 2.090703] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 4163 [ 2.090788] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 4164 [ 2.091482] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 4165 [ 2.092055] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 4166 [ 2.092794] ehci-platform 1c1a000.usb: EHCI Host Controller 4167 [ 2.092828] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 4168 [ 2.092964] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 4169 [ 2.105399] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 4170 [ 2.105791] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 4171 [ 2.105807] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4172 [ 2.105819] usb usb1: Product: EHCI Host Controller 4173 [ 2.105829] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 4174 [ 2.105838] usb usb1: SerialNumber: 1c1a000.usb 4175 [ 2.106397] hub 1-0:1.0: USB hub found 4176 [ 2.106446] hub 1-0:1.0: 1 port detected 4177 [ 2.107474] ehci-platform 1c1b000.usb: EHCI Host Controller 4178 [ 2.107501] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 4179 [ 2.107635] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 4180 [ 2.121401] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 4181 [ 2.121729] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 4182 [ 2.121744] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4183 [ 2.121755] usb usb2: Product: EHCI Host Controller 4184 [ 2.121764] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 4185 [ 2.121774] usb usb2: SerialNumber: 1c1b000.usb 4186 [ 2.122261] hub 2-0:1.0: USB hub found 4187 [ 2.122309] hub 2-0:1.0: 1 port detected 4188 [ 2.297491] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 4189 [ 2.297525] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 4190 [ 2.297665] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 4191 [ 2.361441] usb 1-1: new high-speed USB device number 2 using ehci-platform 4192 [ 2.361792] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 4193 [ 2.361807] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4194 [ 2.361819] usb usb3: Product: Generic Platform OHCI controller 4195 [ 2.361828] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 4196 [ 2.361838] usb usb3: SerialNumber: 1c1a400.usb 4197 [ 2.362354] hub 3-0:1.0: USB hub found 4198 [ 2.362408] hub 3-0:1.0: 1 port detected 4199 [ 2.363427] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 4200 [ 2.363454] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 4201 [ 2.363578] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 4202 [ 2.377404] usb 2-1: new high-speed USB device number 2 using ehci-platform 4203 [ 2.425658] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 4204 [ 2.425674] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4205 [ 2.425685] usb usb4: Product: Generic Platform OHCI controller 4206 [ 2.425695] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 4207 [ 2.425704] usb usb4: SerialNumber: 1c1b400.usb 4208 [ 2.426224] hub 4-0:1.0: USB hub found 4209 [ 2.426277] hub 4-0:1.0: 1 port detected 4210 [ 2.427337] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 4211 [ 2.427517] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 4212 [ 2.505663] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 4213 [ 2.505695] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 4214 [ 2.505957] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 4215 [ 2.505973] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4216 [ 2.505985] usb usb5: Product: MUSB HDRC host driver 4217 [ 2.505995] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 4218 [ 2.506005] usb usb5: SerialNumber: musb-hdrc.4.auto 4219 [ 2.506527] hub 5-0:1.0: USB hub found 4220 [ 2.506578] hub 5-0:1.0: 1 port detected 4221 [ 2.509984] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 4222 [ 2.510034] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 4223 [ 2.511064] sunxi-mmc 1c0f000.mmc: Got CD GPIO 4224 [ 2.511079] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 4225 [ 2.511280] of_cfs_init 4226 [ 2.511411] of_cfs_init: OK 4227 [ 2.511772] ALSA device list: 4228 [ 2.511780] No soundcards found. 4229 [ 2.519395] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 4230 [ 2.519413] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 4231 [ 2.519425] usb 1-1: SerialNumber: 20181120 4232 [ 2.520389] usb-storage 1-1:1.0: USB Mass Storage device detected 4233 [ 2.520914] scsi host0: usb-storage 1-1:1.0 4234 [ 2.534507] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 4235 [ 2.536429] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 4236 [ 2.536445] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4237 [ 2.536457] usb 2-1: Product: USB2.1 Hub 4238 [ 2.536478] usb 2-1: Manufacturer: GenesysLogic 4239 [ 2.536507] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 4240 [ 2.537330] hub 2-1:1.0: USB hub found 4241 [ 2.537686] hub 2-1:1.0: 4 ports detected 4242 [ 2.538207] Freeing unused kernel memory: 2496K 4243 [ 2.538343] Run /init as init process 4244 [ 2.538351] with arguments: 4245 [ 2.538357] /init 4246 [ 2.538363] with environment: 4247 [ 2.538368] HOME=/ 4248 [ 2.538373] TERM=linux 4249 [ 2.538379] ubootpart=ea5e158f-01 4250 [ 2.538385] cgroup_enable=memory 4251 [ 2.573167] mmc0: new high speed SDHC card at address 0001 4252 [ 2.574258] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 4253 [ 2.576671] mmcblk0: p1 4254 [ 2.849433] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 4255 [ 3.061854] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 4256 [ 3.062739] usbcore: registered new interface driver uas 4257 [ 3.076942] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 4258 [ 3.077214] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 4259 [ 3.077227] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 4260 [ 3.077612] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 4261 [ 3.077889] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 4262 [ 3.077938] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 4263 [ 3.078417] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 4264 [ 3.078436] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 4265 [ 3.078445] dwmac-sun8i 1c30000.ethernet: COE Type 2 4266 [ 3.078457] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 4267 [ 3.078465] dwmac-sun8i 1c30000.ethernet: Normal descriptors 4268 [ 3.078473] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 4269 [ 3.098353] axp20x-gpio axp20x-gpio: DMA mask not set 4270 [ 3.100011] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 4271 [ 3.199063] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 4272 [ 3.199103] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 4273 [ 3.199115] usb 2-1.1: SerialNumber: AA5FCF90 4274 [ 3.526482] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 4275 [ 3.527236] sd 0:0:0:0: Attached scsi generic sg0 type 0 4276 [ 3.528214] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 4277 [ 3.529529] sd 0:0:0:0: [sda] Write Protect is off 4278 [ 3.529559] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 4279 [ 3.531475] sd 0:0:0:0: [sda] No Caching mode page found 4280 [ 3.531505] sd 0:0:0:0: [sda] Assuming drive cache: write through 4281 [ 3.537462] sda: sda1 4282 [ 3.541056] sd 0:0:0:0: [sda] Attached SCSI disk 4283 [ 3.895680] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 4284 [ 4.489896] systemd[1]: systemd 249.11-0ubuntu3.6 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 4285 [ 4.490608] systemd[1]: Detected architecture arm64. 4286 [ 4.493606] systemd[1]: Hostname set to <pine64>. 4287 [ 4.599592] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 4288 [ 5.436125] systemd[1]: Queued start job for default target Graphical Interface. 4289 [ 5.438233] random: systemd: uninitialized urandom read (16 bytes read) 4290 [ 5.474009] systemd[1]: Created slice Slice /system/modprobe. 4291 [ 5.474766] random: systemd: uninitialized urandom read (16 bytes read) 4292 [ 5.477825] systemd[1]: Created slice Slice /system/serial-getty. 4293 [ 5.478258] random: systemd: uninitialized urandom read (16 bytes read) 4294 [ 5.480558] systemd[1]: Created slice User and Session Slice. 4295 [ 5.481041] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 4296 [ 5.481625] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 4297 [ 5.483133] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 4298 [ 5.483703] systemd[1]: Reached target Local Encrypted Volumes. 4299 [ 5.484470] systemd[1]: Reached target Slice Units. 4300 [ 5.484799] systemd[1]: Reached target Swaps. 4301 [ 5.485093] systemd[1]: Reached target System Time Set. 4302 [ 5.485651] systemd[1]: Reached target Local Verity Protected Volumes. 4303 [ 5.507761] systemd[1]: Listening on RPCbind Server Activation Socket. 4304 [ 5.509967] systemd[1]: Listening on Syslog Socket. 4305 [ 5.511095] systemd[1]: Listening on fsck to fsckd communication Socket. 4306 [ 5.511745] systemd[1]: Listening on initctl Compatibility Named Pipe. 4307 [ 5.513245] systemd[1]: Listening on Journal Audit Socket. 4308 [ 5.514270] systemd[1]: Listening on Journal Socket (/dev/log). 4309 [ 5.515346] systemd[1]: Listening on Journal Socket. 4310 [ 5.516728] systemd[1]: Listening on udev Control Socket. 4311 [ 5.517792] systemd[1]: Listening on udev Kernel Socket. 4312 [ 5.523638] systemd[1]: Mounting Huge Pages File System... 4313 [ 5.530252] systemd[1]: Mounting POSIX Message Queue File System... 4314 [ 5.536431] systemd[1]: Mounting NFSD configuration filesystem... 4315 [ 5.543426] systemd[1]: Mounting Kernel Debug File System... 4316 [ 5.544609] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 4317 [ 5.545716] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 4318 [ 5.554688] systemd[1]: Starting Restore / save the current clock... 4319 [ 5.562976] systemd[1]: Starting Set the console keyboard layout... 4320 [ 5.563623] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 4321 [ 5.570777] systemd[1]: Starting Load Kernel Module chromeos_pstore... 4322 [ 5.578534] systemd[1]: Starting Load Kernel Module configfs... 4323 [ 5.586367] systemd[1]: Starting Load Kernel Module drm... 4324 [ 5.597439] systemd[1]: Starting Load Kernel Module efi_pstore... 4325 [ 5.608279] systemd[1]: Starting Load Kernel Module fuse... 4326 [ 5.616212] systemd[1]: Starting Load Kernel Module pstore_blk... 4327 [ 5.624780] systemd[1]: Starting Load Kernel Module pstore_zone... 4328 [ 5.632873] systemd[1]: Starting Load Kernel Module ramoops... 4329 [ 5.641828] systemd[1]: Started Nameserver information manager. 4330 [ 5.643270] systemd[1]: Reached target Preparation for Network. 4331 [ 5.644665] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 4332 [ 5.655105] systemd[1]: Starting Load Kernel Modules... 4333 [ 5.663362] systemd[1]: Starting Remount Root and Kernel File Systems... 4334 [ 5.672013] systemd[1]: Starting Coldplug All udev Devices... 4335 [ 5.687246] systemd[1]: Mounted Huge Pages File System. 4336 [ 5.688390] systemd[1]: Mounted POSIX Message Queue File System. 4337 [ 5.689688] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 4338 [ 5.689738] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 4339 [ 5.691946] systemd[1]: Failed to mount NFSD configuration filesystem. 4340 [ 5.692336] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 4341 [ 5.692499] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 4342 [ 5.692558] systemd[1]: Dependency failed for NFS server and services. 4343 [ 5.692686] systemd[1]: Dependency failed for NFS Mount Daemon. 4344 [ 5.692812] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 4345 [ 5.692867] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 4346 [ 5.692993] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 4347 [ 5.693030] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 4348 [ 5.694191] systemd[1]: Mounted Kernel Debug File System. 4349 [ 5.696991] systemd[1]: Finished Restore / save the current clock. 4350 [ 5.699539] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 4351 [ 5.700952] systemd[1]: Finished Load Kernel Module chromeos_pstore. 4352 [ 5.701756] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 4353 [ 5.708101] systemd[1]: modprobe@configfs.service: Deactivated successfully. 4354 [ 5.709490] systemd[1]: Finished Load Kernel Module configfs. 4355 [ 5.711668] systemd[1]: modprobe@drm.service: Deactivated successfully. 4356 [ 5.712954] systemd[1]: Finished Load Kernel Module drm. 4357 [ 5.715243] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 4358 [ 5.716565] systemd[1]: Finished Load Kernel Module efi_pstore. 4359 [ 5.718937] systemd[1]: modprobe@fuse.service: Deactivated successfully. 4360 [ 5.720423] systemd[1]: Finished Load Kernel Module fuse. 4361 [ 5.770991] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 4362 [ 5.772462] systemd[1]: Finished Load Kernel Module pstore_blk. 4363 [ 5.774690] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 4364 [ 5.776199] systemd[1]: Finished Load Kernel Module pstore_zone. 4365 [ 5.778312] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 4366 [ 5.779751] systemd[1]: Finished Load Kernel Module ramoops. 4367 [ 5.784883] systemd[1]: Finished Load Kernel Modules. 4368 [ 5.787871] systemd[1]: Finished Remount Root and Kernel File Systems. 4369 [ 5.790567] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 4370 [ 5.795903] systemd[1]: Mounting Kernel Configuration File System... 4371 [ 5.796814] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 4372 [ 5.806394] systemd[1]: Starting Load/Save Random Seed... 4373 [ 5.816255] systemd[1]: Starting Apply Kernel Variables... 4374 [ 5.823671] systemd[1]: Starting Create System Users... 4375 [ 5.863161] systemd[1]: Mounted Kernel Configuration File System. 4376 [ 5.880178] systemd[1]: Finished Create System Users. 4377 [ 5.890098] systemd[1]: Starting Create Static Device Nodes in /dev... 4378 [ 5.893181] systemd[1]: Finished Apply Kernel Variables. 4379 [ 5.950915] systemd[1]: Finished Create Static Device Nodes in /dev. 4380 [ 5.966116] systemd[1]: Starting Rule-based Manager for Device Events and Files... 4381 [ 5.969558] systemd[1]: Finished Set the console keyboard layout. 4382 [ 5.970817] systemd[1]: Reached target Preparation for Local File Systems. 4383 [ 5.978368] systemd[1]: Mounting /tmp... 4384 [ 5.995592] systemd[1]: Mounted /tmp. 4385 [ 5.996657] systemd[1]: Reached target Local File Systems. 4386 [ 6.003863] systemd[1]: Starting Armbian leds state... 4387 [ 6.013532] systemd[1]: Starting Armbian ZRAM config... 4388 [ 6.022012] systemd[1]: Starting Set console font and keymap... 4389 [ 6.022904] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 4390 [ 6.023283] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 4391 [ 6.030891] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 4392 [ 6.050050] systemd[1]: Finished Set console font and keymap. 4393 [ 6.099364] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 4394 [ 6.100313] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 4395 [ 6.102367] systemd[1]: Failed to start Armbian leds state. 4396 [ 6.226360] systemd[1]: Finished Coldplug All udev Devices. 4397 [ 6.251853] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 4398 [ 6.258264] systemd[1]: Started Rule-based Manager for Device Events and Files. 4399 [ 6.368491] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 4400 [ 6.369557] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 4401 [ 6.372617] systemd[1]: Failed to start Armbian ZRAM config. 4402 [ 6.406822] systemd[1]: Starting Armbian memory supported logging... 4403 [ 6.487579] urandom_read_iter: 51 callbacks suppressed 4404 [ 6.487608] random: systemd: uninitialized urandom read (16 bytes read) 4405 [ 6.579458] random: systemd: uninitialized urandom read (16 bytes read) 4406 [ 6.579604] random: systemd: uninitialized urandom read (16 bytes read) 4407 [ 6.726347] random: crng init done 4408 [ 6.726376] random: 8 urandom warning(s) missed due to ratelimiting 4409 [ 6.749762] systemd[1]: Finished Load/Save Random Seed. 4410 [ 6.751582] systemd[1]: Condition check resulted in First Boot Complete being skipped. 4411 [ 6.751830] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 4412 [ 6.752051] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 4413 [ 6.842318] systemd[1]: Found device /dev/ttyS0. 4414 [ 7.402050] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 4415 [ 7.423452] systemd[1]: Started ifup for eth0. 4416 [ 7.427735] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 4417 [ 7.435714] systemd[1]: Starting Raise network interfaces... 4418 [ 7.441059] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 4419 [ 7.442566] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 4420 [ 8.004404] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 4421 [ 8.005291] systemd[1]: networking.service: Failed with result 'exit-code'. 4422 [ 8.007020] systemd[1]: Failed to start Raise network interfaces. 4423 [ 10.579844] systemd[1]: Finished Armbian memory supported logging. 4424 [ 10.625691] systemd[1]: Starting Journal Service... 4425 [ 10.883893] systemd[1]: Started Journal Service. 4426 [ 10.935071] systemd-journald[586]: Received client request to flush runtime journal. 4427 4428 ### armbian-release: 4429 4430 # PLEASE DO NOT EDIT THIS FILE 4431 BOARD=pine64 4432 BOARD_NAME="Pine64" 4433 BOARDFAMILY=sun50iw1 4434 BUILD_REPOSITORY_URL=https://github.com/armbian/build 4435 BUILD_REPOSITORY_COMMIT=84940abb 4436 VERSION=22.11.1 4437 LINUXFAMILY=sunxi64 4438 ARCH=arm64 4439 IMAGE_TYPE=stable 4440 BOARD_TYPE=conf 4441 INITRD_ARCH=arm64 4442 KERNEL_IMAGE_TYPE=Image 4443 BRANCH=current 4444 4445 ### boot environment: 4446 4447 verbosity=1 4448 bootlogo=false 4449 console=both 4450 disp_mode=1920x1080p60 4451 overlay_prefix=sun50i-a64 4452 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 4453 rootfstype=ext4 4454 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 4455 4456 ### lsusb: 4457 4458 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 4459 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 4460 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 4461 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4462 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 4463 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 4464 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4465 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4466 4467 ### lscpu: 4468 4469 Architecture: aarch64 4470 CPU op-mode(s): 32-bit, 64-bit 4471 Byte Order: Little Endian 4472 CPU(s): 4 4473 On-line CPU(s) list: 0-3 4474 Vendor ID: ARM 4475 Model name: Cortex-A53 4476 Model: 4 4477 Thread(s) per core: 1 4478 Core(s) per cluster: 4 4479 Socket(s): - 4480 Cluster(s): 1 4481 Stepping: r0p4 4482 BogoMIPS: 48.00 4483 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4484 NUMA node(s): 1 4485 NUMA node0 CPU(s): 0-3 4486 Vulnerability Itlb multihit: Not affected 4487 Vulnerability L1tf: Not affected 4488 Vulnerability Mds: Not affected 4489 Vulnerability Meltdown: Not affected 4490 Vulnerability Mmio stale data: Not affected 4491 Vulnerability Spec store bypass: Not affected 4492 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 4493 Vulnerability Spectre v2: Not affected 4494 Vulnerability Srbds: Not affected 4495 Vulnerability Tsx async abort: Not affected 4496 4497 ### cpuinfo: 4498 4499 processor : 0 4500 BogoMIPS : 48.00 4501 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4502 CPU implementer : 0x41 4503 CPU architecture: 8 4504 CPU variant : 0x0 4505 CPU part : 0xd03 4506 CPU revision : 4 4507 4508 processor : 1 4509 BogoMIPS : 48.00 4510 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4511 CPU implementer : 0x41 4512 CPU architecture: 8 4513 CPU variant : 0x0 4514 CPU part : 0xd03 4515 CPU revision : 4 4516 4517 processor : 2 4518 BogoMIPS : 48.00 4519 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4520 CPU implementer : 0x41 4521 CPU architecture: 8 4522 CPU variant : 0x0 4523 CPU part : 0xd03 4524 CPU revision : 4 4525 4526 processor : 3 4527 BogoMIPS : 48.00 4528 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4529 CPU implementer : 0x41 4530 CPU architecture: 8 4531 CPU variant : 0x0 4532 CPU part : 0xd03 4533 CPU revision : 4 4534 4535 4536 ### meminfo: 4537 4538 MemTotal: 2037276 kB 4539 MemFree: 1892844 kB 4540 MemAvailable: 1887688 kB 4541 Buffers: 12164 kB 4542 Cached: 53360 kB 4543 SwapCached: 0 kB 4544 Active: 28920 kB 4545 Inactive: 49032 kB 4546 Active(anon): 596 kB 4547 Inactive(anon): 29352 kB 4548 Active(file): 28324 kB 4549 Inactive(file): 19680 kB 4550 Unevictable: 0 kB 4551 Mlocked: 0 kB 4552 SwapTotal: 0 kB 4553 SwapFree: 0 kB 4554 Dirty: 8 kB 4555 Writeback: 0 kB 4556 AnonPages: 12760 kB 4557 Mapped: 13392 kB 4558 Shmem: 17252 kB 4559 KReclaimable: 9260 kB 4560 Slab: 30880 kB 4561 SReclaimable: 9260 kB 4562 SUnreclaim: 21620 kB 4563 KernelStack: 2112 kB 4564 PageTables: 1156 kB 4565 NFS_Unstable: 0 kB 4566 Bounce: 0 kB 4567 WritebackTmp: 0 kB 4568 CommitLimit: 1018636 kB 4569 Committed_AS: 46016 kB 4570 VmallocTotal: 133143592960 kB 4571 VmallocUsed: 10212 kB 4572 VmallocChunk: 0 kB 4573 Percpu: 1072 kB 4574 AnonHugePages: 0 kB 4575 ShmemHugePages: 0 kB 4576 ShmemPmdMapped: 0 kB 4577 FileHugePages: 0 kB 4578 FilePmdMapped: 0 kB 4579 CmaTotal: 131072 kB 4580 CmaFree: 130304 kB 4581 HugePages_Total: 0 4582 HugePages_Free: 0 4583 HugePages_Rsvd: 0 4584 HugePages_Surp: 0 4585 Hugepagesize: 2048 kB 4586 Hugetlb: 0 kB 4587 4588 ### virtual memory: 4589 4590 vm.admin_reserve_kbytes = 8192 4591 vm.compaction_proactiveness = 20 4592 vm.compact_unevictable_allowed = 1 4593 vm.dirty_background_bytes = 0 4594 vm.dirty_background_ratio = 10 4595 vm.dirty_bytes = 0 4596 vm.dirty_expire_centisecs = 3000 4597 vm.dirty_ratio = 20 4598 vm.dirtytime_expire_seconds = 43200 4599 vm.dirty_writeback_centisecs = 500 4600 vm.extfrag_threshold = 500 4601 vm.hugetlb_shm_group = 0 4602 vm.laptop_mode = 0 4603 vm.legacy_va_layout = 0 4604 vm.lowmem_reserve_ratio = 256 256 32 0 4605 vm.max_map_count = 65530 4606 vm.min_free_kbytes = 22528 4607 vm.min_slab_ratio = 5 4608 vm.min_unmapped_ratio = 1 4609 vm.mmap_min_addr = 32768 4610 vm.mmap_rnd_bits = 18 4611 vm.mmap_rnd_compat_bits = 11 4612 vm.nr_hugepages = 0 4613 vm.nr_hugepages_mempolicy = 0 4614 vm.nr_overcommit_hugepages = 0 4615 vm.numa_stat = 1 4616 vm.numa_zonelist_order = Node 4617 vm.oom_dump_tasks = 1 4618 vm.oom_kill_allocating_task = 0 4619 vm.overcommit_kbytes = 0 4620 vm.overcommit_memory = 0 4621 vm.overcommit_ratio = 50 4622 vm.page-cluster = 3 4623 vm.page_lock_unfairness = 5 4624 vm.panic_on_oom = 0 4625 vm.percpu_pagelist_high_fraction = 0 4626 vm.stat_interval = 1 4627 vm.swappiness = 100 4628 vm.user_reserve_kbytes = 63000 4629 vm.vfs_cache_pressure = 100 4630 vm.watermark_boost_factor = 15000 4631 vm.watermark_scale_factor = 10 4632 vm.zone_reclaim_mode = 0 4633 4634 ### ip addr: 4635 4636 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 4637 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 4638 inet XXX.XXX.0.1/8 scope host lo 4639 valid_lft forever preferred_lft forever 4640 inet6 ::1/128 scope host 4641 valid_lft forever preferred_lft forever 4642 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 4643 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 4644 4645 ### partitions: 4646 4647 major minor #blocks name 4648 4649 179 0 31260672 mmcblk0 4650 179 1 30928896 mmcblk0p1 4651 8 0 117220824 sda 4652 8 1 117218304 sda1 4653 4654 ### df: 4655 4656 tmpfs 199M 3.1M 196M 2% /run 4657 /dev/sda1 110G 29G 76G 28% / 4658 tmpfs 995M 0 995M 0% /dev/shm 4659 tmpfs 5.0M 0 5.0M 0% /run/lock 4660 tmpfs 995M 4.0K 995M 1% /tmp 4661 4662 ### lsblk: 4663 4664 NAME FSTYPE SIZE MOUNTPOINT UUID 4665 sda 111.8G 4666 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 4667 mmcblk0 29.8G 4668 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 4669 4670 ### zramctl: 4671 4672 4673 4674 ### mtab: 4675 4676 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 4677 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 4678 4679 ### mmc0:0001 info: 4680 4681 fwrev: 0x0 4682 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 4683 cid: 1b534d454231515430bc836120012941 4684 rca: 0x0001 4685 csd: 400e00325b590000ee7f7f800a404055 4686 manfid: 0x00001b 4687 ocr: 0x00200000 4688 preferred_erase_size: 4194304 4689 type: SD 4690 hwrev: 0x3 4691 date: 09/2018 4692 dsr: 0x404 4693 erase_size: 512 4694 oemid: 0x534d 4695 serial: 0xbc836120 4696 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4697 scr: 02b5800200000000 4698 name: EB1QT 4699 4700 ### Boot system health: 4701 4702 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 4703 17:37:14: --- 0.23 54% 27% 20% 0% 5% 0% 39.1 °C 4704 17:37:15: --- 0.93 85% 18% 21% 0% 44% 1% 39.1 °C 4705 17:37:15: --- 0.93 80% 21% 25% 0% 31% 0% 36.2 °C 4706 17:37:16: --- 0.93 54% 9% 7% 1% 34% 0% 36.2 °C 4707 17:37:16: --- 0.93 39% 7% 2% 0% 29% 0% 34.1 °C 4708 4709 ### lsusb: 4710 4711 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 4712 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 4713 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 4714 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4715 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 4716 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 4717 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4718 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4719 4720 /: Bus 05.Port 1: Dev 1, Class=root_hub, Driver=musb-hdrc/1p, 480M 4721 /: Bus 04.Port 1: Dev 1, Class=root_hub, Driver=ohci-platform/1p, 12M 4722 /: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=ohci-platform/1p, 12M 4723 /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ehci-platform/1p, 480M 4724 |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M 4725 |__ Port 1: Dev 3, If 0, Class=Video, Driver=, 480M 4726 |__ Port 1: Dev 3, If 1, Class=Video, Driver=, 480M 4727 |__ Port 1: Dev 3, If 2, Class=Audio, Driver=, 480M 4728 |__ Port 1: Dev 3, If 3, Class=Audio, Driver=, 480M 4729 /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-platform/1p, 480M 4730 |__ Port 1: Dev 2, If 0, Class=Mass Storage, Driver=usb-storage, 480M 4731 4732 ### Userland: 4733 4734 PRETTY_NAME="Armbian 22.11.1 Jammy" 4735 4736 ### Installed packages: 4737 4738 ii armbian-bsp-cli-pine64 22.11.1 arm64 Armbian board support files for pine64 4739 ii armbian-config 22.11.1 all Armbian configuration utility 4740 ii armbian-firmware 22.11.1 all Linux firmware 4741 ii armbian-zsh 22.11.1 all Armbian improved ZShell 4742 ii hostapd 3:2.10-6~armbian22.02.3+1 arm64 IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator 4743 ii linux-base 4.5ubuntu9 all Linux image base package 4744 ic linux-image-current-sunxi64 21.05.1 arm64 Linux kernel, version 5.10.34-sunxi64 4745 ii linux-image-edge-sunxi64 22.11.1 arm64 Linux kernel, armbian version 6.0.10-sunxi64 edge 4746 ii linux-libc-dev:arm64 22.11.1 arm64 Armbian Linux support headers for userspace development 4747 ii linux-u-boot-pine64-edge 22.08.6 arm64 Uboot loader 2022.07 4748 4749 ### Loaded modules: 4750 4751 Module Size Used by 4752 realtek 32768 1 4753 pinctrl_axp209 16384 0 4754 dwmac_sun8i 28672 0 4755 mdio_mux 16384 1 dwmac_sun8i 4756 i2c_mv64xxx 24576 0 4757 uas 28672 0 4758 4759 ### Current system health: 4760 4761 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 4762 22:20:16: --- 0.02 1% 0% 0% 0% 0% 0% 41.0 °C 4763 22:20:16: --- 0.02 2% 2% 0% 0% 0% 0% 39.4 °C 4764 22:20:16: --- 0.02 4% 3% 0% 0% 0% 0% 39.4 °C 4765 22:20:17: --- 0.02 2% 2% 0% 0% 0% 0% 38.9 °C 4766 22:20:17: --- 0.02 2% 2% 0% 0% 0% 0% 38.9 °C 4767 22:20:20: --- 0.42 1% 0% 0% 0% 0% 0% 42.0 °C 4768 22:20:21: --- 0.42 76% 0% 75% 0% 0% 0% 41.5 °C 4769 22:20:21: --- 0.42 2% 2% 0% 0% 0% 0% 40.3 °C 4770 22:20:21: --- 0.42 2% 1% 0% 1% 0% 0% 40.3 °C 4771 22:20:22: --- 0.42 2% 2% 0% 0% 0% 0% 40.3 °C 4772 4773 ### resolv.conf 4774 4775 lrwxrwxrwx 1 root root 32 Aug 25 00:31 /etc/resolv.conf -> /run/systemd/resolve/resolv.conf 4776 # This is /run/systemd/resolve/resolv.conf managed by man:systemd-resolved(8). 4777 # Do not edit. 4778 # 4779 # This file might be symlinked as /etc/resolv.conf. If you're looking at 4780 # /etc/resolv.conf and seeing this text, you have followed the symlink. 4781 # 4782 # This is a dynamic resolv.conf file for connecting local clients directly to 4783 # all known uplink DNS servers. This file lists all configured search domains. 4784 # 4785 # Third party programs should typically not access this file directly, but only 4786 # through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a 4787 # different way, replace this symlink by a static file or a different symlink. 4788 # 4789 # See man:systemd-resolved.service(8) for details about the supported modes of 4790 # operation for /etc/resolv.conf. 4791 4792 nameserver XXX.XXX.0.1 4793 search . 4794 4795 ### Current sysinfo: 4796 4797 Linux 5.15.48-sunxi64 (pine64) 12/10/2022 _aarch64_ (4 CPU) 4798 4799 avg-cpu: %user %nice %system %iowait %steal %idle 4800 0.99 0.00 0.22 0.04 0.00 98.75 4801 4802 Device tps kB_read/s kB_wrtn/s kB_dscd/s kB_read kB_wrtn kB_dscd 4803 mmcblk0 0.01 0.43 0.00 0.00 7312 0 0 4804 mmcblk0p1 0.01 0.31 0.00 0.00 5200 0 0 4805 sda 1.96 35.05 86.56 0.00 596141 1472096 0 4806 sda1 1.95 34.93 86.56 0.00 593973 1472096 0 4807 4808 --procs-- -----------------------memory---------------------- ---swap-- -----io---- -system-- --------cpu-------- 4809 r b swpd free buff cache si so bi bo in cs us sy id wa st 4810 0 0 0 966728 32904 898212 0 0 9 22 49 29 1 0 99 0 0 4811 4812 total used free shared buff/cache available 4813 Mem: 1.9Gi 136Mi 944Mi 19Mi 909Mi 1.7Gi 4814 Swap: 0B 0B 0B 4815 4816 4817 4818 22:20:26 up 4:43, 1 user, load average: 0.39, 0.19, 0.10 4819 4820 [ 2.297491] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 4821 [ 2.297525] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 4822 [ 2.297665] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 4823 [ 2.361441] usb 1-1: new high-speed USB device number 2 using ehci-platform 4824 [ 2.361792] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 4825 [ 2.361807] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4826 [ 2.361819] usb usb3: Product: Generic Platform OHCI controller 4827 [ 2.361828] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 4828 [ 2.361838] usb usb3: SerialNumber: 1c1a400.usb 4829 [ 2.362354] hub 3-0:1.0: USB hub found 4830 [ 2.362408] hub 3-0:1.0: 1 port detected 4831 [ 2.363427] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 4832 [ 2.363454] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 4833 [ 2.363578] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 4834 [ 2.377404] usb 2-1: new high-speed USB device number 2 using ehci-platform 4835 [ 2.425658] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 4836 [ 2.425674] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4837 [ 2.425685] usb usb4: Product: Generic Platform OHCI controller 4838 [ 2.425695] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 4839 [ 2.425704] usb usb4: SerialNumber: 1c1b400.usb 4840 [ 2.426224] hub 4-0:1.0: USB hub found 4841 [ 2.426277] hub 4-0:1.0: 1 port detected 4842 [ 2.427337] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 4843 [ 2.427517] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 4844 [ 2.505663] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 4845 [ 2.505695] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 4846 [ 2.505957] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 4847 [ 2.505973] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4848 [ 2.505985] usb usb5: Product: MUSB HDRC host driver 4849 [ 2.505995] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 4850 [ 2.506005] usb usb5: SerialNumber: musb-hdrc.4.auto 4851 [ 2.506527] hub 5-0:1.0: USB hub found 4852 [ 2.506578] hub 5-0:1.0: 1 port detected 4853 [ 2.509984] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 4854 [ 2.510034] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 4855 [ 2.511064] sunxi-mmc 1c0f000.mmc: Got CD GPIO 4856 [ 2.511079] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 4857 [ 2.511280] of_cfs_init 4858 [ 2.511411] of_cfs_init: OK 4859 [ 2.511772] ALSA device list: 4860 [ 2.511780] No soundcards found. 4861 [ 2.519395] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 4862 [ 2.519413] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 4863 [ 2.519425] usb 1-1: SerialNumber: 20181120 4864 [ 2.520389] usb-storage 1-1:1.0: USB Mass Storage device detected 4865 [ 2.520914] scsi host0: usb-storage 1-1:1.0 4866 [ 2.534507] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 4867 [ 2.536429] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 4868 [ 2.536445] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4869 [ 2.536457] usb 2-1: Product: USB2.1 Hub 4870 [ 2.536478] usb 2-1: Manufacturer: GenesysLogic 4871 [ 2.536507] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 4872 [ 2.537330] hub 2-1:1.0: USB hub found 4873 [ 2.537686] hub 2-1:1.0: 4 ports detected 4874 [ 2.538207] Freeing unused kernel memory: 2496K 4875 [ 2.538343] Run /init as init process 4876 [ 2.538351] with arguments: 4877 [ 2.538357] /init 4878 [ 2.538363] with environment: 4879 [ 2.538368] HOME=/ 4880 [ 2.538373] TERM=linux 4881 [ 2.538379] ubootpart=ea5e158f-01 4882 [ 2.538385] cgroup_enable=memory 4883 [ 2.573167] mmc0: new high speed SDHC card at address 0001 4884 [ 2.574258] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 4885 [ 2.576671] mmcblk0: p1 4886 [ 2.849433] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 4887 [ 3.061854] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 4888 [ 3.062739] usbcore: registered new interface driver uas 4889 [ 3.076942] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 4890 [ 3.077214] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 4891 [ 3.077227] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 4892 [ 3.077612] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 4893 [ 3.077889] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 4894 [ 3.077938] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 4895 [ 3.078417] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 4896 [ 3.078436] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 4897 [ 3.078445] dwmac-sun8i 1c30000.ethernet: COE Type 2 4898 [ 3.078457] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 4899 [ 3.078465] dwmac-sun8i 1c30000.ethernet: Normal descriptors 4900 [ 3.078473] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 4901 [ 3.098353] axp20x-gpio axp20x-gpio: DMA mask not set 4902 [ 3.100011] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 4903 [ 3.199063] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 4904 [ 3.199103] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 4905 [ 3.199115] usb 2-1.1: SerialNumber: AA5FCF90 4906 [ 3.526482] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 4907 [ 3.527236] sd 0:0:0:0: Attached scsi generic sg0 type 0 4908 [ 3.528214] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 4909 [ 3.529529] sd 0:0:0:0: [sda] Write Protect is off 4910 [ 3.529559] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 4911 [ 3.531475] sd 0:0:0:0: [sda] No Caching mode page found 4912 [ 3.531505] sd 0:0:0:0: [sda] Assuming drive cache: write through 4913 [ 3.537462] sda: sda1 4914 [ 3.541056] sd 0:0:0:0: [sda] Attached SCSI disk 4915 [ 3.895680] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 4916 [ 4.489896] systemd[1]: systemd 249.11-0ubuntu3.6 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 4917 [ 4.490608] systemd[1]: Detected architecture arm64. 4918 [ 4.493606] systemd[1]: Hostname set to <pine64>. 4919 [ 4.599592] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 4920 [ 5.436125] systemd[1]: Queued start job for default target Graphical Interface. 4921 [ 5.438233] random: systemd: uninitialized urandom read (16 bytes read) 4922 [ 5.474009] systemd[1]: Created slice Slice /system/modprobe. 4923 [ 5.474766] random: systemd: uninitialized urandom read (16 bytes read) 4924 [ 5.477825] systemd[1]: Created slice Slice /system/serial-getty. 4925 [ 5.478258] random: systemd: uninitialized urandom read (16 bytes read) 4926 [ 5.480558] systemd[1]: Created slice User and Session Slice. 4927 [ 5.481041] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 4928 [ 5.481625] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 4929 [ 5.483133] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 4930 [ 5.483703] systemd[1]: Reached target Local Encrypted Volumes. 4931 [ 5.484470] systemd[1]: Reached target Slice Units. 4932 [ 5.484799] systemd[1]: Reached target Swaps. 4933 [ 5.485093] systemd[1]: Reached target System Time Set. 4934 [ 5.485651] systemd[1]: Reached target Local Verity Protected Volumes. 4935 [ 5.507761] systemd[1]: Listening on RPCbind Server Activation Socket. 4936 [ 5.509967] systemd[1]: Listening on Syslog Socket. 4937 [ 5.511095] systemd[1]: Listening on fsck to fsckd communication Socket. 4938 [ 5.511745] systemd[1]: Listening on initctl Compatibility Named Pipe. 4939 [ 5.513245] systemd[1]: Listening on Journal Audit Socket. 4940 [ 5.514270] systemd[1]: Listening on Journal Socket (/dev/log). 4941 [ 5.515346] systemd[1]: Listening on Journal Socket. 4942 [ 5.516728] systemd[1]: Listening on udev Control Socket. 4943 [ 5.517792] systemd[1]: Listening on udev Kernel Socket. 4944 [ 5.523638] systemd[1]: Mounting Huge Pages File System... 4945 [ 5.530252] systemd[1]: Mounting POSIX Message Queue File System... 4946 [ 5.536431] systemd[1]: Mounting NFSD configuration filesystem... 4947 [ 5.543426] systemd[1]: Mounting Kernel Debug File System... 4948 [ 5.544609] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 4949 [ 5.545716] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 4950 [ 5.554688] systemd[1]: Starting Restore / save the current clock... 4951 [ 5.562976] systemd[1]: Starting Set the console keyboard layout... 4952 [ 5.563623] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 4953 [ 5.570777] systemd[1]: Starting Load Kernel Module chromeos_pstore... 4954 [ 5.578534] systemd[1]: Starting Load Kernel Module configfs... 4955 [ 5.586367] systemd[1]: Starting Load Kernel Module drm... 4956 [ 5.597439] systemd[1]: Starting Load Kernel Module efi_pstore... 4957 [ 5.608279] systemd[1]: Starting Load Kernel Module fuse... 4958 [ 5.616212] systemd[1]: Starting Load Kernel Module pstore_blk... 4959 [ 5.624780] systemd[1]: Starting Load Kernel Module pstore_zone... 4960 [ 5.632873] systemd[1]: Starting Load Kernel Module ramoops... 4961 [ 5.641828] systemd[1]: Started Nameserver information manager. 4962 [ 5.643270] systemd[1]: Reached target Preparation for Network. 4963 [ 5.644665] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 4964 [ 5.655105] systemd[1]: Starting Load Kernel Modules... 4965 [ 5.663362] systemd[1]: Starting Remount Root and Kernel File Systems... 4966 [ 5.672013] systemd[1]: Starting Coldplug All udev Devices... 4967 [ 5.687246] systemd[1]: Mounted Huge Pages File System. 4968 [ 5.688390] systemd[1]: Mounted POSIX Message Queue File System. 4969 [ 5.689688] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 4970 [ 5.689738] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 4971 [ 5.691946] systemd[1]: Failed to mount NFSD configuration filesystem. 4972 [ 5.692336] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 4973 [ 5.692499] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 4974 [ 5.692558] systemd[1]: Dependency failed for NFS server and services. 4975 [ 5.692686] systemd[1]: Dependency failed for NFS Mount Daemon. 4976 [ 5.692812] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 4977 [ 5.692867] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 4978 [ 5.692993] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 4979 [ 5.693030] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 4980 [ 5.694191] systemd[1]: Mounted Kernel Debug File System. 4981 [ 5.696991] systemd[1]: Finished Restore / save the current clock. 4982 [ 5.699539] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 4983 [ 5.700952] systemd[1]: Finished Load Kernel Module chromeos_pstore. 4984 [ 5.701756] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 4985 [ 5.708101] systemd[1]: modprobe@configfs.service: Deactivated successfully. 4986 [ 5.709490] systemd[1]: Finished Load Kernel Module configfs. 4987 [ 5.711668] systemd[1]: modprobe@drm.service: Deactivated successfully. 4988 [ 5.712954] systemd[1]: Finished Load Kernel Module drm. 4989 [ 5.715243] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 4990 [ 5.716565] systemd[1]: Finished Load Kernel Module efi_pstore. 4991 [ 5.718937] systemd[1]: modprobe@fuse.service: Deactivated successfully. 4992 [ 5.720423] systemd[1]: Finished Load Kernel Module fuse. 4993 [ 5.770991] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 4994 [ 5.772462] systemd[1]: Finished Load Kernel Module pstore_blk. 4995 [ 5.774690] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 4996 [ 5.776199] systemd[1]: Finished Load Kernel Module pstore_zone. 4997 [ 5.778312] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 4998 [ 5.779751] systemd[1]: Finished Load Kernel Module ramoops. 4999 [ 5.784883] systemd[1]: Finished Load Kernel Modules. 5000 [ 5.787871] systemd[1]: Finished Remount Root and Kernel File Systems. 5001 [ 5.790567] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 5002 [ 5.795903] systemd[1]: Mounting Kernel Configuration File System... 5003 [ 5.796814] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 5004 [ 5.806394] systemd[1]: Starting Load/Save Random Seed... 5005 [ 5.816255] systemd[1]: Starting Apply Kernel Variables... 5006 [ 5.823671] systemd[1]: Starting Create System Users... 5007 [ 5.863161] systemd[1]: Mounted Kernel Configuration File System. 5008 [ 5.880178] systemd[1]: Finished Create System Users. 5009 [ 5.890098] systemd[1]: Starting Create Static Device Nodes in /dev... 5010 [ 5.893181] systemd[1]: Finished Apply Kernel Variables. 5011 [ 5.950915] systemd[1]: Finished Create Static Device Nodes in /dev. 5012 [ 5.966116] systemd[1]: Starting Rule-based Manager for Device Events and Files... 5013 [ 5.969558] systemd[1]: Finished Set the console keyboard layout. 5014 [ 5.970817] systemd[1]: Reached target Preparation for Local File Systems. 5015 [ 5.978368] systemd[1]: Mounting /tmp... 5016 [ 5.995592] systemd[1]: Mounted /tmp. 5017 [ 5.996657] systemd[1]: Reached target Local File Systems. 5018 [ 6.003863] systemd[1]: Starting Armbian leds state... 5019 [ 6.013532] systemd[1]: Starting Armbian ZRAM config... 5020 [ 6.022012] systemd[1]: Starting Set console font and keymap... 5021 [ 6.022904] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 5022 [ 6.023283] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 5023 [ 6.030891] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 5024 [ 6.050050] systemd[1]: Finished Set console font and keymap. 5025 [ 6.099364] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 5026 [ 6.100313] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 5027 [ 6.102367] systemd[1]: Failed to start Armbian leds state. 5028 [ 6.226360] systemd[1]: Finished Coldplug All udev Devices. 5029 [ 6.251853] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 5030 [ 6.258264] systemd[1]: Started Rule-based Manager for Device Events and Files. 5031 [ 6.368491] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 5032 [ 6.369557] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 5033 [ 6.372617] systemd[1]: Failed to start Armbian ZRAM config. 5034 [ 6.406822] systemd[1]: Starting Armbian memory supported logging... 5035 [ 6.487579] urandom_read_iter: 51 callbacks suppressed 5036 [ 6.487608] random: systemd: uninitialized urandom read (16 bytes read) 5037 [ 6.579458] random: systemd: uninitialized urandom read (16 bytes read) 5038 [ 6.579604] random: systemd: uninitialized urandom read (16 bytes read) 5039 [ 6.726347] random: crng init done 5040 [ 6.726376] random: 8 urandom warning(s) missed due to ratelimiting 5041 [ 6.749762] systemd[1]: Finished Load/Save Random Seed. 5042 [ 6.751582] systemd[1]: Condition check resulted in First Boot Complete being skipped. 5043 [ 6.751830] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 5044 [ 6.752051] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 5045 [ 6.842318] systemd[1]: Found device /dev/ttyS0. 5046 [ 7.402050] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 5047 [ 7.423452] systemd[1]: Started ifup for eth0. 5048 [ 7.427735] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 5049 [ 7.435714] systemd[1]: Starting Raise network interfaces... 5050 [ 7.441059] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 5051 [ 7.442566] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 5052 [ 8.004404] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 5053 [ 8.005291] systemd[1]: networking.service: Failed with result 'exit-code'. 5054 [ 8.007020] systemd[1]: Failed to start Raise network interfaces. 5055 [ 10.579844] systemd[1]: Finished Armbian memory supported logging. 5056 [ 10.625691] systemd[1]: Starting Journal Service... 5057 [ 10.883893] systemd[1]: Started Journal Service. 5058 [ 10.935071] systemd-journald[586]: Received client request to flush runtime journal. 5059 [ 15.133231] phy_rtl8211e_led_fixup in 5060 [ 15.137038] dwmac-sun8i 1c30000.ethernet eth0: PHY [stmmac-0:01] driver [RTL8211E Gigabit Ethernet] (irq=POLL) 5061 [ 15.138465] dwmac-sun8i 1c30000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0 5062 [ 15.139409] dwmac-sun8i 1c30000.ethernet eth0: No Safety Features support found 5063 [ 15.139434] dwmac-sun8i 1c30000.ethernet eth0: No MAC Management Counters available 5064 [ 15.139445] dwmac-sun8i 1c30000.ethernet eth0: PTP not supported by HW 5065 [ 15.140270] dwmac-sun8i 1c30000.ethernet eth0: configuring for phy/rgmii-txid link mode 5066 [ 17.194174] dwmac-sun8i 1c30000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx 5067 [ 17.194245] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 5068 [ 34.037165] vcc-mipi: disabling 5069 [ 34.037456] vcc-1v2-hsic: disabling 5070 5071 5072 5073 ### interrupts: 5074 CPU0 CPU1 CPU2 CPU3 5075 11: 464566 236186 253247 178562 GICv2 30 Level arch_timer 5076 14: 339196 0 0 0 GICv2 50 Level timer@1c20c00 5077 15: 0 0 0 0 GICv2 148 Level arm-pmu 5078 16: 0 0 0 0 GICv2 149 Level arm-pmu 5079 17: 0 0 0 0 GICv2 150 Level arm-pmu 5080 18: 0 0 0 0 GICv2 151 Level arm-pmu 5081 19: 0 0 0 0 GICv2 82 Level 1c02000.dma-controller 5082 20: 0 0 0 0 GICv2 118 Level 1c0c000.lcd-controller 5083 21: 0 0 0 0 GICv2 119 Level 1c0d000.lcd-controller 5084 23: 230 0 0 16654 GICv2 92 Level sunxi-mmc 5085 24: 25 0 0 0 GICv2 93 Level sunxi-mmc 5086 25: 0 0 0 0 GICv2 126 Level sun8i-ce-ns 5087 26: 0 0 0 0 GICv2 81 Level 1c17000.mailbox 5088 27: 0 0 0 0 GICv2 103 Level musb-hdrc.4.auto 5089 28: 7961 96518 0 0 GICv2 104 Level ehci_hcd:usb1 5090 29: 0 0 0 0 GICv2 105 Level ohci_hcd:usb3 5091 30: 65 0 0 0 GICv2 106 Level ehci_hcd:usb2 5092 31: 0 0 0 0 GICv2 107 Level ohci_hcd:usb4 5093 39: 0 0 0 0 GICv2 60 Level 1c22e00.codec 5094 40: 68052 0 0 0 GICv2 63 Level ths 5095 41: 4 0 0 0 GICv2 32 Level ttyS0 5096 43: 0 0 0 0 GICv2 39 Level mv64xxx_i2c 5097 44: 0 0 0 0 GICv2 97 Level sun6i-spi 5098 45: 660564 0 0 0 GICv2 114 Level eth0 5099 55: 0 0 0 0 GICv2 120 Level 1ee0000.hdmi 5100 56: 0 0 0 0 sun6i-r-intc 40 Level 1f00000.rtc 5101 59: 168 0 0 0 GICv2 71 Level sunxi-rsb 5102 93: 0 0 0 0 sun6i-r-intc 32 Level axp803 5103 120: 0 0 0 0 axp803 26 Edge axp20x-pek-dbr 5104 121: 0 0 0 0 axp803 27 Edge axp20x-pek-dbf 5105 IPI0: 75981 144466 135009 123221 Rescheduling interrupts 5106 IPI1: 15470 186070 177926 3412 Function call interrupts 5107 IPI2: 0 0 0 0 CPU stop interrupts 5108 IPI3: 0 0 0 0 CPU stop (for crash dump) interrupts 5109 IPI4: 0 48234 34466 36387 Timer broadcast interrupts 5110 IPI5: 0 0 0 0 IRQ work interrupts 5111 IPI6: 0 0 0 0 CPU wake-up interrupts 5112 Err: 0
  7. The Arylic A50+ is a stereo audio streamer with a built-in power amplifier and support for wireless networks such as WiFi and Bluetooth as well as wired connections such as Ethernet, Analog RCA Line In, optical S/PDIF input, Subwoofer Out, and USB host port. All you need to do is connect the Arylic A50+ amplifier to passive speakers, and you can then easily stream music from streaming services such as Spotify, Tidal, or Qobuz in high-definition audio with the company’s 4STREAM app or another compatible app. Multiple A50+ wireless amplifiers can also be connected through your house to enable multiple rooms and/or zones support. Arylic A50+ unboxing Arylic A50+ wireless amplifier teardown We can open the device after loosening four screws and have a look at the various electronic components used in the design. The main board, named Up2Stream A50Pro, consists of 5 important integrated ICs: Those include: [...] The post Arylic A50+ review – An entry-level wireless stereo amplifier appeared first on CNX Software - Embedded Systems News. View the full article
  8. The Arylic S50 Pro+ is an audio streamer with a built-in preamp. It can be connected to various wireless networks such as WiFi and Bluetooth (with aptX HD audio support), and wired connections namely analog RCA Line In/Out, Digital Optical In/Out, Coaxial Out, Subwoofer Out, RJ45 LAN port, and a USB host port. To use the S50 Pro+, simply connect the output cable to the power amplifier ​​and a stereo speaker system. It allows you to stream music from streaming services like Spotify, Tidal, or Qobuz in high definition through the 4STREAM app or other compatible apps. It’s also possible to add multiple S50 Pro+ to your home audio system for support for multiple rooms and/or zones. Arylic S50 Pro+ unboxing Arylic S50 Pro+ teardown We can open the device after loosening 4 screws and find out the various electronic components inside the pre-amplifier with a PCBA named “Up2Stream [...] The post Review of Arylic S50 Pro+ wireless stereo pre-amplifier appeared first on CNX Software - Embedded Systems News. View the full article
  9. I’ve just received a review sample of the MECOOL KP1 smart projector with Full HD resolution that ships with an integrated “MECOOL KD5” Android 11 for TV HDMI stick powered by an Amlogic S805X2 processor. The company sent me a sample for review, and in this first post, I’ll check out MECOOL KP1 hardware and give it a first try, before reporting my experience in more detail in the second part of the review. MECOOL KP1 unboxing First, it’s not one of those mini projectors, as the package is fairly large… The device with with HDMI and AV (RCA composite + stereo audio) cables, a remote control, the power cord, and a quick starter guide. The right side of the side comes with the focus wheel and a dust filter. The rear panel includes one IR window, what should be holes for a speaker, and the power input. There’s also [...] The post MECOOL KP1 smart projector review – Part 1: Unboxing and first try appeared first on CNX Software - Embedded Systems News. View the full article
  10. kao@orangepi3-lts:~$ armbianmonitor -u Network/firewall problem detected. Not able to upload debug info. Please fix this or use "-U" instead and upload whole output manually kao@orangepi3-lts:~$ armbianmonitor -U armbian-hardware-monitor.log ### Activated 1 lzo-rle zram swap devices with 994MB each. ### Activated Armbian ramlog partition with zstd compression Thu Jun 23 03:13:46 AM UTC 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 ### dmesg: [ 1.271389] ohci-platform: OHCI generic platform driver [ 1.271884] usbcore: registered new interface driver usb-storage [ 1.272440] mousedev: PS/2 mouse device common for all mice [ 1.273452] sun6i-rtc 7000000.rtc: registered as rtc0 [ 1.273485] sun6i-rtc 7000000.rtc: setting system clock to 1970-01-01T00:00:04 UTC (4) [ 1.273599] sun6i-rtc 7000000.rtc: RTC enabled [ 1.273742] i2c_dev: i2c /dev entries driver [ 1.274541] sunxi-wdt 7020400.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.276070] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pm not found, using dummy regulator [ 1.276491] sdhci: Secure Digital Host Controller Interface driver [ 1.276500] sdhci: Copyright(c) Pierre Ossman [ 1.276524] Synopsys Designware Multimedia Card Interface Driver [ 1.277348] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.277525] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.278836] ledtrig-cpu: registered to indicate activity on CPUs [ 1.279412] sun8i-ce 1904000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.279723] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.279850] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.279963] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280080] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280162] sun8i-ce 1904000.crypto: Register cbc(aes) [ 1.280314] sun8i-ce 1904000.crypto: Register ecb(aes) [ 1.280452] sun8i-ce 1904000.crypto: Register cbc(des3_ede) [ 1.280568] sun8i-ce 1904000.crypto: Register ecb(des3_ede) [ 1.280687] sun8i-ce 1904000.crypto: Register md5 [ 1.280795] sun8i-ce 1904000.crypto: Register sha1 [ 1.280905] sun8i-ce 1904000.crypto: Register sha224 [ 1.281020] sun8i-ce 1904000.crypto: Register sha256 [ 1.281127] sun8i-ce 1904000.crypto: Register sha384 [ 1.281232] sun8i-ce 1904000.crypto: Register sha512 [ 1.281398] sun8i-ce 1904000.crypto: Register stdrng [ 1.282121] sun8i-ce 1904000.crypto: CryptoEngine Die ID 0 [ 1.282719] hid: raw HID events driver (C) Jiri Kosina [ 1.282852] usbcore: registered new interface driver usbhid [ 1.282859] usbhid: USB HID core driver [ 1.283588] random: crng init done [ 1.285840] NET: Registered PF_INET6 protocol family [ 1.870798] Freeing initrd memory: 12684K [ 1.899454] Segment Routing with IPv6 [ 1.899519] In-situ OAM (IOAM) with IPv6 [ 1.899604] NET: Registered PF_PACKET protocol family [ 1.899720] 8021q: 802.1Q VLAN Support v1.8 [ 1.899880] 9pnet: Installing 9P2000 support [ 1.899952] Key type dns_resolver registered [ 1.900422] registered taskstats version 1 [ 1.900443] Loading compiled-in X.509 certificates [ 1.904300] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' [ 1.907185] zswap: loaded using pool zstd/z3fold [ 1.907825] Key type ._fscrypt registered [ 1.907833] Key type .fscrypt registered [ 1.907837] Key type fscrypt-provisioning registered [ 1.908859] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 1.922659] Key type encrypted registered [ 1.922691] AppArmor: AppArmor sha1 policy hashing enabled [ 1.922730] ima: No TPM chip found, activating TPM-bypass! [ 1.922775] ima: Allocated hash algorithm: sha1 [ 1.922808] ima: No architecture policies found [ 1.922878] evm: Initialising EVM extended attributes: [ 1.922883] evm: security.selinux [ 1.922888] evm: security.SMACK64 [ 1.922892] evm: security.SMACK64EXEC [ 1.922897] evm: security.SMACK64TRANSMUTE [ 1.922901] evm: security.SMACK64MMAP [ 1.922905] evm: security.apparmor [ 1.922909] evm: security.ima [ 1.922913] evm: security.capability [ 1.922917] evm: HMAC attrs: 0x1 [ 1.935969] platform 1100000.mixer: Fixing up cyclic dependency with 6510000.tcon-top [ 1.936305] sun8i-mixer 1100000.mixer: Adding to iommu group 0 [ 1.938389] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.938422] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 1.938574] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f064 hci version 0x100 quirks 0x0000000002010010 [ 1.938635] xhci-hcd xhci-hcd.1.auto: irq 43, io mem 0x05200000 [ 1.939086] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.939102] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.939113] usb usb1: Product: xHCI Host Controller [ 1.939122] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.939130] usb usb1: SerialNumber: xhci-hcd.1.auto [ 1.939679] hub 1-0:1.0: USB hub found [ 1.939724] hub 1-0:1.0: 1 port detected [ 1.940079] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.940099] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.940117] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 1.940231] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.940397] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.940410] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.940420] usb usb2: Product: xHCI Host Controller [ 1.940428] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.940436] usb usb2: SerialNumber: xhci-hcd.1.auto [ 1.940851] hub 2-0:1.0: USB hub found [ 1.940889] hub 2-0:1.0: 1 port detected [ 1.943532] sun50i_cpufreq_nvmem: Using CPU speed bin speed0 [ 1.945371] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 1.951715] of_cfs_init [ 1.951850] of_cfs_init: OK [ 1.952183] ALSA device list: [ 1.952189] No soundcards found. [ 1.953328] Freeing unused kernel memory: 2496K [ 1.965392] Run /init as init process [ 1.965399] with arguments: [ 1.965405] /init [ 1.965410] with environment: [ 1.965415] HOME=/ [ 1.965419] TERM=linux [ 1.965424] ubootpart=ce3dfe46-01 [ 1.965430] cgroup_enable=memory [ 2.197360] usb 1-1: new full-speed USB device number 2 using xhci-hcd [ 2.352212] usb 1-1: New USB device found, idVendor=045e, idProduct=0745, bcdDevice= 6.33 [ 2.352245] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.352256] usb 1-1: Product: Microsoft® 2.4GHz Transceiver v7.0 [ 2.352264] usb 1-1: Manufacturer: Microsoft [ 2.371628] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.0/0003:045E:0745.0001/input/input0 [ 2.397833] axp20x-i2c 0-0036: AXP20x variant AXP806 found [ 2.406456] input: axp20x-pek as /devices/platform/soc/7081400.i2c/i2c-0/0-0036/axp221-pek/input/input1 [ 2.430062] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input0 [ 2.434077] vdd-cpu: supplied by vcc-5v [ 2.439356] vdd-gpu: supplied by vcc-5v [ 2.440064] vdd-sys: Bringing 900000uV into 960000-960000uV [ 2.440498] vdd-sys: supplied by vcc-5v [ 2.441417] vcc-dram: supplied by vcc-5v [ 2.442291] vcc-pl-led-ir: supplied by vcc-5v [ 2.443422] vcc33-audio-tv-ephy-mac: Bringing 700000uV into 3300000-3300000uV [ 2.443821] vcc33-audio-tv-ephy-mac: supplied by vcc-5v [ 2.444503] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Mouse as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input2 [ 2.444994] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input3 [ 2.501752] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input1 [ 2.511185] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input4 [ 2.550092] vcc33-io-pd-emmc-sd-usb-uart-1: Bringing 700000uV into 3300000-3300000uV [ 2.550453] vcc33-io-pd-emmc-sd-usb-uart-1: supplied by vcc-5v [ 2.551481] vcc18-dram-bias-pll: supplied by vcc-5v [ 2.552559] vcc-efuse-pcie-hdmi-pc: supplied by vcc-5v [ 2.553234] vcc-wifi-io-pm-pg: Bringing 700000uV into 1800000-1800000uV [ 2.553572] vcc-wifi-io-pm-pg: supplied by vcc-5v [ 2.554668] bldo4: supplied by vcc-5v [ 2.555185] vcc33-io-pd-emmc-sd-usb-uart-2: supplied by vcc-5v [ 2.555987] cldo2: supplied by vcc-5v [ 2.556633] cldo3: supplied by vcc-5v [ 2.556863] sw: supplied by regulator-dummy [ 2.557449] axp20x-i2c 0-0036: AXP20X driver loaded [ 2.570248] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 System Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input6 [ 2.570764] hid-generic 0003:045E:0745.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input2 [ 2.574626] sun50i-h6-pinctrl 300b000.pinctrl: initialized sunXi PIO driver [ 2.575152] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pb not found, using dummy regulator [ 2.576079] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator [ 2.581609] printk: console [ttyS0] disabled [ 2.581741] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 35, base_baud = 1500000) is a 16550A [ 2.581965] printk: console [ttyS0] enabled [ 2.583370] sun4i-drm display-engine: Adding to iommu group 0 [ 2.602997] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) [ 2.603353] sun4i-drm display-engine: bound 6510000.tcon-top (ops 0xffff800008e1abb8) [ 2.603765] sun4i-drm display-engine: bound 6515000.lcd-controller (ops 0xffff800008e11ba0) [ 2.603887] sun8i-dw-hdmi 6000000.hdmi: supply hvcc not found, using dummy regulator [ 2.604602] sun8i-dw-hdmi 6000000.hdmi: Detected HDMI TX controller v2.12a with HDCP (DWC HDMI 2.0 TX PHY) [ 2.604931] sun8i-dw-hdmi 6000000.hdmi: EVENT=plugin [ 2.605461] sun8i-dw-hdmi 6000000.hdmi: registered DesignWare HDMI I2C bus driver [ 2.610057] sun4i-drm display-engine: bound 6000000.hdmi (ops 0xffff800008e15cc8) [ 2.610881] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 2.610942] sun8i-dw-hdmi 6000000.hdmi: read_hpd result: 1 [ 2.765113] Console: switching to colour frame buffer device 240x67 [ 2.814958] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device [ 2.839020] acx00-codec acx00-codec: DMA mask not set [ 2.842787] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.844953] sunxi-mmc 4020000.mmc: Got CD GPIO [ 2.845563] vcc-wifi-io: supplied by vcc33-wifi [ 2.847905] ehci-platform 5101000.usb: EHCI Host Controller [ 2.847948] ehci-platform 5101000.usb: new USB bus registered, assigned bus number 3 [ 2.848105] ehci-platform 5101000.usb: irq 41, io mem 0x05101000 [ 2.857343] sunxi-mmc 4022000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 2.861347] ehci-platform 5101000.usb: USB 2.0 started, EHCI 1.00 [ 2.861683] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.861698] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.861709] usb usb3: Product: EHCI Host Controller [ 2.861717] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.861726] usb usb3: SerialNumber: 5101000.usb [ 2.862270] hub 3-0:1.0: USB hub found [ 2.862312] hub 3-0:1.0: 1 port detected [ 2.863447] ehci-platform 5311000.usb: EHCI Host Controller [ 2.863501] ehci-platform 5311000.usb: new USB bus registered, assigned bus number 4 [ 2.863651] ehci-platform 5311000.usb: irq 44, io mem 0x05311000 [ 2.869618] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.877334] ehci-platform 5311000.usb: USB 2.0 started, EHCI 1.00 [ 2.877662] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.877677] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.877687] usb usb4: Product: EHCI Host Controller [ 2.877696] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.877704] usb usb4: SerialNumber: 5311000.usb [ 2.878275] hub 4-0:1.0: USB hub found [ 2.878317] hub 4-0:1.0: 1 port detected [ 2.879527] ohci-platform 5101400.usb: Generic Platform OHCI controller [ 2.879591] ohci-platform 5101400.usb: new USB bus registered, assigned bus number 5 [ 2.879731] ohci-platform 5101400.usb: irq 42, io mem 0x05101400 [ 2.904258] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.906028] mmc0: Problem switching card into high-speed mode! [ 2.906141] mmc0: new SDHC card at address 0001 [ 2.907012] mmcblk0: mmc0:0001 USD 29.8 GiB [ 2.909094] mmcblk0: p1 [ 2.941592] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.941618] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.941629] usb usb5: Product: Generic Platform OHCI controller [ 2.941637] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 2.941646] usb usb5: SerialNumber: 5101400.usb [ 2.942382] hub 5-0:1.0: USB hub found [ 2.942478] hub 5-0:1.0: 1 port detected [ 2.943732] ohci-platform 5311400.usb: Generic Platform OHCI controller [ 2.943797] ohci-platform 5311400.usb: new USB bus registered, assigned bus number 6 [ 2.943945] ohci-platform 5311400.usb: irq 45, io mem 0x05311400 [ 2.997466] mmc2: new HS200 MMC card at address 0001 [ 2.998519] mmcblk2: mmc2:0001 8GTF4R 7.28 GiB [ 3.000828] mmcblk2boot0: mmc2:0001 8GTF4R 4.00 MiB [ 3.002395] mmcblk2boot1: mmc2:0001 8GTF4R 4.00 MiB [ 3.005697] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.005727] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.005738] usb usb6: Product: Generic Platform OHCI controller [ 3.005746] usb usb6: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 3.005755] usb usb6: SerialNumber: 5311400.usb [ 3.006413] hub 6-0:1.0: USB hub found [ 3.006468] hub 6-0:1.0: 1 port detected [ 3.007749] usb_phy_generic usb_phy_generic.4.auto: supply vcc not found, using dummy regulator [ 3.007972] usb_phy_generic usb_phy_generic.4.auto: dummy supplies not allowed for exclusive requests [ 3.109696] musb-hdrc musb-hdrc.5.auto: MUSB HDRC host driver [ 3.109741] musb-hdrc musb-hdrc.5.auto: new USB bus registered, assigned bus number 7 [ 3.110006] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.110022] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.110032] usb usb7: Product: MUSB HDRC host driver [ 3.110041] usb usb7: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd [ 3.110049] usb usb7: SerialNumber: musb-hdrc.5.auto [ 3.110654] hub 7-0:1.0: USB hub found [ 3.110724] hub 7-0:1.0: 1 port detected [ 3.130721] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found [ 3.130747] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found [ 3.131045] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator [ 3.131271] dwmac-sun8i 5020000.ethernet: PTP uses main clock [ 3.131313] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 58000 (expect 50000) [ 3.237621] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported [ 3.237647] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported [ 3.237655] dwmac-sun8i 5020000.ethernet: COE Type 2 [ 3.237666] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported [ 3.237673] dwmac-sun8i 5020000.ethernet: Normal descriptors [ 3.237680] dwmac-sun8i 5020000.ethernet: Chain mode enabled [ 3.478371] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 3.673352] usb 5-1: new full-speed USB device number 2 using ohci-platform [ 3.910374] usb 5-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10 [ 3.910404] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.910415] usb 5-1: Product: USB Receiver [ 3.910424] usb 5-1: Manufacturer: Logitech [ 3.919527] input: Logitech USB Receiver as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.0/0003:046D:C52B.0004/input/input7 [ 3.977996] hid-generic 0003:046D:C52B.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-5101400.usb-1/input0 [ 3.984266] input: Logitech USB Receiver Mouse as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input8 [ 3.984724] input: Logitech USB Receiver Consumer Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input9 [ 4.041716] input: Logitech USB Receiver System Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input10 [ 4.042095] hid-generic 0003:046D:C52B.0005: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-5101400.usb-1/input1 [ 4.046730] hid-generic 0003:046D:C52B.0006: hiddev98,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 4.781944] systemd[1]: System time before build time, advancing clock. [ 4.870091] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 4.879064] systemd[1]: systemd 249.11-0ubuntu3.1 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 4.879739] systemd[1]: Detected architecture arm64. [ 4.883086] systemd[1]: Hostname set to <orangepi3-lts>. [ 5.105388] sunxi-mmc 4021000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 5.122726] mmc1: new high speed SDIO card at address 8800 [ 6.193555] systemd[1]: Queued start job for default target Graphical Interface. [ 6.199452] systemd[1]: Created slice Slice /system/modprobe. [ 6.202231] systemd[1]: Created slice Slice /system/serial-getty. [ 6.204080] systemd[1]: Created slice User and Session Slice. [ 6.204943] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.206453] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 6.207405] systemd[1]: Reached target Remote File Systems. [ 6.207760] systemd[1]: Reached target Slice Units. [ 6.208108] systemd[1]: Reached target Swaps. [ 6.208409] systemd[1]: Reached target System Time Set. [ 6.208987] systemd[1]: Reached target Local Verity Protected Volumes. [ 6.210061] systemd[1]: Listening on Syslog Socket. [ 6.210934] systemd[1]: Listening on fsck to fsckd communication Socket. [ 6.211571] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 6.212959] systemd[1]: Listening on Journal Audit Socket. [ 6.213968] systemd[1]: Listening on Journal Socket (/dev/log). [ 6.215050] systemd[1]: Listening on Journal Socket. [ 6.226846] systemd[1]: Listening on udev Control Socket. [ 6.227964] systemd[1]: Listening on udev Kernel Socket. [ 6.232507] systemd[1]: Mounting Huge Pages File System... [ 6.237816] systemd[1]: Mounting POSIX Message Queue File System... [ 6.243581] systemd[1]: Mounting Kernel Debug File System... [ 6.244898] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 6.252149] systemd[1]: Starting Restore / save the current clock... [ 6.257902] systemd[1]: Starting Set the console keyboard layout... [ 6.264301] systemd[1]: Starting Create List of Static Device Nodes... [ 6.270918] systemd[1]: Starting Load Kernel Module configfs... [ 6.277786] systemd[1]: Starting Load Kernel Module drm... [ 6.284675] systemd[1]: Starting Load Kernel Module fuse... [ 6.292060] systemd[1]: Started Nameserver information manager. [ 6.293725] systemd[1]: Reached target Preparation for Network. [ 6.294932] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 6.306924] systemd[1]: Starting Load Kernel Modules... [ 6.312706] systemd[1]: Starting Remount Root and Kernel File Systems... [ 6.318432] systemd[1]: Starting Coldplug All udev Devices... [ 6.328490] systemd[1]: Mounted Huge Pages File System. [ 6.329589] fuse: init (API version 7.34) [ 6.330211] systemd[1]: Mounted POSIX Message Queue File System. [ 6.331670] systemd[1]: Mounted Kernel Debug File System. [ 6.334979] systemd[1]: Finished Restore / save the current clock. [ 6.338419] systemd[1]: Finished Create List of Static Device Nodes. [ 6.340843] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 6.342500] systemd[1]: Finished Load Kernel Module configfs. [ 6.344775] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 6.346521] systemd[1]: Finished Load Kernel Module drm. [ 6.348776] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 6.350118] systemd[1]: Finished Load Kernel Module fuse. [ 6.357102] systemd[1]: Mounting FUSE Control File System... [ 6.363222] systemd[1]: Mounting Kernel Configuration File System... [ 6.371020] systemd[1]: Mounted FUSE Control File System. [ 6.374967] systemd[1]: Mounted Kernel Configuration File System. [ 6.387839] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 6.393209] systemd[1]: Finished Remount Root and Kernel File Systems. [ 6.394291] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 6.398918] systemd[1]: Starting Load/Save Random Seed... [ 6.404754] systemd[1]: Starting Create System Users... [ 6.605011] WCN: marlin_init entry! [ 6.605666] WCN: wcn config bt wake host [ 6.605940] WCN_ERR: dts node for bt_wake not found [ 6.605943] WCN: marlin2 parse_dt some para not config [ 6.605957] sdiohal:sdiohal_parse_dt adma_tx:1, adma_rx:1, pwrseq:0, irq type:data, gpio_num:0, blksize:840 [ 6.613551] sdiohal:sdiohal_init ok [ 6.614342] WCN: marlin_probe ok! [ 6.615383] systemd[1]: Finished Load/Save Random Seed. [ 6.616503] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 6.629638] mtty_probe init device addr: 0x00000000e4ddf53f [ 6.629847] -->rfkill_bluetooth_init [ 6.629985] bluetooth_set_power: start_block=1 [ 6.629996] WCN: marlin power state:0, subsys: [MARLIN_BLUETOOTH] power 0 [ 6.630006] bluetooth_set_power: end_block=1 [ 6.630024] <--rfkill_bluetooth_init [ 6.642377] systemd[1]: Finished Create System Users. [ 6.648577] systemd[1]: Starting Create Static Device Nodes in /dev... [ 6.718136] systemd[1]: Finished Set the console keyboard layout. [ 6.724088] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 6.725783] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 6.746999] [ADDR_MGT] addr_mgt_probe: module version: v1.0.9 [ 6.747155] [ADDR_MGT] addr_mgt_probe: success. [ 6.812225] WCN: start_marlin [MARLIN_WIFI] [ 6.812252] WCN: marlin power state:0, subsys: [MARLIN_WIFI] power 1 [ 6.812260] WCN: the first power on start [ 6.818045] systemd[1]: Finished Create Static Device Nodes in /dev. [ 6.825520] systemd[1]: Reached target Preparation for Local File Systems. [ 6.837722] systemd[1]: Mounting /tmp... [ 6.851964] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 6.862991] systemd[1]: Mounted /tmp. [ 6.870324] systemd[1]: Reached target Local File Systems. [ 6.882576] systemd[1]: Starting Armbian leds state... [ 6.895047] systemd[1]: Starting Armbian ZRAM config... [ 6.907291] systemd[1]: Starting Set console font and keymap... [ 6.917410] WCN: marlin chip en dummy pull up -- need manually set GPIO [ 6.919805] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 6.943858] systemd[1]: Starting Set Up Additional Binary Formats... [ 6.945374] sdiohal:sdiohal_scan_card [ 6.945565] sdiohal:sdiohal_probe: func->class=0, vendor=0x0000, device=0x0000, func_num=0x0001, clock=50000000 [ 6.945658] WCN: marlin_scan_finish! [ 6.945663] sdiohal:probe ok [ 6.945774] sdiohal:scan end! [ 6.945780] WCN: then marlin start to download [ 6.946019] WCN: marlin_get_wcn_chipid: chipid: 0x2355b001 [ 6.946032] WCN: marlin_request_firmware from /lib/firmware/wcnmodem.bin start! [ 6.952293] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 6.952618] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 6.955861] systemd[1]: Finished Set console font and keymap. [ 6.968835] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 362 (systemd-binfmt) [ 6.974598] systemd[1]: Mounting Arbitrary Executable File Formats File System... [ 6.993966] systemd[1]: Finished Coldplug All udev Devices. [ 7.002822] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 7.098961] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 7.109231] systemd[1]: Mounted Arbitrary Executable File Formats File System. [ 7.132532] systemd[1]: Finished Set Up Additional Binary Formats. [ 7.160398] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 7.209436] systemd[1]: Finished Armbian leds state. [ 7.513983] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 7.521754] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 7.522417] systemd[1]: Started Dispatch Password Requests to Console Directory Watch when bootsplash is active. [ 7.533479] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 7.533648] systemd[1]: Reached target Local Encrypted Volumes. [ 7.575897] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 7.627231] systemd[1]: Starting Load/Save RF Kill Switch Status... [ 7.777051] systemd[1]: Started Load/Save RF Kill Switch Status. [ 7.954890] systemd[1]: Found device /dev/ttyS0. [ 8.014195] panfrost 1800000.gpu: clock rate = 432000000 [ 8.014230] panfrost 1800000.gpu: bus_clock rate = 100000000 [ 8.014548] panfrost 1800000.gpu: mali-t720 id 0x720 major 0x1 minor 0x1 status 0x0 [ 8.014559] panfrost 1800000.gpu: features: 00000000,10309e40, issues: 00000000,21054400 [ 8.014566] panfrost 1800000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002821 AS:0xf JS:0x7 [ 8.014573] panfrost 1800000.gpu: shader_present=0x3 l2_present=0x1 [ 8.014613] WCN: combin_img 0 marlin_firmware_write finish and successful [ 8.014901] WCN: marlin_start_run read reset reg val:0x1 [ 8.014906] WCN: after do marlin_start_run reset reg val:0x0 [ 8.015080] WCN: s_marlin_bootup_time=8015079802 [ 8.015466] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 1 [ 8.021616] WCN: clock mode: TSX [ 8.021814] WCN: marlin_write_cali_data sync init_state:0x91036042 [ 8.049599] WCN: marlin_write_cali_data sync init_state:0x91036042 [ 8.068392] mc: Linux media interface: v0.10 [ 8.077689] WCN: marlin_write_cali_data sync init_state:0xf0f0f0f1 [ 8.077720] WCN: sdio_config bt_wake_host trigger:[high] [ 8.077723] WCN: sdio_config irq:[inband] [ 8.077725] WCN: sdio_config wake_host_level_duration_time:[20ms] [ 8.077731] WCN: sdio_config wake_host_data_separation:[bt/wifi reuse] [ 8.077733] WCN: marlin_send_sdio_config_to_cp sdio_config:0x80f01 (enable config) [ 8.078060] WCN: marlin_write_cali_data finish [ 8.078227] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.105573] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.137562] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.165584] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.184903] videodev: Linux video capture interface: v2.00 [ 8.193587] WCN: check_cp_ready sync val:0xf0f0f0f6, prj_type val:0x0 [ 8.193612] WCN: marlin_bind_verify confuse data: 0x33fea07bef5424afb3eb92a5307b8c0e [ 8.193627] WCN: marlin_bind_verify verify data: 0xbe88975721254815cb97ad470d21e601 [ 8.194121] WCN: check_cp_ready sync val:0xf0f0f0f7, prj_type val:0x0 [ 8.221621] WCN: check_cp_ready sync val:0xf0f0f0ff, prj_type val:0x0 [ 8.221645] sdiohal:sdiohal_runtime_get entry [ 8.224117] WCN: get_cp2_version entry! [ 8.268773] WCN: WCND at cmd read:WCN_VER:Platform Version:MARLIN3_19B_W20.37.4~Project Version:sc2355_marlin3_lite_ott~09-11-2020 21:27:32~ [ 8.268824] WCN: switch_cp2_log - close entry! [ 8.270121] WCN: WCND at cmd read:OK [ 8.270208] WCN: then marlin download finished and run ok [ 8.270214] WCN: start_loopcheck [ 8.288538] WCN: get_board_ant_num [one_ant] [ 8.288563] wifi ini path = /lib/firmware/wifi_2355b001_1ant.ini [ 8.357396] Registered IR keymap rc-empty [ 8.357535] rc rc0: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0 [ 8.358087] rc rc0: lirc_dev: driver sunxi-ir registered at minor = 0, raw IR receiver, no transmitter [ 8.358296] input: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0/input12 [ 8.358715] sunxi-ir 7040000.ir: initialized sunXi IR driver [ 8.379249] zram: Added device: zram0 [ 8.379675] zram: Added device: zram1 [ 8.380117] zram: Added device: zram2 [ 8.410616] unisoc_wifi unisoc_wifi wlan0: mixed HW and IP checksum settings. [ 8.416810] systemd[1]: Finished Load Kernel Modules. [ 8.425572] systemd[1]: Starting Apply Kernel Variables... [ 8.502238] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. [ 8.503493] cedrus 1c0e000.video-codec: Adding to iommu group 0 [ 8.509361] cedrus 1c0e000.video-codec: Device registered as /dev/video0 [ 8.569078] systemd[1]: Finished Apply Kernel Variables. [ 8.615426] zram0: detected capacity change from 0 to 2037304 [ 8.633094] systemd[1]: Starting Raise network interfaces... [ 8.650146] Adding 1018648k swap on /dev/zram0. Priority:5 extents:1 across:1018648k SSFS [ 8.824826] logitech-djreceiver 0003:046D:C52B.0006: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 8.894117] zram1: detected capacity change from 0 to 102400 [ 8.958383] input: Logitech Wireless Device PID:4004 Keyboard as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input13 [ 9.009858] hid-generic 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4004] on usb-5101400.usb-1/input2:1 [ 9.036255] systemd[1]: Finished Armbian ZRAM config. [ 9.044253] systemd[1]: Starting Armbian memory supported logging... [ 9.171018] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 9.198787] input: Logitech K360 as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input17 [ 9.199362] logitech-hidpp-device 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K360] on usb-5101400.usb-1/input2:1 [ 9.697942] systemd[1]: Finished Raise network interfaces. [ 9.704493] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.704773] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.705128] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 9.710522] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.710654] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.710772] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.710855] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 9.857115] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.857354] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.857432] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.857521] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.857622] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.857735] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 11.391375] systemd[1]: Finished Armbian memory supported logging. [ 11.400571] systemd[1]: Starting Journal Service... [ 11.544107] systemd[1]: Started Journal Service. [ 11.573374] systemd-journald[677]: Received client request to flush runtime journal. ### armbian-release: # PLEASE DO NOT EDIT THIS FILE BOARD=orangepi3-lts BOARD_NAME="Orange Pi 3 LTS" BOARDFAMILY=sun50iw6 BUILD_REPOSITORY_URL=https://github.com/armbian/build BUILD_REPOSITORY_COMMIT=13f5fba13c VERSION=22.05.3 LINUXFAMILY=sunxi64 ARCH=arm64 IMAGE_TYPE=stable BOARD_TYPE=conf INITRD_ARCH=arm64 KERNEL_IMAGE_TYPE=stable ### boot environment: verbosity=1 bootlogo=false console=both disp_mode=1920x1080p60 overlay_prefix=sun50i-h6 rootdev=UUID=71b44a6c-5bb8-4352-afe7-d22b8e62de4c rootfstype=ext4 ### lsusb: Thu Jun 23 03:13:46 AM UTC 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 005 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ### lscpu: Architecture: aarch64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 4 On-line CPU(s) list: 0-3 Vendor ID: ARM Model name: Cortex-A53 Model: 4 Thread(s) per core: 1 Core(s) per cluster: 4 Socket(s): - Cluster(s): 1 Stepping: r0p4 CPU max MHz: 1800.0000 CPU min MHz: 480.0000 BogoMIPS: 48.00 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid NUMA node(s): 1 NUMA node0 CPU(s): 0-3 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Spec store bypass: Not affected Vulnerability Spectre v1: Mitigation; __user pointer sanitization Vulnerability Spectre v2: Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected ### cpuinfo: processor : 0 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 1 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 2 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 3 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 ### meminfo: MemTotal: 2037300 kB MemFree: 1849616 kB MemAvailable: 1851652 kB Buffers: 11672 kB Cached: 50624 kB SwapCached: 0 kB Active: 31520 kB Inactive: 51264 kB Active(anon): 444 kB Inactive(anon): 23568 kB Active(file): 31076 kB Inactive(file): 27696 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 1018648 kB SwapFree: 1018648 kB Dirty: 1676 kB Writeback: 0 kB AnonPages: 20500 kB Mapped: 16968 kB Shmem: 3392 kB KReclaimable: 10432 kB Slab: 45848 kB SReclaimable: 10432 kB SUnreclaim: 35416 kB KernelStack: 2512 kB PageTables: 1688 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 2037296 kB Committed_AS: 43924 kB VmallocTotal: 133143592960 kB VmallocUsed: 22764 kB VmallocChunk: 0 kB Percpu: 976 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB FileHugePages: 0 kB FilePmdMapped: 0 kB CmaTotal: 131072 kB CmaFree: 128768 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB Hugetlb: 0 kB ### virtual memory: vm.admin_reserve_kbytes = 8192 vm.compaction_proactiveness = 20 vm.compact_unevictable_allowed = 1 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 20 vm.dirtytime_expire_seconds = 43200 vm.dirty_writeback_centisecs = 500 vm.extfrag_threshold = 500 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 0 vm.max_map_count = 65530 vm.min_free_kbytes = 22528 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 32768 vm.mmap_rnd_bits = 18 vm.mmap_rnd_compat_bits = 11 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 0 vm.page_lock_unfairness = 5 vm.panic_on_oom = 0 vm.percpu_pagelist_high_fraction = 0 vm.stat_interval = 1 vm.swappiness = 100 vm.user_reserve_kbytes = 63009 vm.vfs_cache_pressure = 100 vm.watermark_boost_factor = 15000 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0 ### ip addr: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 02:07:29:30:86:8c brd ff:ff:ff:ff:ff:ff 3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 00:32:c3:9f:6a:08 brd ff:ff:ff:ff:ff:ff ### partitions: major minor #blocks name 179 0 31205376 mmcblk0 179 1 6500352 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 ### df: tmpfs 199M 3.4M 196M 2% /run /dev/mmcblk0p1 6.0G 4.9G 1.1G 83% / tmpfs 995M 0 995M 0% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 995M 0 995M 0% /tmp /dev/zram1 47M 1.6M 42M 4% /var/log ### lsblk: NAME FSTYPE SIZE MOUNTPOINT UUID mmcblk0 29.8G └─mmcblk0p1 ext4 6.2G / 71b44a6c-5bb8-4352-afe7-d22b8e62de4c mmcblk2 swap 7.3G 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot0 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot1 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 zram1 50M /var/log zram2 0B ### zramctl: NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT /dev/zram1 zstd 50M 68K 728B 44K 4 /var/log /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] ### mtab: /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 ### [resize2fs] Leaving 1% spare area. Start resizing partition /dev/mmcblk0p1 now: major minor #blocks name 179 0 31205376 mmcblk0 179 1 6500352 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 Executing fdisk, fsck and partprobe: Welcome to fdisk (util-linux 2.37.2). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. This disk is currently in use - repartitioning is probably a bad idea. It's recommended to umount all file systems, and swapoff all swap partitions on this disk. Command (m for help): Selected partition 1 Partition 1 has been deleted. Command (m for help): Partition type p primary (0 primary, 0 extended, 4 free) e extended (container for logical partitions) Select (default p): Partition number (1-4, default 1): First sector (2048-62410751, default 2048): Last sector, +/-sectors or +/-size{K,M,G,T,P} (8192-62410751, default 62410751): Created a new partition 1 of type 'Linux' and of size 29.4 GiB. Partition #1 contains a ext4 signature. Command (m for help): ### mmc0:0001 info: fwrev: 0x0 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=USD MODALIAS=mmc:block cid: 1d414455534400001000005ae0016181 rca: 0x0001 csd: 400e00325b590000ee137f800a40004d manfid: 0x00001d ocr: 0x00200000 preferred_erase_size: 4194304 type: SD hwrev: 0x1 date: 01/2022 dsr: 0x404 The partition table has been altered. Syncing disks. erase_size: 512 oemid: 0x4144 serial: 0x00005ae0 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 scr: 02b5808200000000 name: USD ### mmc2:0001 info: fwrev: 0x0600000000000000 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=8GTF4R MODALIAS=mmc:block New partition table: cid: 15010038475446345206d410e21fc801 major minor #blocks name 179 0 31205376 mmcblk0 179 1 30879744 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 Now trying to resize ext4 filesystem on /dev/mmcblk0p1 to the limits: rel_sectors: 0x1 resize2fs 1.46.5 (30-Dec-2021) enhanced_rpmb_supported: 0x1 rca: 0x0001 pre_eol_info: 0x01 csd: d02701320f5903fff6dbffef8e40400d manfid: 0x000015 ocr: 0x00200000 preferred_erase_size: 4194304 enhanced_area_offset: 18446744073709551594 raw_rpmb_size_mult: 0x4 type: MMC hwrev: 0x0 date: 12/2021 prv: 0x6 ffu_capable: 1 dsr: 0x404 erase_size: 524288 life_time: 0x01 0x01 enhanced_area_size: 4294967274 oemid: 0x0100 serial: 0xd410e21f cmdq_en: 0 rev: 0x8 name: 8GTF4R ### Boot system health: Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 03:13:49: 1080MHz 1.34 51% 19% 13% 0% 18% 0% 49.3°C 0/9 03:13:50: 1080MHz 1.71 53% 7% 3% 0% 42% 0% 48.5°C 0/9 03:13:50: 1488MHz 1.71 35% 9% 2% 0% 22% 0% 48.7°C 0/9 03:13:50: 1080MHz 1.71 32% 8% 2% 0% 20% 0% 48.7°C 0/9 03:13:51: 1080MHz 1.71 35% 8% 4% 1% 21% 0% 49.1°C 0/9 Filesystem at /dev/mmcblk0p1 is mounted on /; on-line resizing required old_desc_blocks = 1, new_desc_blocks = 2 The filesystem on /dev/mmcblk0p1 is now 7719936 (4k) blocks long. ### [resize2fs] Start resizing ext4 partition /dev/mmcblk0p1 now resize2fs 1.46.5 (30-Dec-2021) The filesystem is already 7719936 (4k) blocks long. Nothing to do! ### quick iozone test: 4 144 824 6811 6817 6446 2242 ### [firstrun] Recreated SSH keys (entropy: 256 256) ### Activated 1 lzo-rle zram swap devices with 994MB each. ### Activated Armbian ramlog partition with zstd compression Thu Jun 23 11:40:42 AM CST 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 ### dmesg: [ 1.272840] i2c_dev: i2c /dev entries driver [ 1.273687] sunxi-wdt 7020400.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.275263] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pm not found, using dummy regulator [ 1.275681] sdhci: Secure Digital Host Controller Interface driver [ 1.275689] sdhci: Copyright(c) Pierre Ossman [ 1.275714] Synopsys Designware Multimedia Card Interface Driver [ 1.276505] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.276668] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.277837] ledtrig-cpu: registered to indicate activity on CPUs [ 1.278440] sun8i-ce 1904000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.278705] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.278843] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.278941] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.279034] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.279118] sun8i-ce 1904000.crypto: Register cbc(aes) [ 1.279270] sun8i-ce 1904000.crypto: Register ecb(aes) [ 1.279382] sun8i-ce 1904000.crypto: Register cbc(des3_ede) [ 1.279491] sun8i-ce 1904000.crypto: Register ecb(des3_ede) [ 1.279598] sun8i-ce 1904000.crypto: Register md5 [ 1.279710] sun8i-ce 1904000.crypto: Register sha1 [ 1.279822] sun8i-ce 1904000.crypto: Register sha224 [ 1.279933] sun8i-ce 1904000.crypto: Register sha256 [ 1.280039] sun8i-ce 1904000.crypto: Register sha384 [ 1.280147] sun8i-ce 1904000.crypto: Register sha512 [ 1.280254] sun8i-ce 1904000.crypto: Register stdrng [ 1.280979] sun8i-ce 1904000.crypto: CryptoEngine Die ID 0 [ 1.281617] hid: raw HID events driver (C) Jiri Kosina [ 1.281760] usbcore: registered new interface driver usbhid [ 1.281768] usbhid: USB HID core driver [ 1.282505] random: crng init done [ 1.284692] NET: Registered PF_INET6 protocol family [ 1.870669] Freeing initrd memory: 12684K [ 1.899337] Segment Routing with IPv6 [ 1.899410] In-situ OAM (IOAM) with IPv6 [ 1.899505] NET: Registered PF_PACKET protocol family [ 1.899615] 8021q: 802.1Q VLAN Support v1.8 [ 1.899772] 9pnet: Installing 9P2000 support [ 1.899846] Key type dns_resolver registered [ 1.900287] registered taskstats version 1 [ 1.900304] Loading compiled-in X.509 certificates [ 1.904160] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' [ 1.907062] zswap: loaded using pool zstd/z3fold [ 1.907708] Key type ._fscrypt registered [ 1.907716] Key type .fscrypt registered [ 1.907721] Key type fscrypt-provisioning registered [ 1.908736] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 1.922610] Key type encrypted registered [ 1.922643] AppArmor: AppArmor sha1 policy hashing enabled [ 1.922683] ima: No TPM chip found, activating TPM-bypass! [ 1.922711] ima: Allocated hash algorithm: sha1 [ 1.922743] ima: No architecture policies found [ 1.922791] evm: Initialising EVM extended attributes: [ 1.922796] evm: security.selinux [ 1.922800] evm: security.SMACK64 [ 1.922805] evm: security.SMACK64EXEC [ 1.922809] evm: security.SMACK64TRANSMUTE [ 1.922813] evm: security.SMACK64MMAP [ 1.922818] evm: security.apparmor [ 1.922822] evm: security.ima [ 1.922826] evm: security.capability [ 1.922830] evm: HMAC attrs: 0x1 [ 1.935894] platform 1100000.mixer: Fixing up cyclic dependency with 6510000.tcon-top [ 1.936246] sun8i-mixer 1100000.mixer: Adding to iommu group 0 [ 1.938307] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.938338] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 1.938483] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f064 hci version 0x100 quirks 0x0000000002010010 [ 1.938551] xhci-hcd xhci-hcd.1.auto: irq 43, io mem 0x05200000 [ 1.939042] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.939058] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.939069] usb usb1: Product: xHCI Host Controller [ 1.939077] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.939086] usb usb1: SerialNumber: xhci-hcd.1.auto [ 1.939617] hub 1-0:1.0: USB hub found [ 1.939666] hub 1-0:1.0: 1 port detected [ 1.940002] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.940022] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.940045] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 1.940139] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.940297] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.940310] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.940321] usb usb2: Product: xHCI Host Controller [ 1.940329] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.940337] usb usb2: SerialNumber: xhci-hcd.1.auto [ 1.940741] hub 2-0:1.0: USB hub found [ 1.940778] hub 2-0:1.0: 1 port detected [ 1.943495] sun50i_cpufreq_nvmem: Using CPU speed bin speed0 [ 1.945277] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 1.951649] of_cfs_init [ 1.951764] of_cfs_init: OK [ 1.952094] ALSA device list: [ 1.952101] No soundcards found. [ 1.953207] Freeing unused kernel memory: 2496K [ 1.977591] Run /init as init process [ 1.977600] with arguments: [ 1.977606] /init [ 1.977612] with environment: [ 1.977616] HOME=/ [ 1.977621] TERM=linux [ 1.977626] ubootpart=ce3dfe46-01 [ 1.977631] cgroup_enable=memory [ 2.193555] usb 1-1: new full-speed USB device number 2 using xhci-hcd [ 2.359296] usb 1-1: New USB device found, idVendor=045e, idProduct=0745, bcdDevice= 6.33 [ 2.359334] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.359345] usb 1-1: Product: Microsoft® 2.4GHz Transceiver v7.0 [ 2.359353] usb 1-1: Manufacturer: Microsoft [ 2.380572] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.0/0003:045E:0745.0001/input/input0 [ 2.405951] axp20x-i2c 0-0036: AXP20x variant AXP806 found [ 2.416250] input: axp20x-pek as /devices/platform/soc/7081400.i2c/i2c-0/0-0036/axp221-pek/input/input1 [ 2.440095] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input0 [ 2.444209] vdd-cpu: supplied by vcc-5v [ 2.445995] vdd-gpu: supplied by vcc-5v [ 2.446737] vdd-sys: Bringing 900000uV into 960000-960000uV [ 2.447163] vdd-sys: supplied by vcc-5v [ 2.448220] vcc-dram: supplied by vcc-5v [ 2.449137] vcc-pl-led-ir: supplied by vcc-5v [ 2.450174] vcc33-audio-tv-ephy-mac: Bringing 700000uV into 3300000-3300000uV [ 2.450587] vcc33-audio-tv-ephy-mac: supplied by vcc-5v [ 2.457417] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Mouse as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input2 [ 2.458172] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input3 [ 2.517969] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input1 [ 2.530047] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input4 [ 2.558277] vcc33-io-pd-emmc-sd-usb-uart-1: Bringing 700000uV into 3300000-3300000uV [ 2.558638] vcc33-io-pd-emmc-sd-usb-uart-1: supplied by vcc-5v [ 2.559627] vcc18-dram-bias-pll: supplied by vcc-5v [ 2.560734] vcc-efuse-pcie-hdmi-pc: supplied by vcc-5v [ 2.561386] vcc-wifi-io-pm-pg: Bringing 700000uV into 1800000-1800000uV [ 2.561719] vcc-wifi-io-pm-pg: supplied by vcc-5v [ 2.562819] bldo4: supplied by vcc-5v [ 2.563341] vcc33-io-pd-emmc-sd-usb-uart-2: supplied by vcc-5v [ 2.564136] cldo2: supplied by vcc-5v [ 2.564801] cldo3: supplied by vcc-5v [ 2.565035] sw: supplied by regulator-dummy [ 2.565598] axp20x-i2c 0-0036: AXP20X driver loaded [ 2.579120] sun50i-h6-pinctrl 300b000.pinctrl: initialized sunXi PIO driver [ 2.579642] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pb not found, using dummy regulator [ 2.580524] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator [ 2.581205] printk: console [ttyS0] disabled [ 2.581316] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 35, base_baud = 1500000) is a 16550A [ 2.581600] printk: console [ttyS0] enabled [ 2.582895] sun4i-drm display-engine: Adding to iommu group 0 [ 2.589957] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 System Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input6 [ 2.590397] hid-generic 0003:045E:0745.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input2 [ 2.602524] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) [ 2.602880] sun4i-drm display-engine: bound 6510000.tcon-top (ops 0xffff800008e1abb8) [ 2.603276] sun4i-drm display-engine: bound 6515000.lcd-controller (ops 0xffff800008e11ba0) [ 2.603403] sun8i-dw-hdmi 6000000.hdmi: supply hvcc not found, using dummy regulator [ 2.603905] sun8i-dw-hdmi 6000000.hdmi: Detected HDMI TX controller v2.12a with HDCP (DWC HDMI 2.0 TX PHY) [ 2.604269] sun8i-dw-hdmi 6000000.hdmi: EVENT=plugin [ 2.608442] sun8i-dw-hdmi 6000000.hdmi: registered DesignWare HDMI I2C bus driver [ 2.608956] sun4i-drm display-engine: bound 6000000.hdmi (ops 0xffff800008e15cc8) [ 2.609998] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 2.610059] sun8i-dw-hdmi 6000000.hdmi: read_hpd result: 1 [ 2.766758] Console: switching to colour frame buffer device 240x67 [ 2.816582] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device [ 2.837317] acx00-codec acx00-codec: DMA mask not set [ 2.841040] vcc-wifi-io: supplied by vcc33-wifi [ 2.841454] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.842711] sunxi-mmc 4020000.mmc: Got CD GPIO [ 2.846375] ehci-platform 5101000.usb: EHCI Host Controller [ 2.846421] ehci-platform 5101000.usb: new USB bus registered, assigned bus number 3 [ 2.846575] ehci-platform 5101000.usb: irq 41, io mem 0x05101000 [ 2.848622] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 2.865562] ehci-platform 5101000.usb: USB 2.0 started, EHCI 1.00 [ 2.865575] sunxi-mmc 4022000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 2.865860] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.865911] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.865925] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.865936] usb usb3: Product: EHCI Host Controller [ 2.865945] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.865953] usb usb3: SerialNumber: 5101000.usb [ 2.866566] hub 3-0:1.0: USB hub found [ 2.866635] hub 3-0:1.0: 1 port detected [ 2.867969] ehci-platform 5311000.usb: EHCI Host Controller [ 2.868052] ehci-platform 5311000.usb: new USB bus registered, assigned bus number 4 [ 2.868209] ehci-platform 5311000.usb: irq 44, io mem 0x05311000 [ 2.881527] ehci-platform 5311000.usb: USB 2.0 started, EHCI 1.00 [ 2.881876] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.881891] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.881901] usb usb4: Product: EHCI Host Controller [ 2.881914] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.881923] usb usb4: SerialNumber: 5311000.usb [ 2.882497] hub 4-0:1.0: USB hub found [ 2.882543] hub 4-0:1.0: 1 port detected [ 2.883659] ohci-platform 5101400.usb: Generic Platform OHCI controller [ 2.883696] ohci-platform 5101400.usb: new USB bus registered, assigned bus number 5 [ 2.883846] ohci-platform 5101400.usb: irq 42, io mem 0x05101400 [ 2.901121] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.902890] mmc0: Problem switching card into high-speed mode! [ 2.903010] mmc0: new SDHC card at address 0001 [ 2.903892] mmcblk0: mmc0:0001 USD 29.8 GiB [ 2.905998] mmcblk0: p1 [ 2.945815] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.945843] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.945853] usb usb5: Product: Generic Platform OHCI controller [ 2.945862] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 2.945870] usb usb5: SerialNumber: 5101400.usb [ 2.946508] hub 5-0:1.0: USB hub found [ 2.946564] hub 5-0:1.0: 1 port detected [ 2.947693] ohci-platform 5311400.usb: Generic Platform OHCI controller [ 2.947732] ohci-platform 5311400.usb: new USB bus registered, assigned bus number 6 [ 2.947873] ohci-platform 5311400.usb: irq 45, io mem 0x05311400 [ 3.005682] mmc2: new HS200 MMC card at address 0001 [ 3.006689] mmcblk2: mmc2:0001 8GTF4R 7.28 GiB [ 3.009191] mmcblk2boot0: mmc2:0001 8GTF4R 4.00 MiB [ 3.009899] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.009929] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.009940] usb usb6: Product: Generic Platform OHCI controller [ 3.009949] usb usb6: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 3.009957] usb usb6: SerialNumber: 5311400.usb [ 3.010742] hub 6-0:1.0: USB hub found [ 3.010820] hub 6-0:1.0: 1 port detected [ 3.011003] mmcblk2boot1: mmc2:0001 8GTF4R 4.00 MiB [ 3.012287] usb_phy_generic usb_phy_generic.4.auto: supply vcc not found, using dummy regulator [ 3.012471] usb_phy_generic usb_phy_generic.4.auto: dummy supplies not allowed for exclusive requests [ 3.078113] sunxi-mmc 4021000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 3.095714] mmc1: new high speed SDIO card at address 8800 [ 3.109911] musb-hdrc musb-hdrc.5.auto: MUSB HDRC host driver [ 3.109956] musb-hdrc musb-hdrc.5.auto: new USB bus registered, assigned bus number 7 [ 3.110288] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.110305] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.110316] usb usb7: Product: MUSB HDRC host driver [ 3.110324] usb usb7: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd [ 3.110333] usb usb7: SerialNumber: musb-hdrc.5.auto [ 3.110923] hub 7-0:1.0: USB hub found [ 3.110989] hub 7-0:1.0: 1 port detected [ 3.127115] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found [ 3.127143] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found [ 3.127455] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator [ 3.127695] dwmac-sun8i 5020000.ethernet: PTP uses main clock [ 3.127740] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 58000 (expect 50000) [ 3.233767] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported [ 3.233793] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported [ 3.233800] dwmac-sun8i 5020000.ethernet: COE Type 2 [ 3.233809] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported [ 3.233817] dwmac-sun8i 5020000.ethernet: Normal descriptors [ 3.233824] dwmac-sun8i 5020000.ethernet: Chain mode enabled [ 3.470451] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 3.693548] usb 5-1: new full-speed USB device number 2 using ohci-platform [ 3.934574] usb 5-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10 [ 3.934605] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.934616] usb 5-1: Product: USB Receiver [ 3.934624] usb 5-1: Manufacturer: Logitech [ 3.943645] input: Logitech USB Receiver as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.0/0003:046D:C52B.0004/input/input7 [ 4.002215] hid-generic 0003:046D:C52B.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-5101400.usb-1/input0 [ 4.008419] input: Logitech USB Receiver Mouse as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input8 [ 4.008877] input: Logitech USB Receiver Consumer Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input9 [ 4.065886] input: Logitech USB Receiver System Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input10 [ 4.066269] hid-generic 0003:046D:C52B.0005: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-5101400.usb-1/input1 [ 4.070836] hid-generic 0003:046D:C52B.0006: hiddev98,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 4.842234] systemd[1]: System time before build time, advancing clock. [ 4.939393] systemd[1]: systemd 249.11-0ubuntu3.1 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 4.940061] systemd[1]: Detected architecture arm64. [ 4.943463] systemd[1]: Hostname set to <orangepi3-lts>. [ 6.280645] systemd[1]: Queued start job for default target Graphical Interface. [ 6.286592] systemd[1]: Created slice Slice /system/modprobe. [ 6.289331] systemd[1]: Created slice Slice /system/serial-getty. [ 6.291295] systemd[1]: Created slice User and Session Slice. [ 6.292193] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.293712] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 6.294623] systemd[1]: Reached target Remote File Systems. [ 6.294972] systemd[1]: Reached target Slice Units. [ 6.295321] systemd[1]: Reached target Swaps. [ 6.295639] systemd[1]: Reached target System Time Set. [ 6.296162] systemd[1]: Reached target Local Verity Protected Volumes. [ 6.297245] systemd[1]: Listening on Syslog Socket. [ 6.298236] systemd[1]: Listening on fsck to fsckd communication Socket. [ 6.298936] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 6.300397] systemd[1]: Listening on Journal Audit Socket. [ 6.301308] systemd[1]: Listening on Journal Socket (/dev/log). [ 6.302450] systemd[1]: Listening on Journal Socket. [ 6.314214] systemd[1]: Listening on udev Control Socket. [ 6.315305] systemd[1]: Listening on udev Kernel Socket. [ 6.319750] systemd[1]: Mounting Huge Pages File System... [ 6.324879] systemd[1]: Mounting POSIX Message Queue File System... [ 6.330662] systemd[1]: Mounting Kernel Debug File System... [ 6.331975] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 6.339409] systemd[1]: Starting Restore / save the current clock... [ 6.345147] systemd[1]: Starting Set the console keyboard layout... [ 6.351732] systemd[1]: Starting Create List of Static Device Nodes... [ 6.358465] systemd[1]: Starting Load Kernel Module configfs... [ 6.365077] systemd[1]: Starting Load Kernel Module drm... [ 6.371961] systemd[1]: Starting Load Kernel Module fuse... [ 6.379481] systemd[1]: Started Nameserver information manager. [ 6.380900] systemd[1]: Reached target Preparation for Network. [ 6.382190] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 6.395121] systemd[1]: Starting Load Kernel Modules... [ 6.401214] systemd[1]: Starting Remount Root and Kernel File Systems... [ 6.407382] systemd[1]: Starting Coldplug All udev Devices... [ 6.419152] systemd[1]: Mounted Huge Pages File System. [ 6.420837] systemd[1]: Mounted POSIX Message Queue File System. [ 6.422359] systemd[1]: Mounted Kernel Debug File System. [ 6.425432] systemd[1]: Finished Restore / save the current clock. [ 6.425773] fuse: init (API version 7.34) [ 6.428513] systemd[1]: Finished Create List of Static Device Nodes. [ 6.431938] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 6.433283] systemd[1]: Finished Load Kernel Module configfs. [ 6.435491] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 6.436886] systemd[1]: Finished Load Kernel Module drm. [ 6.439563] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 6.440948] systemd[1]: Finished Load Kernel Module fuse. [ 6.447052] systemd[1]: Mounting FUSE Control File System... [ 6.452353] systemd[1]: Mounting Kernel Configuration File System... [ 6.459715] systemd[1]: Mounted FUSE Control File System. [ 6.466857] systemd[1]: Mounted Kernel Configuration File System. [ 6.475597] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 6.481220] systemd[1]: Finished Remount Root and Kernel File Systems. [ 6.482545] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 6.487218] systemd[1]: Starting Load/Save Random Seed... [ 6.493049] systemd[1]: Starting Create System Users... [ 6.672733] WCN: marlin_init entry! [ 6.673295] WCN: wcn config bt wake host [ 6.673640] WCN_ERR: dts node for bt_wake not found [ 6.673650] WCN: marlin2 parse_dt some para not config [ 6.673674] sdiohal:sdiohal_parse_dt adma_tx:1, adma_rx:1, pwrseq:0, irq type:data, gpio_num:0, blksize:840 [ 6.678896] sdiohal:sdiohal_init ok [ 6.679750] systemd[1]: Finished Load/Save Random Seed. [ 6.679837] WCN: marlin_probe ok! [ 6.680959] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 6.701362] systemd[1]: Finished Create System Users. [ 6.703749] mtty_probe init device addr: 0x00000000fe1f7fb4 [ 6.703958] -->rfkill_bluetooth_init [ 6.704103] bluetooth_set_power: start_block=1 [ 6.704117] WCN: marlin power state:0, subsys: [MARLIN_BLUETOOTH] power 0 [ 6.704127] bluetooth_set_power: end_block=1 [ 6.704144] <--rfkill_bluetooth_init [ 6.708485] systemd[1]: Starting Create Static Device Nodes in /dev... [ 6.792500] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 6.794213] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 6.815600] [ADDR_MGT] addr_mgt_probe: module version: v1.0.9 [ 6.815713] [ADDR_MGT] addr_mgt_probe: success. [ 6.820941] systemd[1]: Finished Set the console keyboard layout. [ 6.882354] WCN: start_marlin [MARLIN_WIFI] [ 6.882379] WCN: marlin power state:0, subsys: [MARLIN_WIFI] power 1 [ 6.882388] WCN: the first power on start [ 6.885320] systemd[1]: Finished Create Static Device Nodes in /dev. [ 6.892712] systemd[1]: Reached target Preparation for Local File Systems. [ 6.905003] systemd[1]: Mounting /tmp... [ 6.919680] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 6.930260] systemd[1]: Mounted /tmp. [ 6.937592] systemd[1]: Reached target Local File Systems. [ 6.949729] systemd[1]: Starting Armbian leds state... [ 6.962125] systemd[1]: Starting Armbian ZRAM config... [ 6.974560] systemd[1]: Starting Set console font and keymap... [ 6.986826] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 6.989569] WCN: marlin chip en dummy pull up -- need manually set GPIO [ 7.012697] systemd[1]: Starting Set Up Additional Binary Formats... [ 7.017639] sdiohal:sdiohal_scan_card [ 7.017848] sdiohal:sdiohal_probe: func->class=0, vendor=0x0000, device=0x0000, func_num=0x0001, clock=50000000 [ 7.017940] WCN: marlin_scan_finish! [ 7.017944] sdiohal:probe ok [ 7.018067] sdiohal:scan end! [ 7.018073] WCN: then marlin start to download [ 7.018305] WCN: marlin_get_wcn_chipid: chipid: 0x2355b001 [ 7.018318] WCN: marlin_request_firmware from /lib/firmware/wcnmodem.bin start! [ 7.021202] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 7.021629] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 7.024765] systemd[1]: Finished Set console font and keymap. [ 7.035619] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 366 (systemd-binfmt) [ 7.043152] systemd[1]: Mounting Arbitrary Executable File Formats File System... [ 7.060577] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 7.072721] systemd[1]: Finished Coldplug All udev Devices. [ 7.167303] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 7.177862] systemd[1]: Mounted Arbitrary Executable File Formats File System. [ 7.199741] systemd[1]: Finished Set Up Additional Binary Formats. [ 7.228170] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 7.301685] systemd[1]: Finished Armbian leds state. [ 7.582111] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 7.589917] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 7.590620] systemd[1]: Started Dispatch Password Requests to Console Directory Watch when bootsplash is active. [ 7.601725] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 7.601909] systemd[1]: Reached target Local Encrypted Volumes. [ 7.649290] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 7.693825] systemd[1]: Starting Load/Save RF Kill Switch Status... [ 7.870964] bluetooth_set_power: start_block=0 [ 7.870991] WCN: start_marlin [MARLIN_BLUETOOTH] [ 8.041648] systemd[1]: Found device /dev/ttyS0. [ 8.075381] WCN: combin_img 0 marlin_firmware_write finish and successful [ 8.075778] WCN: marlin_start_run read reset reg val:0x1 [ 8.075797] WCN: after do marlin_start_run reset reg val:0x0 [ 8.076026] WCN: s_marlin_bootup_time=8076026176 [ 8.081928] WCN: clock mode: TSX [ 8.082132] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.109796] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.137839] WCN: marlin_write_cali_data sync init_state:0xf0f0f0f1 [ 8.137866] WCN: sdio_config bt_wake_host trigger:[high] [ 8.137869] WCN: sdio_config irq:[inband] [ 8.137871] WCN: sdio_config wake_host_level_duration_time:[20ms] [ 8.137876] WCN: sdio_config wake_host_data_separation:[bt/wifi reuse] [ 8.137878] WCN: marlin_send_sdio_config_to_cp sdio_config:0x80f01 (enable config) [ 8.138205] WCN: marlin_write_cali_data finish [ 8.138370] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.157809] panfrost 1800000.gpu: clock rate = 432000000 [ 8.157843] panfrost 1800000.gpu: bus_clock rate = 100000000 [ 8.158153] panfrost 1800000.gpu: mali-t720 id 0x720 major 0x1 minor 0x1 status 0x0 [ 8.158164] panfrost 1800000.gpu: features: 00000000,10309e40, issues: 00000000,21054400 [ 8.158170] panfrost 1800000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002821 AS:0xf JS:0x7 [ 8.158178] panfrost 1800000.gpu: shader_present=0x3 l2_present=0x1 [ 8.159096] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 1 [ 8.165839] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.179510] mc: Linux media interface: v0.10 [ 8.193765] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.221809] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.249807] WCN: check_cp_ready sync val:0xf0f0f0f6, prj_type val:0x0 [ 8.249830] WCN: marlin_bind_verify confuse data: 0x70f591d68e01b18d315da6e670879a4a [ 8.249845] WCN: marlin_bind_verify verify data: 0xa5709470f0031226394ebee725230b0c [ 8.250344] WCN: check_cp_ready sync val:0xf0f0f0f7, prj_type val:0x0 [ 8.277783] WCN: check_cp_ready sync val:0xf0f0f0ff, prj_type val:0x0 [ 8.277802] sdiohal:sdiohal_runtime_get entry [ 8.277980] WCN: get_cp2_version entry! [ 8.299009] videodev: Linux video capture interface: v2.00 [ 8.317158] WCN: WCND at cmd read:WCN_VER:Platform Version:MARLIN3_19B_W20.37.4~Project Version:sc2355_marlin3_lite_ott~09-11-2020 21:27:32~ [ 8.317230] WCN: switch_cp2_log - close entry! [ 8.318674] WCN: WCND at cmd read:OK [ 8.318761] WCN: then marlin download finished and run ok [ 8.318778] WCN: start_loopcheck [ 8.318884] WCN: marlin power state:4, subsys: [MARLIN_BLUETOOTH] power 1 [ 8.318895] WCN: marlin have open, GNSS is closed [ 8.318899] bluetooth_set_power: end_block=0 [ 8.320107] systemd[1]: Started Load/Save RF Kill Switch Status. [ 8.324478] zram: Added device: zram0 [ 8.325230] zram: Added device: zram1 [ 8.326075] zram: Added device: zram2 [ 8.354162] WCN: get_board_ant_num [one_ant] [ 8.354186] wifi ini path = /lib/firmware/wifi_2355b001_1ant.ini [ 8.365170] Registered IR keymap rc-empty [ 8.365298] rc rc0: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0 [ 8.366074] rc rc0: lirc_dev: driver sunxi-ir registered at minor = 0, raw IR receiver, no transmitter [ 8.366236] input: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0/input12 [ 8.378494] sunxi-ir 7040000.ir: initialized sunXi IR driver [ 8.434915] unisoc_wifi unisoc_wifi wlan0: mixed HW and IP checksum settings. [ 8.448849] systemd[1]: Finished Load Kernel Modules. [ 8.458292] systemd[1]: Starting Apply Kernel Variables... [ 8.514088] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. [ 8.515483] cedrus 1c0e000.video-codec: Adding to iommu group 0 [ 8.518502] cedrus 1c0e000.video-codec: Device registered as /dev/video0 [ 8.567882] zram0: detected capacity change from 0 to 2037304 [ 8.631035] Adding 1018648k swap on /dev/zram0. Priority:5 extents:1 across:1018648k SSFS [ 8.653605] systemd[1]: Finished Apply Kernel Variables. [ 8.681160] systemd[1]: Starting Raise network interfaces... [ 8.791511] logitech-djreceiver 0003:046D:C52B.0006: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 8.853254] zram1: detected capacity change from 0 to 102400 [ 8.977295] input: Logitech Wireless Device PID:4004 Keyboard as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input13 [ 9.045252] systemd[1]: Finished Armbian ZRAM config. [ 9.054870] hid-generic 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4004] on usb-5101400.usb-1/input2:1 [ 9.055168] systemd[1]: Starting Armbian memory supported logging... [ 9.169531] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 9.215009] input: Logitech K360 as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input17 [ 9.215550] logitech-hidpp-device 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K360] on usb-5101400.usb-1/input2:1 [ 9.699754] systemd[1]: Finished Raise network interfaces. [ 9.731709] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.732012] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.732412] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 9.738645] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.738778] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.738913] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.739051] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 9.894684] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.894922] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.894994] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.895091] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.895204] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.895323] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 11.563278] systemd[1]: Finished Armbian memory supported logging. [ 11.572525] systemd[1]: Starting Journal Service... [ 11.714105] systemd[1]: Started Journal Service. [ 11.743225] systemd-journald[691]: Received client request to flush runtime journal. ### armbian-release: # PLEASE DO NOT EDIT THIS FILE BOARD=orangepi3-lts BOARD_NAME="Orange Pi 3 LTS" BOARDFAMILY=sun50iw6 BUILD_REPOSITORY_URL=https://github.com/armbian/build BUILD_REPOSITORY_COMMIT=13f5fba13c VERSION=22.05.3 LINUXFAMILY=sunxi64 ARCH=arm64 IMAGE_TYPE=stable BOARD_TYPE=conf INITRD_ARCH=arm64 KERNEL_IMAGE_TYPE=stable BRANCH=current ### boot environment: verbosity=1 bootlogo=false console=both disp_mode=1920x1080p60 overlay_prefix=sun50i-h6 rootdev=UUID=71b44a6c-5bb8-4352-afe7-d22b8e62de4c rootfstype=ext4 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u ### lsusb: Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 005 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ### lscpu: Architecture: aarch64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 4 On-line CPU(s) list: 0-3 Vendor ID: ARM Model name: Cortex-A53 Model: 4 Thread(s) per core: 1 Core(s) per cluster: 4 Socket(s): - Cluster(s): 1 Stepping: r0p4 CPU max MHz: 1800.0000 CPU min MHz: 480.0000 BogoMIPS: 48.00 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid NUMA node(s): 1 NUMA node0 CPU(s): 0-3 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Spec store bypass: Not affected Vulnerability Spectre v1: Mitigation; __user pointer sanitization Vulnerability Spectre v2: Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected ### cpuinfo: processor : 0 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 1 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 2 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 3 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 ### meminfo: MemTotal: 2037300 kB MemFree: 1847312 kB MemAvailable: 1852580 kB Buffers: 12528 kB Cached: 52716 kB SwapCached: 0 kB Active: 32252 kB Inactive: 53072 kB Active(anon): 440 kB Inactive(anon): 22936 kB Active(file): 31812 kB Inactive(file): 30136 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 1018648 kB SwapFree: 1018648 kB Dirty: 2404 kB Writeback: 0 kB AnonPages: 20120 kB Mapped: 16908 kB Shmem: 3384 kB KReclaimable: 10544 kB Slab: 46252 kB SReclaimable: 10544 kB SUnreclaim: 35708 kB KernelStack: 2480 kB PageTables: 1508 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 2037296 kB Committed_AS: 42864 kB VmallocTotal: 133143592960 kB VmallocUsed: 22732 kB VmallocChunk: 0 kB Percpu: 976 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB FileHugePages: 0 kB FilePmdMapped: 0 kB CmaTotal: 131072 kB CmaFree: 128768 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB Hugetlb: 0 kB ### virtual memory: vm.admin_reserve_kbytes = 8192 vm.compaction_proactiveness = 20 vm.compact_unevictable_allowed = 1 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 20 vm.dirtytime_expire_seconds = 43200 vm.dirty_writeback_centisecs = 500 vm.extfrag_threshold = 500 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 0 vm.max_map_count = 65530 vm.min_free_kbytes = 22528 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 32768 vm.mmap_rnd_bits = 18 vm.mmap_rnd_compat_bits = 11 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 0 vm.page_lock_unfairness = 5 vm.panic_on_oom = 0 vm.percpu_pagelist_high_fraction = 0 vm.stat_interval = 1 vm.swappiness = 100 vm.user_reserve_kbytes = 63007 vm.vfs_cache_pressure = 100 vm.watermark_boost_factor = 15000 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0 ### ip addr: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 02:07:29:30:86:8c brd ff:ff:ff:ff:ff:ff 3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 00:32:c3:9f:6a:08 brd ff:ff:ff:ff:ff:ff ### partitions: major minor #blocks name 179 0 31205376 mmcblk0 179 1 30879744 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 ### df: tmpfs 199M 3.4M 196M 2% /run /dev/mmcblk0p1 29G 4.9G 24G 18% / tmpfs 995M 0 995M 0% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 995M 0 995M 0% /tmp /dev/zram1 47M 2.4M 42M 6% /var/log ### lsblk: NAME FSTYPE SIZE MOUNTPOINT UUID mmcblk0 29.8G └─mmcblk0p1 ext4 29.4G / 71b44a6c-5bb8-4352-afe7-d22b8e62de4c mmcblk2 swap 7.3G 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot0 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot1 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 zram1 50M /var/log zram2 0B ### zramctl: NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT /dev/zram1 zstd 50M 68K 721B 44K 4 /var/log /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] ### mtab: /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 ### mmc0:0001 info: fwrev: 0x0 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=USD MODALIAS=mmc:block cid: 1d414455534400001000005ae0016181 rca: 0x0001 csd: 400e00325b590000ee137f800a40004d manfid: 0x00001d ocr: 0x00200000 preferred_erase_size: 4194304 type: SD hwrev: 0x1 date: 01/2022 dsr: 0x404 erase_size: 512 oemid: 0x4144 serial: 0x00005ae0 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 scr: 02b5808200000000 name: USD ### mmc2:0001 info: fwrev: 0x0600000000000000 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=8GTF4R MODALIAS=mmc:block cid: 15010038475446345206d410e21fc801 rel_sectors: 0x1 enhanced_rpmb_supported: 0x1 rca: 0x0001 pre_eol_info: 0x01 csd: d02701320f5903fff6dbffef8e40400d manfid: 0x000015 ocr: 0x00200000 preferred_erase_size: 4194304 enhanced_area_offset: 18446744073709551594 raw_rpmb_size_mult: 0x4 type: MMC hwrev: 0x0 date: 12/2021 prv: 0x6 ffu_capable: 1 dsr: 0x404 erase_size: 524288 life_time: 0x01 0x01 enhanced_area_size: 4294967274 oemid: 0x0100 serial: 0xd410e21f cmdq_en: 0 rev: 0x8 name: 8GTF4R ### Boot system health: Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 11:40:44: 1320MHz 0.23 46% 19% 13% 0% 12% 0% 63.6°C 0/9 11:40:44: 888MHz 0.23 12% 8% 2% 1% 0% 0% 63.6°C 0/9 11:40:44: 1080MHz 0.23 12% 9% 2% 0% 0% 0% 58.2°C 0/9 11:40:45: 1800MHz 0.23 12% 6% 4% 1% 0% 0% 58.3°C 0/9 11:40:45: 1800MHz 0.23 14% 9% 2% 1% 0% 0% 59.3°C 0/9 ### Activated 1 lzo-rle zram swap devices with 994MB each. ### Activated Armbian ramlog partition with zstd compression Thu Jun 23 11:48:16 AM CST 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 ### dmesg: [ 1.272120] ohci-platform: OHCI generic platform driver [ 1.272614] usbcore: registered new interface driver usb-storage [ 1.273128] mousedev: PS/2 mouse device common for all mice [ 1.274160] sun6i-rtc 7000000.rtc: registered as rtc0 [ 1.274198] sun6i-rtc 7000000.rtc: setting system clock to 1970-01-01T00:07:55 UTC (475) [ 1.274306] sun6i-rtc 7000000.rtc: RTC enabled [ 1.274449] i2c_dev: i2c /dev entries driver [ 1.275241] sunxi-wdt 7020400.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.276799] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pm not found, using dummy regulator [ 1.277224] sdhci: Secure Digital Host Controller Interface driver [ 1.277234] sdhci: Copyright(c) Pierre Ossman [ 1.277258] Synopsys Designware Multimedia Card Interface Driver [ 1.278091] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.278268] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.279331] ledtrig-cpu: registered to indicate activity on CPUs [ 1.279930] sun8i-ce 1904000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.280188] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280330] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280432] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280526] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280606] sun8i-ce 1904000.crypto: Register cbc(aes) [ 1.280754] sun8i-ce 1904000.crypto: Register ecb(aes) [ 1.280864] sun8i-ce 1904000.crypto: Register cbc(des3_ede) [ 1.280972] sun8i-ce 1904000.crypto: Register ecb(des3_ede) [ 1.281079] sun8i-ce 1904000.crypto: Register md5 [ 1.281186] sun8i-ce 1904000.crypto: Register sha1 [ 1.281293] sun8i-ce 1904000.crypto: Register sha224 [ 1.281401] sun8i-ce 1904000.crypto: Register sha256 [ 1.281507] sun8i-ce 1904000.crypto: Register sha384 [ 1.281665] sun8i-ce 1904000.crypto: Register sha512 [ 1.281777] sun8i-ce 1904000.crypto: Register stdrng [ 1.282517] sun8i-ce 1904000.crypto: CryptoEngine Die ID 0 [ 1.283115] hid: raw HID events driver (C) Jiri Kosina [ 1.283240] usbcore: registered new interface driver usbhid [ 1.283247] usbhid: USB HID core driver [ 1.284060] random: crng init done [ 1.286213] NET: Registered PF_INET6 protocol family [ 1.870216] Freeing initrd memory: 12684K [ 1.898965] Segment Routing with IPv6 [ 1.899073] In-situ OAM (IOAM) with IPv6 [ 1.899164] NET: Registered PF_PACKET protocol family [ 1.899302] 8021q: 802.1Q VLAN Support v1.8 [ 1.899459] 9pnet: Installing 9P2000 support [ 1.899532] Key type dns_resolver registered [ 1.899974] registered taskstats version 1 [ 1.899990] Loading compiled-in X.509 certificates [ 1.903826] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' [ 1.906701] zswap: loaded using pool zstd/z3fold [ 1.907326] Key type ._fscrypt registered [ 1.907334] Key type .fscrypt registered [ 1.907338] Key type fscrypt-provisioning registered [ 1.908346] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 1.922075] Key type encrypted registered [ 1.922109] AppArmor: AppArmor sha1 policy hashing enabled [ 1.922149] ima: No TPM chip found, activating TPM-bypass! [ 1.922177] ima: Allocated hash algorithm: sha1 [ 1.922209] ima: No architecture policies found [ 1.922282] evm: Initialising EVM extended attributes: [ 1.922286] evm: security.selinux [ 1.922291] evm: security.SMACK64 [ 1.922296] evm: security.SMACK64EXEC [ 1.922300] evm: security.SMACK64TRANSMUTE [ 1.922304] evm: security.SMACK64MMAP [ 1.922308] evm: security.apparmor [ 1.922312] evm: security.ima [ 1.922316] evm: security.capability [ 1.922320] evm: HMAC attrs: 0x1 [ 1.935478] platform 1100000.mixer: Fixing up cyclic dependency with 6510000.tcon-top [ 1.935838] sun8i-mixer 1100000.mixer: Adding to iommu group 0 [ 1.937884] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.937915] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 1.938068] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f064 hci version 0x100 quirks 0x0000000002010010 [ 1.938129] xhci-hcd xhci-hcd.1.auto: irq 43, io mem 0x05200000 [ 1.938581] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.938597] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.938607] usb usb1: Product: xHCI Host Controller [ 1.938615] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.938624] usb usb1: SerialNumber: xhci-hcd.1.auto [ 1.939157] hub 1-0:1.0: USB hub found [ 1.939202] hub 1-0:1.0: 1 port detected [ 1.939537] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.939557] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.939576] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 1.939668] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.939826] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.939839] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.939849] usb usb2: Product: xHCI Host Controller [ 1.939857] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.939866] usb usb2: SerialNumber: xhci-hcd.1.auto [ 1.940303] hub 2-0:1.0: USB hub found [ 1.940340] hub 2-0:1.0: 1 port detected [ 1.942990] sun50i_cpufreq_nvmem: Using CPU speed bin speed0 [ 1.944802] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 1.951206] of_cfs_init [ 1.951337] of_cfs_init: OK [ 1.951677] ALSA device list: [ 1.951684] No soundcards found. [ 1.952785] Freeing unused kernel memory: 2496K [ 1.973623] Run /init as init process [ 1.973631] with arguments: [ 1.973637] /init [ 1.973643] with environment: [ 1.973647] HOME=/ [ 1.973652] TERM=linux [ 1.973657] ubootpart=ce3dfe46-01 [ 1.973662] cgroup_enable=memory [ 2.193601] usb 1-1: new full-speed USB device number 2 using xhci-hcd [ 2.346592] usb 1-1: New USB device found, idVendor=045e, idProduct=0745, bcdDevice= 6.33 [ 2.346627] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.346638] usb 1-1: Product: Microsoft® 2.4GHz Transceiver v7.0 [ 2.346646] usb 1-1: Manufacturer: Microsoft [ 2.367970] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.0/0003:045E:0745.0001/input/input0 [ 2.416093] axp20x-i2c 0-0036: AXP20x variant AXP806 found [ 2.429907] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input0 [ 2.437381] input: axp20x-pek as /devices/platform/soc/7081400.i2c/i2c-0/0-0036/axp221-pek/input/input1 [ 2.446665] vdd-cpu: supplied by vcc-5v [ 2.449719] vdd-gpu: supplied by vcc-5v [ 2.450579] vdd-sys: supplied by vcc-5v [ 2.451449] vcc-dram: supplied by vcc-5v [ 2.453703] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Mouse as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input2 [ 2.454269] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input3 [ 2.456626] vcc-pl-led-ir: supplied by vcc-5v [ 2.457495] vcc33-audio-tv-ephy-mac: supplied by vcc-5v [ 2.513978] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input1 [ 2.527597] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input4 [ 2.566336] vcc33-io-pd-emmc-sd-usb-uart-1: supplied by vcc-5v [ 2.567031] vcc18-dram-bias-pll: supplied by vcc-5v [ 2.568106] vcc-efuse-pcie-hdmi-pc: supplied by vcc-5v [ 2.568777] vcc-wifi-io-pm-pg: supplied by vcc-5v [ 2.569573] bldo4: supplied by vcc-5v [ 2.570101] vcc33-io-pd-emmc-sd-usb-uart-2: supplied by vcc-5v [ 2.570919] cldo2: supplied by vcc-5v [ 2.571561] cldo3: supplied by vcc-5v [ 2.571822] sw: supplied by regulator-dummy [ 2.572376] axp20x-i2c 0-0036: AXP20X driver loaded [ 2.578873] sun50i-h6-pinctrl 300b000.pinctrl: initialized sunXi PIO driver [ 2.579353] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pb not found, using dummy regulator [ 2.580357] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator [ 2.581186] printk: console [ttyS0] disabled [ 2.581302] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 35, base_baud = 1500000) is a 16550A [ 2.581573] printk: console [ttyS0] enabled [ 2.582872] sun4i-drm display-engine: Adding to iommu group 0 [ 2.587091] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 System Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input6 [ 2.588237] hid-generic 0003:045E:0745.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input2 [ 2.602484] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) [ 2.602783] sun4i-drm display-engine: bound 6510000.tcon-top (ops 0xffff800008e1abb8) [ 2.603132] sun4i-drm display-engine: bound 6515000.lcd-controller (ops 0xffff800008e11ba0) [ 2.603237] sun8i-dw-hdmi 6000000.hdmi: supply hvcc not found, using dummy regulator [ 2.607552] sun8i-dw-hdmi 6000000.hdmi: Detected HDMI TX controller v2.12a with HDCP (DWC HDMI 2.0 TX PHY) [ 2.610193] sun8i-dw-hdmi 6000000.hdmi: EVENT=plugin [ 2.611789] sun8i-dw-hdmi 6000000.hdmi: registered DesignWare HDMI I2C bus driver [ 2.612790] sun4i-drm display-engine: bound 6000000.hdmi (ops 0xffff800008e15cc8) [ 2.614453] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 2.614521] sun8i-dw-hdmi 6000000.hdmi: read_hpd result: 1 [ 2.770264] Console: switching to colour frame buffer device 240x67 [ 2.820085] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device [ 2.841915] acx00-codec acx00-codec: DMA mask not set [ 2.844695] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.846014] sunxi-mmc 4020000.mmc: Got CD GPIO [ 2.846566] vcc-wifi-io: supplied by vcc33-wifi [ 2.848944] ehci-platform 5101000.usb: EHCI Host Controller [ 2.849108] ehci-platform 5101000.usb: new USB bus registered, assigned bus number 3 [ 2.849277] ehci-platform 5101000.usb: irq 41, io mem 0x05101000 [ 2.861619] ehci-platform 5101000.usb: USB 2.0 started, EHCI 1.00 [ 2.861961] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.861976] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.861987] usb usb3: Product: EHCI Host Controller [ 2.861995] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.862004] usb usb3: SerialNumber: 5101000.usb [ 2.862573] hub 3-0:1.0: USB hub found [ 2.862616] hub 3-0:1.0: 1 port detected [ 2.863716] ehci-platform 5311000.usb: EHCI Host Controller [ 2.863754] ehci-platform 5311000.usb: new USB bus registered, assigned bus number 4 [ 2.863897] ehci-platform 5311000.usb: irq 44, io mem 0x05311000 [ 2.869591] sunxi-mmc 4022000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 2.869910] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.877571] ehci-platform 5311000.usb: USB 2.0 started, EHCI 1.00 [ 2.877916] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.877932] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.877943] usb usb4: Product: EHCI Host Controller [ 2.877951] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.877960] usb usb4: SerialNumber: 5311000.usb [ 2.878516] hub 4-0:1.0: USB hub found [ 2.878560] hub 4-0:1.0: 1 port detected [ 2.879652] ohci-platform 5101400.usb: Generic Platform OHCI controller [ 2.879690] ohci-platform 5101400.usb: new USB bus registered, assigned bus number 5 [ 2.879830] ohci-platform 5101400.usb: irq 42, io mem 0x05101400 [ 2.904492] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.906262] mmc0: Problem switching card into high-speed mode! [ 2.906374] mmc0: new SDHC card at address 0001 [ 2.907229] mmcblk0: mmc0:0001 USD 29.8 GiB [ 2.909255] mmcblk0: p1 [ 2.941827] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.941852] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.941862] usb usb5: Product: Generic Platform OHCI controller [ 2.941871] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 2.941879] usb usb5: SerialNumber: 5101400.usb [ 2.942627] hub 5-0:1.0: USB hub found [ 2.942693] hub 5-0:1.0: 1 port detected [ 2.943898] ohci-platform 5311400.usb: Generic Platform OHCI controller [ 2.943950] ohci-platform 5311400.usb: new USB bus registered, assigned bus number 6 [ 2.944086] ohci-platform 5311400.usb: irq 45, io mem 0x05311400 [ 2.997703] mmc2: new HS200 MMC card at address 0001 [ 2.998755] mmcblk2: mmc2:0001 8GTF4R 7.28 GiB [ 3.001037] mmcblk2boot0: mmc2:0001 8GTF4R 4.00 MiB [ 3.002672] mmcblk2boot1: mmc2:0001 8GTF4R 4.00 MiB [ 3.005930] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.005972] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.005984] usb usb6: Product: Generic Platform OHCI controller [ 3.005992] usb usb6: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 3.006001] usb usb6: SerialNumber: 5311400.usb [ 3.006674] hub 6-0:1.0: USB hub found [ 3.006731] hub 6-0:1.0: 1 port detected [ 3.008066] usb_phy_generic usb_phy_generic.4.auto: supply vcc not found, using dummy regulator [ 3.008361] usb_phy_generic usb_phy_generic.4.auto: dummy supplies not allowed for exclusive requests [ 3.113914] musb-hdrc musb-hdrc.5.auto: MUSB HDRC host driver [ 3.113960] musb-hdrc musb-hdrc.5.auto: new USB bus registered, assigned bus number 7 [ 3.114250] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.114265] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.114276] usb usb7: Product: MUSB HDRC host driver [ 3.114284] usb usb7: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd [ 3.114293] usb usb7: SerialNumber: musb-hdrc.5.auto [ 3.114896] hub 7-0:1.0: USB hub found [ 3.114955] hub 7-0:1.0: 1 port detected [ 3.135122] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found [ 3.135149] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found [ 3.135453] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator [ 3.135754] dwmac-sun8i 5020000.ethernet: PTP uses main clock [ 3.135801] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 58000 (expect 50000) [ 3.241842] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported [ 3.241868] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported [ 3.241876] dwmac-sun8i 5020000.ethernet: COE Type 2 [ 3.241886] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported [ 3.241894] dwmac-sun8i 5020000.ethernet: Normal descriptors [ 3.241901] dwmac-sun8i 5020000.ethernet: Chain mode enabled [ 3.460812] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 3.685578] usb 5-1: new full-speed USB device number 2 using ohci-platform [ 3.922615] usb 5-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10 [ 3.922646] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.922656] usb 5-1: Product: USB Receiver [ 3.922665] usb 5-1: Manufacturer: Logitech [ 3.931703] input: Logitech USB Receiver as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.0/0003:046D:C52B.0004/input/input7 [ 3.990240] hid-generic 0003:046D:C52B.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-5101400.usb-1/input0 [ 3.996409] input: Logitech USB Receiver Mouse as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input8 [ 3.996878] input: Logitech USB Receiver Consumer Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input9 [ 4.053923] input: Logitech USB Receiver System Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input10 [ 4.054273] hid-generic 0003:046D:C52B.0005: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-5101400.usb-1/input1 [ 4.058954] hid-generic 0003:046D:C52B.0006: hiddev98,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 4.755008] systemd[1]: System time before build time, advancing clock. [ 4.843289] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 4.852360] systemd[1]: systemd 249.11-0ubuntu3.1 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 4.853031] systemd[1]: Detected architecture arm64. [ 4.856401] systemd[1]: Hostname set to <orangepi3-lts>. [ 5.073589] sunxi-mmc 4021000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 5.093717] mmc1: new high speed SDIO card at address 8800 [ 6.193792] systemd[1]: Queued start job for default target Graphical Interface. [ 6.199673] systemd[1]: Created slice Slice /system/modprobe. [ 6.202438] systemd[1]: Created slice Slice /system/serial-getty. [ 6.204317] systemd[1]: Created slice User and Session Slice. [ 6.205203] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.206686] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 6.207616] systemd[1]: Reached target Remote File Systems. [ 6.207972] systemd[1]: Reached target Slice Units. [ 6.208316] systemd[1]: Reached target Swaps. [ 6.208615] systemd[1]: Reached target System Time Set. [ 6.209148] systemd[1]: Reached target Local Verity Protected Volumes. [ 6.210233] systemd[1]: Listening on Syslog Socket. [ 6.211099] systemd[1]: Listening on fsck to fsckd communication Socket. [ 6.211773] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 6.213196] systemd[1]: Listening on Journal Audit Socket. [ 6.214166] systemd[1]: Listening on Journal Socket (/dev/log). [ 6.215189] systemd[1]: Listening on Journal Socket. [ 6.226972] systemd[1]: Listening on udev Control Socket. [ 6.228070] systemd[1]: Listening on udev Kernel Socket. [ 6.232463] systemd[1]: Mounting Huge Pages File System... [ 6.237480] systemd[1]: Mounting POSIX Message Queue File System... [ 6.243196] systemd[1]: Mounting Kernel Debug File System... [ 6.244530] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 6.251806] systemd[1]: Starting Restore / save the current clock... [ 6.257507] systemd[1]: Starting Set the console keyboard layout... [ 6.264010] systemd[1]: Starting Create List of Static Device Nodes... [ 6.270697] systemd[1]: Starting Load Kernel Module configfs... [ 6.277248] systemd[1]: Starting Load Kernel Module drm... [ 6.284225] systemd[1]: Starting Load Kernel Module fuse... [ 6.290950] systemd[1]: Started Nameserver information manager. [ 6.293372] systemd[1]: Reached target Preparation for Network. [ 6.294676] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 6.305486] systemd[1]: Starting Load Kernel Modules... [ 6.311575] systemd[1]: Starting Remount Root and Kernel File Systems... [ 6.318055] systemd[1]: Starting Coldplug All udev Devices... [ 6.329070] systemd[1]: Mounted Huge Pages File System. [ 6.330531] systemd[1]: Mounted POSIX Message Queue File System. [ 6.331866] systemd[1]: Mounted Kernel Debug File System. [ 6.334637] systemd[1]: Finished Restore / save the current clock. [ 6.337208] fuse: init (API version 7.34) [ 6.338287] systemd[1]: Finished Create List of Static Device Nodes. [ 6.340802] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 6.342196] systemd[1]: Finished Load Kernel Module configfs. [ 6.344794] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 6.346196] systemd[1]: Finished Load Kernel Module drm. [ 6.348702] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 6.350366] systemd[1]: Finished Load Kernel Module fuse. [ 6.358420] systemd[1]: Mounting FUSE Control File System... [ 6.363565] systemd[1]: Mounting Kernel Configuration File System... [ 6.370549] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 6.378619] systemd[1]: Finished Remount Root and Kernel File Systems. [ 6.380232] systemd[1]: Mounted FUSE Control File System. [ 6.381348] systemd[1]: Mounted Kernel Configuration File System. [ 6.382326] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 6.387071] systemd[1]: Starting Load/Save Random Seed... [ 6.392540] systemd[1]: Starting Create System Users... [ 6.586419] WCN: marlin_init entry! [ 6.586991] WCN: wcn config bt wake host [ 6.587221] WCN_ERR: dts node for bt_wake not found [ 6.587225] WCN: marlin2 parse_dt some para not config [ 6.587238] sdiohal:sdiohal_parse_dt adma_tx:1, adma_rx:1, pwrseq:0, irq type:data, gpio_num:0, blksize:840 [ 6.592123] sdiohal:sdiohal_init ok [ 6.592878] WCN: marlin_probe ok! [ 6.620583] mtty_probe init device addr: 0x00000000e28a0d2b [ 6.620797] -->rfkill_bluetooth_init [ 6.620939] bluetooth_set_power: start_block=1 [ 6.620953] WCN: marlin power state:0, subsys: [MARLIN_BLUETOOTH] power 0 [ 6.620964] bluetooth_set_power: end_block=1 [ 6.620984] <--rfkill_bluetooth_init [ 6.623689] systemd[1]: Finished Load/Save Random Seed. [ 6.626442] systemd[1]: Finished Create System Users. [ 6.627758] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 6.634972] systemd[1]: Starting Create Static Device Nodes in /dev... [ 6.763812] systemd[1]: Finished Set the console keyboard layout. [ 6.786911] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 6.788524] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 6.809385] [ADDR_MGT] addr_mgt_probe: module version: v1.0.9 [ 6.809498] [ADDR_MGT] addr_mgt_probe: success. [ 6.875323] WCN: start_marlin [MARLIN_WIFI] [ 6.875350] WCN: marlin power state:0, subsys: [MARLIN_WIFI] power 1 [ 6.875357] WCN: the first power on start [ 6.882798] systemd[1]: Finished Create Static Device Nodes in /dev. [ 6.890198] systemd[1]: Reached target Preparation for Local File Systems. [ 6.902433] systemd[1]: Mounting /tmp... [ 6.917110] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 6.928017] systemd[1]: Mounted /tmp. [ 6.935371] systemd[1]: Reached target Local File Systems. [ 6.947700] systemd[1]: Starting Armbian leds state... [ 6.960150] systemd[1]: Starting Armbian ZRAM config... [ 6.973058] systemd[1]: Starting Set console font and keymap... [ 6.981654] WCN: marlin chip en dummy pull up -- need manually set GPIO [ 6.985303] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 7.009278] systemd[1]: Starting Set Up Additional Binary Formats... [ 7.009633] sdiohal:sdiohal_scan_card [ 7.009865] sdiohal:sdiohal_probe: func->class=0, vendor=0x0000, device=0x0000, func_num=0x0001, clock=50000000 [ 7.009980] WCN: marlin_scan_finish! [ 7.009984] sdiohal:probe ok [ 7.010121] sdiohal:scan end! [ 7.010127] WCN: then marlin start to download [ 7.010352] WCN: marlin_get_wcn_chipid: chipid: 0x2355b001 [ 7.010365] WCN: marlin_request_firmware from /lib/firmware/wcnmodem.bin start! [ 7.016147] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 7.016455] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 7.019509] systemd[1]: Finished Coldplug All udev Devices. [ 7.028350] systemd[1]: Finished Set console font and keymap. [ 7.059177] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 7.068115] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 7.075631] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 363 (systemd-binfmt) [ 7.080419] systemd[1]: Mounting Arbitrary Executable File Formats File System... [ 7.176429] systemd[1]: Mounted Arbitrary Executable File Formats File System. [ 7.195698] systemd[1]: Finished Set Up Additional Binary Formats. [ 7.204781] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 7.302466] systemd[1]: Finished Armbian leds state. [ 7.578280] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 7.586089] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 7.586742] systemd[1]: Started Dispatch Password Requests to Console Directory Watch when bootsplash is active. [ 7.594078] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 7.594232] systemd[1]: Reached target Local Encrypted Volumes. [ 7.650629] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 7.690721] systemd[1]: Starting Load/Save RF Kill Switch Status... [ 7.861430] bluetooth_set_power: start_block=0 [ 7.861457] WCN: start_marlin [MARLIN_BLUETOOTH] [ 8.022021] WCN: combin_img 0 marlin_firmware_write finish and successful [ 8.022313] WCN: marlin_start_run read reset reg val:0x1 [ 8.022320] WCN: after do marlin_start_run reset reg val:0x0 [ 8.022497] WCN: s_marlin_bootup_time=8022497218 [ 8.027371] mc: Linux media interface: v0.10 [ 8.029116] WCN: clock mode: TSX [ 8.029325] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.042428] panfrost 1800000.gpu: clock rate = 432000000 [ 8.042461] panfrost 1800000.gpu: bus_clock rate = 100000000 [ 8.048008] panfrost 1800000.gpu: mali-t720 id 0x720 major 0x1 minor 0x1 status 0x0 [ 8.048034] panfrost 1800000.gpu: features: 00000000,10309e40, issues: 00000000,21054400 [ 8.048042] panfrost 1800000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002821 AS:0xf JS:0x7 [ 8.048050] panfrost 1800000.gpu: shader_present=0x3 l2_present=0x1 [ 8.053842] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.078362] videodev: Linux video capture interface: v2.00 [ 8.079820] systemd[1]: Found device /dev/ttyS0. [ 8.081868] WCN: marlin_write_cali_data sync init_state:0xf0f0f0f1 [ 8.081894] WCN: sdio_config bt_wake_host trigger:[high] [ 8.081897] WCN: sdio_config irq:[inband] [ 8.081899] WCN: sdio_config wake_host_level_duration_time:[20ms] [ 8.081903] WCN: sdio_config wake_host_data_separation:[bt/wifi reuse] [ 8.081906] WCN: marlin_send_sdio_config_to_cp sdio_config:0x80f01 (enable config) [ 8.082330] WCN: marlin_write_cali_data finish [ 8.082591] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.083099] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 1 [ 8.109908] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.130243] zram: Added device: zram0 [ 8.137813] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.165793] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.181921] zram: Added device: zram1 [ 8.193819] WCN: check_cp_ready sync val:0xf0f0f0f6, prj_type val:0x0 [ 8.193843] WCN: marlin_bind_verify confuse data: 0x2e197f4f5a1107df30c640a9405a3d69 [ 8.193860] WCN: marlin_bind_verify verify data: 0x016d6ab91e1d071b3ae4604f224021aa [ 8.194409] WCN: check_cp_ready sync val:0xf0f0f0f7, prj_type val:0x0 [ 8.198061] zram: Added device: zram2 [ 8.227589] WCN: check_cp_ready sync val:0xf0f0f0ff, prj_type val:0x0 [ 8.227616] sdiohal:sdiohal_runtime_get entry [ 8.233394] WCN: get_cp2_version entry! [ 8.280833] WCN: WCND at cmd read:WCN_VER:Platform Version:MARLIN3_19B_W20.37.4~Project Version:sc2355_marlin3_lite_ott~09-11-2020 21:27:32~ [ 8.280868] WCN: switch_cp2_log - close entry! [ 8.282187] WCN: WCND at cmd read:OK [ 8.282244] WCN: then marlin download finished and run ok [ 8.282258] WCN: start_loopcheck [ 8.282550] WCN: marlin power state:4, subsys: [MARLIN_BLUETOOTH] power 1 [ 8.282561] WCN: marlin have open, GNSS is closed [ 8.282565] bluetooth_set_power: end_block=0 [ 8.288920] systemd[1]: Started Load/Save RF Kill Switch Status. [ 8.306629] WCN: get_board_ant_num [one_ant] [ 8.306654] wifi ini path = /lib/firmware/wifi_2355b001_1ant.ini [ 8.380720] Registered IR keymap rc-empty [ 8.380846] rc rc0: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0 [ 8.381036] rc rc0: lirc_dev: driver sunxi-ir registered at minor = 0, raw IR receiver, no transmitter [ 8.381128] input: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0/input12 [ 8.381466] sunxi-ir 7040000.ir: initialized sunXi IR driver [ 8.387814] unisoc_wifi unisoc_wifi wlan0: mixed HW and IP checksum settings. [ 8.392387] systemd[1]: Finished Load Kernel Modules. [ 8.402147] systemd[1]: Starting Apply Kernel Variables... [ 8.499610] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. [ 8.500798] cedrus 1c0e000.video-codec: Adding to iommu group 0 [ 8.501857] cedrus 1c0e000.video-codec: Device registered as /dev/video0 [ 8.621340] zram0: detected capacity change from 0 to 2037304 [ 8.651781] Adding 1018648k swap on /dev/zram0. Priority:5 extents:1 across:1018648k SSFS [ 8.687059] systemd[1]: Finished Apply Kernel Variables. [ 8.716975] systemd[1]: Starting Raise network interfaces... [ 8.871439] zram1: detected capacity change from 0 to 102400 [ 8.949631] logitech-djreceiver 0003:046D:C52B.0006: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 9.026075] systemd[1]: Finished Armbian ZRAM config. [ 9.036822] systemd[1]: Starting Armbian memory supported logging... [ 9.110343] input: Logitech Wireless Device PID:4004 Keyboard as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input13 [ 9.157338] hid-generic 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4004] on usb-5101400.usb-1/input2:1 [ 9.171004] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 9.327377] input: Logitech K360 as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input17 [ 9.328295] logitech-hidpp-device 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K360] on usb-5101400.usb-1/input2:1 [ 9.690644] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.691310] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.692362] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 9.697275] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.697501] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.697835] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.697994] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 9.755895] systemd[1]: Finished Raise network interfaces. [ 9.998313] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.998546] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.998617] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.998708] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.998815] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.998931] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 11.573639] systemd[1]: Finished Armbian memory supported logging. [ 11.584810] systemd[1]: Starting Journal Service... [ 11.722369] systemd[1]: Started Journal Service. [ 11.750846] systemd-journald[690]: Received client request to flush runtime journal. ### armbian-release: # PLEASE DO NOT EDIT THIS FILE BOARD=orangepi3-lts BOARD_NAME="Orange Pi 3 LTS" BOARDFAMILY=sun50iw6 BUILD_REPOSITORY_URL=https://github.com/armbian/build BUILD_REPOSITORY_COMMIT=13f5fba13c VERSION=22.05.3 LINUXFAMILY=sunxi64 ARCH=arm64 IMAGE_TYPE=stable BOARD_TYPE=conf INITRD_ARCH=arm64 KERNEL_IMAGE_TYPE=stable BRANCH=current ### boot environment: verbosity=1 bootlogo=false console=both disp_mode=1920x1080p60 overlay_prefix=sun50i-h6 rootdev=UUID=71b44a6c-5bb8-4352-afe7-d22b8e62de4c rootfstype=ext4 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u ### lsusb: Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 005 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ### lscpu: Architecture: aarch64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 4 On-line CPU(s) list: 0-3 Vendor ID: ARM Model name: Cortex-A53 Model: 4 Thread(s) per core: 1 Core(s) per cluster: 4 Socket(s): - Cluster(s): 1 Stepping: r0p4 CPU max MHz: 1800.0000 CPU min MHz: 480.0000 BogoMIPS: 48.00 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid NUMA node(s): 1 NUMA node0 CPU(s): 0-3 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Spec store bypass: Not affected Vulnerability Spectre v1: Mitigation; __user pointer sanitization Vulnerability Spectre v2: Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected ### cpuinfo: processor : 0 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 1 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 2 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 3 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 ### meminfo: MemTotal: 2037300 kB MemFree: 1845772 kB MemAvailable: 1851244 kB Buffers: 12532 kB Cached: 52908 kB SwapCached: 0 kB Active: 32344 kB Inactive: 52708 kB Active(anon): 428 kB Inactive(anon): 22452 kB Active(file): 31916 kB Inactive(file): 30256 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 1018648 kB SwapFree: 1018648 kB Dirty: 2836 kB Writeback: 0 kB AnonPages: 19400 kB Mapped: 16772 kB Shmem: 3376 kB KReclaimable: 10500 kB Slab: 45964 kB SReclaimable: 10500 kB SUnreclaim: 35464 kB KernelStack: 2448 kB PageTables: 1528 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 2037296 kB Committed_AS: 42340 kB VmallocTotal: 133143592960 kB VmallocUsed: 22684 kB VmallocChunk: 0 kB Percpu: 976 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB FileHugePages: 0 kB FilePmdMapped: 0 kB CmaTotal: 131072 kB CmaFree: 128768 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB Hugetlb: 0 kB ### virtual memory: vm.admin_reserve_kbytes = 8192 vm.compaction_proactiveness = 20 vm.compact_unevictable_allowed = 1 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 20 vm.dirtytime_expire_seconds = 43200 vm.dirty_writeback_centisecs = 500 vm.extfrag_threshold = 500 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 0 vm.max_map_count = 65530 vm.min_free_kbytes = 22528 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 32768 vm.mmap_rnd_bits = 18 vm.mmap_rnd_compat_bits = 11 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 0 vm.page_lock_unfairness = 5 vm.panic_on_oom = 0 vm.percpu_pagelist_high_fraction = 0 vm.stat_interval = 1 vm.swappiness = 100 vm.user_reserve_kbytes = 63011 vm.vfs_cache_pressure = 100 vm.watermark_boost_factor = 15000 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0 ### ip addr: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 02:07:29:30:86:8c brd ff:ff:ff:ff:ff:ff 3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 00:32:c3:9f:6a:08 brd ff:ff:ff:ff:ff:ff ### partitions: major minor #blocks name 179 0 31205376 mmcblk0 179 1 30879744 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 ### df: tmpfs 199M 3.4M 196M 2% /run /dev/mmcblk0p1 29G 4.9G 24G 18% / tmpfs 995M 0 995M 0% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 995M 0 995M 0% /tmp /dev/zram1 47M 2.8M 41M 7% /var/log ### lsblk: NAME FSTYPE SIZE MOUNTPOINT UUID mmcblk0 29.8G └─mmcblk0p1 ext4 29.4G / 71b44a6c-5bb8-4352-afe7-d22b8e62de4c mmcblk2 swap 7.3G 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot0 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot1 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 zram1 50M /var/log zram2 0B ### zramctl: NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT /dev/zram1 zstd 50M 68K 728B 44K 4 /var/log /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] ### mtab: /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 ### mmc0:0001 info: fwrev: 0x0 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=USD MODALIAS=mmc:block cid: 1d414455534400001000005ae0016181 rca: 0x0001 csd: 400e00325b590000ee137f800a40004d manfid: 0x00001d ocr: 0x00200000 preferred_erase_size: 4194304 type: SD hwrev: 0x1 date: 01/2022 dsr: 0x404 erase_size: 512 oemid: 0x4144 serial: 0x00005ae0 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 scr: 02b5808200000000 name: USD ### mmc2:0001 info: fwrev: 0x0600000000000000 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=8GTF4R MODALIAS=mmc:block cid: 15010038475446345206d410e21fc801 rel_sectors: 0x1 enhanced_rpmb_supported: 0x1 rca: 0x0001 pre_eol_info: 0x01 csd: d02701320f5903fff6dbffef8e40400d manfid: 0x000015 ocr: 0x00200000 preferred_erase_size: 4194304 enhanced_area_offset: 18446744073709551594 raw_rpmb_size_mult: 0x4 type: MMC hwrev: 0x0 date: 12/2021 prv: 0x6 ffu_capable: 1 dsr: 0x404 erase_size: 524288 life_time: 0x01 0x01 enhanced_area_size: 4294967274 oemid: 0x0100 serial: 0xd410e21f cmdq_en: 0 rev: 0x8 name: 8GTF4R ### Boot system health: Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 11:48:18: 1608MHz 1.34 46% 19% 13% 0% 12% 0% 65.9°C 0/9 11:48:18: 1080MHz 1.34 11% 6% 4% 1% 0% 0% 65.9°C 0/9 11:48:18: 816MHz 1.34 12% 7% 3% 1% 0% 0% 61.8°C 0/9 11:48:19: 888MHz 1.34 13% 9% 2% 1% 0% 0% 60.3°C 0/9 11:48:19: 1800MHz 1.34 12% 10% 2% 0% 0% 0% 62.2°C 0/9 ### Activated 1 lzo-rle zram swap devices with 994MB each. ### Activated Armbian ramlog partition with zstd compression Tue Jun 28 07:44:49 AM CST 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 ### dmesg: [ 1.271004] i2c_dev: i2c /dev entries driver [ 1.271798] sunxi-wdt 7020400.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.273360] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pm not found, using dummy regulator [ 1.273780] sdhci: Secure Digital Host Controller Interface driver [ 1.273788] sdhci: Copyright(c) Pierre Ossman [ 1.273812] Synopsys Designware Multimedia Card Interface Driver [ 1.274605] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.274770] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.276126] ledtrig-cpu: registered to indicate activity on CPUs [ 1.276686] sun8i-ce 1904000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.276980] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.277121] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.277218] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.277342] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.277430] sun8i-ce 1904000.crypto: Register cbc(aes) [ 1.277588] sun8i-ce 1904000.crypto: Register ecb(aes) [ 1.277706] sun8i-ce 1904000.crypto: Register cbc(des3_ede) [ 1.277822] sun8i-ce 1904000.crypto: Register ecb(des3_ede) [ 1.277932] sun8i-ce 1904000.crypto: Register md5 [ 1.278040] sun8i-ce 1904000.crypto: Register sha1 [ 1.278147] sun8i-ce 1904000.crypto: Register sha224 [ 1.278256] sun8i-ce 1904000.crypto: Register sha256 [ 1.278363] sun8i-ce 1904000.crypto: Register sha384 [ 1.278481] sun8i-ce 1904000.crypto: Register sha512 [ 1.278588] sun8i-ce 1904000.crypto: Register stdrng [ 1.279328] sun8i-ce 1904000.crypto: CryptoEngine Die ID 0 [ 1.279920] hid: raw HID events driver (C) Jiri Kosina [ 1.280051] usbcore: registered new interface driver usbhid [ 1.280059] usbhid: USB HID core driver [ 1.280834] random: crng init done [ 1.283096] NET: Registered PF_INET6 protocol family [ 1.870220] Freeing initrd memory: 12684K [ 1.898842] Segment Routing with IPv6 [ 1.898907] In-situ OAM (IOAM) with IPv6 [ 1.898991] NET: Registered PF_PACKET protocol family [ 1.899097] 8021q: 802.1Q VLAN Support v1.8 [ 1.899247] 9pnet: Installing 9P2000 support [ 1.899322] Key type dns_resolver registered [ 1.899785] registered taskstats version 1 [ 1.899801] Loading compiled-in X.509 certificates [ 1.903658] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' [ 1.906608] zswap: loaded using pool zstd/z3fold [ 1.907226] Key type ._fscrypt registered [ 1.907235] Key type .fscrypt registered [ 1.907240] Key type fscrypt-provisioning registered [ 1.908245] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 1.922095] Key type encrypted registered [ 1.922126] AppArmor: AppArmor sha1 policy hashing enabled [ 1.922166] ima: No TPM chip found, activating TPM-bypass! [ 1.922195] ima: Allocated hash algorithm: sha1 [ 1.922227] ima: No architecture policies found [ 1.922282] evm: Initialising EVM extended attributes: [ 1.922287] evm: security.selinux [ 1.922292] evm: security.SMACK64 [ 1.922296] evm: security.SMACK64EXEC [ 1.922300] evm: security.SMACK64TRANSMUTE [ 1.922304] evm: security.SMACK64MMAP [ 1.922308] evm: security.apparmor [ 1.922313] evm: security.ima [ 1.922317] evm: security.capability [ 1.922321] evm: HMAC attrs: 0x1 [ 1.935406] platform 1100000.mixer: Fixing up cyclic dependency with 6510000.tcon-top [ 1.935756] sun8i-mixer 1100000.mixer: Adding to iommu group 0 [ 1.937838] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.937871] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 1.938040] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f064 hci version 0x100 quirks 0x0000000002010010 [ 1.938102] xhci-hcd xhci-hcd.1.auto: irq 43, io mem 0x05200000 [ 1.938567] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.938584] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.938594] usb usb1: Product: xHCI Host Controller [ 1.938603] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.938611] usb usb1: SerialNumber: xhci-hcd.1.auto [ 1.939145] hub 1-0:1.0: USB hub found [ 1.939190] hub 1-0:1.0: 1 port detected [ 1.939527] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.939547] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.939567] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 1.939664] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.939823] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.939836] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.939846] usb usb2: Product: xHCI Host Controller [ 1.939854] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.939863] usb usb2: SerialNumber: xhci-hcd.1.auto [ 1.940275] hub 2-0:1.0: USB hub found [ 1.940310] hub 2-0:1.0: 1 port detected [ 1.942951] sun50i_cpufreq_nvmem: Using CPU speed bin speed0 [ 1.944731] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 1.951102] of_cfs_init [ 1.951222] of_cfs_init: OK [ 1.951547] ALSA device list: [ 1.951553] No soundcards found. [ 1.952660] Freeing unused kernel memory: 2496K [ 1.985358] Run /init as init process [ 1.985366] with arguments: [ 1.985373] /init [ 1.985378] with environment: [ 1.985383] HOME=/ [ 1.985388] TERM=linux [ 1.985393] ubootpart=ce3dfe46-01 [ 1.985398] cgroup_enable=memory [ 2.197340] usb 1-1: new full-speed USB device number 2 using xhci-hcd [ 2.350433] usb 1-1: New USB device found, idVendor=045e, idProduct=0745, bcdDevice= 6.33 [ 2.350464] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.350474] usb 1-1: Product: Microsoft® 2.4GHz Transceiver v7.0 [ 2.350483] usb 1-1: Manufacturer: Microsoft [ 2.375225] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.0/0003:045E:0745.0001/input/input0 [ 2.438207] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input0 [ 2.442434] axp20x-i2c 0-0036: AXP20x variant AXP806 found [ 2.450726] input: axp20x-pek as /devices/platform/soc/7081400.i2c/i2c-0/0-0036/axp221-pek/input/input1 [ 2.454955] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Mouse as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input2 [ 2.460662] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input3 [ 2.462363] vdd-cpu: supplied by vcc-5v [ 2.463981] vdd-gpu: supplied by vcc-5v [ 2.464566] vdd-sys: Bringing 900000uV into 960000-960000uV [ 2.464950] vdd-sys: supplied by vcc-5v [ 2.465877] vcc-dram: supplied by vcc-5v [ 2.466667] vcc-pl-led-ir: supplied by vcc-5v [ 2.467435] vcc33-audio-tv-ephy-mac: Bringing 700000uV into 3300000-3300000uV [ 2.467815] vcc33-audio-tv-ephy-mac: supplied by vcc-5v [ 2.517838] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input1 [ 2.526830] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input4 [ 2.574062] vcc33-io-pd-emmc-sd-usb-uart-1: Bringing 700000uV into 3300000-3300000uV [ 2.574423] vcc33-io-pd-emmc-sd-usb-uart-1: supplied by vcc-5v [ 2.575457] vcc18-dram-bias-pll: supplied by vcc-5v [ 2.576536] vcc-efuse-pcie-hdmi-pc: supplied by vcc-5v [ 2.577198] vcc-wifi-io-pm-pg: Bringing 700000uV into 1800000-1800000uV [ 2.577534] vcc-wifi-io-pm-pg: supplied by vcc-5v [ 2.578659] bldo4: supplied by vcc-5v [ 2.579187] vcc33-io-pd-emmc-sd-usb-uart-2: supplied by vcc-5v [ 2.580004] cldo2: supplied by vcc-5v [ 2.580651] cldo3: supplied by vcc-5v [ 2.580881] sw: supplied by regulator-dummy [ 2.581462] axp20x-i2c 0-0036: AXP20X driver loaded [ 2.587289] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 System Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input6 [ 2.587787] hid-generic 0003:045E:0745.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input2 [ 2.590166] sun50i-h6-pinctrl 300b000.pinctrl: initialized sunXi PIO driver [ 2.590661] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pb not found, using dummy regulator [ 2.591648] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator [ 2.592259] printk: console [ttyS0] disabled [ 2.592370] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 35, base_baud = 1500000) is a 16550A [ 2.592603] printk: console [ttyS0] enabled [ 2.594026] sun4i-drm display-engine: Adding to iommu group 0 [ 2.614241] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) [ 2.614521] sun4i-drm display-engine: bound 6510000.tcon-top (ops 0xffff800008e1abb8) [ 2.614859] sun4i-drm display-engine: bound 6515000.lcd-controller (ops 0xffff800008e11ba0) [ 2.614950] sun8i-dw-hdmi 6000000.hdmi: supply hvcc not found, using dummy regulator [ 2.615547] sun8i-dw-hdmi 6000000.hdmi: Detected HDMI TX controller v2.12a with HDCP (DWC HDMI 2.0 TX PHY) [ 2.615931] sun8i-dw-hdmi 6000000.hdmi: EVENT=plugin [ 2.616321] sun8i-dw-hdmi 6000000.hdmi: registered DesignWare HDMI I2C bus driver [ 2.616766] sun4i-drm display-engine: bound 6000000.hdmi (ops 0xffff800008e15cc8) [ 2.627717] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 2.627781] sun8i-dw-hdmi 6000000.hdmi: read_hpd result: 1 [ 2.785963] Console: switching to colour frame buffer device 240x67 [ 2.835811] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device [ 2.857467] acx00-codec acx00-codec: DMA mask not set [ 2.859822] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.862436] sunxi-mmc 4020000.mmc: Got CD GPIO [ 2.862855] vcc-wifi-io: supplied by vcc33-wifi [ 2.865691] ehci-platform 5101000.usb: EHCI Host Controller [ 2.865735] ehci-platform 5101000.usb: new USB bus registered, assigned bus number 3 [ 2.865880] ehci-platform 5101000.usb: irq 41, io mem 0x05101000 [ 2.885309] ehci-platform 5101000.usb: USB 2.0 started, EHCI 1.00 [ 2.885313] sunxi-mmc 4022000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 2.885574] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.885643] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.885658] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.885669] usb usb3: Product: EHCI Host Controller [ 2.885677] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.885686] usb usb3: SerialNumber: 5101000.usb [ 2.886286] hub 3-0:1.0: USB hub found [ 2.886349] hub 3-0:1.0: 1 port detected [ 2.887655] ehci-platform 5311000.usb: EHCI Host Controller [ 2.887708] ehci-platform 5311000.usb: new USB bus registered, assigned bus number 4 [ 2.887848] ehci-platform 5311000.usb: irq 44, io mem 0x05311000 [ 2.905298] ehci-platform 5311000.usb: USB 2.0 started, EHCI 1.00 [ 2.905653] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.905668] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.905678] usb usb4: Product: EHCI Host Controller [ 2.905687] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.905695] usb usb4: SerialNumber: 5311000.usb [ 2.906266] hub 4-0:1.0: USB hub found [ 2.906311] hub 4-0:1.0: 1 port detected [ 2.907463] ohci-platform 5101400.usb: Generic Platform OHCI controller [ 2.907502] ohci-platform 5101400.usb: new USB bus registered, assigned bus number 5 [ 2.907639] ohci-platform 5101400.usb: irq 42, io mem 0x05101400 [ 2.920322] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.922092] mmc0: Problem switching card into high-speed mode! [ 2.922211] mmc0: new SDHC card at address 0001 [ 2.923101] mmcblk0: mmc0:0001 USD 29.8 GiB [ 2.925179] mmcblk0: p1 [ 2.969595] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.969624] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.969635] usb usb5: Product: Generic Platform OHCI controller [ 2.969643] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 2.969652] usb usb5: SerialNumber: 5101400.usb [ 2.970330] hub 5-0:1.0: USB hub found [ 2.970383] hub 5-0:1.0: 1 port detected [ 2.971617] ohci-platform 5311400.usb: Generic Platform OHCI controller [ 2.971660] ohci-platform 5311400.usb: new USB bus registered, assigned bus number 6 [ 2.971801] ohci-platform 5311400.usb: irq 45, io mem 0x05311400 [ 3.017445] mmc2: new HS200 MMC card at address 0001 [ 3.018424] mmcblk2: mmc2:0001 8GTF4R 7.28 GiB [ 3.020685] mmcblk2boot0: mmc2:0001 8GTF4R 4.00 MiB [ 3.022339] mmcblk2boot1: mmc2:0001 8GTF4R 4.00 MiB [ 3.033624] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.033662] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.033673] usb usb6: Product: Generic Platform OHCI controller [ 3.033682] usb usb6: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 3.033690] usb usb6: SerialNumber: 5311400.usb [ 3.034410] hub 6-0:1.0: USB hub found [ 3.034470] hub 6-0:1.0: 1 port detected [ 3.035805] usb_phy_generic usb_phy_generic.4.auto: supply vcc not found, using dummy regulator [ 3.036009] usb_phy_generic usb_phy_generic.4.auto: dummy supplies not allowed for exclusive requests [ 3.133661] musb-hdrc musb-hdrc.5.auto: MUSB HDRC host driver [ 3.133704] musb-hdrc musb-hdrc.5.auto: new USB bus registered, assigned bus number 7 [ 3.133977] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.133993] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.134004] usb usb7: Product: MUSB HDRC host driver [ 3.134012] usb usb7: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd [ 3.134020] usb usb7: SerialNumber: musb-hdrc.5.auto [ 3.134715] hub 7-0:1.0: USB hub found [ 3.134773] hub 7-0:1.0: 1 port detected [ 3.150722] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found [ 3.150748] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found [ 3.151052] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator [ 3.151322] dwmac-sun8i 5020000.ethernet: PTP uses main clock [ 3.151370] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 58000 (expect 50000) [ 3.257560] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported [ 3.257587] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported [ 3.257594] dwmac-sun8i 5020000.ethernet: COE Type 2 [ 3.257604] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported [ 3.257612] dwmac-sun8i 5020000.ethernet: Normal descriptors [ 3.257619] dwmac-sun8i 5020000.ethernet: Chain mode enabled [ 3.485042] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 3.701321] usb 5-1: new full-speed USB device number 2 using ohci-platform [ 3.938354] usb 5-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10 [ 3.938383] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.938394] usb 5-1: Product: USB Receiver [ 3.938402] usb 5-1: Manufacturer: Logitech [ 3.947518] input: Logitech USB Receiver as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.0/0003:046D:C52B.0004/input/input7 [ 4.006002] hid-generic 0003:046D:C52B.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-5101400.usb-1/input0 [ 4.012208] input: Logitech USB Receiver Mouse as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input8 [ 4.012665] input: Logitech USB Receiver Consumer Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input9 [ 4.069662] input: Logitech USB Receiver System Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input10 [ 4.070031] hid-generic 0003:046D:C52B.0005: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-5101400.usb-1/input1 [ 4.074797] hid-generic 0003:046D:C52B.0006: hiddev98,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 4.780230] systemd[1]: System time before build time, advancing clock. [ 4.868365] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 4.877545] systemd[1]: systemd 249.11-0ubuntu3.1 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 4.878226] systemd[1]: Detected architecture arm64. [ 4.881592] systemd[1]: Hostname set to <orangepi3-lts>. [ 5.101862] sunxi-mmc 4021000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 5.119516] mmc1: new high speed SDIO card at address 8800 [ 6.293876] systemd[1]: Queued start job for default target Graphical Interface. [ 6.299750] systemd[1]: Created slice Slice /system/modprobe. [ 6.302537] systemd[1]: Created slice Slice /system/serial-getty. [ 6.304385] systemd[1]: Created slice User and Session Slice. [ 6.305369] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.306819] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 6.307696] systemd[1]: Reached target Remote File Systems. [ 6.308041] systemd[1]: Reached target Slice Units. [ 6.308380] systemd[1]: Reached target Swaps. [ 6.308677] systemd[1]: Reached target System Time Set. [ 6.309210] systemd[1]: Reached target Local Verity Protected Volumes. [ 6.310301] systemd[1]: Listening on Syslog Socket. [ 6.311159] systemd[1]: Listening on fsck to fsckd communication Socket. [ 6.311801] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 6.313180] systemd[1]: Listening on Journal Audit Socket. [ 6.314227] systemd[1]: Listening on Journal Socket (/dev/log). [ 6.315211] systemd[1]: Listening on Journal Socket. [ 6.326975] systemd[1]: Listening on udev Control Socket. [ 6.328076] systemd[1]: Listening on udev Kernel Socket. [ 6.332683] systemd[1]: Mounting Huge Pages File System... [ 6.338074] systemd[1]: Mounting POSIX Message Queue File System... [ 6.343823] systemd[1]: Mounting Kernel Debug File System... [ 6.345097] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 6.352304] systemd[1]: Starting Restore / save the current clock... [ 6.358015] systemd[1]: Starting Set the console keyboard layout... [ 6.364390] systemd[1]: Starting Create List of Static Device Nodes... [ 6.371017] systemd[1]: Starting Load Kernel Module configfs... [ 6.377727] systemd[1]: Starting Load Kernel Module drm... [ 6.384315] systemd[1]: Starting Load Kernel Module fuse... [ 6.391403] systemd[1]: Started Nameserver information manager. [ 6.392936] systemd[1]: Reached target Preparation for Network. [ 6.394122] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 6.406943] systemd[1]: Starting Load Kernel Modules... [ 6.412637] systemd[1]: Starting Remount Root and Kernel File Systems... [ 6.418869] systemd[1]: Starting Coldplug All udev Devices... [ 6.429912] systemd[1]: Mounted Huge Pages File System. [ 6.431274] systemd[1]: Mounted POSIX Message Queue File System. [ 6.432661] systemd[1]: Mounted Kernel Debug File System. [ 6.435426] systemd[1]: Finished Restore / save the current clock. [ 6.438862] systemd[1]: Finished Create List of Static Device Nodes. [ 6.439496] fuse: init (API version 7.34) [ 6.441770] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 6.443183] systemd[1]: Finished Load Kernel Module configfs. [ 6.446061] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 6.447247] systemd[1]: Finished Load Kernel Module drm. [ 6.449663] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 6.450951] systemd[1]: Finished Load Kernel Module fuse. [ 6.458776] systemd[1]: Mounting FUSE Control File System... [ 6.464040] systemd[1]: Mounting Kernel Configuration File System... [ 6.474677] systemd[1]: Mounted FUSE Control File System. [ 6.475071] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 6.481615] systemd[1]: Finished Remount Root and Kernel File Systems. [ 6.483009] systemd[1]: Mounted Kernel Configuration File System. [ 6.483907] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 6.488816] systemd[1]: Starting Load/Save Random Seed... [ 6.494729] systemd[1]: Starting Create System Users... [ 6.660140] WCN: marlin_init entry! [ 6.660666] WCN: wcn config bt wake host [ 6.660887] WCN_ERR: dts node for bt_wake not found [ 6.660891] WCN: marlin2 parse_dt some para not config [ 6.660903] sdiohal:sdiohal_parse_dt adma_tx:1, adma_rx:1, pwrseq:0, irq type:data, gpio_num:0, blksize:840 [ 6.665745] sdiohal:sdiohal_init ok [ 6.666445] WCN: marlin_probe ok! [ 6.691458] mtty_probe init device addr: 0x00000000009926d4 [ 6.691698] -->rfkill_bluetooth_init [ 6.691861] bluetooth_set_power: start_block=1 [ 6.691875] WCN: marlin power state:0, subsys: [MARLIN_BLUETOOTH] power 0 [ 6.691886] bluetooth_set_power: end_block=1 [ 6.691905] <--rfkill_bluetooth_init [ 6.715886] systemd[1]: Finished Load/Save Random Seed. [ 6.718379] systemd[1]: Finished Create System Users. [ 6.719559] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 6.724878] systemd[1]: Starting Create Static Device Nodes in /dev... [ 6.796727] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 6.798565] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 6.819533] [ADDR_MGT] addr_mgt_probe: module version: v1.0.9 [ 6.819648] [ADDR_MGT] addr_mgt_probe: success. [ 6.863106] systemd[1]: Finished Set the console keyboard layout. [ 6.887348] WCN: start_marlin [MARLIN_WIFI] [ 6.887375] WCN: marlin power state:0, subsys: [MARLIN_WIFI] power 1 [ 6.887385] WCN: the first power on start [ 6.894415] systemd[1]: Finished Create Static Device Nodes in /dev. [ 6.901977] systemd[1]: Reached target Preparation for Local File Systems. [ 6.914256] systemd[1]: Mounting /tmp... [ 6.928825] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 6.939787] systemd[1]: Mounted /tmp. [ 6.947152] systemd[1]: Reached target Local File Systems. [ 6.959184] systemd[1]: Starting Armbian leds state... [ 6.971551] systemd[1]: Starting Armbian ZRAM config... [ 6.984210] systemd[1]: Starting Set console font and keymap... [ 6.993355] WCN: marlin chip en dummy pull up -- need manually set GPIO [ 6.996364] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 7.021397] sdiohal:sdiohal_scan_card [ 7.021668] sdiohal:sdiohal_probe: func->class=0, vendor=0x0000, device=0x0000, func_num=0x0001, clock=50000000 [ 7.021795] systemd[1]: Starting Set Up Additional Binary Formats... [ 7.021816] WCN: marlin_scan_finish! [ 7.021823] sdiohal:probe ok [ 7.021979] sdiohal:scan end! [ 7.021987] WCN: then marlin start to download [ 7.022257] WCN: marlin_get_wcn_chipid: chipid: 0x2355b001 [ 7.022272] WCN: marlin_request_firmware from /lib/firmware/wcnmodem.bin start! [ 7.029127] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 7.029487] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 7.032823] systemd[1]: Finished Set console font and keymap. [ 7.046131] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 365 (systemd-binfmt) [ 7.052057] systemd[1]: Mounting Arbitrary Executable File Formats File System... [ 7.083231] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 7.134889] systemd[1]: Finished Coldplug All udev Devices. [ 7.189454] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 7.200737] systemd[1]: Mounted Arbitrary Executable File Formats File System. [ 7.220106] systemd[1]: Finished Set Up Additional Binary Formats. [ 7.250460] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 7.311656] systemd[1]: Finished Armbian leds state. [ 7.592733] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 7.600572] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 7.601200] systemd[1]: Started Dispatch Password Requests to Console Directory Watch when bootsplash is active. [ 7.616428] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 7.616576] systemd[1]: Reached target Local Encrypted Volumes. [ 7.674195] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 7.714809] systemd[1]: Starting Load/Save RF Kill Switch Status... [ 7.775762] bluetooth_set_power: start_block=0 [ 7.775792] WCN: start_marlin [MARLIN_BLUETOOTH] [ 7.975324] zram: Added device: zram0 [ 7.975654] zram: Added device: zram1 [ 7.976033] zram: Added device: zram2 [ 8.094917] WCN: combin_img 0 marlin_firmware_write finish and successful [ 8.095242] WCN: marlin_start_run read reset reg val:0x1 [ 8.095250] WCN: after do marlin_start_run reset reg val:0x0 [ 8.095433] WCN: s_marlin_bootup_time=8095432843 [ 8.101544] WCN: clock mode: TSX [ 8.101736] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.132768] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.159666] WCN: marlin_write_cali_data sync init_state:0xf0f0f0f1 [ 8.159698] WCN: sdio_config bt_wake_host trigger:[high] [ 8.159701] WCN: sdio_config irq:[inband] [ 8.159703] WCN: sdio_config wake_host_level_duration_time:[20ms] [ 8.159708] WCN: sdio_config wake_host_data_separation:[bt/wifi reuse] [ 8.159710] WCN: marlin_send_sdio_config_to_cp sdio_config:0x80f01 (enable config) [ 8.160558] WCN: marlin_write_cali_data finish [ 8.161314] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.177333] mc: Linux media interface: v0.10 [ 8.190592] panfrost 1800000.gpu: clock rate = 432000000 [ 8.190630] panfrost 1800000.gpu: bus_clock rate = 100000000 [ 8.191105] panfrost 1800000.gpu: mali-t720 id 0x720 major 0x1 minor 0x1 status 0x0 [ 8.191128] panfrost 1800000.gpu: features: 00000000,10309e40, issues: 00000000,21054400 [ 8.191136] panfrost 1800000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002821 AS:0xf JS:0x7 [ 8.191144] panfrost 1800000.gpu: shader_present=0x3 l2_present=0x1 [ 8.191541] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.192979] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 1 [ 8.217760] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.228323] videodev: Linux video capture interface: v2.00 [ 8.248869] zram0: detected capacity change from 0 to 2037304 [ 8.249575] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.279502] systemd[1]: Found device /dev/ttyS0. [ 8.287283] WCN: check_cp_ready sync val:0xf0f0f0f6, prj_type val:0x0 [ 8.287302] WCN: marlin_bind_verify confuse data: 0xe5ae06b9a313020e4477650022a32ad5 [ 8.287317] WCN: marlin_bind_verify verify data: 0xa5ab8048e6a32ce226d910652b504834 [ 8.288057] WCN: check_cp_ready sync val:0xf0f0f0f8, prj_type val:0x0 [ 8.313569] WCN: check_cp_ready sync val:0xf0f0f0ff, prj_type val:0x0 [ 8.313595] sdiohal:sdiohal_runtime_get entry [ 8.317949] WCN: get_cp2_version entry! [ 8.337651] Adding 1018648k swap on /dev/zram0. Priority:5 extents:1 across:1018648k SSFS [ 8.357401] WCN: WCND at cmd read:WCN_VER:Platform Version:MARLIN3_19B_W20.37.4~Project Version:sc2355_marlin3_lite_ott~09-11-2020 21:27:32~ [ 8.358024] WCN: switch_cp2_log - close entry! [ 8.359418] WCN: WCND at cmd read:OK [ 8.359553] WCN: then marlin download finished and run ok [ 8.359585] WCN: start_loopcheck [ 8.359607] WCN: marlin power state:4, subsys: [MARLIN_BLUETOOTH] power 1 [ 8.359615] WCN: marlin have open, GNSS is closed [ 8.359620] bluetooth_set_power: end_block=0 [ 8.377701] systemd[1]: Started Load/Save RF Kill Switch Status. [ 8.392873] WCN: get_board_ant_num [one_ant] [ 8.392894] wifi ini path = /lib/firmware/wifi_2355b001_1ant.ini [ 8.421557] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. [ 8.426838] cedrus 1c0e000.video-codec: Adding to iommu group 0 [ 8.435265] cedrus 1c0e000.video-codec: Device registered as /dev/video0 [ 8.475450] Registered IR keymap rc-empty [ 8.493733] rc rc0: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0 [ 8.508606] rc rc0: lirc_dev: driver sunxi-ir registered at minor = 0, raw IR receiver, no transmitter [ 8.514745] input: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0/input12 [ 8.515268] sunxi-ir 7040000.ir: initialized sunXi IR driver [ 8.558655] unisoc_wifi unisoc_wifi wlan0: mixed HW and IP checksum settings. [ 8.571387] zram1: detected capacity change from 0 to 102400 [ 8.589949] systemd[1]: Finished Load Kernel Modules. [ 8.626023] systemd[1]: Starting Apply Kernel Variables... [ 8.701400] systemd[1]: Finished Armbian ZRAM config. [ 8.724623] systemd[1]: Starting Armbian memory supported logging... [ 8.741406] systemd[1]: Finished Apply Kernel Variables. [ 8.759248] systemd[1]: Starting Raise network interfaces... [ 8.928132] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 9.050204] logitech-djreceiver 0003:046D:C52B.0006: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 9.206494] input: Logitech Wireless Device PID:4004 Keyboard as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input13 [ 9.274225] hid-generic 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4004] on usb-5101400.usb-1/input2:1 [ 9.465060] input: Logitech K360 as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input17 [ 9.465977] logitech-hidpp-device 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K360] on usb-5101400.usb-1/input2:1 [ 9.758059] systemd[1]: Finished Raise network interfaces. [ 9.909199] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.909534] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.909890] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 9.913981] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.914092] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.914197] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.914269] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 9.998835] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.999036] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.999099] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.999176] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.999275] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.999378] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 11.570712] systemd[1]: Finished Armbian memory supported logging. [ 11.580348] systemd[1]: Starting Journal Service... [ 11.722747] systemd[1]: Started Journal Service. [ 11.751364] systemd-journald[691]: Received client request to flush runtime journal. ### armbian-release: # PLEASE DO NOT EDIT THIS FILE BOARD=orangepi3-lts BOARD_NAME="Orange Pi 3 LTS" BOARDFAMILY=sun50iw6 BUILD_REPOSITORY_URL=https://github.com/armbian/build BUILD_REPOSITORY_COMMIT=13f5fba13c VERSION=22.05.3 LINUXFAMILY=sunxi64 ARCH=arm64 IMAGE_TYPE=stable BOARD_TYPE=conf INITRD_ARCH=arm64 KERNEL_IMAGE_TYPE=stable BRANCH=current ### boot environment: verbosity=1 bootlogo=false console=both disp_mode=1920x1080p60 overlay_prefix=sun50i-h6 rootdev=UUID=71b44a6c-5bb8-4352-afe7-d22b8e62de4c rootfstype=ext4 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u ### lsusb: Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 005 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ### lscpu: Architecture: aarch64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 4 On-line CPU(s) list: 0-3 Vendor ID: ARM Model name: Cortex-A53 Model: 4 Thread(s) per core: 1 Core(s) per cluster: 4 Socket(s): - Cluster(s): 1 Stepping: r0p4 CPU max MHz: 1800.0000 CPU min MHz: 480.0000 BogoMIPS: 48.00 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid NUMA node(s): 1 NUMA node0 CPU(s): 0-3 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Spec store bypass: Not affected Vulnerability Spectre v1: Mitigation; __user pointer sanitization Vulnerability Spectre v2: Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected ### cpuinfo: processor : 0 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 1 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 2 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 3 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 ### meminfo: MemTotal: 2037300 kB MemFree: 1845816 kB MemAvailable: 1851728 kB Buffers: 12532 kB Cached: 53568 kB SwapCached: 0 kB Active: 32208 kB Inactive: 52908 kB Active(anon): 444 kB Inactive(anon): 22100 kB Active(file): 31764 kB Inactive(file): 30808 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 1018648 kB SwapFree: 1018648 kB Dirty: 3392 kB Writeback: 0 kB AnonPages: 19056 kB Mapped: 16768 kB Shmem: 3388 kB KReclaimable: 10580 kB Slab: 45824 kB SReclaimable: 10580 kB SUnreclaim: 35244 kB KernelStack: 2464 kB PageTables: 1652 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 2037296 kB Committed_AS: 42432 kB VmallocTotal: 133143592960 kB VmallocUsed: 22700 kB VmallocChunk: 0 kB Percpu: 976 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB FileHugePages: 0 kB FilePmdMapped: 0 kB CmaTotal: 131072 kB CmaFree: 128768 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB Hugetlb: 0 kB ### virtual memory: vm.admin_reserve_kbytes = 8192 vm.compaction_proactiveness = 20 vm.compact_unevictable_allowed = 1 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 20 vm.dirtytime_expire_seconds = 43200 vm.dirty_writeback_centisecs = 500 vm.extfrag_threshold = 500 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 0 vm.max_map_count = 65530 vm.min_free_kbytes = 22528 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 32768 vm.mmap_rnd_bits = 18 vm.mmap_rnd_compat_bits = 11 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 0 vm.page_lock_unfairness = 5 vm.panic_on_oom = 0 vm.percpu_pagelist_high_fraction = 0 vm.stat_interval = 1 vm.swappiness = 100 vm.user_reserve_kbytes = 63004 vm.vfs_cache_pressure = 100 vm.watermark_boost_factor = 15000 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0 ### ip addr: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 02:07:29:30:86:8c brd ff:ff:ff:ff:ff:ff 3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 00:32:c3:9f:6a:08 brd ff:ff:ff:ff:ff:ff ### partitions: major minor #blocks name 179 0 31205376 mmcblk0 179 1 30879744 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 ### df: tmpfs 199M 3.4M 196M 2% /run /dev/mmcblk0p1 29G 5.1G 24G 18% / tmpfs 995M 0 995M 0% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 995M 0 995M 0% /tmp /dev/zram1 47M 3.3M 41M 8% /var/log ### lsblk: NAME FSTYPE SIZE MOUNTPOINT UUID mmcblk0 29.8G └─mmcblk0p1 ext4 29.4G / 71b44a6c-5bb8-4352-afe7-d22b8e62de4c mmcblk2 swap 7.3G 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot0 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot1 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 zram1 50M /var/log zram2 0B ### zramctl: NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT /dev/zram1 zstd 50M 68K 728B 44K 4 /var/log /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] ### mtab: /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 ### mmc0:0001 info: fwrev: 0x0 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=USD MODALIAS=mmc:block cid: 1d414455534400001000005ae0016181 rca: 0x0001 csd: 400e00325b590000ee137f800a40004d manfid: 0x00001d ocr: 0x00200000 preferred_erase_size: 4194304 type: SD hwrev: 0x1 date: 01/2022 dsr: 0x404 erase_size: 512 oemid: 0x4144 serial: 0x00005ae0 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 scr: 02b5808200000000 name: USD ### mmc2:0001 info: fwrev: 0x0600000000000000 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=8GTF4R MODALIAS=mmc:block cid: 15010038475446345206d410e21fc801 rel_sectors: 0x1 enhanced_rpmb_supported: 0x1 rca: 0x0001 pre_eol_info: 0x01 csd: d02701320f5903fff6dbffef8e40400d manfid: 0x000015 ocr: 0x00200000 preferred_erase_size: 4194304 enhanced_area_offset: 18446744073709551594 raw_rpmb_size_mult: 0x4 type: MMC hwrev: 0x0 date: 12/2021 prv: 0x6 ffu_capable: 1 dsr: 0x404 erase_size: 524288 life_time: 0x01 0x01 enhanced_area_size: 4294967274 oemid: 0x0100 serial: 0xd410e21f cmdq_en: 0 rev: 0x8 name: 8GTF4R ### Boot system health: Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 07:44:50: 1704MHz 1.34 47% 20% 14% 0% 12% 0% 59.7°C 0/9 07:44:51: 1320MHz 1.34 11% 6% 3% 1% 0% 0% 59.7°C 0/9 07:44:51: 1080MHz 1.34 18% 11% 4% 1% 0% 0% 55.4°C 0/9 07:44:52: 1080MHz 1.34 11% 7% 2% 1% 0% 0% 54.6°C 0/9 07:44:52: 1080MHz 1.34 19% 15% 2% 0% 0% 0% 54.6°C 0/9
  11. Hi everyone. When I tried plug in my banana pi to tv (rca video(AV),). I can see only boot(where label armbian). maybe need special resolution, i tried 800x600, 640x480, nothing.
  12. On H3, this can be done by editing script.bin That file has been replaced by Device Tree on H5 board, /boot/orangepi/OrangePiH5orangepi.dtb However, many have reported that editing that file can not enable RCA, see https://github.com/OrangePiLibra/OrangePi_H5SDK/issues/7 So what should I do to enable it? Is there an easy way to do it without compiling the kernel?
  13. On orange pi pc I am using armbian leatest version. But Cannot enable video out (rca) on orange pi pc. Please help me.
  14. Hello Everyone! I'm currently working on a nano pi m4b with a rockchip 3399 processor on it. I need to use an USB camera for my application but I am experiencing some issues that have been really hard to track down lately. First of all I'm using a 5 mega pixels camera with a OV5640 CMOS sensor and I experience some glitches with the image while live streaming. Besides that, I can only get an image while connected to USB 2.0, the 3.0 gives me a black screen with sporadic glitched frames. I'm running Linux 4.4.213-rk3399 on it and here are the dmesg dump logs I'm geting. Has anyone else had this kind of issue? [Feb24 19:13] Booting Linux on physical CPU 0x0 [ +0.000000] Initializing cgroup subsys cpuset [ +0.000000] Initializing cgroup subsys cpu [ +0.000000] Initializing cgroup subsys cpuacct [ +0.000000] Linux version 4.4.213-rk3399 (root@beast) (gcc version 9.2.1 20191025 (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) ) #1 SMP Fri Nov 20 20:43:09 CET 2020 [ +0.000000] Boot CPU: AArch64 Processor [410fd034] [ +0.000000] Reserved memory: failed to reserve memory for node 'drm-logo@00000000': base 0x0000000000000000, size 0 MiB [ +0.000000] On node 0 totalpages: 523776 [ +0.000000] DMA zone: 8184 pages used for memmap [ +0.000000] DMA zone: 0 pages reserved [ +0.000000] DMA zone: 523776 pages, LIFO batch:31 [ +0.000000] psci: probing for conduit method from DT. [ +0.000000] psci: PSCIv1.0 detected in firmware. [ +0.000000] psci: Using standard PSCI v0.2 function IDs [ +0.000000] psci: MIGRATE_INFO_TYPE not supported. [ +0.000000] psci: SMC Calling Convention v1.0 [ +0.000000] PERCPU: Embedded 20 pages/cpu @ffffffc07fee5000 s42216 r8192 d31512 u81920 [ +0.000000] pcpu-alloc: s42216 r8192 d31512 u81920 alloc=20*4096 [ +0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [ +0.000000] Detected VIPT I-cache on CPU0 [ +0.000000] CPU features: enabling workaround for ARM erratum 845719 [ +0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 515592 [ +0.000000] Kernel command line: root=LABEL=SYSTEM rootwait rootfstype=ext4 console=ttyS2,1500000 console=tty1 consoleblank=0 loglevel=1 ubootpart=15158a89-01 usb-storage.quirks=0x2537:0x1066:u,0x2537:0x1068:u usbcore.autosuspend=-1 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1 [ +0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ +0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [ +0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ +0.000000] software IO TLB: mapped [mem 0x757a7000-0x797a7000] (64MB) [ +0.000000] Memory: 1962680K/2095104K available (11518K kernel code, 1402K rwdata, 6140K rodata, 1088K init, 1954K bss, 132424K reserved, 0K cma-reserved) [ +0.000000] Virtual kernel memory layout: modules : 0xffffff8000000000 - 0xffffff8008000000 ( 128 MB) vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000 ( 246 GB) .init : 0xffffff80091d0000 - 0xffffff80092e0000 ( 1088 KB) .text : 0xffffff8008080000 - 0xffffff8008bc0000 ( 11520 KB) .rodata : 0xffffff8008bc0000 - 0xffffff80091d0000 ( 6208 KB) .data : 0xffffff80092e0000 - 0xffffff800943e808 ( 1403 KB) vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000 ( 8 GB maximum) 0xffffffbdc0008000 - 0xffffffbdc2000000 ( 31 MB actual) fixed : 0xffffffbffe7fb000 - 0xffffffbffec00000 ( 4116 KB) PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000 ( 16 MB) memory : 0xffffffc000200000 - 0xffffffc080000000 ( 2046 MB) [ +0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 [ +0.000000] Hierarchical RCU implementation. [ +0.000000] Build-time adjustment of leaf fanout to 64. [ +0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6. [ +0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=6 [ +0.000000] NR_IRQS:64 nr_irqs:64 0 [ +0.000000] GIC: Using split EOI/Deactivate mode [ +0.000000] ITS: /interrupt-controller@fee00000/interrupt-controller@fee20000 [ +0.000000] ITS: allocated 65536 Devices @7d500000 (psz 64K, shr 0) [ +0.000000] ITS: using cache flushing for cmd queue [ +0.000000] GIC: using LPI property table @0x000000007d490000 [ +0.000000] ITS: Allocated 1792 chunks for LPIs [ +0.000000] CPU0: found redistributor 0 region 0:0x00000000fef00000 [ +0.000000] CPU0: using LPI pending table @0x000000007d4a0000 [ +0.000000] GIC: using cache flushing for LPI property table [ +0.000000] GIC: PPI partition interrupt-partition-0[0] { /cpus/cpu@0[0] /cpus/cpu@1[1] /cpus/cpu@2[2] /cpus/cpu@3[3] } [ +0.000000] GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@100[4] /cpus/cpu@101[5] } [ +0.000000] rockchip_mmc_get_phase: invalid clk rate [ +0.000000] rockchip_mmc_get_phase: invalid clk rate [ +0.000000] rockchip_mmc_get_phase: invalid clk rate [ +0.000000] rockchip_mmc_get_phase: invalid clk rate [ +0.000000] rockchip_clk_register_frac_branch: could not find dclk_vop0_frac as parent of dclk_vop0, rate changes may not work [ +0.000000] rockchip_clk_register_frac_branch: could not find dclk_vop1_frac as parent of dclk_vop1, rate changes may not work [ +0.000000] Architected cp15 timer(s) running at 24.00MHz (phys). [ +0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ +0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ +0.001462] Console: colour dummy device 80x25 [ +0.000205] console [tty1] enabled [ +0.000023] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ +0.000012] pid_max: default: 32768 minimum: 301 [ +0.000115] Security Framework initialized [ +0.000011] Yama: becoming mindful. [ +0.000022] AppArmor: AppArmor disabled by boot time parameter [ +0.000052] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) [ +0.000012] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) [ +0.000704] Initializing cgroup subsys io [ +0.000019] Initializing cgroup subsys memory [ +0.000032] Initializing cgroup subsys devices [ +0.000014] Initializing cgroup subsys freezer [ +0.000013] Initializing cgroup subsys net_cls [ +0.000012] Initializing cgroup subsys perf_event [ +0.000013] Initializing cgroup subsys net_prio [ +0.000018] Initializing cgroup subsys hugetlb [ +0.000011] Initializing cgroup subsys pids [ +0.000040] ftrace: allocating 41759 entries in 164 pages [ +0.111603] sched-energy: Sched-energy-costs installed from DT [ +0.000019] CPU0: update cpu_capacity 401 [ +0.000054] ASID allocator initialised with 32768 entries [ +0.002899] PCI/MSI: /interrupt-controller@fee00000/interrupt-controller@fee20000 domain created [ +0.000554] Platform MSI: /interrupt-controller@fee00000/interrupt-controller@fee20000 domain created [ +0.001348] Detected VIPT I-cache on CPU1 [ +0.000032] CPU1: found redistributor 1 region 0:0x00000000fef20000 [ +0.000030] CPU1: using LPI pending table @0x000000007d720000 [ +0.000044] CPU1: update cpu_capacity 401 [ +0.000004] CPU1: Booted secondary processor [410fd034] [ +0.000547] Detected VIPT I-cache on CPU2 [ +0.000021] CPU2: found redistributor 2 region 0:0x00000000fef40000 [ +0.000028] CPU2: using LPI pending table @0x000000007d750000 [ +0.000027] CPU2: update cpu_capacity 401 [ +0.000004] CPU2: Booted secondary processor [410fd034] [ +0.000516] Detected VIPT I-cache on CPU3 [ +0.000020] CPU3: found redistributor 3 region 0:0x00000000fef60000 [ +0.000027] CPU3: using LPI pending table @0x000000007d7a0000 [ +0.000026] CPU3: update cpu_capacity 401 [ +0.000004] CPU3: Booted secondary processor [410fd034] [ +0.000531] Detected PIPT I-cache on CPU4 [ +0.000026] CPU4: found redistributor 100 region 0:0x00000000fef80000 [ +0.000038] CPU4: using LPI pending table @0x000000007d7e0000 [ +0.000038] CPU4: update cpu_capacity 1024 [ +0.000003] CPU4: Booted secondary processor [410fd082] [ +0.000560] Detected PIPT I-cache on CPU5 [ +0.000018] CPU5: found redistributor 101 region 0:0x00000000fefa0000 [ +0.000036] CPU5: using LPI pending table @0x000000007cc10000 [ +0.000026] CPU5: update cpu_capacity 1024 [ +0.000003] CPU5: Booted secondary processor [410fd082] [ +0.000088] Brought up 6 CPUs [ +0.000086] SMP: Total of 6 processors activated. [ +0.000009] CPU features: detected feature: GIC system register CPU interface [ +0.000010] CPU features: detected feature: 32-bit EL0 Support [ +0.000011] CPU: All CPU(s) started at EL2 [ +0.000046] alternatives: patching kernel code [ +0.001384] devtmpfs: initialized [ +0.018199] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ +0.000024] futex hash table entries: 2048 (order: 5, 131072 bytes) [ +0.000471] xor: measuring software checksum speed [ +0.039147] 8regs : 2855.000 MB/sec [ +0.040061] 8regs_prefetch: 2552.000 MB/sec [ +0.040061] 32regs : 3211.000 MB/sec [ +0.040061] 32regs_prefetch: 2843.000 MB/sec [ +0.000006] xor: using function: 32regs (3211.000 MB/sec) [ +0.000021] pinctrl core: initialized pinctrl subsystem [ +0.000226] regulator-dummy: no parameters [ +0.000539] NET: Registered protocol family 16 [ +0.007129] cpuidle: using governor ladder [ +0.008006] cpuidle: using governor menu [ +0.000023] Registered FIQ tty driver [ +0.000290] vdso: 2 pages (1 code @ ffffff8008bc6000, 1 data @ ffffff80092e5000) [ +0.000027] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ +0.000163] DMA: preallocated 256 KiB pool for atomic allocations [ +0.016791] gpiochip_add_data: registered GPIOs 0 to 31 on device: gpio0 [ +0.000076] gpiochip_add_data: registered GPIOs 32 to 63 on device: gpio1 [ +0.000070] gpiochip_add_data: registered GPIOs 64 to 95 on device: gpio2 [ +0.000071] gpiochip_add_data: registered GPIOs 96 to 127 on device: gpio3 [ +0.000069] gpiochip_add_data: registered GPIOs 128 to 159 on device: gpio4 [ +0.007650] console [pstore-1] enabled [ +0.000008] pstore: Registered ramoops as persistent store backend [ +0.000009] ramoops: attached 0xf0000@0x110000, ecc: 0/0 [ +0.003155] console [ttyFIQ0] enabled [ +0.000220] Registered fiq debugger ttyFIQ0 [ +0.075693] raid6: int64x1 gen() 450 MB/s [ +0.068094] raid6: int64x1 xor() 410 MB/s [ +0.068119] raid6: int64x2 gen() 765 MB/s [ +0.068083] raid6: int64x2 xor() 596 MB/s [ +0.068117] raid6: int64x4 gen() 1072 MB/s [ +0.068078] raid6: int64x4 xor() 666 MB/s [ +0.068106] raid6: int64x8 gen() 824 MB/s [ +0.068101] raid6: int64x8 xor() 603 MB/s [ +0.068099] raid6: neonx1 gen() 908 MB/s [ +0.068095] raid6: neonx1 xor() 663 MB/s [ +0.068152] raid6: neonx2 gen() 1548 MB/s [ +0.068069] raid6: neonx2 xor() 989 MB/s [ +0.068112] raid6: neonx4 gen() 1836 MB/s [ +0.068105] raid6: neonx4 xor() 1149 MB/s [ +0.068122] raid6: neonx8 gen() 1697 MB/s [ +0.068081] raid6: neonx8 xor() 1235 MB/s [ +0.000008] raid6: using algorithm neonx4 gen() 1836 MB/s [ +0.000008] raid6: .... xor() 1149 MB/s, rmw enabled [ +0.000007] raid6: using intx1 recovery algorithm [ +0.001076] of_get_named_gpiod_flags: parsed 'rockchip,power-ctrl' property of node '/rockchip-suspend[0]' - status (0) [ +0.000048] of_get_named_gpiod_flags: parsed 'rockchip,power-ctrl' property of node '/rockchip-suspend[1]' - status (0) [ +0.000307] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc3v3-sys[0]' [ +0.000025] vcc3v3_sys: 3300 mV [ +0.000175] reg-fixed-voltage vcc3v3-sys: vcc3v3_sys supplying 3300000uV [ +0.000055] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc5v0-host-regulator[0]' [ +0.000018] vcc5v0_host: 5000 mV [ +0.000156] reg-fixed-voltage vcc5v0-host-regulator: vcc5v0_host supplying 5000000uV [ +0.000055] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc5v0-sys[0]' [ +0.000017] vcc5v0_sys: 5000 mV [ +0.000143] reg-fixed-voltage vcc5v0-sys: vcc5v0_sys supplying 5000000uV [ +0.000052] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vccadc-ref[0]' [ +0.000017] vcc1v8_sys: 1800 mV [ +0.000156] reg-fixed-voltage vccadc-ref: vcc1v8_sys supplying 1800000uV [ +0.000162] of_get_named_gpiod_flags: parsed 'gpio' property of node '/vcc-sd[0]' - status (0) [ +0.000052] vcc_sd: 3000 mV [ +0.000158] reg-fixed-voltage vcc-sd: vcc_sd supplying 3000000uV [ +0.000051] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc-phy-regulator[0]' [ +0.000017] vcc_phy: no parameters [ +0.000151] reg-fixed-voltage vcc-phy-regulator: vcc_phy supplying 0uV [ +0.000082] of_get_named_gpiod_flags: parsed 'gpio' property of node '/vcc-lcd[0]' - status (0) [ +0.000042] reg-fixed-voltage vcc-lcd: Looking up vin-supply from device tree [ +0.000049] vcc_lcd: supplied by vcc5v0_sys [ +0.024407] vcc_lcd: 3300 mV [ +0.000175] reg-fixed-voltage vcc-lcd: vcc_lcd supplying 3300000uV [ +0.000686] iommu: Adding device ff650000.vpu_service to group 0 [ +0.000091] iommu: Adding device ff660000.rkvdec to group 1 [ +0.000119] iommu: Adding device ff8f0000.vop to group 2 [ +0.000096] iommu: Adding device ff900000.vop to group 3 [ +0.000099] iommu: Adding device ff910000.rkisp1 to group 4 [ +0.000099] iommu: Adding device ff920000.rkisp1 to group 5 [ +0.000516] rk_iommu ff650800.iommu: can't get sclk [ +0.000287] rk_iommu ff660480.iommu: can't get sclk [ +0.000220] rk_iommu ff8f3f00.iommu: can't get sclk [ +0.000182] rk_iommu ff903f00.iommu: can't get sclk [ +0.000177] rk_iommu ff914000.iommu: can't get sclk [ +0.000174] rk_iommu ff924000.iommu: can't get sclk [ +0.000387] SCSI subsystem initialized [ +0.000204] libata version 3.00 loaded. [ +0.000202] usbcore: registered new interface driver usbfs [ +0.000047] usbcore: registered new interface driver hub [ +0.000109] usbcore: registered new device driver usb [ +0.000102] media: Linux media interface: v0.10 [ +0.000039] Linux video capture interface: v2.00 [ +0.000074] pps_core: LinuxPPS API ver. 1 registered [ +0.000008] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ +0.000026] PTP clock support registered [ +0.001251] Advanced Linux Sound Architecture Driver Initialized. [ +0.000941] NetLabel: Initializing [ +0.000009] NetLabel: domain hash size = 128 [ +0.000006] NetLabel: protocols = UNLABELED CIPSOv4 [ +0.000041] NetLabel: unlabeled traffic allowed by default [ +0.000272] rockchip-cpuinfo cpuinfo: Serial : bb1bd30f66833859 [ +0.000633] clocksource: Switched to clocksource arch_sys_counter [ +0.046126] thermal thermal_zone1: power_allocator: sustainable_power will be estimated [ +0.000132] NET: Registered protocol family 2 [ +0.000455] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ +0.000138] TCP bind hash table entries: 16384 (order: 7, 524288 bytes) [ +0.000412] TCP: Hash tables configured (established 16384 bind 16384) [ +0.000083] UDP hash table entries: 1024 (order: 4, 98304 bytes) [ +0.000080] UDP-Lite hash table entries: 1024 (order: 4, 98304 bytes) [ +0.000258] NET: Registered protocol family 1 [ +0.000043] PCI: CLS 0 bytes, default 64 [ +0.000746] Trying to unpack rootfs image as initramfs... [ +0.360122] Freeing initrd memory: 7156K [ +0.000565] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ +0.000091] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available [ +0.001572] kvm [1]: 8-bit VMID [ +0.000010] kvm [1]: Hyp mode initialized successfully [ +0.000128] kvm [1]: interrupt-controller@fff20000 IRQ10 [ +0.000202] kvm [1]: timer IRQ12 [ +0.003613] audit: initializing netlink subsys (disabled) [ +0.000058] audit: type=2000 audit(1.816:1): initialized [ +0.000402] Initialise system trusted keyring [ +0.000395] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ +0.007390] VFS: Disk quotas dquot_6.6.0 [ +0.000159] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ +0.001459] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ +0.000675] fuse init (API version 7.23) [ +0.000576] JFS: nTxBlock = 8192, nTxLock = 65536 [ +0.005348] SGI XFS with ACLs, security attributes, realtime, no debug enabled [ +0.001763] Key type big_key registered [ +0.000022] TEE Core Framework initialization (ver 1:0.1) [ +0.000030] TEE armv7 Driver initialization [ +0.000469] tz_tee_probe: name="armv7sec", id=0, pdev_name="armv7sec.0" [ +0.000011] TEE core: Alloc the misc device "opteearmtz00" (id=0) [ +0.000192] TEE Core: Register the misc device "opteearmtz00" (id=0,minor=62) [ +0.005742] Key type asymmetric registered [ +0.000023] Asymmetric key parser 'x509' registered [ +0.000202] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ +0.000134] io scheduler noop registered [ +0.000012] io scheduler deadline registered (default) [ +0.000040] io scheduler cfq registered [ +0.001082] phy phy-ff770000.syscon:usb2-phy@e460.0: Looking up phy-supply from device tree [ +0.000416] phy phy-ff770000.syscon:usb2-phy@e460.1: Looking up phy-supply from device tree [ +0.000015] phy phy-ff770000.syscon:usb2-phy@e460.1: Looking up phy-supply property in node /syscon@ff770000/usb2-phy@e460/otg-port failed [ +0.000087] phy phy-ff770000.syscon:usb2-phy@e460.1: Looking up vbus-supply from device tree [ +0.000012] phy phy-ff770000.syscon:usb2-phy@e460.1: Looking up vbus-supply property in node /syscon@ff770000/usb2-phy@e460/otg-port failed [ +0.000014] phy phy-ff770000.syscon:usb2-phy@e460.1: Failed to get VBUS supply regulator [ +0.001148] phy phy-ff770000.syscon:phy@f780.2: Looking up phy-supply from device tree [ +0.000013] phy phy-ff770000.syscon:phy@f780.2: Looking up phy-supply property in node /syscon@ff770000/phy@f780 failed [ +0.000885] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_tcpc0-supply from device tree [ +0.000015] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_tcpc0-supply property in node /power-management@ff310000/power-controller failed [ +0.000331] phy phy-ff800000.phy.3: Looking up phy-supply from device tree [ +0.000013] phy phy-ff800000.phy.3: Looking up phy-supply property in node /phy@ff800000/dp-port failed [ +0.000134] phy phy-ff800000.phy.4: Looking up phy-supply from device tree [ +0.000012] phy phy-ff800000.phy.4: Looking up phy-supply property in node /phy@ff800000/usb3-port failed [ +0.000105] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_tcpc1-supply from device tree [ +0.000013] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_tcpc1-supply property in node /power-management@ff310000/power-controller failed [ +0.000370] phy phy-pcie-phy.5: Looking up phy-supply from device tree [ +0.000013] phy phy-pcie-phy.5: Looking up phy-supply property in node /pcie-phy failed [ +0.002271] rockchip-pcie f8000000.pcie: GPIO lookup for consumer ep [ +0.000013] rockchip-pcie f8000000.pcie: using device tree for GPIO lookup [ +0.000013] of_get_named_gpiod_flags: can't parse 'ep-gpios' property of node '/pcie@f8000000[0]' [ +0.000011] of_get_named_gpiod_flags: can't parse 'ep-gpio' property of node '/pcie@f8000000[0]' [ +0.000009] rockchip-pcie f8000000.pcie: using lookup tables for GPIO lookup [ +0.000011] rockchip-pcie f8000000.pcie: lookup for GPIO ep failed [ +0.000228] rockchip-pcie f8000000.pcie: Looking up vpcie3v3-supply from device tree [ +0.000013] rockchip-pcie f8000000.pcie: Looking up vpcie3v3-supply property in node /pcie@f8000000 failed [ +0.000016] rockchip-pcie f8000000.pcie: no vpcie3v3 regulator found [ +0.000010] rockchip-pcie f8000000.pcie: Looking up vpcie1v8-supply from device tree [ +0.000011] rockchip-pcie f8000000.pcie: Looking up vpcie1v8-supply property in node /pcie@f8000000 failed [ +0.000013] rockchip-pcie f8000000.pcie: no vpcie1v8 regulator found [ +0.000009] rockchip-pcie f8000000.pcie: Looking up vpcie0v9-supply from device tree [ +0.000011] rockchip-pcie f8000000.pcie: Looking up vpcie0v9-supply property in node /pcie@f8000000 failed [ +0.000014] rockchip-pcie f8000000.pcie: no vpcie0v9 regulator found [ +0.000010] rockchip-pcie f8000000.pcie: no bus-scan-delay-ms in device tree, default 0 ms [ +0.000010] rockchip-pcie f8000000.pcie: missing "memory-region" property [ +0.000016] PCI host bridge /pcie@f8000000 ranges: [ +0.000022] MEM 0xfa000000..0xfbdfffff -> 0xfa000000 [ +0.000012] IO 0xfbe00000..0xfbefffff -> 0xfbe00000 [ +0.600778] rockchip-pcie f8000000.pcie: PCIe link training gen1 timeout! [ +0.000024] rockchip-pcie f8000000.pcie: deferred probe failed [ +0.000207] rockchip-pcie: probe of f8000000.pcie failed with error -110 [ +0.000869] pwm-backlight backlight: GPIO lookup for consumer enable [ +0.000015] pwm-backlight backlight: using device tree for GPIO lookup [ +0.000122] of_get_named_gpiod_flags: parsed 'enable-gpios' property of node '/backlight[0]' - status (0) [ +0.000030] no flags found for enable [ +0.000044] pwm-backlight backlight: Looking up power-supply from device tree [ +0.000015] pwm-backlight backlight: Looking up power-supply property in node /backlight failed [ +0.000022] backlight supply power not found, using dummy regulator [ +0.000723] rk-vcodec ff650000.vpu_service: Looking up vcodec-supply from device tree [ +0.000018] rk-vcodec ff650000.vpu_service: Looking up vcodec-supply property in node /vpu_service@ff650000 failed [ +0.000018] rk-vcodec ff650000.vpu_service: no regulator for vcodec [ +0.000265] rk-vcodec ff650000.vpu_service: probe device [ +0.000245] rk-vcodec ff650000.vpu_service: drm allocator with mmu enabled [ +0.000558] rk-vcodec ff650000.vpu_service: could not find power_model node [ +0.000012] rk-vcodec ff650000.vpu_service: init success [ +0.000205] rk-vcodec ff660000.rkvdec: Looking up vcodec-supply from device tree [ +0.000013] rk-vcodec ff660000.rkvdec: Looking up vcodec-supply property in node /rkvdec@ff660000 failed [ +0.000018] rk-vcodec ff660000.rkvdec: no regulator for vcodec [ +0.000459] rk-vcodec ff660000.rkvdec: probe device [ +0.000240] rk-vcodec ff660000.rkvdec: drm allocator with mmu enabled [ +0.000388] rk-vcodec ff660000.rkvdec: could not find power_model node [ +0.000010] rk-vcodec ff660000.rkvdec: init success [ +0.001504] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330 DMAC-241330 [ +0.000013] dma-pl330 ff6d0000.dma-controller: DBUFF-32x8bytes Num_Chans-6 Num_Peri-12 Num_Events-12 [ +0.001385] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330 DMAC-241330 [ +0.000012] dma-pl330 ff6e0000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16 [ +0.001101] rockchip-system-monitor rockchip-system-monitor: system monitor probe [ +0.000610] pwm-regulator vdd-log: GPIO lookup for consumer enable [ +0.000011] pwm-regulator vdd-log: using device tree for GPIO lookup [ +0.000012] of_get_named_gpiod_flags: can't parse 'enable-gpios' property of node '/vdd-log[0]' [ +0.000010] of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/vdd-log[0]' [ +0.000010] pwm-regulator vdd-log: using lookup tables for GPIO lookup [ +0.000010] pwm-regulator vdd-log: lookup for GPIO enable failed [ +0.000025] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000011] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000045] vdd_log: 800 <--> 1400 mV at 800 mV [ +0.000151] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000012] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000053] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000011] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000431] Serial: 8250/16550 driver, 5 ports, IRQ sharing disabled [ +0.000691] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 37, base_baud = 1500000) is a 16550A [ +0.000511] ff370000.serial: ttyS4 at MMIO 0xff370000 (irq = 39, base_baud = 1500000) is a 16550A [ +0.001115] [drm] Initialized drm 1.1.0 20060810 [ +0.003923] [drm] Rockchip DRM driver version: v1.0.1 [ +0.000357] rockchip-drm display-subsystem: defer getting devfreq [ +0.000296] rockchip-vop ff900000.vop: missing rockchip,grf property [ +0.000274] rockchip-drm display-subsystem: bound ff900000.vop (ops 0xffffff8008c68818) [ +0.000049] rockchip-vop ff8f0000.vop: missing rockchip,grf property [ +0.000190] rockchip-drm display-subsystem: bound ff8f0000.vop (ops 0xffffff8008c68818) [ +0.000174] rockchip-drm display-subsystem: failed to bind ff940000.hdmi (ops 0xffffff8008c5d890): -517 [ +0.000246] rockchip-drm display-subsystem: master bind failed: -517 [ +0.000527] panel-friendlyelec edp-panel: Looking up power-supply from device tree [ +0.000129] panel-friendlyelec edp-panel: GPIO lookup for consumer enable [ +0.000010] panel-friendlyelec edp-panel: using device tree for GPIO lookup [ +0.000013] of_get_named_gpiod_flags: can't parse 'enable-gpios' property of node '/edp-panel[0]' [ +0.000010] of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/edp-panel[0]' [ +0.000010] panel-friendlyelec edp-panel: using lookup tables for GPIO lookup [ +0.000010] panel-friendlyelec edp-panel: lookup for GPIO enable failed [ +0.001709] Unable to detect cache hierarchy for CPU 0 [ +0.000848] brd: module loaded [ +0.005508] loop: module loaded [ +0.000325] lkdtm: No crash points registered, enable through debugfs [ +0.002298] rk_gmac-dwmac fe300000.ethernet: Looking up phy-supply from device tree [ +0.000089] rk_gmac-dwmac fe300000.ethernet: clock input or output? (input). [ +0.000012] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28). [ +0.000011] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11). [ +0.000025] rk_gmac-dwmac fe300000.ethernet: integrated PHY? (no). [ +0.000194] rk_gmac-dwmac fe300000.ethernet: cannot get clock clk_mac_speed [ +0.000009] rk_gmac-dwmac fe300000.ethernet: clock input from PHY [ +0.005017] rk_gmac-dwmac fe300000.ethernet: init for RGMII [ +0.000154] stmmac - user ID: 0x10, Synopsys ID: 0x35 [ +0.000008] Ring mode enabled [ +0.000007] DMA HW capability register supported [ +0.000006] Normal descriptors [ +0.000009] RX Checksum Offload Engine supported (type 2) [ +0.000007] TX Checksum insertion supported [ +0.000006] Wake-Up On Lan supported [ +0.000040] Enable RX Mitigation via HW Watchdog Timer [ +0.000111] of_get_named_gpiod_flags: parsed 'snps,reset-gpio' property of node '/ethernet@fe300000[0]' - status (0) [ +0.085469] libphy: stmmac: probed [ +0.000016] eth%d: PHY ID 001cc915 at 0 IRQ POLL (stmmac-0:00) active [ +0.000010] eth%d: PHY ID 001cc915 at 1 IRQ POLL (stmmac-0:01) [ +0.001389] usbcore: registered new interface driver rndis_wlan [ +0.000237] Rockchip WiFi SYS interface (V1.00) ... [ +0.000071] usbcore: registered new interface driver cdc_ether [ +0.000040] usbcore: registered new interface driver rndis_host [ +0.001424] rockchip-dwc3 usb0: failed to get drvdata dwc3 [ +0.000091] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_usb3-supply from device tree [ +0.000014] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_usb3-supply property in node /power-management@ff310000/power-controller failed [ +0.004797] rockchip-dwc3 usb1: fail to get drvdata hcd [ +0.001820] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ +0.000027] ehci-pci: EHCI PCI platform driver [ +0.000063] ehci-platform: EHCI generic platform driver [ +0.003948] ehci-platform fe3c0000.usb: EHCI Host Controller [ +0.000168] ehci-platform fe3c0000.usb: new USB bus registered, assigned bus number 1 [ +0.000108] ehci-platform fe3c0000.usb: irq 30, io mem 0xfe3c0000 [ +0.009421] ehci-platform fe3c0000.usb: USB 2.0 started, EHCI 1.00 [ +0.000159] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ +0.000012] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000011] usb usb1: Product: EHCI Host Controller [ +0.000009] usb usb1: Manufacturer: Linux 4.4.213-rk3399 ehci_hcd [ +0.000009] usb usb1: SerialNumber: fe3c0000.usb [ +0.000456] hub 1-0:1.0: USB hub found [ +0.000030] hub 1-0:1.0: 1 port detected [ +0.000600] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ +0.000022] ohci-platform: OHCI generic platform driver [ +0.000519] ohci-platform fe3e0000.usb: Generic Platform OHCI controller [ +0.000154] ohci-platform fe3e0000.usb: new USB bus registered, assigned bus number 2 [ +0.000093] ohci-platform fe3e0000.usb: irq 31, io mem 0xfe3e0000 [ +0.058061] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001 [ +0.000012] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000010] usb usb2: Product: Generic Platform OHCI controller [ +0.000009] usb usb2: Manufacturer: Linux 4.4.213-rk3399 ohci_hcd [ +0.000009] usb usb2: SerialNumber: fe3e0000.usb [ +0.000415] hub 2-0:1.0: USB hub found [ +0.000031] hub 2-0:1.0: 1 port detected [ +0.000952] usbcore: registered new interface driver cdc_acm [ +0.000009] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters [ +0.000043] usbcore: registered new interface driver cdc_wdm [ +0.000083] usbcore: registered new interface driver usbserial [ +0.000032] usbcore: registered new interface driver usbserial_generic [ +0.000024] usbserial: USB Serial support registered for generic [ +0.000872] usbcore: registered new interface driver iforce [ +0.000062] usbcore: registered new interface driver xpad [ +0.000200] usbcore: registered new interface driver usbtouchscreen [ +0.000013] <<-GTP-INFO->> GTP driver installing [ +0.000569] sensor_register_slave:mma8452,id=17 [ +0.000023] sensor_register_slave:lis3dh,id=7 [ +0.000017] sensor_register_slave:mma7660,id=18 [ +0.000016] sensor_register_slave:lsm303d,id=22 [ +0.000017] sensor_register_slave:mpu6880_acc,id=24 [ +0.000017] sensor_register_slave:mpu6500_acc,id=25 [ +0.000016] sensor_register_slave:lsm330_acc,id=26 [ +0.000017] sensor_register_slave:akm8975,id=30 [ +0.000017] sensor_register_slave:akm8963,id=31 [ +0.000017] sensor_register_slave:l3g4200d,id=45 [ +0.000016] sensor_register_slave:l3g20d,id=46 [ +0.000016] sensor_register_slave:ewtsa,id=47 [ +0.000017] sensor_register_slave:lsm330_gyro,id=51 [ +0.000016] sensor_register_slave:cm3217,id=53 [ +0.000016] sensor_register_slave:cm3218,id=54 [ +0.000637] i2c /dev entries driver [ +0.001336] fan53555-regulator 0-0040: GPIO lookup for consumer vsel [ +0.000016] fan53555-regulator 0-0040: using device tree for GPIO lookup [ +0.000048] of_get_named_gpiod_flags: parsed 'vsel-gpios' property of node '/i2c@ff3c0000/syr827@40[0]' - status (0) [ +0.000418] fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected! [ +0.000025] fan53555-regulator 0-0040: Looking up vin-supply from device tree [ +0.000091] fan53555-reg: supplied by vcc3v3_sys [ +0.001441] vdd_cpu_b: 712 <--> 1500 mV at 1000 mV [ +0.000486] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000018] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000339] fan53555-regulator 0-0041: GPIO lookup for consumer vsel [ +0.000013] fan53555-regulator 0-0041: using device tree for GPIO lookup [ +0.000044] of_get_named_gpiod_flags: parsed 'vsel-gpios' property of node '/i2c@ff3c0000/syr828@41[0]' - status (0) [ +0.000374] fan53555-regulator 0-0041: FAN53555 Option[8] Rev[1] Detected! [ +0.000021] fan53555-regulator 0-0041: Looking up vin-supply from device tree [ +0.000069] fan53555-reg: supplied by vcc3v3_sys [ +0.001422] vdd_gpu: 712 <--> 1500 mV at 1000 mV [ +0.000444] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000017] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000704] rk808 0-001b: Pmic Chip id: 0x0 [ +0.003645] rk808 0-001b: GPIO lookup for consumer dvs [ +0.000014] rk808 0-001b: using device tree for GPIO lookup [ +0.000016] of_get_named_gpiod_flags: can't parse 'dvs-gpios' property of node '/i2c@ff3c0000/pmic@1b[0]' [ +0.000014] of_get_named_gpiod_flags: can't parse 'dvs-gpio' property of node '/i2c@ff3c0000/pmic@1b[0]' [ +0.000011] rk808 0-001b: using lookup tables for GPIO lookup [ +0.000013] rk808 0-001b: lookup for GPIO dvs failed [ +0.000013] rk808-regulator rk808-regulator: there is no dvs0 gpio [ +0.000012] rk808 0-001b: GPIO lookup for consumer dvs [ +0.000011] rk808 0-001b: using device tree for GPIO lookup [ +0.000013] of_get_named_gpiod_flags: can't parse 'dvs-gpios' property of node '/i2c@ff3c0000/pmic@1b[1]' [ +0.000013] of_get_named_gpiod_flags: can't parse 'dvs-gpio' property of node '/i2c@ff3c0000/pmic@1b[1]' [ +0.000012] rk808 0-001b: using lookup tables for GPIO lookup [ +0.000011] rk808 0-001b: lookup for GPIO dvs failed [ +0.000012] rk808-regulator rk808-regulator: there is no dvs1 gpio [ +0.000053] rk808 0-001b: Looking up vcc1-supply from device tree [ +0.000094] DCDC_REG1: supplied by vcc3v3_sys [ +0.000530] vdd_center: 750 <--> 1350 mV at 900 mV [ +0.000290] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000018] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000058] rk808 0-001b: Looking up vcc2-supply from device tree [ +0.000075] DCDC_REG2: supplied by vcc3v3_sys [ +0.000353] vdd_cpu_l: 750 <--> 1350 mV at 900 mV [ +0.000271] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000017] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000056] rk808 0-001b: Looking up vcc3-supply from device tree [ +0.000063] DCDC_REG3: supplied by vcc3v3_sys [ +0.000048] vcc_ddr: at 3300 mV [ +0.000261] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000064] rk808 0-001b: Looking up vcc4-supply from device tree [ +0.000057] DCDC_REG4: supplied by vcc3v3_sys [ +0.000199] vcc_1v8: 1800 mV [ +0.000290] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000066] rk808 0-001b: Looking up vcc6-supply from device tree [ +0.000057] LDO_REG1: supplied by vcc3v3_sys [ +0.000869] vcc1v8_dvp: 1800 mV [ +0.000292] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000071] rk808 0-001b: Looking up vcc6-supply from device tree [ +0.000057] LDO_REG2: supplied by vcc3v3_sys [ +0.000714] vcc3v0_tp: 3000 mV [ +0.000292] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000072] rk808 0-001b: Looking up vcc7-supply from device tree [ +0.000058] LDO_REG3: supplied by vcc3v3_sys [ +0.000715] vcc1v8_pmu: 1800 mV [ +0.000292] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000074] rk808 0-001b: Looking up vcc9-supply from device tree [ +0.000058] LDO_REG4: supplied by vcc3v3_sys [ +0.000195] vccio_sd: Bringing 3300000uV into 3000000-3000000uV [ +0.000134] vccio_sd: ramp_delay not set [ +0.000541] vccio_sd: 1800 <--> 3000 mV at 3000 mV [ +0.000267] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000081] rk808 0-001b: Looking up vcc9-supply from device tree [ +0.000059] LDO_REG5: supplied by vcc3v3_sys [ +0.000749] vcca3v0_codec: 3000 mV [ +0.000270] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000080] rk808 0-001b: Looking up vcc10-supply from device tree [ +0.000058] LDO_REG6: supplied by vcc3v3_sys [ +0.000712] vcc_1v5: 1500 mV [ +0.000299] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000086] rk808 0-001b: Looking up vcc7-supply from device tree [ +0.000058] LDO_REG7: supplied by vcc3v3_sys [ +0.000714] vcca1v8_codec: 1800 mV [ +0.000297] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000084] rk808 0-001b: Looking up vcc11-supply from device tree [ +0.000057] LDO_REG8: supplied by vcc3v3_sys [ +0.000714] vcc_3v0: 3000 mV [ +0.000298] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000116] rk808 0-001b: Looking up vcc8-supply from device tree [ +0.000059] SWITCH_REG1: supplied by vcc3v3_sys [ +0.000049] vcc3v3_s3: at 3300 mV [ +0.000268] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000015] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000083] rk808 0-001b: Looking up vcc12-supply from device tree [ +0.000058] SWITCH_REG2: supplied by vcc3v3_sys [ +0.000046] vcc3v3_s0: at 3300 mV [ +0.000265] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.003567] rk808-rtc rk808-rtc: rtc core: registered rk808-rtc as rtc0 [ +0.000486] rk3x-i2c ff3c0000.i2c: Initialized RK3xxx I2C bus at ffffff80096fc000 [ +0.001203] rk3x-i2c ff110000.i2c: Initialized RK3xxx I2C bus at ffffff80096fe000 [ +0.000892] rk3x-i2c ff120000.i2c: Initialized RK3xxx I2C bus at ffffff80097c2000 [ +0.000617] rk3x-i2c ff160000.i2c: Initialized RK3xxx I2C bus at ffffff80097c4000 [ +0.001156] fusb302 4-0022: GPIO lookup for consumer int-n [ +0.000013] fusb302 4-0022: using device tree for GPIO lookup [ +0.000048] of_get_named_gpiod_flags: parsed 'int-n-gpios' property of node '/i2c@ff3d0000/fusb30x@22[0]' - status (0) [ +0.000036] fusb302 4-0022: GPIO lookup for consumer vbus-5v [ +0.000013] fusb302 4-0022: using device tree for GPIO lookup [ +0.000041] of_get_named_gpiod_flags: parsed 'vbus-5v-gpios' property of node '/i2c@ff3d0000/fusb30x@22[0]' - status (0) [ +0.000040] fusb302 4-0022: GPIO lookup for consumer vbus-other [ +0.000012] fusb302 4-0022: using device tree for GPIO lookup [ +0.000014] of_get_named_gpiod_flags: can't parse 'vbus-other-gpios' property of node '/i2c@ff3d0000/fusb30x@22[0]' [ +0.000013] of_get_named_gpiod_flags: can't parse 'vbus-other-gpio' property of node '/i2c@ff3d0000/fusb30x@22[0]' [ +0.000012] fusb302 4-0022: using lookup tables for GPIO lookup [ +0.000013] fusb302 4-0022: lookup for GPIO vbus-other failed [ +0.000012] fusb302 4-0022: GPIO lookup for consumer discharge [ +0.000011] fusb302 4-0022: using device tree for GPIO lookup [ +0.000013] of_get_named_gpiod_flags: can't parse 'discharge-gpios' property of node '/i2c@ff3d0000/fusb30x@22[0]' [ +0.000013] of_get_named_gpiod_flags: can't parse 'discharge-gpio' property of node '/i2c@ff3d0000/fusb30x@22[0]' [ +0.000011] fusb302 4-0022: using lookup tables for GPIO lookup [ +0.000012] fusb302 4-0022: lookup for GPIO discharge failed [ +0.000216] fusb302 4-0022: Can't get property of role, set role to default DRP [ +0.001899] fusb302 4-0022: port 0 probe success with role ROLE_MODE_DRP, try_role ROLE_MODE_NONE [ +0.000214] input: Typec_Headphone as /devices/platform/ff3d0000.i2c/i2c-4/4-0022/input/input0 [ +0.000847] rk3x-i2c ff3d0000.i2c: Initialized RK3xxx I2C bus at ffffff80097c6000 [ +0.002615] usbcore: registered new interface driver uvcvideo [ +0.000010] USB Video Class driver (1.1.1) [ +0.000800] rockchip-iodomain ff320000.syscon:io-domains: Looking up pmu1830-supply from device tree [ +0.000400] rockchip-iodomain ff770000.syscon:io-domains: Looking up bt656-supply from device tree [ +0.000089] rockchip-iodomain ff770000.syscon:io-domains: Looking up audio-supply from device tree [ +0.000078] rockchip-iodomain ff770000.syscon:io-domains: Looking up sdmmc-supply from device tree [ +0.000074] rockchip-iodomain ff770000.syscon:io-domains: Looking up gpio1830-supply from device tree [ +0.001212] Boot mode: normal [ +0.001602] rk_tsadcv2_temp_to_code: Invalid conversion table: code=1023, temperature=2147483647 [ +0.000225] rockchip-thermal ff260000.tsadc: tsadc is probed successfully! [ +0.000990] dw_wdt ff848000.watchdog: Should better to setup a 'resets' property in dt, that must been named with reset [ +0.000576] device-mapper: uevent: version 1.0.3 [ +0.000426] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com [ +0.000780] cpu cpu0: bin=1 [ +0.000083] cpu cpu0: leakage=21 [ +0.000042] cpu cpu0: Looking up cpu-supply from device tree [ +0.012691] cpu cpu0: temp=60625, pvtm=148152 (146898 + 1254) [ +0.000413] cpu cpu0: pvtm-volt-sel=1 [ +0.000090] cpu cpu0: bin-scale=34 [ +0.000469] cpu cpu4: bin=1 [ +0.000153] cpu cpu4: leakage=40 [ +0.000040] cpu cpu4: Looking up cpu-supply from device tree [ +0.012034] cpu cpu4: temp=61250, pvtm=150557 (149857 + 700) [ +0.000144] cpu cpu4: pvtm-volt-sel=1 [ +0.000074] cpu cpu4: bin-scale=17 [ +0.000397] cpu cpu0: Looking up cpu-supply from device tree [ +0.000420] cpu cpu0: Looking up cpu-supply from device tree [ +0.000925] cpu cpu0: avs=0 [ +0.000050] cpu cpu0: scale_rate=1416000000 [ +0.000269] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 [ +0.002450] cpu cpu0: failed to find power_model node [ +0.000360] cpu cpu4: Looking up cpu-supply from device tree [ +0.000704] cpu cpu4: avs=0 [ +0.000024] cpu cpu4: scale_rate=1800000000 [ +0.000180] cpu cpu4: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 [ +0.001840] cpu cpu4: failed to find power_model node [ +0.000813] sdhci: Secure Digital Host Controller Interface driver [ +0.000006] sdhci: Copyright(c) Pierre Ossman [ +0.000009] Synopsys Designware Multimedia Card Interface Driver [ +0.001046] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode. [ +0.000037] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller. [ +0.000013] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a [ +0.000051] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 25,32 bit host data width,256 deep fifo [ +0.000019] dwmmc_rockchip fe310000.dwmmc: 'clock-freq-min-max' property was deprecated. [ +0.000013] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply from device tree [ +0.000009] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply property in node /dwmmc@fe310000 failed [ +0.000033] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply from device tree [ +0.000009] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply property in node /dwmmc@fe310000 failed [ +0.000014] dwmmc_rockchip fe310000.dwmmc: No vmmc regulator found [ +0.000007] dwmmc_rockchip fe310000.dwmmc: No vqmmc regulator found [ +0.000016] dwmmc_rockchip fe310000.dwmmc: GPIO lookup for consumer wp [ +0.000007] dwmmc_rockchip fe310000.dwmmc: using device tree for GPIO lookup [ +0.000010] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/dwmmc@fe310000[0]' [ +0.000008] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/dwmmc@fe310000[0]' [ +0.000007] dwmmc_rockchip fe310000.dwmmc: using lookup tables for GPIO lookup [ +0.000009] dwmmc_rockchip fe310000.dwmmc: lookup for GPIO wp failed [ +0.000236] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_sdioaudio-supply from device tree [ +0.000011] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_sdioaudio-supply property in node /power-management@ff310000/power-controller failed [ +0.000592] dwmmc_rockchip fe320000.dwmmc: IDMAC supports 32-bit address mode. [ +0.000024] dwmmc_rockchip fe320000.dwmmc: Using internal DMA controller. [ +0.000011] dwmmc_rockchip fe320000.dwmmc: Version ID is 270a [ +0.000035] dwmmc_rockchip fe320000.dwmmc: DW MMC controller at irq 26,32 bit host data width,256 deep fifo [ +0.000017] dwmmc_rockchip fe320000.dwmmc: 'clock-freq-min-max' property was deprecated. [ +0.000008] dwmmc_rockchip fe320000.dwmmc: Looking up vmmc-supply from device tree [ +0.000105] dwmmc_rockchip fe320000.dwmmc: Looking up vqmmc-supply from device tree [ +0.000069] dwmmc_rockchip fe320000.dwmmc: GPIO lookup for consumer cd [ +0.000008] dwmmc_rockchip fe320000.dwmmc: using device tree for GPIO lookup [ +0.000009] of_get_named_gpiod_flags: can't parse 'cd-gpios' property of node '/dwmmc@fe320000[0]' [ +0.000008] of_get_named_gpiod_flags: can't parse 'cd-gpio' property of node '/dwmmc@fe320000[0]' [ +0.000007] dwmmc_rockchip fe320000.dwmmc: using lookup tables for GPIO lookup [ +0.000008] dwmmc_rockchip fe320000.dwmmc: lookup for GPIO cd failed [ +0.000009] dwmmc_rockchip fe320000.dwmmc: GPIO lookup for consumer wp [ +0.000007] dwmmc_rockchip fe320000.dwmmc: using device tree for GPIO lookup [ +0.000008] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/dwmmc@fe320000[0]' [ +0.000008] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/dwmmc@fe320000[0]' [ +0.000007] dwmmc_rockchip fe320000.dwmmc: using lookup tables for GPIO lookup [ +0.000007] dwmmc_rockchip fe320000.dwmmc: lookup for GPIO wp failed [ +0.000161] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ +0.000011] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ +0.012559] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ +0.016451] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ +0.000025] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ +0.000134] dwmmc_rockchip fe320000.dwmmc: 1 slots initialized [ +0.000679] sdhci-pltfm: SDHCI platform and OF driver helper [ +0.000981] sdhci-arasan fe330000.sdhci: GPIO lookup for consumer wp [ +0.000019] sdhci-arasan fe330000.sdhci: using device tree for GPIO lookup [ +0.000020] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/sdhci@fe330000[0]' [ +0.000019] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/sdhci@fe330000[0]' [ +0.000016] sdhci-arasan fe330000.sdhci: using lookup tables for GPIO lookup [ +0.000018] sdhci-arasan fe330000.sdhci: lookup for GPIO wp failed [ +0.001164] sdhci-arasan fe330000.sdhci: Looking up vmmc-supply from device tree [ +0.000022] sdhci-arasan fe330000.sdhci: Looking up vmmc-supply property in node /sdhci@fe330000 failed [ +0.000051] sdhci-arasan fe330000.sdhci: Looking up vqmmc-supply from device tree [ +0.000019] sdhci-arasan fe330000.sdhci: Looking up vqmmc-supply property in node /sdhci@fe330000 failed [ +0.000033] sdhci-arasan fe330000.sdhci: No vmmc regulator found [ +0.000014] sdhci-arasan fe330000.sdhci: No vqmmc regulator found [ +0.032486] mmc1: SDHCI controller on fe330000.sdhci [fe330000.sdhci] using ADMA [ +0.003796] of_get_named_gpiod_flags: parsed 'gpios' property of node '/gpio-leds/led@1[0]' - status (0) [ +0.000572] ledtrig-cpu: registered to indicate activity on CPUs [ +0.000125] hidraw: raw HID events driver (C) Jiri Kosina [ +0.000727] usbcore: registered new interface driver usbhid [ +0.000017] usbhid: USB HID core driver [ +0.000505] ashmem: initialized [ +0.001608] rockchip-dmc dmc: unable to get devfreq-event device : dfi [ +0.002094] rockchip-saradc ff100000.saradc: Looking up vref-supply from device tree [ +0.022817] Initializing XFRM netlink socket [ +0.001000] NET: Registered protocol family 10 [ +0.001906] lib80211: common routines for IEEE802.11 drivers [ +0.000029] lib80211_crypt: registered algorithm 'NULL' [ +0.000031] lib80211_crypt: registered algorithm 'WEP' [ +0.000024] lib80211_crypt: registered algorithm 'CCMP' [ +0.000023] lib80211_crypt: registered algorithm 'TKIP' [ +0.000020] [WLAN_RFKILL]: Enter rfkill_wlan_init [ +0.000724] [WLAN_RFKILL]: Enter rfkill_wlan_probe [ +0.000108] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6354 [ +0.000013] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control. [ +0.000013] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio. [ +0.000020] of_get_named_gpiod_flags: can't parse 'WIFI,poweren_gpio' property of node '/wireless-wlan[0]' [ +0.000017] of_get_named_gpiod_flags: can't parse 'WIFI,vbat_gpio' property of node '/wireless-wlan[0]' [ +0.000016] of_get_named_gpiod_flags: can't parse 'WIFI,reset_gpio' property of node '/wireless-wlan[0]' [ +0.000088] of_get_named_gpiod_flags: parsed 'WIFI,host_wake_irq' property of node '/wireless-wlan[0]' - status (0) [ +0.000014] [WLAN_RFKILL]: wlan_platdata_parse_dt: get property: WIFI,host_wake_irq = 3, flags = 0. [ +0.000021] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found ! [ +0.000013] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio [ +0.000016] [WLAN_RFKILL]: Exit rfkill_wlan_probe [ +0.000098] [BT_RFKILL]: Enter rfkill_rk_init [ +0.000786] of_get_named_gpiod_flags: parsed 'uart_rts_gpios' property of node '/wireless-bluetooth[0]' - status (0) [ +0.000016] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 83. [ +0.000021] of_get_named_gpiod_flags: can't parse 'BT,power_gpio' property of node '/wireless-bluetooth[0]' [ +0.000052] of_get_named_gpiod_flags: parsed 'BT,reset_gpio' property of node '/wireless-bluetooth[0]' - status (0) [ +0.000014] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 9. [ +0.000049] of_get_named_gpiod_flags: parsed 'BT,wake_gpio' property of node '/wireless-bluetooth[0]' - status (0) [ +0.000014] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 90. [ +0.000049] of_get_named_gpiod_flags: parsed 'BT,wake_host_irq' property of node '/wireless-bluetooth[0]' - status (0) [ +0.000013] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 4. [ +0.001347] [BT_RFKILL]: Request irq for bt wakeup host [ +0.000105] [BT_RFKILL]: ** disable irq [ +0.000237] [BT_RFKILL]: bt shut off power [ +0.021104] [BT_RFKILL]: bt_default device registered. [ +0.000131] Key type dns_resolver registered [ +0.000413] sensor_register_slave:mpu6880_gyro,id=50 [ +0.000639] ov4689 1-0036: driver version: 00.01.01 [ +0.000021] ov4689 1-0036: could not get module information! [ +0.000058] ov4689 1-0036: GPIO lookup for consumer reset [ +0.000012] ov4689 1-0036: using device tree for GPIO lookup [ +0.000044] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/i2c@ff110000/ov4689@36[0]' - status (0) [ +0.000040] ov4689 1-0036: GPIO lookup for consumer pwdn [ +0.000011] ov4689 1-0036: using device tree for GPIO lookup [ +0.000039] of_get_named_gpiod_flags: parsed 'pwdn-gpios' property of node '/i2c@ff110000/ov4689@36[0]' - status (0) [ +0.000296] ov4689 1-0036: Looking up avdd-supply from device tree [ +0.000016] ov4689 1-0036: Looking up avdd-supply property in node /i2c@ff110000/ov4689@36 failed [ +0.000041] 1-0036 supply avdd not found, using dummy regulator [ +0.000083] ov4689 1-0036: Looking up dovdd-supply from device tree [ +0.000015] ov4689 1-0036: Looking up dovdd-supply property in node /i2c@ff110000/ov4689@36 failed [ +0.000021] 1-0036 supply dovdd not found, using dummy regulator [ +0.000049] ov4689 1-0036: Looking up dvdd-supply from device tree [ +0.000015] ov4689 1-0036: Looking up dvdd-supply property in node /i2c@ff110000/ov4689@36 failed [ +0.000021] 1-0036 supply dvdd not found, using dummy regulator [ +0.002749] ov4689 1-0036: Unexpected sensor id(000000), ret(-5) [ +0.000810] ov4689 2-0036: driver version: 00.01.01 [ +0.000020] ov4689 2-0036: could not get module information! [ +0.000045] ov4689 2-0036: GPIO lookup for consumer reset [ +0.000012] ov4689 2-0036: using device tree for GPIO lookup [ +0.000043] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/i2c@ff120000/ov4689@36[0]' - status (0) [ +0.000044] ov4689 2-0036: GPIO lookup for consumer pwdn [ +0.000012] ov4689 2-0036: using device tree for GPIO lookup [ +0.000038] of_get_named_gpiod_flags: parsed 'pwdn-gpios' property of node '/i2c@ff120000/ov4689@36[0]' - status (0) [ +0.000251] ov4689 2-0036: Looking up avdd-supply from device tree [ +0.000015] ov4689 2-0036: Looking up avdd-supply property in node /i2c@ff120000/ov4689@36 failed [ +0.000041] 2-0036 supply avdd not found, using dummy regulator [ +0.000111] ov4689 2-0036: Looking up dovdd-supply from device tree [ +0.000015] ov4689 2-0036: Looking up dovdd-supply property in node /i2c@ff120000/ov4689@36 failed [ +0.000022] 2-0036 supply dovdd not found, using dummy regulator [ +0.000054] ov4689 2-0036: Looking up dvdd-supply from device tree [ +0.000014] ov4689 2-0036: Looking up dvdd-supply property in node /i2c@ff120000/ov4689@36 failed [ +0.000021] 2-0036 supply dvdd not found, using dummy regulator [ +0.002645] ov4689 2-0036: Unexpected sensor id(000000), ret(-5) [ +0.000411] Error: Driver 'ov7750' is already registered, aborting... [ +0.000022] Error: Driver 'ov8858' is already registered, aborting... [ +0.000564] ov13850 1-0010: driver version: 00.01.01 [ +0.000020] ov13850 1-0010: could not get module information! [ +0.000045] ov13850 1-0010: GPIO lookup for consumer reset [ +0.000012] ov13850 1-0010: using device tree for GPIO lookup [ +0.000044] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/i2c@ff110000/ov13850@10[0]' - status (0) [ +0.000043] ov13850 1-0010: GPIO lookup for consumer pwdn [ +0.000012] ov13850 1-0010: using device tree for GPIO lookup [ +0.000038] of_get_named_gpiod_flags: parsed 'pwdn-gpios' property of node '/i2c@ff110000/ov13850@10[0]' - status (0) [ +0.000035] ov13850 1-0010: Looking up avdd-supply from device tree [ +0.000014] ov13850 1-0010: Looking up avdd-supply property in node /i2c@ff110000/ov13850@10 failed [ +0.000041] 1-0010 supply avdd not found, using dummy regulator [ +0.000074] ov13850 1-0010: Looking up dovdd-supply from device tree [ +0.000014] ov13850 1-0010: Looking up dovdd-supply property in node /i2c@ff110000/ov13850@10 failed [ +0.000022] 1-0010 supply dovdd not found, using dummy regulator [ +0.000061] ov13850 1-0010: Looking up dvdd-supply from device tree [ +0.000015] ov13850 1-0010: Looking up dvdd-supply property in node /i2c@ff110000/ov13850@10 failed [ +0.000022] 1-0010 supply dvdd not found, using dummy regulator [ +0.002023] ov13850 1-0010: Unexpected sensor id(000000), ret(-5) [ +0.000468] ov13850 2-0010: driver version: 00.01.01 [ +0.000019] ov13850 2-0010: could not get module information! [ +0.000039] ov13850 2-0010: GPIO lookup for consumer reset [ +0.000012] ov13850 2-0010: using device tree for GPIO lookup [ +0.000040] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/i2c@ff120000/ov13850@10[0]' - status (0) [ +0.000038] ov13850 2-0010: GPIO lookup for consumer pwdn [ +0.000012] ov13850 2-0010: using device tree for GPIO lookup [ +0.000038] of_get_named_gpiod_flags: parsed 'pwdn-gpios' property of node '/i2c@ff120000/ov13850@10[0]' - status (0) [ +0.000033] ov13850 2-0010: Looking up avdd-supply from device tree [ +0.000015] ov13850 2-0010: Looking up avdd-supply property in node /i2c@ff120000/ov13850@10 failed [ +0.000027] 2-0010 supply avdd not found, using dummy regulator [ +0.000058] ov13850 2-0010: Looking up dovdd-supply from device tree [ +0.000014] ov13850 2-0010: Looking up dovdd-supply property in node /i2c@ff120000/ov13850@10 failed [ +0.000022] 2-0010 supply dovdd not found, using dummy regulator [ +0.000049] ov13850 2-0010: Looking up dvdd-supply from device tree [ +0.000015] ov13850 2-0010: Looking up dvdd-supply property in node /i2c@ff120000/ov13850@10 failed [ +0.000021] 2-0010 supply dvdd not found, using dummy regulator [ +0.003150] ov13850 2-0010: Unexpected sensor id(000000), ret(-5) [ +0.000492] Error: Driver 'sc031gs' is already registered, aborting... [ +0.001323] Registered cp15_barrier emulation handler [ +0.000140] Registered setend emulation handler [ +0.002711] registered taskstats version 1 [ +0.000038] Loading compiled-in X.509 certificates [ +0.003555] Btrfs loaded, integrity-checker=on [ +0.000107] BTRFS: selftest: Running btrfs free space cache tests [ +0.000028] BTRFS: selftest: Running extent only tests [ +0.000024] BTRFS: selftest: Running bitmap only tests [ +0.000026] BTRFS: selftest: Running bitmap and extent tests [ +0.000030] BTRFS: selftest: Running space stealing from bitmap to extent [ +0.001011] BTRFS: selftest: Free space cache tests finished [ +0.000008] BTRFS: selftest: Running extent buffer operation tests [ +0.000007] BTRFS: selftest: Running btrfs_split_item tests [ +0.000053] BTRFS: selftest: Running find delalloc tests [ +0.001457] mmc1: new HS200 MMC card at address 0001 [ +0.001533] mmcblk1: mmc1:0001 AJTD4R 14.6 GiB [ +0.001983] mmcblk1boot0: mmc1:0001 AJTD4R partition 1 4.00 MiB [ +0.001046] mmcblk1boot1: mmc1:0001 AJTD4R partition 2 4.00 MiB [ +0.001123] mmcblk1rpmb: mmc1:0001 AJTD4R partition 3 4.00 MiB [ +0.002187] mmcblk1: p1 p2 p3 p4 [ +0.340596] BTRFS: selftest: Running btrfs_get_extent tests [ +0.000204] BTRFS: selftest: Running hole first btrfs_get_extent test [ +0.000033] BTRFS: selftest: Running outstanding_extents tests [ +0.000050] BTRFS: selftest: Running qgroup tests [ +0.000007] BTRFS: selftest: Qgroup basic add [ +0.000053] BTRFS: selftest: Qgroup multiple refs test [ +0.048580] Key type encrypted registered [ +0.001210] rga2: Driver loaded successfully ver:3.02 [ +0.000510] rga2: Module initialized. [ +0.000451] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_rga-supply from device tree [ +0.000037] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_rga-supply property in node /power-management@ff310000/power-controller failed [ +0.000511] phy phy-ff770000.syscon:usb2-phy@e450.6: Looking up phy-supply from device tree [ +0.001091] phy phy-ff770000.syscon:usb2-phy@e450.7: Looking up phy-supply from device tree [ +0.000018] phy phy-ff770000.syscon:usb2-phy@e450.7: Looking up phy-supply property in node /syscon@ff770000/usb2-phy@e450/otg-port failed [ +0.000124] phy phy-ff770000.syscon:usb2-phy@e450.7: Looking up vbus-supply from device tree [ +0.000010] phy phy-ff770000.syscon:usb2-phy@e450.7: Looking up vbus-supply property in node /syscon@ff770000/usb2-phy@e450/otg-port failed [ +0.000020] phy phy-ff770000.syscon:usb2-phy@e450.7: Failed to get VBUS supply regulator [ +0.001831] phy phy-ff7c0000.phy.8: Looking up phy-supply from device tree [ +0.000012] phy phy-ff7c0000.phy.8: Looking up phy-supply property in node /phy@ff7c0000/dp-port failed [ +0.000092] phy phy-ff7c0000.phy.9: Looking up phy-supply from device tree [ +0.000010] phy phy-ff7c0000.phy.9: Looking up phy-supply property in node /phy@ff7c0000/usb3-port failed [ +0.000203] [drm] Rockchip DRM driver version: v1.0.1 [ +0.000321] rockchip-drm display-subsystem: defer getting devfreq [ +0.000314] rockchip-vop ff900000.vop: missing rockchip,grf property [ +0.000216] rockchip-drm display-subsystem: bound ff900000.vop (ops 0xffffff8008c68818) [ +0.000043] rockchip-vop ff8f0000.vop: missing rockchip,grf property [ +0.000145] rockchip-drm display-subsystem: bound ff8f0000.vop (ops 0xffffff8008c68818) [ +0.000229] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY) [ +0.003137] rockchip-drm display-subsystem: bound ff940000.hdmi (ops 0xffffff8008c5d890) [ +0.000091] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ +0.000018] [drm] No driver support for vblank timestamp query. [ +0.000620] rockchip-drm display-subsystem: failed to parse loader memory [ +0.000073] rockchip-drm display-subsystem: No connectors reported connected with modes [ +0.000095] [drm] Cannot find any crtc or sizes - going 1024x768 [ +0.013862] Console: switching to colour frame buffer device 128x48 [ +0.005016] rockchip-drm display-subsystem: fb0: frame buffer device [ +0.006449] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller [ +0.000625] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 3 [ +0.000274] xhci-hcd xhci-hcd.7.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x06030010 [ +0.000109] xhci-hcd xhci-hcd.7.auto: irq 231, io mem 0xfe800000 [ +0.000573] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002 [ +0.000030] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000023] usb usb3: Product: xHCI Host Controller [ +0.000023] usb usb3: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd [ +0.000023] usb usb3: SerialNumber: xhci-hcd.7.auto [ +0.001550] hub 3-0:1.0: USB hub found [ +0.000046] hub 3-0:1.0: 1 port detected [ +0.000387] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller [ +0.000363] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 4 [ +0.000093] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ +0.000140] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003 [ +0.000014] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000013] usb usb4: Product: xHCI Host Controller [ +0.000011] usb usb4: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd [ +0.000012] usb usb4: SerialNumber: xhci-hcd.7.auto [ +0.000671] hub 4-0:1.0: USB hub found [ +0.000039] hub 4-0:1.0: 1 port detected [ +0.002435] xhci-hcd xhci-hcd.7.auto: remove, state 1 [ +0.000034] usb usb4: USB disconnect, device number 1 [ +0.004728] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller [ +0.011767] xhci-hcd xhci-hcd.7.auto: Host not halted after 16000 microseconds. [ +0.000011] xhci-hcd xhci-hcd.7.auto: Host controller not halted, aborting reset. [ +0.000059] xhci-hcd xhci-hcd.7.auto: USB bus 4 deregistered [ +0.000067] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 5 [ +0.000158] xhci-hcd xhci-hcd.8.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x06030010 [ +0.000041] xhci-hcd xhci-hcd.8.auto: irq 232, io mem 0xfe900000 [ +0.000193] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002 [ +0.000010] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000008] usb usb5: Product: xHCI Host Controller [ +0.000008] usb usb5: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd [ +0.000007] usb usb5: SerialNumber: xhci-hcd.8.auto [ +0.000375] hub 5-0:1.0: USB hub found [ +0.000026] hub 5-0:1.0: 1 port detected [ +0.000221] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller [ +0.000550] xhci-hcd xhci-hcd.7.auto: remove, state 1 [ +0.000040] usb usb3: USB disconnect, device number 1 [ +0.000075] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 6 [ +0.001045] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM. [ +0.000061] xhci-hcd xhci-hcd.7.auto: USB bus 3 deregistered [ +0.000116] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003 [ +0.000015] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000012] usb usb6: Product: xHCI Host Controller [ +0.000013] usb usb6: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd [ +0.000011] usb usb6: SerialNumber: xhci-hcd.8.auto [ +0.000799] hub 6-0:1.0: USB hub found [ +0.000042] hub 6-0:1.0: 1 port detected [ +0.005069] ehci-platform fe380000.usb: EHCI Host Controller [ +0.000386] ehci-platform fe380000.usb: new USB bus registered, assigned bus number 3 [ +0.000153] ehci-platform fe380000.usb: irq 28, io mem 0xfe380000 [ +0.008751] ehci-platform fe380000.usb: USB 2.0 started, EHCI 1.00 [ +0.000325] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002 [ +0.000020] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000017] usb usb3: Product: EHCI Host Controller [ +0.000016] usb usb3: Manufacturer: Linux 4.4.213-rk3399 ehci_hcd [ +0.000016] usb usb3: SerialNumber: fe380000.usb [ +0.000973] hub 3-0:1.0: USB hub found [ +0.000059] hub 3-0:1.0: 1 port detected [ +0.001056] vendor storage:20190527 ret = 0 [ +0.000417] ohci-platform fe3a0000.usb: Generic Platform OHCI controller [ +0.000462] ohci-platform fe3a0000.usb: new USB bus registered, assigned bus number 4 [ +0.000242] ohci-platform fe3a0000.usb: irq 29, io mem 0xfe3a0000 [ +0.061031] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001 [ +0.000041] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000025] usb usb4: Product: Generic Platform OHCI controller [ +0.000024] usb usb4: Manufacturer: Linux 4.4.213-rk3399 ohci_hcd [ +0.000023] usb usb4: SerialNumber: fe3a0000.usb [ +0.001667] hub 4-0:1.0: USB hub found [ +0.000119] hub 4-0:1.0: 1 port detected [ +0.001850] input: adc-keys as /devices/platform/adc-keys/input/input1 [ +0.003226] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode. [ +0.000084] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller. [ +0.000034] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a [ +0.000067] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 25,32 bit host data width,256 deep fifo [ +0.000060] dwmmc_rockchip fe310000.dwmmc: 'clock-freq-min-max' property was deprecated. [ +0.000032] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply from device tree [ +0.000030] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply property in node /dwmmc@fe310000 failed [ +0.000073] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply from device tree [ +0.000029] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply property in node /dwmmc@fe310000 failed [ +0.000047] dwmmc_rockchip fe310000.dwmmc: No vmmc regulator found [ +0.000021] dwmmc_rockchip fe310000.dwmmc: No vqmmc regulator found [ +0.000041] dwmmc_rockchip fe310000.dwmmc: GPIO lookup for consumer wp [ +0.000023] dwmmc_rockchip fe310000.dwmmc: using device tree for GPIO lookup [ +0.000029] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/dwmmc@fe310000[0]' [ +0.000027] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/dwmmc@fe310000[0]' [ +0.000023] dwmmc_rockchip fe310000.dwmmc: using lookup tables for GPIO lookup [ +0.000025] dwmmc_rockchip fe310000.dwmmc: lookup for GPIO wp failed [ +0.000545] platform sdio-pwrseq: GPIO lookup for consumer reset [ +0.000024] platform sdio-pwrseq: using device tree for GPIO lookup [ +0.000077] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/sdio-pwrseq[0]' - status (0) [ +0.000077] dwmmc_rockchip fe310000.dwmmc: allocated mmc-pwrseq [ +0.015007] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ +0.015875] dwmmc_rockchip fe310000.dwmmc: 1 slots initialized [ +0.000742] rockchip-dmc dmc: Looking up center-supply from device tree [ +0.000386] rockchip-dmc dmc: Failed to get leakage [ +0.000050] rockchip-dmc dmc: Looking up center-supply from device tree [ +0.000032] vdd_center: could not add device link dmc err -17 [ +0.000014] vdd_center: Failed to create debugfs directory [ +0.000013] rockchip-dmc dmc: Failed to get pvtm [ +0.000539] rockchip-dmc dmc: avs=0 [ +0.000044] rockchip-dmc dmc: failed to get vop pn to msch rl [ +0.001285] rockchip-dmc dmc: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 [ +0.000031] rockchip-dmc dmc: could not find power_model node [ +0.004180] of_get_named_gpiod_flags: can't parse 'simple-audio-card,hp-det-gpio' property of node '/rt5651-sound[0]' [ +0.000016] of_get_named_gpiod_flags: can't parse 'simple-audio-card,mic-det-gpio' property of node '/rt5651-sound[0]' [ +0.018873] asoc-simple-card rt5651-sound: rt5651-aif1 <-> ff890000.i2s mapping ok [ +0.000100] asoc-simple-card rt5651-sound: ASoC: no source widget found for MICBIAS1 [ +0.000019] asoc-simple-card rt5651-sound: ASoC: Failed to add route MICBIAS1 -> direct -> Mic Jack [ +0.000333] rt5651 1-001a: ASoC: mux INL1 Mux has no paths [ +0.000029] rt5651 1-001a: ASoC: mux INR1 Mux has no paths [ +0.000025] rt5651 1-001a: ASoC: mux INL2 Mux has no paths [ +0.000025] rt5651 1-001a: ASoC: mux INR2 Mux has no paths [ +0.007796] of_get_named_gpiod_flags: can't parse 'simple-audio-card,hp-det-gpio' property of node '/hdmi-sound[0]' [ +0.000033] of_get_named_gpiod_flags: can't parse 'simple-audio-card,mic-det-gpio' property of node '/hdmi-sound[0]' [ +0.000951] asoc-simple-card hdmi-sound: i2s-hifi <-> ff8a0000.i2s mapping ok [ +0.003935] of_get_named_gpiod_flags: can't parse 'simple-audio-card,hp-det-gpio' property of node '/spdif-sound[0]' [ +0.000033] of_get_named_gpiod_flags: can't parse 'simple-audio-card,mic-det-gpio' property of node '/spdif-sound[0]' [ +0.000588] rockchip-spdif ff870000.spdif: Missing dma channel for stream: 0 [ +0.000036] rockchip-spdif ff870000.spdif: ASoC: pcm constructor failed: -22 [ +0.000019] asoc-simple-card spdif-sound: ASoC: can't create pcm ff870000.spdif-dit-hifi :-22 [ +0.000016] asoc-simple-card spdif-sound: ASoC: failed to instantiate card -22 [ +0.000316] asoc-simple-card: probe of spdif-sound failed with error -22 [ +0.000381] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_edp-supply from device tree [ +0.000026] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_edp-supply property in node /power-management@ff310000/power-controller failed [ +0.000103] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_gpu-supply from device tree [ +0.000022] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_gpu-supply property in node /power-management@ff310000/power-controller failed [ +0.000079] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_iep-supply from device tree [ +0.000022] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_iep-supply property in node /power-management@ff310000/power-controller failed [ +0.000256] dhd_module_init: in Dongle Host Driver, version 1.579.77.41.22 (r-20191105-2)(20191120-1) [ +0.000016] ======== dhd_wlan_init_plat_data ======== [ +0.000009] [WLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter [ +0.000012] dhd_wlan_init_gpio: WL_HOST_WAKE=-1, oob_irq=72, oob_irq_flags=0x414 [ +0.000007] dhd_wlan_init_gpio: WL_REG_ON=-1 [ +0.000007] dhd_wifi_platform_load: Enter [ +0.000007] Power-up adapter 'DHD generic adapter' [ +0.000051] wifi_platform_set_power = 1 [ +0.000006] ======== PULL WL_REG_ON(-1) HIGH! ======== [ +0.000007] [WLAN_RFKILL]: rockchip_wifi_power: 1 [ +0.000008] [WLAN_RFKILL]: wifi turn on power. -1 [ +0.000818] of_get_named_gpiod_flags: parsed 'gpios' property of node '/gpio-keys/button@0[0]' - status (0) [ +0.000089] gpio-5 (GPIO Key Power): gpiod_set_debounce: missing set() or set_debounce() operations [ +0.000429] input: gpio-keys as /devices/platform/gpio-keys/input/input2 [ +0.008953] mmc2: queuing unknown CIS tuple 0x80 (2 bytes) [ +0.001605] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ +0.001603] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ +0.002862] mmc2: queuing unknown CIS tuple 0x80 (7 bytes) [ +0.003401] mmc2: queuing unknown CIS tuple 0x81 (9 bytes) [ +0.052873] mmc_host mmc2: Bus speed (slot 0) = 150000000Hz (slot req 150000000Hz, actual 150000000HZ div = 0) [ +0.028758] rk808-rtc rk808-rtc: setting system clock to 2013-01-18 08:50:11 UTC (1358499011) [ +0.000026] of_cfs_init [ +0.000109] of_cfs_init: OK [ +0.029945] PM: Hibernation image not present or could not be loaded. [ +0.000055] vcc_sd: disabling [ +0.000014] vcc_lcd: disabling [ +0.000108] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_isp1-supply from device tree [ +0.000023] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_isp1-supply property in node /power-management@ff310000/power-controller failed [ +0.000177] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_isp0-supply from device tree [ +0.000018] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_isp0-supply property in node /power-management@ff310000/power-controller failed [ +0.000088] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vopb-supply from device tree [ +0.000017] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vopb-supply property in node /power-management@ff310000/power-controller failed [ +0.000086] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vopl-supply from device tree [ +0.000017] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vopl-supply property in node /power-management@ff310000/power-controller failed [ +0.000062] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vo-supply from device tree [ +0.000017] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vo-supply property in node /power-management@ff310000/power-controller failed [ +0.000058] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vdu-supply from device tree [ +0.000016] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vdu-supply property in node /power-management@ff310000/power-controller failed [ +0.000072] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vcodec-supply from device tree [ +0.000016] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vcodec-supply property in node /power-management@ff310000/power-controller failed [ +0.001258] ALSA device list: [ +0.000011] #0: Dummy 1 [ +0.000009] #1: Loopback 1 [ +0.000008] #2: realtek,rt5651-codec [ +0.000009] #3: rockchip,hdmi [ +0.000892] Freeing unused kernel memory: 1088K [ +0.031827] usb 3-1: new high-speed USB device number 2 using ehci-platform [ +0.047099] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 181 [ +0.007013] mmc2: queuing unknown CIS tuple 0x91 (3 bytes) [ +0.000080] mmc2: new ultra high speed SDR104 SDIO card at address 0001 [ +0.081664] wifi_platform_bus_enumerate device present 1 [ +0.000017] ======== Card detection to detect SDIO card! ======== [ +0.000010] mmc2:mmc host rescan start! [ +0.003074] usb 3-1: New USB device found, idVendor=32e4, idProduct=9520 [ +0.000025] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ +0.000011] usb 3-1: Product: HD USB Camera [ +0.000010] usb 3-1: Manufacturer: HD Camera Manufacturer [ +0.001448] uvcvideo: Found UVC 1.00 device HD USB Camera (32e4:9520) [ +0.011558] bcmsdh_register: register client driver [ +0.000227] bcmsdh_sdmmc_probe: Enter num=1 [ +0.000107] bcmsdh_sdmmc_probe: Enter num=2 [ +0.000010] bus num (host idx)=2, slot num (rca)=1 [ +0.000010] found adapter info 'DHD generic adapter' [ +0.000038] sdioh_attach: set sd_f2_blocksize 256 [ +0.000029] sdioh_attach: sd clock rate = 0 [ +0.000155] dhdsdio_probe : no mutex held. set lock [ +0.000083] F1 signature read @0x18000000=0x15294345 [ +0.002645] F1 signature OK, socitype:0x1 chip:0x4345 rev:0x9 pkg:0x2 [ +0.000474] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000 [ +0.000115] [dhd] dhd_conf_set_chiprev : chip=0x4345, chiprev=9 [ +0.000220] [dhd] CFG80211-ERROR) wl_setup_wiphy : Registering Vendor80211 [ +0.000491] [dhd] CFG80211-ERROR) wl_setup_wiphy : SAE support [ +0.000941] [dhd] CFG80211-ERROR) wl_init_prof : wl_init_prof: No profile [ +0.000799] dhd_attach(): thread:dhd_watchdog_thread:e5 started [ +0.000217] dhd_attach(): thread:dhd_dpc:e6 started [ +0.000155] dhd_attach(): thread:dhd_rxf:e7 started [ +0.000017] dhd_deferred_work_init: work queue initialized [ +0.000010] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 2 [ +0.000043] dhd_bus_set_default_min_res_mask: Unhandled chip id [ +0.000178] sdioh_cis_read: func_cis_ptr[0]=0x10ac [ +0.005676] Dongle Host Driver, version 1.579.77.41.22 (r-20191105-2)(20191120-1) [ +0.000890] Register interface [wlan0] MAC: 10:2c:6b:16:bd:a4 [ +0.000183] dhd_tcpack_suppress_set: TCP ACK Suppress mode 2 -> mode 0 [ +0.000019] dhd_wl_ioctl: returning as busstate=0 [ +0.000010] dhd_dbg_detach_pkt_monitor, 2204 [ +0.000011] dhd_bus_devreset: == Power OFF == [ +0.000211] bcmsdh_oob_intr_unregister: Enter [ +0.000008] bcmsdh_oob_intr_unregister: irq is not registered [ +0.000016] dhd_txglom_enable: enable 0 [ +0.000008] dhd_bus_devreset: WLAN OFF DONE [ +0.000034] wifi_platform_set_power = 0 [ +0.000009] ======== PULL WL_REG_ON(-1) LOW! ======== [ +0.000008] [WLAN_RFKILL]: rockchip_wifi_power: 0 [ +0.000026] [WLAN_RFKILL]: wifi shut off power. [ +0.000011] dhdsdio_probe : the lock is released. [ +0.000196] dhd_module_init: Exit err=0 [ +0.316810] EXT4-fs (mmcblk1p1): INFO: recovery required on readonly filesystem [ +0.000013] EXT4-fs (mmcblk1p1): write access will be enabled during recovery [ +0.015828] EXT4-fs (mmcblk1p1): recovery complete [ +0.001288] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) [ +0.191124] systemd[1]: System time before build time, advancing clock. [ +0.007280] ip_tables: (C) 2000-2006 Netfilter Core Team [ +0.002210] cgroup: cgroup2: unknown option "nsdelegate" [ +0.003313] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) [ +0.000443] systemd[1]: Detected architecture arm64. [ +0.004963] systemd[1]: Set hostname to <nanopim4>. [ +0.116408] systemd[1]: File /lib/systemd/system/systemd-journald.service:12 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling. [ +0.000018] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.) [ +0.056596] systemd[1]: /lib/systemd/system/rk3399-bluetooth.service:10: Support for option SysVStartPriority= has been removed and it is ignored [ +0.009162] systemd[1]: /etc/systemd/system/serial-getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ +0.002520] systemd[1]: /etc/systemd/system/getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ +0.029931] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.010076] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.001169] systemd[1]: Created slice User and Session Slice. [ +0.000424] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000300] systemd[1]: Listening on Syslog Socket. [ +0.000207] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000228] systemd[1]: Listening on Journal Socket (/dev/log). [ +0.000349] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000135] systemd[1]: Listening on Journal Audit Socket. [ +0.000184] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000166] systemd[1]: Listening on udev Kernel Socket. [ +0.000187] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000032] systemd[1]: Reached target Remote File Systems. [ +0.000192] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000218] systemd[1]: Listening on Journal Socket. [ +0.000186] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.002521] systemd[1]: Starting Nameserver information manager... [ +0.000872] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.002556] systemd[1]: Starting Create list of required static device nodes for the current kernel... [ +0.010121] systemd[1]: Mounting POSIX Message Queue File System... [ +0.004471] systemd[1]: Starting Load Kernel Modules... [ +0.003760] systemd[1]: Mounting Huge Pages File System... [ +0.004380] systemd[1]: Starting Set the console keyboard layout... [ +0.001194] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ +0.004219] systemd[1]: Starting Restore / save the current clock... [ +0.000565] systemd[1]: Reached target Slices. [ +0.001185] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ +0.001106] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ +0.000485] systemd[1]: Listening on fsck to fsckd communication Socket. [ +0.001353] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ +0.003675] systemd[1]: Starting File System Check on Root Device... [ +0.001391] systemd[1]: Listening on udev Control Socket. [ +0.006845] systemd[1]: Starting udev Coldplug all Devices... [ +0.003359] systemd[1]: Created slice system-serial\x2dgetty.slice. [ +0.000489] systemd[1]: Reached target Swap. [ +0.004591] systemd[1]: Mounting Kernel Debug File System... [ +0.001495] systemd[1]: Created slice system-getty.slice. [ +0.001470] systemd[1]: Listening on initctl Compatibility Named Pipe. [ +0.000461] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ +0.000091] systemd[1]: Reached target Local Encrypted Volumes. [ +0.000258] systemd[1]: Reached target Paths. [ +0.008869] systemd[1]: Started Create list of required static device nodes for the current kernel. [ +0.005697] systemd[1]: Mounted POSIX Message Queue File System. [ +0.000792] systemd[1]: Mounted Huge Pages File System. [ +0.000648] systemd[1]: Mounted Kernel Debug File System. [ +0.004725] systemd[1]: Started Load Kernel Modules. [ +0.004250] systemd[1]: Started Nameserver information manager. [ +0.003910] systemd[1]: Started Restore / save the current clock. [ +0.005528] systemd[1]: Started File System Check Daemon to report status. [ +0.006497] systemd[1]: Mounting FUSE Control File System... [ +0.005492] systemd[1]: Mounting Kernel Configuration File System... [ +0.006541] systemd[1]: Starting Apply Kernel Variables... [ +0.013998] systemd[1]: Mounted FUSE Control File System. [ +0.004813] systemd[1]: Started File System Check on Root Device. [ +0.002304] systemd[1]: Mounted Kernel Configuration File System. [ +0.009110] systemd[1]: Starting Remount Root and Kernel File Systems... [ +0.011769] systemd[1]: Started Apply Kernel Variables. [ +0.032612] EXT4-fs (mmcblk1p1): re-mounted. Opts: acl,commit=600,errors=remount-ro [ +0.006042] systemd[1]: Started Remount Root and Kernel File Systems. [ +0.004717] systemd[1]: Starting Load/Save Random Seed... [ +0.004871] systemd[1]: Starting Create System Users... [ +0.002590] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ +0.019984] systemd[1]: Started Load/Save Random Seed. [ +0.019415] systemd[1]: Started Create System Users. [ +0.004529] systemd[1]: Starting Create Static Device Nodes in /dev... [ +0.032607] systemd[1]: Started udev Coldplug all Devices. [ +0.005483] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ +0.003175] systemd[1]: Started Set the console keyboard layout. [ +0.014690] systemd[1]: Started Helper to synchronize boot up for ifupdown. [ +0.006938] systemd[1]: Started Create Static Device Nodes in /dev. [ +0.004987] systemd[1]: Reached target Local File Systems (Pre). [ +0.008051] systemd[1]: Mounting /tmp... [ +0.008264] systemd[1]: Starting udev Kernel Device Manager... [ +0.007716] systemd[1]: Mounted /tmp. [ +0.034968] systemd[1]: Started udev Kernel Device Manager. [ +0.068858] dhd_ioctl_entry: Interface is down [ +0.109362] dhd_ioctl_entry: Interface is down [ +0.056264] mali ff9a0000.gpu: Looking up mali-supply from device tree [ +0.002310] mali ff9a0000.gpu: leakage=27 [ +0.000066] mali ff9a0000.gpu: Looking up mali-supply from device tree [ +0.000037] vdd_gpu: could not add device link ff9a0000.gpu err -17 [ +0.000012] vdd_gpu: Failed to create debugfs directory [ +0.016830] mali ff9a0000.gpu: temp=60625, pvtm=122848 (122620 + 228) [ +0.000918] mali ff9a0000.gpu: pvtm-volt-sel=1 [ +0.000491] mali ff9a0000.gpu: avs=0 [ +0.002504] mali ff9a0000.gpu: GPU identified as 0x0860 r2p0 status 0 [ +0.000198] mali ff9a0000.gpu: Protected mode not available [ +0.000577] mali ff9a0000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 [ +0.000048] mali ff9a0000.gpu: Using configured power model mali-simple-power-model, and fallback mali-simple-power-model [ +0.000131] I : [File] : drivers/gpu/arm/midgard/backend/gpu/mali_kbase_devfreq.c; [Line] : 423; [Func] : kbase_devfreq_init(); success initing power_model_simple. [ +0.001547] mali ff9a0000.gpu: Probed as mali0 [ +0.048605] systemd[1]: Found device /dev/disk/by-label/DATA. [ +0.066066] systemd[1]: Found device /dev/disk/by-label/HOME. [ +0.054366] systemd[1]: Found device /dev/ttyFIQ0. [ +0.043042] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ +0.001566] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ +0.000065] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ +0.000041] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ +0.002522] systemd[1]: Starting File System Check on /dev/disk/by-label/HOME... [ +0.004640] systemd[1]: Starting File System Check on /dev/disk/by-label/DATA... [ +0.002957] systemd[1]: Created slice system-systemd\x2dbacklight.slice. [ +0.005142] systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:backlight... [ +0.006596] systemd[1]: Starting Load/Save RF Kill Switch Status... [ +0.021854] systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:backlight. [ +0.028501] [BT_RFKILL]: ENABLE UART_RTS [ +0.021412] systemd[1]: Started File System Check on /dev/disk/by-label/HOME. [ +0.011279] systemd[1]: Mounting /root... [ +0.010031] EXT4-fs (mmcblk1p3): mounted filesystem with ordered data mode. Opts: acl [ +0.007812] systemd[1]: Mounted /root. [ +0.041286] random: nonblocking pool is initialized [ +0.016155] [BT_RFKILL]: DISABLE UART_RTS [ +0.000045] [BT_RFKILL]: bt turn on power [ +0.002904] systemd[1]: Started Load/Save RF Kill Switch Status. [ +0.018578] systemd[1]: Started File System Check on /dev/disk/by-label/DATA. [ +0.016184] systemd[1]: Mounting /root/mvisia_edge_data... [ +0.006594] EXT4-fs (mmcblk1p4): mounted filesystem with ordered data mode. Opts: acl [ +0.005873] systemd[1]: Mounted /root/mvisia_edge_data. [ +0.005549] systemd[1]: Reached target Local File Systems. [ +0.008532] systemd[1]: Starting Set console font and keymap... [ +0.002877] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. [ +0.002582] systemd[1]: Starting Raise network interfaces... [ +0.005109] systemd[1]: Starting Armbian ZRAM config... [ +0.001845] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ +0.001727] systemd[1]: Started Set console font and keymap. [ +0.127075] zram: Added device: zram0 [ +0.002007] zram: Added device: zram1 [ +0.001427] zram: Added device: zram2 [ +0.061455] systemd[1]: Started Raise network interfaces. [ +0.000698] zram1: detected capacity change from 0 to 1009115136 [ +0.023624] Adding 985460k swap on /dev/zram1. Priority:5 extents:1 across:985460k SS [ +0.089687] zram0: detected capacity change from 0 to 52428800 [ +0.028980] systemd[1]: Started Armbian ZRAM config. [ +0.013912] systemd[1]: Starting Armbian memory supported logging... [ +0.053579] EXT4-fs (zram0): mounted filesystem without journal. Opts: discard [ +1.600622] cfg80211: World regulatory domain updated: [ +0.000017] cfg80211: DFS Master region: unset [ +0.000006] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ +0.000008] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ +0.000006] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ +0.000005] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ +0.000005] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ +0.000005] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s) [ +0.000005] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ +0.000005] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ +0.000005] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ +0.330948] systemd[1]: Started Armbian memory supported logging. [ +0.004278] systemd[1]: Starting Journal Service... [ +0.211269] systemd[1]: Started Journal Service. [ +0.038392] systemd-journald[660]: Received request to flush runtime journal from PID 1 [ +1.180768] nr_pdflush_threads exported in /proc is scheduled for removal [ +4.139288] [BT_RFKILL]: ENABLE UART_RTS [ +0.101548] [BT_RFKILL]: DISABLE UART_RTS [ +0.000065] [BT_RFKILL]: bt turn on power [ +0.060274] ttyS0 - failed to request DMA, use interrupt mode [ +0.697800] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ +0.010796] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready [ +0.000123] dhd_open: Enter ffffffc07458f000 [ +0.000005] dhd_open : no mutex held. set lock [ +0.000008] Dongle Host Driver, version 1.579.77.41.22 (r-20191105-2)(20191120-1) [ +0.000012] [dhd-wlan0] wl_android_wifi_on : in g_wifi_on=0 [ +0.000006] wifi_platform_set_power = 1 [ +0.000005] ======== PULL WL_REG_ON(-1) HIGH! ======== [ +0.000006] [WLAN_RFKILL]: rockchip_wifi_power: 1 [ +0.000007] [WLAN_RFKILL]: wifi turn on power. -1 [ +0.303089] sdio_reset_comm(): [ +0.031886] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ +0.023597] mmc_host mmc2: Bus speed (slot 0) = 100000Hz (slot req 100000Hz, actual 100000HZ div = 0) [ +0.063895] mmc2: queuing unknown CIS tuple 0x80 (2 bytes) [ +0.006795] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ +0.006063] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ +0.010933] mmc2: queuing unknown CIS tuple 0x80 (7 bytes) [ +0.013545] mmc2: queuing unknown CIS tuple 0x81 (9 bytes) [ +0.203094] mmc_host mmc2: Bus speed (slot 0) = 150000000Hz (slot req 150000000Hz, actual 150000000HZ div = 0) [ +0.128876] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 181 [ +0.000050] sdioh_start: set sd_f2_blocksize 256 [ +0.000254] dhd_bus_devreset: == WLAN ON == [ +0.000066] F1 signature read @0x18000000=0x15294345 [ +0.002360] F1 signature OK, socitype:0x1 chip:0x4345 rev:0x9 pkg:0x2 [ +0.000449] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000 [ +0.000097] dhd_bus_set_default_min_res_mask: Unhandled chip id [ +0.000809] dhd_os_open_image: /lib/firmware/rkwifi/config.txt (204 bytes) open success [ +0.000448] [dhd] dhd_conf_read_country : ccode = ALL [ +0.000011] [dhd] dhd_conf_read_country : regrev = 0 [ +0.000012] [dhd] dhd_conf_read_sdio_params : dhd_doflow = 1 [ +0.000018] [dhd] dhd_conf_read_others : srl = 15 [ +0.000010] [dhd] dhd_conf_read_others : lrl = 15 [ +0.000019] [dhd] dhd_conf_set_path_params : Final fw_path=/lib/firmware/rkwifi/fw_bcm43456c5_ag.bin [ +0.000007] [dhd] dhd_conf_set_path_params : Final nv_path=/lib/firmware/rkwifi/nvram_ap6256.txt [ +0.000006] [dhd] dhd_conf_set_path_params : Final clm_path=/lib/firmware/rkwifi/clm_bcm43456c5_ag.blob [ +0.000005] [dhd] dhd_conf_set_path_params : Final conf_path=/lib/firmware/rkwifi/config.txt [ +0.000337] dhd_os_open_image: /lib/firmware/rkwifi/fw_bcm43456c5_ag.bin (585884 bytes) open success [ +0.050686] dhd_os_open_image: /lib/firmware/rkwifi/nvram_ap6256.txt (2099 bytes) open success [ +0.000441] NVRAM version: AP6256_NVRAM_V1.1_08252017 [ +0.000506] dhdsdio_write_vars: Download, Upload and compare of NVRAM succeeded. [ +0.074738] dhd_bus_init: enable 0x06, ready 0x06 (waited 0us) [ +0.000279] bcmsdh_oob_intr_register: HW_OOB irq=72 flags=0x4 [ +0.000202] dhd_get_memdump_info: File [/data/misc/wifi/.memdump.info] doesn't exist [ +0.000010] dhd_get_memdump_info: MEMDUMP ENABLED = 2 [ +0.000756] Disable tdls_auto_op failed. -1 [ +0.000013] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 1 [ +0.000289] dhd_apply_default_clm: Ignore clm file /lib/firmware/rkwifi/clm_bcm43456c5_ag.blob [ +0.001399] Firmware up: op_mode=0x0005, MAC=10:2c:6b:16:bd:a4 [ +0.002907] dhd_preinit_ioctls Set scancache failed -23 [ +0.007609] Driver: 1.579.77.41.22 (r-20191105-2)(20191120-1) Firmware: wl0: Feb 11 2020 11:54:51 version 7.45.96.61 (be7af2d@shgit) (r745790) FWID 01-a41d86bd es7.c5.n4.a3 CLM: 9.2.9 (2016-02-03 04:34:31) [ +0.000208] dhd_txglom_enable: enable 1 [ +0.000007] [dhd] dhd_conf_set_txglom_params : txglom_mode=copy [ +0.000007] [dhd] dhd_conf_set_txglom_params : txglomsize=36, deferred_tx_len=0 [ +0.000006] [dhd] dhd_conf_set_txglom_params : txinrx_thres=128, dhd_txminmax=-1 [ +0.000006] [dhd] dhd_conf_set_txglom_params : tx_max_offset=0, txctl_tmo_fix=300 [ +0.000011] [dhd] dhd_conf_get_disable_proptx : fw_proptx=1, disable_proptx=-1 [ +0.000813] dhd_wlfc_hostreorder_init(): successful bdcv2 tlv signaling, 64 [ +0.001276] dhd_pno_init: Support Android Location Service [ +0.020085] [dhd] CFG80211-ERROR) wl_cfg80211_event : Event handler is not created [ +0.000709] dhd_rtt_init : FTM is supported [ +0.000010] dhd_preinit_ioctls: SensorHub diabled 0 [ +0.000583] dhd_preinit_ioctls failed to set ShubHub disable [ +0.001345] dhd_wl_ioctl_get_intiovar: get int iovar wnm_bsstrans_resp failed, ERR -23 [ +0.000005] failed to get wnm_bsstrans_resp [ +0.000468] failed to set WNM capabilities [ +0.000223] [dhd] dhd_conf_set_country : set country ALL, revision 0 [ +0.000007] [dhd] CFG80211-ERROR) wl_cfg80211_event : Event handler is not created [ +0.000364] [dhd] CONFIG-ERROR) dhd_conf_set_bufiovar : country setting failed -2, len=12 [ +0.000313] [dhd] dhd_conf_set_country : Country code: US (US/0) [ +0.005271] [dhd-wlan0] wl_android_wifi_on : Success [ +0.043276] dhd_open : the lock is released. [ +0.000018] dhd_open: Exit ret=0 [ +0.064965] NET: Registered protocol family 17 [ +0.092172] P2P interface registered [ +0.000026] wl_cfgp2p_add_p2p_disc_if: wdev: ffffffc07a377800, wdev->net: (null) [ +0.015296] WLC_E_IF: NO_IF set, event Ignored [ +0.000913] P2P interface started [ +3.208246] Bluetooth: Core ver 2.21 [ +0.000118] NET: Registered protocol family 31 [ +0.000020] Bluetooth: HCI device and connection manager initialized [ +0.000031] Bluetooth: HCI socket layer initialized [ +0.000024] Bluetooth: L2CAP socket layer initialized [ +0.001439] Bluetooth: SCO socket layer initialized [ +0.014957] Bluetooth: HCI UART driver ver 2.3 [ +0.000028] Bluetooth: HCI UART protocol H4 registered [ +0.000018] Bluetooth: HCI UART protocol LL registered [ +0.000015] Bluetooth: HCI UART protocol ATH3K registered [ +0.000015] Bluetooth: HCI UART protocol Three-wire (H5) registered [ +0.000489] Bluetooth: HCI UART protocol Intel registered [ +0.000373] Bluetooth: HCI UART protocol BCM registered [ +0.000018] Bluetooth: HCI UART protocol QCA registered [ +0.104720] tty_port_close_start: tty->count = 1 port count = 2. [ +0.609035] [dhd-wlan0] wl_cfg80211_connect : Connecting with d8:47:32:72:3d:c4 ssid "FT Home3", len (8), sec=wpa2psk/mfpc/518, channel=6 [ +0.000983] dhd_dbg_start_pkt_monitor, 1724 [Feb24 19:14] [dhd-wlan0] wl_iw_event : Link UP with d8:47:32:72:3d:c4 [ +0.000032] [dhd-wlan0] wl_ext_iapsta_event : [S] Link UP with d8:47:32:72:3d:c4 [ +0.000032] [dhd-wlan0] wl_notify_connect_status : wl_bss_connect_done succeeded with d8:47:32:72:3d:c4 [ +0.092481] [dhd-wlan0] wl_notify_connect_status : wl_bss_connect_done succeeded with d8:47:32:72:3d:c4 vndr_oui: 8C-FD-F0 [ +0.400843] rk_gmac-dwmac fe300000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ +2.324580] capability: warning: `python3' uses 32-bit capabilities (legacy support in use) [ +0.122108] gpio-54 (sysfs): gpiod_request: status -16 [ +0.000013] export_store: status -16 [ +0.017301] gpio-55 (sysfs): gpiod_request: status -16 [ +0.000012] export_store: status -16 [ +0.017416] gpio-145 (sysfs): gpiod_request: status -16 [ +0.000013] export_store: status -16 [ +0.000213] gpio-144 (sysfs): gpiod_request: status -16 [ +0.000005] export_store: status -16 [ +2.793376] gpio-54 (sysfs): gpiod_request: status -16 [ +0.000013] export_store: status -16 [ +0.034051] gpio-55 (sysfs): gpiod_request: status -16 [ +0.000021] export_store: status -16 [ +0.024398] gpio-145 (sysfs): gpiod_request: status -16 [ +0.000013] export_store: status -16 [ +0.000203] gpio-144 (sysfs): gpiod_request: status -16 [ +0.000006] export_store: status -16 [ +0.000113] gpio-149 (sysfs): gpiod_request: status -16 [ +0.000005] export_store: status -16 [ +0.000113] gpio-33 (sysfs): gpiod_request: status -16 [ +0.000005] export_store: status -16 [ +0.000097] gpio-50 (sysfs): gpiod_request: status -16 [ +0.000004] export_store: status -16 [ +0.000098] gpio-35 (sysfs): gpiod_request: status -16 [ +0.000005] export_store: status -16 [ +3.198805] tty_port_close_start: tty->count = 1 port count = 2. [ +0.340160] tty_port_close_start: tty->count = 1 port count = 2.
  15. Hello, I've tried to use the bug reporting tool but unfortunately it did not work (armbianmonitor -u did not work, and it was too big for http://paste.debian.net/), so I've posted here. I'm trying to use a PCTV 292e plugged into the USB2 port of my Odroid N2. I have the correct firmware for this device downloaded into the /lib/firmware/ folder however I have the errors: writing to i2c device at 0xc8 failed (error=-5) I think it is a USB issue as it does work in the USB3 ports, but I am unsure. Logs below. If there is any more info I need to supply please let me know. Thanks. armbianmonitor -U 1 2 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 3 4 ### Activated Armbian ramlog partition with zstd compression 5 6 ### Activated lzo-rle compressed /tmp 7 8 Thu 04 Feb 2021 01:01:21 PM UTC | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 9 10 ### dmesg: 11 12 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 13 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 14 [ 0.000000] Machine model: Hardkernel ODROID-N2 15 [ 0.000000] efi: UEFI not found. 16 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 17 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 18 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 19 [ 0.000000] NUMA: No NUMA configuration found 20 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 21 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 22 [ 0.000000] Zone ranges: 23 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 24 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 25 [ 0.000000] Normal empty 26 [ 0.000000] Movable zone start for each node 27 [ 0.000000] Early memory node ranges 28 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 29 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 30 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 31 [ 0.000000] On node 0 totalpages: 972032 32 [ 0.000000] DMA zone: 4096 pages used for memmap 33 [ 0.000000] DMA zone: 0 pages reserved 34 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 35 [ 0.000000] DMA32 zone: 11104 pages used for memmap 36 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 37 [ 0.000000] psci: probing for conduit method from DT. 38 [ 0.000000] psci: PSCIv1.0 detected in firmware. 39 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 40 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 41 [ 0.000000] psci: SMC Calling Convention v1.1 42 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 43 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 44 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 45 [ 0.000000] Detected VIPT I-cache on CPU0 46 [ 0.000000] CPU features: detected: ARM erratum 845719 47 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 48 [ 0.000000] Policy zone: DMA32 49 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 50 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 51 Please use sysfs to set IO scheduler for individual devices. 52 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 53 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 54 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 55 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac4000-0x000000003cac4000] (64MB) 56 [ 0.000000] Memory: 2785348K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185276K reserved, 917504K cma-reserved) 57 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 58 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 59 [ 0.000000] rcu: RCU event tracing is enabled. 60 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 61 [ 0.000000] Trampoline variant of Tasks RCU enabled. 62 [ 0.000000] Rude variant of Tasks RCU enabled. 63 [ 0.000000] Tracing variant of Tasks RCU enabled. 64 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 65 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 66 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 67 [ 0.000000] GIC: Using split EOI/Deactivate mode 68 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 69 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 70 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 71 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 72 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 73 [ 0.000248] Console: colour dummy device 80x25 74 [ 0.000282] printk: console [tty1] enabled 75 [ 0.000372] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 76 [ 0.000385] pid_max: default: 32768 minimum: 301 77 [ 0.000468] LSM: Security Framework initializing 78 [ 0.000495] Yama: becoming mindful. 79 [ 0.000586] AppArmor: AppArmor initialized 80 [ 0.000636] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 81 [ 0.000656] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 82 [ 0.002644] rcu: Hierarchical SRCU implementation. 83 [ 0.005149] EFI services will not be available. 84 [ 0.005570] smp: Bringing up secondary CPUs ... 85 [ 0.006241] Detected VIPT I-cache on CPU1 86 [ 0.006303] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 87 [ 0.007492] CPU features: detected: ARM erratum 858921 88 [ 0.007500] CPU features: detected: Spectre-v2 89 [ 0.007503] CPU features: detected: Spectre-v4 90 [ 0.007510] Detected VIPT I-cache on CPU2 91 [ 0.007536] arch_timer: Enabling local workaround for ARM erratum 858921 92 [ 0.007550] arch_timer: CPU2: Trapping CNTVCT access 93 [ 0.007563] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 94 [ 0.008270] Detected VIPT I-cache on CPU3 95 [ 0.008286] arch_timer: Enabling local workaround for ARM erratum 858921 96 [ 0.008294] arch_timer: CPU3: Trapping CNTVCT access 97 [ 0.008302] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 98 [ 0.008926] Detected VIPT I-cache on CPU4 99 [ 0.008943] arch_timer: Enabling local workaround for ARM erratum 858921 100 [ 0.008949] arch_timer: CPU4: Trapping CNTVCT access 101 [ 0.008957] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 102 [ 0.009572] Detected VIPT I-cache on CPU5 103 [ 0.009589] arch_timer: Enabling local workaround for ARM erratum 858921 104 [ 0.009595] arch_timer: CPU5: Trapping CNTVCT access 105 [ 0.009603] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 106 [ 0.009684] smp: Brought up 1 node, 6 CPUs 107 [ 0.009701] SMP: Total of 6 processors activated. 108 [ 0.009708] CPU features: detected: 32-bit EL0 Support 109 [ 0.009714] CPU features: detected: CRC32 instructions 110 [ 0.009720] CPU features: detected: 32-bit EL1 Support 111 [ 0.020926] CPU: All CPU(s) started at EL2 112 [ 0.020977] alternatives: patching kernel code 113 [ 0.022914] devtmpfs: initialized 114 [ 0.030538] Registered cp15_barrier emulation handler 115 [ 0.030552] Registered setend emulation handler 116 [ 0.030716] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 117 [ 0.030760] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 118 [ 0.044682] pinctrl core: initialized pinctrl subsystem 119 [ 0.045439] DMI not present or invalid. 120 [ 0.045808] NET: Registered protocol family 16 121 [ 0.047309] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 122 [ 0.047580] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 123 [ 0.047807] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 124 [ 0.047853] audit: initializing netlink subsys (disabled) 125 [ 0.047959] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 126 [ 0.049276] thermal_sys: Registered thermal governor 'fair_share' 127 [ 0.049284] thermal_sys: Registered thermal governor 'bang_bang' 128 [ 0.049288] thermal_sys: Registered thermal governor 'step_wise' 129 [ 0.049291] thermal_sys: Registered thermal governor 'user_space' 130 [ 0.049767] cpuidle: using governor menu 131 [ 0.050104] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 132 [ 0.050224] ASID allocator initialised with 65536 entries 133 [ 0.051183] Serial: AMBA PL011 UART driver 134 [ 0.085349] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 135 [ 0.085363] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 136 [ 0.085368] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 137 [ 0.085374] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 138 [ 0.087346] cryptd: max_cpu_qlen set to 1000 139 [ 0.156247] raid6: neonx8 gen() 2780 MB/s 140 [ 0.224302] raid6: neonx8 xor() 2042 MB/s 141 [ 0.292354] raid6: neonx4 gen() 3003 MB/s 142 [ 0.360418] raid6: neonx4 xor() 2347 MB/s 143 [ 0.428488] raid6: neonx2 gen() 2582 MB/s 144 [ 0.496550] raid6: neonx2 xor() 2138 MB/s 145 [ 0.564621] raid6: neonx1 gen() 2014 MB/s 146 [ 0.632681] raid6: neonx1 xor() 1721 MB/s 147 [ 0.700749] raid6: int64x8 gen() 1373 MB/s 148 [ 0.768812] raid6: int64x8 xor() 735 MB/s 149 [ 0.836909] raid6: int64x4 gen() 1463 MB/s 150 [ 0.904957] raid6: int64x4 xor() 733 MB/s 151 [ 0.973022] raid6: int64x2 gen() 1363 MB/s 152 [ 1.041092] raid6: int64x2 xor() 619 MB/s 153 [ 1.109150] raid6: int64x1 gen() 1120 MB/s 154 [ 1.177210] raid6: int64x1 xor() 462 MB/s 155 [ 1.177213] raid6: using algorithm neonx4 gen() 3003 MB/s 156 [ 1.177217] raid6: .... xor() 2347 MB/s, rmw enabled 157 [ 1.177220] raid6: using neon recovery algorithm 158 [ 1.177685] ACPI: Interpreter disabled. 159 [ 1.178454] 5V: supplied by 12V 160 [ 1.179353] VDDAO_3V3: supplied by 12V 161 [ 1.179851] iommu: Default domain type: Translated 162 [ 1.179962] vgaarb: loaded 163 [ 1.180923] SCSI subsystem initialized 164 [ 1.181171] usbcore: registered new interface driver usbfs 165 [ 1.181210] usbcore: registered new interface driver hub 166 [ 1.181249] usbcore: registered new device driver usb 167 [ 1.181556] pps_core: LinuxPPS API ver. 1 registered 168 [ 1.181562] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 169 [ 1.181583] PTP clock support registered 170 [ 1.181791] EDAC MC: Ver: 3.0.0 171 [ 1.183125] NetLabel: Initializing 172 [ 1.183133] NetLabel: domain hash size = 128 173 [ 1.183135] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 174 [ 1.183177] NetLabel: unlabeled traffic allowed by default 175 [ 1.183599] clocksource: Switched to clocksource arch_sys_counter 176 [ 1.183801] VFS: Disk quotas dquot_6.6.0 177 [ 1.183846] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 178 [ 1.184192] AppArmor: AppArmor Filesystem Enabled 179 [ 1.184246] pnp: PnP ACPI: disabled 180 [ 1.190120] NET: Registered protocol family 2 181 [ 1.190584] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 182 [ 1.190688] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 183 [ 1.190944] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 184 [ 1.191132] TCP: Hash tables configured (established 32768 bind 32768) 185 [ 1.191291] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 186 [ 1.191354] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 187 [ 1.191401] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 188 [ 1.191548] NET: Registered protocol family 1 189 [ 1.191567] PCI: CLS 0 bytes, default 64 190 [ 1.191743] Trying to unpack rootfs image as initramfs... 191 [ 1.727704] Freeing initrd memory: 13548K 192 [ 1.728632] kvm [1]: IPA Size Limit: 40 bits 193 [ 1.729336] kvm [1]: vgic interrupt IRQ9 194 [ 1.729469] kvm [1]: Hyp mode initialized successfully 195 [ 1.734596] Initialise system trusted keyrings 196 [ 1.734632] Key type blacklist registered 197 [ 1.734777] workingset: timestamp_bits=44 max_order=20 bucket_order=0 198 [ 1.737976] zbud: loaded 199 [ 1.738962] squashfs: version 4.0 (2009/01/31) Phillip Lougher 200 [ 1.739428] fuse: init (API version 7.32) 201 [ 1.740208] integrity: Platform Keyring initialized 202 [ 1.767642] xor: measuring software checksum speed 203 [ 1.770481] 8regs : 3473 MB/sec 204 [ 1.772943] 32regs : 4022 MB/sec 205 [ 1.775599] arm64_neon : 3719 MB/sec 206 [ 1.775603] xor: using function: 32regs (4022 MB/sec) 207 [ 1.775610] Key type asymmetric registered 208 [ 1.775614] Asymmetric key parser 'x509' registered 209 [ 1.775655] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 210 [ 1.775763] io scheduler mq-deadline registered 211 [ 1.775767] io scheduler kyber registered 212 [ 1.775850] io scheduler bfq registered 213 [ 1.778394] gpio-447 (usb-hub-reset): hogged as output/high 214 [ 1.781385] EINJ: ACPI disabled. 215 [ 1.787583] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 216 [ 1.789059] VCC_3V3: supplied by VDDAO_3V3 217 [ 1.789098] FLASH_1V8: supplied by VCC_3V3 218 [ 1.789141] VCC_1V8: supplied by VCC_3V3 219 [ 1.789171] VDDAO_1V8: supplied by VDDAO_3V3 220 [ 1.789199] VDDCPU_A: supplied by regulator-dummy 221 [ 1.789553] VDDCPU_B: supplied by regulator-dummy 222 [ 1.790248] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 223 [ 1.792638] Serial: AMBA driver 224 [ 1.792917] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 225 [ 1.793011] printk: console [ttyAML0] enabled 226 [ 1.793556] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 227 [ 1.798875] loop: module loaded 228 [ 1.800711] libphy: Fixed MDIO Bus: probed 229 [ 1.801658] tun: Universal TUN/TAP device driver, 1.6 230 [ 1.802325] thunder_xcv, ver 1.0 231 [ 1.802353] thunder_bgx, ver 1.0 232 [ 1.802382] nicpf, ver 1.0 233 [ 1.802846] e1000e: Intel(R) PRO/1000 Network Driver 234 [ 1.802850] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 235 [ 1.802892] igb: Intel(R) Gigabit Ethernet Network Driver 236 [ 1.802895] igb: Copyright (c) 2007-2014 Intel Corporation. 237 [ 1.802930] igbvf: Intel(R) Gigabit Virtual Function Network Driver 238 [ 1.802933] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 239 [ 1.803062] sky2: driver version 1.30 240 [ 1.803435] VFIO - User Level meta-driver version: 0.3 241 [ 1.805078] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 242 [ 1.805100] ehci-pci: EHCI PCI platform driver 243 [ 1.805132] ehci-platform: EHCI generic platform driver 244 [ 1.805272] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 245 [ 1.805283] ohci-pci: OHCI PCI platform driver 246 [ 1.805315] ohci-platform: OHCI generic platform driver 247 [ 1.805736] usbcore: registered new interface driver usb-storage 248 [ 1.807089] mousedev: PS/2 mouse device common for all mice 249 [ 1.807504] i2c /dev entries driver 250 [ 1.812637] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 251 [ 1.813775] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 252 [ 1.814530] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 253 [ 1.815161] sdhci: Secure Digital Host Controller Interface driver 254 [ 1.815166] sdhci: Copyright(c) Pierre Ossman 255 [ 1.815289] Synopsys Designware Multimedia Card Interface Driver 256 [ 1.815867] sdhci-pltfm: SDHCI platform and OF driver helper 257 [ 1.816636] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 258 [ 1.817128] ledtrig-cpu: registered to indicate activity on CPUs 259 [ 1.817354] meson-sm: secure-monitor enabled 260 [ 1.817524] hid: raw HID events driver (C) Jiri Kosina 261 [ 1.817603] usbcore: registered new interface driver usbhid 262 [ 1.817605] usbhid: USB HID core driver 263 [ 1.818565] NET: Registered protocol family 10 264 [ 1.818974] Segment Routing with IPv6 265 [ 1.819001] NET: Registered protocol family 17 266 [ 1.819067] 8021q: 802.1Q VLAN Support v1.8 267 [ 1.819094] Key type dns_resolver registered 268 [ 1.819396] registered taskstats version 1 269 [ 1.819401] Loading compiled-in X.509 certificates 270 [ 1.821356] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 271 [ 1.822974] zswap: loaded using pool zstd/z3fold 272 [ 1.823157] Key type ._fscrypt registered 273 [ 1.823159] Key type .fscrypt registered 274 [ 1.823161] Key type fscrypt-provisioning registered 275 [ 1.824353] Btrfs loaded, crc32c=crc32c-generic 276 [ 1.830236] Key type encrypted registered 277 [ 1.830249] AppArmor: AppArmor sha1 policy hashing enabled 278 [ 1.836635] HUB_5V: supplied by 5V 279 [ 1.836854] USB_PWR_EN: supplied by 5V 280 [ 1.838483] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 281 [ 1.838490] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 282 [ 1.841176] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 283 [ 1.841222] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 284 [ 1.841327] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 285 [ 1.841913] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 286 [ 1.841924] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 287 [ 1.842013] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 288 [ 1.842037] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 289 [ 1.842163] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 290 [ 1.842166] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 291 [ 1.842169] usb usb1: Product: xHCI Host Controller 292 [ 1.842171] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 293 [ 1.842173] usb usb1: SerialNumber: xhci-hcd.0.auto 294 [ 1.842361] hub 1-0:1.0: USB hub found 295 [ 1.842374] hub 1-0:1.0: 2 ports detected 296 [ 1.842504] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 297 [ 1.842511] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 298 [ 1.842516] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 299 [ 1.842538] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 300 [ 1.842570] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 301 [ 1.842573] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 302 [ 1.842576] usb usb2: Product: xHCI Host Controller 303 [ 1.842578] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 304 [ 1.842580] usb usb2: SerialNumber: xhci-hcd.0.auto 305 [ 1.842728] hub 2-0:1.0: USB hub found 306 [ 1.842738] hub 2-0:1.0: 1 port detected 307 [ 1.843020] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 308 [ 1.844074] meson-gx-mmc ffe05000.sd: Got CD GPIO 309 [ 1.868643] Freeing unused kernel memory: 3328K 310 [ 1.907715] Run /init as init process 311 [ 1.907719] with arguments: 312 [ 1.907721] /init 313 [ 1.907723] with environment: 314 [ 1.907724] HOME=/ 315 [ 1.907726] TERM=linux 316 [ 1.907728] hdmimode=1080p60hz 317 [ 1.907729] cvbsmode=576cvbs 318 [ 1.907731] max_freq_a53=1896 319 [ 1.907733] max_freq_a73=1800 320 [ 1.907734] voutmode=hdmi 321 [ 1.907735] disablehpd=false 322 [ 1.907736] cvbscable=0 323 [ 1.907738] overscan=100 324 [ 1.933812] mmc1: new ultra high speed SDR25 SDHC card at address b368 325 [ 1.934357] mmcblk1: mmc1:b368 CBADS 30.0 GiB 326 [ 1.936287] mmcblk1: p1 327 [ 2.057001] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 328 [ 2.057007] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 329 [ 2.057090] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 330 [ 2.057578] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 331 [ 2.057588] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 332 [ 2.057592] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 333 [ 2.057596] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 334 [ 2.057599] meson8b-dwmac ff3f0000.ethernet: COE Type 2 335 [ 2.057602] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 336 [ 2.057605] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 337 [ 2.057677] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 338 [ 2.057680] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 339 [ 2.057684] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 340 [ 2.058039] libphy: stmmac: probed 341 [ 2.060155] libphy: mdio_mux: probed 342 [ 2.073350] meson-vrtc ff8000a8.rtc: registered as rtc1 343 [ 2.088951] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 344 [ 2.089193] rtc-pcf8563 1-0051: registered as rtc0 345 [ 2.090430] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 346 [ 2.090442] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 347 [ 2.091800] random: fast init done 348 [ 2.179747] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 349 [ 2.204346] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 350 [ 2.204354] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 351 [ 2.204358] usb 2-1: Product: USB3.1 Hub 352 [ 2.204361] usb 2-1: Manufacturer: GenesysLogic 353 [ 2.226801] hub 2-1:1.0: USB hub found 354 [ 2.227098] hub 2-1:1.0: 4 ports detected 355 [ 2.264195] libphy: mdio_mux: probed 356 [ 2.327622] usb 1-1: new high-speed USB device number 2 using xhci-hcd 357 [ 2.477893] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 358 [ 2.477901] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 359 [ 2.477904] usb 1-1: Product: USB2.1 Hub 360 [ 2.477907] usb 1-1: Manufacturer: GenesysLogic 361 [ 2.514814] hub 1-1:1.0: USB hub found 362 [ 2.515070] hub 1-1:1.0: 4 ports detected 363 [ 2.826998] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 364 [ 3.602186] systemd[1]: System time before build time, advancing clock. 365 [ 3.616889] systemd[1]: Inserted module 'autofs4' 366 [ 3.663238] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 367 [ 3.663456] systemd[1]: Detected architecture arm64. 368 [ 3.705834] systemd[1]: Set hostname to <odroidn2>. 369 [ 3.995878] random: systemd: uninitialized urandom read (16 bytes read) 370 [ 3.999193] random: systemd: uninitialized urandom read (16 bytes read) 371 [ 3.999463] systemd[1]: Listening on udev Control Socket. 372 [ 3.999732] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 373 [ 3.999753] random: systemd: uninitialized urandom read (16 bytes read) 374 [ 3.999768] systemd[1]: Reached target Swap. 375 [ 4.000008] systemd[1]: Listening on Journal Socket (/dev/log). 376 [ 4.000087] systemd[1]: Reached target Remote File Systems. 377 [ 4.000268] systemd[1]: Listening on Syslog Socket. 378 [ 4.000436] systemd[1]: Listening on udev Kernel Socket. 379 [ 4.110762] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 380 [ 4.665452] zram: Added device: zram0 381 [ 4.665752] zram: Added device: zram1 382 [ 4.665964] zram: Added device: zram2 383 [ 4.766024] pwm-gpio pwmgpio: 1 gpio pwms loaded 384 [ 4.877426] zram0: detected capacity change from 0 to 1904500736 385 [ 4.940248] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 386 [ 4.954791] mc: Linux media interface: v0.10 387 [ 5.024618] videodev: Linux video capture interface: v2.00 388 [ 5.035640] Registered IR keymap rc-odroid 389 [ 5.044595] meson-drm ff900000.vpu: Queued 2 outputs on vpu 390 [ 5.068114] IR NEC protocol handler initialized 391 [ 5.068495] panfrost ffe40000.gpu: clock rate = 24000000 392 [ 5.068553] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 393 [ 5.069117] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 394 [ 5.069120] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 395 [ 5.069125] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 396 [ 5.069127] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 397 [ 5.085945] meson-drm ff900000.vpu: CVBS Output connector not available 398 [ 5.087556] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 399 [ 5.095731] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 400 [ 5.095820] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 401 [ 5.095876] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 402 [ 5.096279] meson-ir ff808000.ir: receiver initialized 403 [ 5.114047] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 404 [ 5.114985] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 405 [ 5.115245] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 406 [ 5.115493] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 407 [ 5.115551] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 408 [ 5.145002] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 409 [ 5.188907] axg-sound-card sound: ASoC: no DMI vendor name! 410 [ 5.959606] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 411 [ 6.023890] zram1: detected capacity change from 0 to 52428800 412 [ 8.069093] zram2: detected capacity change from 0 to 1904500736 413 [ 10.102707] EXT4-fs (zram2): mounted filesystem without journal. Opts: discard 414 [ 10.120527] systemd[1]: Started Armbian ZRAM config. 415 [ 10.122329] systemd[1]: Starting Armbian memory supported logging... 416 [ 10.164471] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 417 [ 10.164490] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 418 [ 11.006694] systemd[1]: Started Armbian memory supported logging. 419 [ 11.009017] systemd[1]: Starting Journal Service... 420 [ 11.068661] systemd[1]: Started Journal Service. 421 [ 11.087892] systemd-journald[1823]: Received request to flush runtime journal from PID 1 422 423 ### armbian-release: 424 425 # PLEASE DO NOT EDIT THIS FILE 426 BOARD=odroidn2 427 BOARD_NAME="Odroid N2" 428 BOARDFAMILY=meson-g12b 429 BUILD_REPOSITORY_URL=https://github.com/armbian/build 430 BUILD_REPOSITORY_COMMIT=5f03d652 431 DISTRIBUTION_CODENAME=buster 432 DISTRIBUTION_STATUS=supported 433 VERSION=21.02.1 434 LINUXFAMILY=meson64 435 BRANCH=current 436 ARCH=arm64 437 IMAGE_TYPE=stable 438 BOARD_TYPE=conf 439 INITRD_ARCH=arm64 440 KERNEL_IMAGE_TYPE=Image 441 442 ### boot environment: 443 444 verbosity=1 445 console=both 446 overlay_prefix=meson 447 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 448 rootfstype=ext4 449 450 ### lsusb: 451 452 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 453 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 454 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 455 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 456 457 ### lscpu: 458 459 Architecture: aarch64 460 Byte Order: Little Endian 461 CPU(s): 6 462 On-line CPU(s) list: 0-5 463 Thread(s) per core: 1 464 Core(s) per socket: 3 465 Socket(s): 2 466 NUMA node(s): 1 467 Vendor ID: ARM 468 Model: 4 469 Model name: Cortex-A53 470 Stepping: r0p4 471 CPU max MHz: 1992.0000 472 CPU min MHz: 100.0000 473 BogoMIPS: 48.00 474 L1d cache: unknown size 475 L1i cache: unknown size 476 L2 cache: unknown size 477 NUMA node0 CPU(s): 0-5 478 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 479 480 ### cpuinfo: 481 482 processor : 0 483 BogoMIPS : 48.00 484 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 485 CPU implementer : 0x41 486 CPU architecture: 8 487 CPU variant : 0x0 488 CPU part : 0xd03 489 CPU revision : 4 490 491 processor : 1 492 BogoMIPS : 48.00 493 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 494 CPU implementer : 0x41 495 CPU architecture: 8 496 CPU variant : 0x0 497 CPU part : 0xd03 498 CPU revision : 4 499 500 processor : 2 501 BogoMIPS : 48.00 502 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 503 CPU implementer : 0x41 504 CPU architecture: 8 505 CPU variant : 0x0 506 CPU part : 0xd09 507 CPU revision : 2 508 509 processor : 3 510 BogoMIPS : 48.00 511 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 512 CPU implementer : 0x41 513 CPU architecture: 8 514 CPU variant : 0x0 515 CPU part : 0xd09 516 CPU revision : 2 517 518 processor : 4 519 BogoMIPS : 48.00 520 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 521 CPU implementer : 0x41 522 CPU architecture: 8 523 CPU variant : 0x0 524 CPU part : 0xd09 525 CPU revision : 2 526 527 processor : 5 528 BogoMIPS : 48.00 529 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 530 CPU implementer : 0x41 531 CPU architecture: 8 532 CPU variant : 0x0 533 CPU part : 0xd09 534 CPU revision : 2 535 536 537 ### meminfo: 538 539 MemTotal: 3719728 kB 540 MemFree: 3397716 kB 541 MemAvailable: 3348364 kB 542 Buffers: 10316 kB 543 Cached: 40288 kB 544 SwapCached: 0 kB 545 Active: 29212 kB 546 Inactive: 185872 kB 547 Active(anon): 88 kB 548 Inactive(anon): 169544 kB 549 Active(file): 29124 kB 550 Inactive(file): 16328 kB 551 Unevictable: 0 kB 552 Mlocked: 0 kB 553 SwapTotal: 1859860 kB 554 SwapFree: 1859860 kB 555 Dirty: 580 kB 556 Writeback: 0 kB 557 AnonPages: 165100 kB 558 Mapped: 10744 kB 559 Shmem: 4860 kB 560 KReclaimable: 12560 kB 561 Slab: 38440 kB 562 SReclaimable: 12560 kB 563 SUnreclaim: 25880 kB 564 KernelStack: 2096 kB 565 PageTables: 4508 kB 566 NFS_Unstable: 0 kB 567 Bounce: 0 kB 568 WritebackTmp: 0 kB 569 CommitLimit: 3719724 kB 570 Committed_AS: 4212588 kB 571 VmallocTotal: 135290159040 kB 572 VmallocUsed: 38212 kB 573 VmallocChunk: 0 kB 574 Percpu: 1368 kB 575 HardwareCorrupted: 0 kB 576 AnonHugePages: 40960 kB 577 ShmemHugePages: 0 kB 578 ShmemPmdMapped: 0 kB 579 FileHugePages: 0 kB 580 FilePmdMapped: 0 kB 581 CmaTotal: 917504 kB 582 CmaFree: 909824 kB 583 HugePages_Total: 0 584 HugePages_Free: 0 585 HugePages_Rsvd: 0 586 HugePages_Surp: 0 587 Hugepagesize: 2048 kB 588 Hugetlb: 0 kB 589 590 ### virtual memory: 591 592 vm.admin_reserve_kbytes = 8192 593 Thu 04 Feb 2021 01:01:21 PM UTC | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 594 vm.block_dump = 0 595 vm.compaction_proactiveness = 20 596 vm.compact_unevictable_allowed = 1 597 vm.dirty_background_bytes = 0 598 vm.dirty_background_ratio = 10 599 vm.dirty_bytes = 0 600 vm.dirty_expire_centisecs = 3000 601 vm.dirty_ratio = 20 602 vm.dirtytime_expire_seconds = 43200 603 vm.dirty_writeback_centisecs = 500 604 vm.extfrag_threshold = 500 605 vm.hugetlb_shm_group = 0 606 vm.laptop_mode = 0 607 608 ### [resize2fs] Leaving 1% spare area. Start resizing partition /dev/mmcblk1p1 now: 609 610 major minor #blocks name 611 612 179 0 31464960 mmcblk1 613 179 1 1802240 mmcblk1p1 614 252 0 1859864 zram0 615 252 1 51200 zram1 616 252 2 1859864 zram2 617 vm.legacy_va_layout = 0 618 619 Executing fdisk, fsck and partprobe: 620 vm.lowmem_reserve_ratio = 256 256 32 0 621 vm.max_map_count = 65530 622 vm.memory_failure_early_kill = 0 623 vm.memory_failure_recovery = 1 624 625 Welcome to fdisk (util-linux 2.33.1). 626 Changes will remain in memory only, until you decide to write them. 627 Be careful before using the write command. 628 629 630 Command (m for help): Selected partition 1 631 Partition 1 has been deleted. 632 633 Command (m for help): Partition type 634 p primary (0 primary, 0 extended, 4 free) 635 e extended (container for logical partitions) 636 Select (default p): Partition number (1-4, default 1): First sector (2048-62929919, default 2048): Last sector, +/-sectors or +/-size{K,M,G,T,P} (8192-62929919, default 62929919): vm.min_free_kbytes = 45056 637 vm.min_slab_ratio = 5 638 vm.min_unmapped_ratio = 1 639 640 Created a new partition 1 of type 'Linux' and of size 29.7 GiB. 641 Partition #1 contains a ext4 signature. 642 643 Command (m for help): vm.mmap_min_addr = 4096 644 vm.mmap_rnd_bits = 18 645 vm.mmap_rnd_compat_bits = 11 646 vm.nr_hugepages = 0 647 vm.nr_hugepages_mempolicy = 0 648 vm.nr_overcommit_hugepages = 0 649 650 The partition table has been altered. 651 Syncing disks. 652 653 vm.numa_stat = 1 654 vm.numa_zonelist_order = Node 655 vm.oom_dump_tasks = 1 656 vm.oom_kill_allocating_task = 0 657 vm.overcommit_kbytes = 0 658 vm.overcommit_memory = 0 659 vm.overcommit_ratio = 50 660 New partition table: 661 662 major minor #blocks name 663 664 179 0 31464960 mmcblk1 665 179 1 31146208 mmcblk1p1 666 252 0 1859864 zram0 667 252 1 51200 zram1 668 252 2 1859864 zram2 669 670 Now trying to resize ext4 filesystem on /dev/mmcblk1p1 to the limits: 671 672 vm.page-cluster = 0 673 resize2fs 1.44.5 (15-Dec-2018) 674 vm.page_lock_unfairness = 5 675 vm.panic_on_oom = 0 676 vm.percpu_pagelist_fraction = 0 677 vm.stat_interval = 1 678 vm.swappiness = 100 679 vm.user_reserve_kbytes = 115014 680 vm.vfs_cache_pressure = 100 681 vm.watermark_boost_factor = 15000 682 vm.watermark_scale_factor = 10 683 vm.zone_reclaim_mode = 0 684 685 ### ip addr: 686 687 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 688 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 689 inet XXX.XXX.0.1/8 scope host lo 690 valid_lft forever preferred_lft forever 691 inet6 ::1/128 scope host 692 valid_lft forever preferred_lft forever 693 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 694 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 695 696 ### partitions: 697 698 major minor #blocks name 699 700 179 0 31464960 mmcblk1 701 179 1 31146208 mmcblk1p1 702 252 0 1859864 zram0 703 252 1 51200 zram1 704 252 2 1859864 zram2 705 706 ### df: 707 708 udev 1.4G 0 1.4G 0% /dev 709 tmpfs 364M 4.9M 359M 2% /run 710 /dev/mmcblk1p1 2.0G 1.5G 479M 76% / 711 tmpfs 1.8G 0 1.8G 0% /dev/shm 712 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 713 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 714 /dev/zram2 1.8G 5.4M 1.7G 1% /tmp 715 /dev/zram1 49M 604K 45M 2% /var/log 716 717 ### lsblk: 718 719 NAME FSTYPE SIZE MOUNTPOINT UUID 720 mmcblk1 30G 721 └─mmcblk1p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 722 zram1 50M /var/log 723 zram2 1.8G /tmp 724 725 ### zramctl: 726 727 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 728 /dev/zram2 lzo-rle 1.8G 1.1M 18.9K 108K 6 /tmp 729 /dev/zram1 zstd 50M 684K 95.6K 400K 6 /var/log 730 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 731 732 ### mtab: 733 734 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 735 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 736 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 737 /dev/zram2 /tmp ext4 rw,nosuid,relatime,discard 0 0 738 739 ### mmc1:b368 info: 740 741 fwrev: 0x0 742 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 743 cid: 6f0303434241445310aa002b4d013b00 744 rca: 0xb368 745 csd: 400e005a5b590000f00e7f800a404000 746 manfid: 0x00006f 747 ocr: 0x00200000 748 preferred_erase_size: 2097152 749 type: SD 750 hwrev: 0x1 751 date: 11/2019 752 dsr: 0x404 753 erase_size: 512 754 oemid: 0x0303 755 serial: 0xaa002b4d 756 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 757 scr: 02b5800300000000 758 name: CBADS 759 760 ### Boot system health: 761 762 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 763 13:01:22: 1908/1992MHz 2.36 22% 10% 4% 0% 7% 0% 24.9°C 0/11 764 13:01:22: 1908/1992MHz 2.36 13% 1% 0% 0% 11% 0% 21.9°C 0/11 765 13:01:23: 1908/1992MHz 2.36 8% 1% 0% 0% 6% 0% 21.8°C 0/11 766 13:01:23: 1908/1992MHz 2.36 6% 1% 0% 0% 4% 0% 21.3°C 0/11 767 13:01:23: 1908/1992MHz 2.36 34% 5% 1% 0% 27% 0% 21.9°C 0/11 768 Filesystem at /dev/mmcblk1p1 is mounted on /; on-line resizing required 769 old_desc_blocks = 1, new_desc_blocks = 2 770 The filesystem on /dev/mmcblk1p1 is now 7786552 (4k) blocks long. 771 772 773 ### [resize2fs] Start resizing ext4 partition /dev/mmcblk1p1 now 774 775 resize2fs 1.44.5 (15-Dec-2018) 776 The filesystem is already 7786552 (4k) blocks long. Nothing to do! 777 778 779 ### quick iozone test: 4 376 559 600 1110 8475 3638 780 781 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 782 783 ### Activated Armbian ramlog partition with zstd compression 784 785 Sun 14 Feb 2021 01:49:20 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 786 787 ### dmesg: 788 789 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 790 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 791 [ 0.000000] Machine model: Hardkernel ODROID-N2 792 [ 0.000000] efi: UEFI not found. 793 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 794 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 795 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 796 [ 0.000000] NUMA: No NUMA configuration found 797 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 798 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 799 [ 0.000000] Zone ranges: 800 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 801 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 802 [ 0.000000] Normal empty 803 [ 0.000000] Movable zone start for each node 804 [ 0.000000] Early memory node ranges 805 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 806 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 807 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 808 [ 0.000000] On node 0 totalpages: 972032 809 [ 0.000000] DMA zone: 4096 pages used for memmap 810 [ 0.000000] DMA zone: 0 pages reserved 811 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 812 [ 0.000000] DMA32 zone: 11104 pages used for memmap 813 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 814 [ 0.000000] psci: probing for conduit method from DT. 815 [ 0.000000] psci: PSCIv1.0 detected in firmware. 816 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 817 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 818 [ 0.000000] psci: SMC Calling Convention v1.1 819 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 820 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 821 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 822 [ 0.000000] Detected VIPT I-cache on CPU0 823 [ 0.000000] CPU features: detected: ARM erratum 845719 824 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 825 [ 0.000000] Policy zone: DMA32 826 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 827 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 828 Please use sysfs to set IO scheduler for individual devices. 829 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 830 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 831 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 832 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac4000-0x000000003cac4000] (64MB) 833 [ 0.000000] Memory: 2785348K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185276K reserved, 917504K cma-reserved) 834 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 835 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 836 [ 0.000000] rcu: RCU event tracing is enabled. 837 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 838 [ 0.000000] Trampoline variant of Tasks RCU enabled. 839 [ 0.000000] Rude variant of Tasks RCU enabled. 840 [ 0.000000] Tracing variant of Tasks RCU enabled. 841 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 842 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 843 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 844 [ 0.000000] GIC: Using split EOI/Deactivate mode 845 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 846 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 847 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 848 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 849 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 850 [ 0.000249] Console: colour dummy device 80x25 851 [ 0.000282] printk: console [tty1] enabled 852 [ 0.000370] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 853 [ 0.000381] pid_max: default: 32768 minimum: 301 854 [ 0.000464] LSM: Security Framework initializing 855 [ 0.000490] Yama: becoming mindful. 856 [ 0.000582] AppArmor: AppArmor initialized 857 [ 0.000632] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 858 [ 0.000651] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 859 [ 0.002642] rcu: Hierarchical SRCU implementation. 860 [ 0.005097] EFI services will not be available. 861 [ 0.005518] smp: Bringing up secondary CPUs ... 862 [ 0.006186] Detected VIPT I-cache on CPU1 863 [ 0.006247] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 864 [ 0.007437] CPU features: detected: ARM erratum 858921 865 [ 0.007446] CPU features: detected: Spectre-v2 866 [ 0.007449] CPU features: detected: Spectre-v4 867 [ 0.007455] Detected VIPT I-cache on CPU2 868 [ 0.007482] arch_timer: Enabling local workaround for ARM erratum 858921 869 [ 0.007496] arch_timer: CPU2: Trapping CNTVCT access 870 [ 0.007509] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 871 [ 0.008213] Detected VIPT I-cache on CPU3 872 [ 0.008229] arch_timer: Enabling local workaround for ARM erratum 858921 873 [ 0.008236] arch_timer: CPU3: Trapping CNTVCT access 874 [ 0.008244] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 875 [ 0.008865] Detected VIPT I-cache on CPU4 876 [ 0.008882] arch_timer: Enabling local workaround for ARM erratum 858921 877 [ 0.008889] arch_timer: CPU4: Trapping CNTVCT access 878 [ 0.008896] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 879 [ 0.009508] Detected VIPT I-cache on CPU5 880 [ 0.009524] arch_timer: Enabling local workaround for ARM erratum 858921 881 [ 0.009531] arch_timer: CPU5: Trapping CNTVCT access 882 [ 0.009539] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 883 [ 0.009621] smp: Brought up 1 node, 6 CPUs 884 [ 0.009638] SMP: Total of 6 processors activated. 885 [ 0.009646] CPU features: detected: 32-bit EL0 Support 886 [ 0.009652] CPU features: detected: CRC32 instructions 887 [ 0.009658] CPU features: detected: 32-bit EL1 Support 888 [ 0.020943] CPU: All CPU(s) started at EL2 889 [ 0.020992] alternatives: patching kernel code 890 [ 0.022942] devtmpfs: initialized 891 [ 0.030586] Registered cp15_barrier emulation handler 892 [ 0.030601] Registered setend emulation handler 893 [ 0.030736] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 894 [ 0.030776] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 895 [ 0.044719] pinctrl core: initialized pinctrl subsystem 896 [ 0.045454] DMI not present or invalid. 897 [ 0.045820] NET: Registered protocol family 16 898 [ 0.047339] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 899 [ 0.047627] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 900 [ 0.047856] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 901 [ 0.047895] audit: initializing netlink subsys (disabled) 902 [ 0.048001] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 903 [ 0.049230] thermal_sys: Registered thermal governor 'fair_share' 904 [ 0.049238] thermal_sys: Registered thermal governor 'bang_bang' 905 [ 0.049244] thermal_sys: Registered thermal governor 'step_wise' 906 [ 0.049247] thermal_sys: Registered thermal governor 'user_space' 907 [ 0.049667] cpuidle: using governor menu 908 [ 0.050002] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 909 [ 0.050124] ASID allocator initialised with 65536 entries 910 [ 0.051080] Serial: AMBA PL011 UART driver 911 [ 0.085746] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 912 [ 0.085757] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 913 [ 0.085762] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 914 [ 0.085766] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 915 [ 0.087314] cryptd: max_cpu_qlen set to 1000 916 [ 0.156189] raid6: neonx8 gen() 2780 MB/s 917 [ 0.224267] raid6: neonx8 xor() 1604 MB/s 918 [ 0.292312] raid6: neonx4 gen() 3153 MB/s 919 [ 0.360376] raid6: neonx4 xor() 2399 MB/s 920 [ 0.428447] raid6: neonx2 gen() 2544 MB/s 921 [ 0.496506] raid6: neonx2 xor() 2207 MB/s 922 [ 0.564593] raid6: neonx1 gen() 2070 MB/s 923 [ 0.632677] raid6: neonx1 xor() 1247 MB/s 924 [ 0.700729] raid6: int64x8 gen() 1374 MB/s 925 [ 0.768801] raid6: int64x8 xor() 735 MB/s 926 [ 0.836883] raid6: int64x4 gen() 1463 MB/s 927 [ 0.904931] raid6: int64x4 xor() 733 MB/s 928 [ 0.972986] raid6: int64x2 gen() 1362 MB/s 929 [ 1.041067] raid6: int64x2 xor() 619 MB/s 930 [ 1.109117] raid6: int64x1 gen() 1120 MB/s 931 [ 1.177198] raid6: int64x1 xor() 462 MB/s 932 [ 1.177201] raid6: using algorithm neonx4 gen() 3153 MB/s 933 [ 1.177204] raid6: .... xor() 2399 MB/s, rmw enabled 934 [ 1.177208] raid6: using neon recovery algorithm 935 [ 1.177657] ACPI: Interpreter disabled. 936 [ 1.178454] 5V: supplied by 12V 937 [ 1.179360] VDDAO_3V3: supplied by 12V 938 [ 1.179821] iommu: Default domain type: Translated 939 [ 1.179953] vgaarb: loaded 940 [ 1.180890] SCSI subsystem initialized 941 [ 1.181196] usbcore: registered new interface driver usbfs 942 [ 1.181236] usbcore: registered new interface driver hub 943 [ 1.181267] usbcore: registered new device driver usb 944 [ 1.181577] pps_core: LinuxPPS API ver. 1 registered 945 [ 1.181582] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 946 [ 1.181608] PTP clock support registered 947 [ 1.181796] EDAC MC: Ver: 3.0.0 948 [ 1.183101] NetLabel: Initializing 949 [ 1.183108] NetLabel: domain hash size = 128 950 [ 1.183111] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 951 [ 1.183154] NetLabel: unlabeled traffic allowed by default 952 [ 1.183578] clocksource: Switched to clocksource arch_sys_counter 953 [ 1.183786] VFS: Disk quotas dquot_6.6.0 954 [ 1.183832] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 955 [ 1.184182] AppArmor: AppArmor Filesystem Enabled 956 [ 1.184227] pnp: PnP ACPI: disabled 957 [ 1.189843] NET: Registered protocol family 2 958 [ 1.190304] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 959 [ 1.190408] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 960 [ 1.190664] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 961 [ 1.190850] TCP: Hash tables configured (established 32768 bind 32768) 962 [ 1.190999] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 963 [ 1.191064] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 964 [ 1.191110] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 965 [ 1.191265] NET: Registered protocol family 1 966 [ 1.191284] PCI: CLS 0 bytes, default 64 967 [ 1.191417] Trying to unpack rootfs image as initramfs... 968 [ 1.726831] Freeing initrd memory: 13548K 969 [ 1.727802] kvm [1]: IPA Size Limit: 40 bits 970 [ 1.728513] kvm [1]: vgic interrupt IRQ9 971 [ 1.728653] kvm [1]: Hyp mode initialized successfully 972 [ 1.732535] Initialise system trusted keyrings 973 [ 1.732566] Key type blacklist registered 974 [ 1.732664] workingset: timestamp_bits=44 max_order=20 bucket_order=0 975 [ 1.735864] zbud: loaded 976 [ 1.736840] squashfs: version 4.0 (2009/01/31) Phillip Lougher 977 [ 1.737346] fuse: init (API version 7.32) 978 [ 1.738115] integrity: Platform Keyring initialized 979 [ 1.765876] xor: measuring software checksum speed 980 [ 1.768724] 8regs : 3473 MB/sec 981 [ 1.771173] 32regs : 4022 MB/sec 982 [ 1.773825] arm64_neon : 3721 MB/sec 983 [ 1.773829] xor: using function: 32regs (4022 MB/sec) 984 [ 1.773836] Key type asymmetric registered 985 [ 1.773840] Asymmetric key parser 'x509' registered 986 [ 1.773873] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 987 [ 1.773958] io scheduler mq-deadline registered 988 [ 1.773962] io scheduler kyber registered 989 [ 1.774047] io scheduler bfq registered 990 [ 1.776615] gpio-447 (usb-hub-reset): hogged as output/high 991 [ 1.779544] EINJ: ACPI disabled. 992 [ 1.785808] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 993 [ 1.787200] VCC_3V3: supplied by VDDAO_3V3 994 [ 1.787240] FLASH_1V8: supplied by VCC_3V3 995 [ 1.787271] VCC_1V8: supplied by VCC_3V3 996 [ 1.787298] VDDAO_1V8: supplied by VDDAO_3V3 997 [ 1.787340] VDDCPU_A: supplied by regulator-dummy 998 [ 1.787734] VDDCPU_B: supplied by regulator-dummy 999 [ 1.788418] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 1000 [ 1.790779] Serial: AMBA driver 1001 [ 1.791072] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 1002 [ 1.791168] printk: console [ttyAML0] enabled 1003 [ 1.791780] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 1004 [ 1.797306] loop: module loaded 1005 [ 1.799227] libphy: Fixed MDIO Bus: probed 1006 [ 1.800438] tun: Universal TUN/TAP device driver, 1.6 1007 [ 1.801124] thunder_xcv, ver 1.0 1008 [ 1.801154] thunder_bgx, ver 1.0 1009 [ 1.801183] nicpf, ver 1.0 1010 [ 1.801640] e1000e: Intel(R) PRO/1000 Network Driver 1011 [ 1.801644] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 1012 [ 1.801686] igb: Intel(R) Gigabit Ethernet Network Driver 1013 [ 1.801689] igb: Copyright (c) 2007-2014 Intel Corporation. 1014 [ 1.801719] igbvf: Intel(R) Gigabit Virtual Function Network Driver 1015 [ 1.801722] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 1016 [ 1.801850] sky2: driver version 1.30 1017 [ 1.802248] VFIO - User Level meta-driver version: 0.3 1018 [ 1.803754] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 1019 [ 1.803790] ehci-pci: EHCI PCI platform driver 1020 [ 1.803828] ehci-platform: EHCI generic platform driver 1021 [ 1.803969] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 1022 [ 1.803980] ohci-pci: OHCI PCI platform driver 1023 [ 1.804016] ohci-platform: OHCI generic platform driver 1024 [ 1.804446] usbcore: registered new interface driver usb-storage 1025 [ 1.805794] mousedev: PS/2 mouse device common for all mice 1026 [ 1.806187] i2c /dev entries driver 1027 [ 1.811321] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 1028 [ 1.812456] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 1029 [ 1.813152] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 1030 [ 1.813787] sdhci: Secure Digital Host Controller Interface driver 1031 [ 1.813795] sdhci: Copyright(c) Pierre Ossman 1032 [ 1.813918] Synopsys Designware Multimedia Card Interface Driver 1033 [ 1.814372] sdhci-pltfm: SDHCI platform and OF driver helper 1034 [ 1.814788] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 1035 [ 1.815225] ledtrig-cpu: registered to indicate activity on CPUs 1036 [ 1.815497] meson-sm: secure-monitor enabled 1037 [ 1.815920] hid: raw HID events driver (C) Jiri Kosina 1038 [ 1.816027] usbcore: registered new interface driver usbhid 1039 [ 1.816030] usbhid: USB HID core driver 1040 [ 1.817214] NET: Registered protocol family 10 1041 [ 1.817660] Segment Routing with IPv6 1042 [ 1.817687] NET: Registered protocol family 17 1043 [ 1.817742] 8021q: 802.1Q VLAN Support v1.8 1044 [ 1.817766] Key type dns_resolver registered 1045 [ 1.818031] registered taskstats version 1 1046 [ 1.818036] Loading compiled-in X.509 certificates 1047 [ 1.819778] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 1048 [ 1.821439] zswap: loaded using pool zstd/z3fold 1049 [ 1.821608] Key type ._fscrypt registered 1050 [ 1.821610] Key type .fscrypt registered 1051 [ 1.821612] Key type fscrypt-provisioning registered 1052 [ 1.822712] Btrfs loaded, crc32c=crc32c-generic 1053 [ 1.828821] Key type encrypted registered 1054 [ 1.828832] AppArmor: AppArmor sha1 policy hashing enabled 1055 [ 1.835169] HUB_5V: supplied by 5V 1056 [ 1.835384] USB_PWR_EN: supplied by 5V 1057 [ 1.836964] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 1058 [ 1.836970] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 1059 [ 1.839601] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 1060 [ 1.839838] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 1061 [ 1.840366] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 1062 [ 1.840996] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 1063 [ 1.841008] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 1064 [ 1.841129] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 1065 [ 1.841148] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 1066 [ 1.841264] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 1067 [ 1.841267] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1068 [ 1.841270] usb usb1: Product: xHCI Host Controller 1069 [ 1.841272] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 1070 [ 1.841274] usb usb1: SerialNumber: xhci-hcd.0.auto 1071 [ 1.841506] hub 1-0:1.0: USB hub found 1072 [ 1.841519] hub 1-0:1.0: 2 ports detected 1073 [ 1.841649] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 1074 [ 1.841654] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 1075 [ 1.841659] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 1076 [ 1.841681] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 1077 [ 1.841711] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 1078 [ 1.841714] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1079 [ 1.841717] usb usb2: Product: xHCI Host Controller 1080 [ 1.841719] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 1081 [ 1.841721] usb usb2: SerialNumber: xhci-hcd.0.auto 1082 [ 1.841888] hub 2-0:1.0: USB hub found 1083 [ 1.841899] hub 2-0:1.0: 1 port detected 1084 [ 1.842150] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 1085 [ 1.842997] meson-gx-mmc ffe05000.sd: Got CD GPIO 1086 [ 1.868619] Freeing unused kernel memory: 3328K 1087 [ 1.915638] Run /init as init process 1088 [ 1.915642] with arguments: 1089 [ 1.915644] /init 1090 [ 1.915646] with environment: 1091 [ 1.915648] HOME=/ 1092 [ 1.915649] TERM=linux 1093 [ 1.915651] hdmimode=1080p60hz 1094 [ 1.915653] cvbsmode=576cvbs 1095 [ 1.915654] max_freq_a53=1896 1096 [ 1.915656] max_freq_a73=1800 1097 [ 1.915657] voutmode=hdmi 1098 [ 1.915659] disablehpd=false 1099 [ 1.915660] cvbscable=0 1100 [ 1.915661] overscan=100 1101 [ 1.918277] mmc0: new high speed SDHC card at address b368 1102 [ 1.918775] mmcblk0: mmc0:b368 CBADS 30.0 GiB 1103 [ 1.920445] mmcblk0: p1 1104 [ 2.060424] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 1105 [ 2.060435] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 1106 [ 2.060539] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 1107 [ 2.063534] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 1108 [ 2.063548] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 1109 [ 2.063551] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 1110 [ 2.063555] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 1111 [ 2.063558] meson8b-dwmac ff3f0000.ethernet: COE Type 2 1112 [ 2.063561] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 1113 [ 2.063592] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 1114 [ 2.063671] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 1115 [ 2.063675] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 1116 [ 2.063678] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 1117 [ 2.064033] libphy: stmmac: probed 1118 [ 2.065797] libphy: mdio_mux: probed 1119 [ 2.080423] meson-vrtc ff8000a8.rtc: registered as rtc1 1120 [ 2.093694] rtc-pcf8563 1-0051: registered as rtc0 1121 [ 2.094963] rtc-pcf8563 1-0051: setting system clock to 2021-02-14T13:49:13 UTC (1613310553) 1122 [ 2.179713] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 1123 [ 2.204307] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 1124 [ 2.204315] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1125 [ 2.204318] usb 2-1: Product: USB3.1 Hub 1126 [ 2.204320] usb 2-1: Manufacturer: GenesysLogic 1127 [ 2.225917] hub 2-1:1.0: USB hub found 1128 [ 2.226204] hub 2-1:1.0: 4 ports detected 1129 [ 2.268185] libphy: mdio_mux: probed 1130 [ 2.327591] usb 1-1: new high-speed USB device number 2 using xhci-hcd 1131 [ 2.328233] random: fast init done 1132 [ 2.477872] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 1133 [ 2.477876] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1134 [ 2.477879] usb 1-1: Product: USB2.1 Hub 1135 [ 2.477881] usb 1-1: Manufacturer: GenesysLogic 1136 [ 2.513868] hub 1-1:1.0: USB hub found 1137 [ 2.514111] hub 1-1:1.0: 4 ports detected 1138 [ 2.817028] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 1139 [ 3.600959] systemd[1]: Inserted module 'autofs4' 1140 [ 3.647403] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 1141 [ 3.647630] systemd[1]: Detected architecture arm64. 1142 [ 3.681838] systemd[1]: Set hostname to <odroidn2>. 1143 [ 3.970929] random: systemd: uninitialized urandom read (16 bytes read) 1144 [ 3.974293] random: systemd: uninitialized urandom read (16 bytes read) 1145 [ 3.974513] systemd[1]: Listening on Journal Audit Socket. 1146 [ 3.974723] random: systemd: uninitialized urandom read (16 bytes read) 1147 [ 3.974740] systemd[1]: Reached target System Time Synchronized. 1148 [ 3.976073] systemd[1]: Created slice system-getty.slice. 1149 [ 3.976399] systemd[1]: Listening on Syslog Socket. 1150 [ 3.976864] systemd[1]: Created slice User and Session Slice. 1151 [ 3.977107] systemd[1]: Listening on Journal Socket (/dev/log). 1152 [ 3.977260] systemd[1]: Listening on initctl Compatibility Named Pipe. 1153 [ 4.060382] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 1154 [ 4.672758] zram: Added device: zram0 1155 [ 4.672931] zram: Added device: zram1 1156 [ 4.673100] zram: Added device: zram2 1157 [ 4.781972] zram0: detected capacity change from 0 to 1904500736 1158 [ 4.860262] pwm-gpio pwmgpio: 1 gpio pwms loaded 1159 [ 5.008474] panfrost ffe40000.gpu: clock rate = 24000000 1160 [ 5.008547] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 1161 [ 5.009517] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 1162 [ 5.009527] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 1163 [ 5.009533] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 1164 [ 5.009536] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 1165 [ 5.024724] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 1166 [ 5.046143] mc: Linux media interface: v0.10 1167 [ 5.057224] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 1168 [ 5.076886] meson-drm ff900000.vpu: Queued 2 outputs on vpu 1169 [ 5.099439] videodev: Linux video capture interface: v2.00 1170 [ 5.137532] meson-drm ff900000.vpu: CVBS Output connector not available 1171 [ 5.159682] Registered IR keymap rc-odroid 1172 [ 5.164007] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 1173 [ 5.167007] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 1174 [ 5.167506] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 1175 [ 5.168025] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 1176 [ 5.168131] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 1177 [ 5.173264] IR NEC protocol handler initialized 1178 [ 5.199703] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 1179 [ 5.199910] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 1180 [ 5.200042] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 1181 [ 5.200314] meson-ir ff808000.ir: receiver initialized 1182 [ 5.214937] axg-sound-card sound: ASoC: no DMI vendor name! 1183 [ 5.231924] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 1184 [ 5.851616] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 1185 [ 5.922836] zram1: detected capacity change from 0 to 52428800 1186 [ 8.016287] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 1187 [ 8.016306] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 1188 [ 8.892906] systemd[1]: Started Armbian memory supported logging. 1189 [ 8.897091] systemd[1]: Starting Journal Service... 1190 [ 8.951421] systemd[1]: Started Journal Service. 1191 [ 8.972762] systemd-journald[2003]: Received request to flush runtime journal from PID 1 1192 1193 ### armbian-release: 1194 1195 # PLEASE DO NOT EDIT THIS FILE 1196 BOARD=odroidn2 1197 BOARD_NAME="Odroid N2" 1198 BOARDFAMILY=meson-g12b 1199 BUILD_REPOSITORY_URL=https://github.com/armbian/build 1200 BUILD_REPOSITORY_COMMIT=5f03d652 1201 DISTRIBUTION_CODENAME=buster 1202 DISTRIBUTION_STATUS=supported 1203 VERSION=21.02.1 1204 LINUXFAMILY=meson64 1205 BRANCH=current 1206 ARCH=arm64 1207 IMAGE_TYPE=stable 1208 BOARD_TYPE=conf 1209 INITRD_ARCH=arm64 1210 KERNEL_IMAGE_TYPE=Image 1211 1212 ### boot environment: 1213 1214 verbosity=1 1215 console=both 1216 overlay_prefix=meson 1217 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 1218 rootfstype=ext4 1219 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 1220 1221 ### lsusb: 1222 1223 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 1224 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 1225 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 1226 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1227 1228 ### lscpu: 1229 1230 Architecture: aarch64 1231 Byte Order: Little Endian 1232 CPU(s): 6 1233 On-line CPU(s) list: 0-5 1234 Thread(s) per core: 1 1235 Core(s) per socket: 3 1236 Socket(s): 2 1237 NUMA node(s): 1 1238 Vendor ID: ARM 1239 Model: 4 1240 Model name: Cortex-A53 1241 Stepping: r0p4 1242 CPU max MHz: 1992.0000 1243 CPU min MHz: 100.0000 1244 BogoMIPS: 48.00 1245 L1d cache: unknown size 1246 L1i cache: unknown size 1247 L2 cache: unknown size 1248 NUMA node0 CPU(s): 0-5 1249 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1250 1251 ### cpuinfo: 1252 1253 processor : 0 1254 BogoMIPS : 48.00 1255 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1256 CPU implementer : 0x41 1257 CPU architecture: 8 1258 CPU variant : 0x0 1259 CPU part : 0xd03 1260 CPU revision : 4 1261 1262 processor : 1 1263 BogoMIPS : 48.00 1264 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1265 CPU implementer : 0x41 1266 CPU architecture: 8 1267 CPU variant : 0x0 1268 CPU part : 0xd03 1269 CPU revision : 4 1270 1271 processor : 2 1272 BogoMIPS : 48.00 1273 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1274 CPU implementer : 0x41 1275 CPU architecture: 8 1276 CPU variant : 0x0 1277 CPU part : 0xd09 1278 CPU revision : 2 1279 1280 processor : 3 1281 BogoMIPS : 48.00 1282 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1283 CPU implementer : 0x41 1284 CPU architecture: 8 1285 CPU variant : 0x0 1286 CPU part : 0xd09 1287 CPU revision : 2 1288 1289 processor : 4 1290 BogoMIPS : 48.00 1291 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1292 CPU implementer : 0x41 1293 CPU architecture: 8 1294 CPU variant : 0x0 1295 CPU part : 0xd09 1296 CPU revision : 2 1297 1298 processor : 5 1299 BogoMIPS : 48.00 1300 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1301 CPU implementer : 0x41 1302 CPU architecture: 8 1303 CPU variant : 0x0 1304 CPU part : 0xd09 1305 CPU revision : 2 1306 1307 1308 ### meminfo: 1309 1310 MemTotal: 3719728 kB 1311 MemFree: 3416676 kB 1312 MemAvailable: 3369584 kB 1313 Buffers: 10788 kB 1314 Cached: 43300 kB 1315 SwapCached: 0 kB 1316 Active: 29168 kB 1317 Inactive: 173564 kB 1318 Active(anon): 204 kB 1319 Inactive(anon): 153312 kB 1320 Active(file): 28964 kB 1321 Inactive(file): 20252 kB 1322 Unevictable: 0 kB 1323 Mlocked: 0 kB 1324 SwapTotal: 1859860 kB 1325 SwapFree: 1859860 kB 1326 Dirty: 1192 kB 1327 Writeback: 0 kB 1328 AnonPages: 148664 kB 1329 Mapped: 13340 kB 1330 Shmem: 4860 kB 1331 KReclaimable: 13316 kB 1332 Slab: 39232 kB 1333 SReclaimable: 13316 kB 1334 SUnreclaim: 25916 kB 1335 KernelStack: 2496 kB 1336 PageTables: 5848 kB 1337 NFS_Unstable: 0 kB 1338 Bounce: 0 kB 1339 WritebackTmp: 0 kB 1340 CommitLimit: 3719724 kB 1341 Committed_AS: 4239844 kB 1342 VmallocTotal: 135290159040 kB 1343 VmallocUsed: 31360 kB 1344 VmallocChunk: 0 kB 1345 Percpu: 1368 kB 1346 HardwareCorrupted: 0 kB 1347 AnonHugePages: 0 kB 1348 ShmemHugePages: 0 kB 1349 ShmemPmdMapped: 0 kB 1350 FileHugePages: 0 kB 1351 FilePmdMapped: 0 kB 1352 CmaTotal: 917504 kB 1353 CmaFree: 909824 kB 1354 HugePages_Total: 0 1355 HugePages_Free: 0 1356 HugePages_Rsvd: 0 1357 HugePages_Surp: 0 1358 Hugepagesize: 2048 kB 1359 Hugetlb: 0 kB 1360 1361 ### virtual memory: 1362 1363 vm.admin_reserve_kbytes = 8192 1364 vm.block_dump = 0 1365 vm.compaction_proactiveness = 20 1366 vm.compact_unevictable_allowed = 1 1367 vm.dirty_background_bytes = 0 1368 vm.dirty_background_ratio = 10 1369 vm.dirty_bytes = 0 1370 vm.dirty_expire_centisecs = 3000 1371 vm.dirty_ratio = 20 1372 vm.dirtytime_expire_seconds = 43200 1373 vm.dirty_writeback_centisecs = 500 1374 vm.extfrag_threshold = 500 1375 vm.hugetlb_shm_group = 0 1376 vm.laptop_mode = 0 1377 vm.legacy_va_layout = 0 1378 vm.lowmem_reserve_ratio = 256 256 32 0 1379 vm.max_map_count = 65530 1380 vm.memory_failure_early_kill = 0 1381 vm.memory_failure_recovery = 1 1382 vm.min_free_kbytes = 45056 1383 vm.min_slab_ratio = 5 1384 vm.min_unmapped_ratio = 1 1385 vm.mmap_min_addr = 4096 1386 vm.mmap_rnd_bits = 18 1387 vm.mmap_rnd_compat_bits = 11 1388 vm.nr_hugepages = 0 1389 vm.nr_hugepages_mempolicy = 0 1390 vm.nr_overcommit_hugepages = 0 1391 vm.numa_stat = 1 1392 vm.numa_zonelist_order = Node 1393 vm.oom_dump_tasks = 1 1394 vm.oom_kill_allocating_task = 0 1395 vm.overcommit_kbytes = 0 1396 vm.overcommit_memory = 0 1397 vm.overcommit_ratio = 50 1398 vm.page-cluster = 0 1399 vm.page_lock_unfairness = 5 1400 vm.panic_on_oom = 0 1401 vm.percpu_pagelist_fraction = 0 1402 vm.stat_interval = 1 1403 vm.swappiness = 100 1404 vm.user_reserve_kbytes = 115024 1405 vm.vfs_cache_pressure = 100 1406 vm.watermark_boost_factor = 15000 1407 vm.watermark_scale_factor = 10 1408 vm.zone_reclaim_mode = 0 1409 1410 ### ip addr: 1411 1412 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 1413 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 1414 inet XXX.XXX.0.1/8 scope host lo 1415 valid_lft forever preferred_lft forever 1416 inet6 ::1/128 scope host 1417 valid_lft forever preferred_lft forever 1418 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 1419 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 1420 1421 ### partitions: 1422 1423 major minor #blocks name 1424 1425 179 0 31464960 mmcblk0 1426 179 1 31146208 mmcblk0p1 1427 252 0 1859864 zram0 1428 252 1 51200 zram1 1429 1430 ### df: 1431 1432 udev 1.4G 0 1.4G 0% /dev 1433 tmpfs 364M 4.9M 359M 2% /run 1434 /dev/mmcblk0p1 30G 1.6G 28G 6% / 1435 tmpfs 1.8G 0 1.8G 0% /dev/shm 1436 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 1437 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 1438 tmpfs 1.8G 0 1.8G 0% /tmp 1439 /dev/zram1 49M 1.2M 44M 3% /var/log 1440 1441 ### lsblk: 1442 1443 NAME FSTYPE SIZE MOUNTPOINT UUID 1444 mmcblk0 30G 1445 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 1446 zram1 50M /var/log 1447 1448 ### zramctl: 1449 1450 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 1451 /dev/zram1 zstd 50M 132K 695B 36K 6 /var/log 1452 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 1453 1454 ### mtab: 1455 1456 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 1457 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 1458 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 1459 1460 ### mmc0:b368 info: 1461 1462 fwrev: 0x0 1463 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 1464 cid: 6f0303434241445310aa002b4d013b00 1465 rca: 0xb368 1466 csd: 400e005a5b590000f00e7f800a404000 1467 manfid: 0x00006f 1468 ocr: 0x00200000 1469 preferred_erase_size: 2097152 1470 type: SD 1471 hwrev: 0x1 1472 date: 11/2019 1473 dsr: 0x404 1474 erase_size: 512 1475 oemid: 0x0303 1476 serial: 0xaa002b4d 1477 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 1478 scr: 02b5800300000000 1479 name: CBADS 1480 1481 ### Boot system health: 1482 1483 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 1484 13:49:21: 1908/1992MHz 2.64 25% 11% 6% 0% 6% 0% 30.2°C 0/11 1485 13:49:21: 1908/1992MHz 2.67 72% 29% 8% 0% 32% 1% 30.1°C 0/11 1486 13:49:22: 1908/1992MHz 2.67 89% 14% 0% 0% 72% 0% 27.2°C 0/11 1487 13:49:22: 1908/1992MHz 2.67 56% 11% 7% 0% 37% 1% 27.4°C 0/11 1488 13:49:22: 1908/1992MHz 2.67 42% 2% 5% 0% 32% 0% 26.1°C 0/11 1489 1490 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 1491 1492 ### Activated Armbian ramlog partition with zstd compression 1493 1494 Sun 14 Feb 2021 02:21:27 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 1495 1496 ### dmesg: 1497 1498 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 1499 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 1500 [ 0.000000] Machine model: Hardkernel ODROID-N2 1501 [ 0.000000] efi: UEFI not found. 1502 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 1503 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 1504 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 1505 [ 0.000000] NUMA: No NUMA configuration found 1506 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 1507 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 1508 [ 0.000000] Zone ranges: 1509 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 1510 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 1511 [ 0.000000] Normal empty 1512 [ 0.000000] Movable zone start for each node 1513 [ 0.000000] Early memory node ranges 1514 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 1515 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 1516 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 1517 [ 0.000000] On node 0 totalpages: 972032 1518 [ 0.000000] DMA zone: 4096 pages used for memmap 1519 [ 0.000000] DMA zone: 0 pages reserved 1520 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 1521 [ 0.000000] DMA32 zone: 11104 pages used for memmap 1522 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 1523 [ 0.000000] psci: probing for conduit method from DT. 1524 [ 0.000000] psci: PSCIv1.0 detected in firmware. 1525 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 1526 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 1527 [ 0.000000] psci: SMC Calling Convention v1.1 1528 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 1529 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 1530 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 1531 [ 0.000000] Detected VIPT I-cache on CPU0 1532 [ 0.000000] CPU features: detected: ARM erratum 845719 1533 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 1534 [ 0.000000] Policy zone: DMA32 1535 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 1536 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 1537 Please use sysfs to set IO scheduler for individual devices. 1538 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 1539 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 1540 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 1541 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 1542 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 1543 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 1544 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 1545 [ 0.000000] rcu: RCU event tracing is enabled. 1546 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 1547 [ 0.000000] Trampoline variant of Tasks RCU enabled. 1548 [ 0.000000] Rude variant of Tasks RCU enabled. 1549 [ 0.000000] Tracing variant of Tasks RCU enabled. 1550 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 1551 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 1552 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 1553 [ 0.000000] GIC: Using split EOI/Deactivate mode 1554 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 1555 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 1556 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 1557 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 1558 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 1559 [ 0.000248] Console: colour dummy device 80x25 1560 [ 0.000281] printk: console [tty1] enabled 1561 [ 0.000367] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 1562 [ 0.000379] pid_max: default: 32768 minimum: 301 1563 [ 0.000462] LSM: Security Framework initializing 1564 [ 0.000488] Yama: becoming mindful. 1565 [ 0.000579] AppArmor: AppArmor initialized 1566 [ 0.000628] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 1567 [ 0.000646] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 1568 [ 0.002635] rcu: Hierarchical SRCU implementation. 1569 [ 0.005093] EFI services will not be available. 1570 [ 0.005514] smp: Bringing up secondary CPUs ... 1571 [ 0.006185] Detected VIPT I-cache on CPU1 1572 [ 0.006246] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 1573 [ 0.007441] CPU features: detected: ARM erratum 858921 1574 [ 0.007449] CPU features: detected: Spectre-v2 1575 [ 0.007452] CPU features: detected: Spectre-v4 1576 [ 0.007458] Detected VIPT I-cache on CPU2 1577 [ 0.007484] arch_timer: Enabling local workaround for ARM erratum 858921 1578 [ 0.007498] arch_timer: CPU2: Trapping CNTVCT access 1579 [ 0.007511] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 1580 [ 0.008218] Detected VIPT I-cache on CPU3 1581 [ 0.008234] arch_timer: Enabling local workaround for ARM erratum 858921 1582 [ 0.008241] arch_timer: CPU3: Trapping CNTVCT access 1583 [ 0.008249] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 1584 [ 0.008874] Detected VIPT I-cache on CPU4 1585 [ 0.008890] arch_timer: Enabling local workaround for ARM erratum 858921 1586 [ 0.008897] arch_timer: CPU4: Trapping CNTVCT access 1587 [ 0.008905] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 1588 [ 0.009521] Detected VIPT I-cache on CPU5 1589 [ 0.009537] arch_timer: Enabling local workaround for ARM erratum 858921 1590 [ 0.009543] arch_timer: CPU5: Trapping CNTVCT access 1591 [ 0.009551] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 1592 [ 0.009631] smp: Brought up 1 node, 6 CPUs 1593 [ 0.009648] SMP: Total of 6 processors activated. 1594 [ 0.009656] CPU features: detected: 32-bit EL0 Support 1595 [ 0.009661] CPU features: detected: CRC32 instructions 1596 [ 0.009667] CPU features: detected: 32-bit EL1 Support 1597 [ 0.020878] CPU: All CPU(s) started at EL2 1598 [ 0.020928] alternatives: patching kernel code 1599 [ 0.022869] devtmpfs: initialized 1600 [ 0.030524] Registered cp15_barrier emulation handler 1601 [ 0.030538] Registered setend emulation handler 1602 [ 0.030676] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 1603 [ 0.030715] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 1604 [ 0.044634] pinctrl core: initialized pinctrl subsystem 1605 [ 0.045376] DMI not present or invalid. 1606 [ 0.045741] NET: Registered protocol family 16 1607 [ 0.047214] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 1608 [ 0.047487] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 1609 [ 0.047713] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 1610 [ 0.047759] audit: initializing netlink subsys (disabled) 1611 [ 0.047868] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 1612 [ 0.049244] thermal_sys: Registered thermal governor 'fair_share' 1613 [ 0.049251] thermal_sys: Registered thermal governor 'bang_bang' 1614 [ 0.049255] thermal_sys: Registered thermal governor 'step_wise' 1615 [ 0.049258] thermal_sys: Registered thermal governor 'user_space' 1616 [ 0.049681] cpuidle: using governor menu 1617 [ 0.050015] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 1618 [ 0.050134] ASID allocator initialised with 65536 entries 1619 [ 0.051090] Serial: AMBA PL011 UART driver 1620 [ 0.085603] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 1621 [ 0.085613] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 1622 [ 0.085618] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 1623 [ 0.085622] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 1624 [ 0.087982] cryptd: max_cpu_qlen set to 1000 1625 [ 0.156200] raid6: neonx8 gen() 2785 MB/s 1626 [ 0.224264] raid6: neonx8 xor() 2042 MB/s 1627 [ 0.292356] raid6: neonx4 gen() 2996 MB/s 1628 [ 0.360400] raid6: neonx4 xor() 2399 MB/s 1629 [ 0.428472] raid6: neonx2 gen() 2560 MB/s 1630 [ 0.496543] raid6: neonx2 xor() 2201 MB/s 1631 [ 0.564605] raid6: neonx1 gen() 2089 MB/s 1632 [ 0.632663] raid6: neonx1 xor() 1726 MB/s 1633 [ 0.700739] raid6: int64x8 gen() 1375 MB/s 1634 [ 0.768802] raid6: int64x8 xor() 735 MB/s 1635 [ 0.836875] raid6: int64x4 gen() 1462 MB/s 1636 [ 0.904938] raid6: int64x4 xor() 733 MB/s 1637 [ 0.973008] raid6: int64x2 gen() 1363 MB/s 1638 [ 1.041073] raid6: int64x2 xor() 619 MB/s 1639 [ 1.109139] raid6: int64x1 gen() 1120 MB/s 1640 [ 1.177191] raid6: int64x1 xor() 462 MB/s 1641 [ 1.177195] raid6: using algorithm neonx4 gen() 2996 MB/s 1642 [ 1.177198] raid6: .... xor() 2399 MB/s, rmw enabled 1643 [ 1.177202] raid6: using neon recovery algorithm 1644 [ 1.177648] ACPI: Interpreter disabled. 1645 [ 1.178429] 5V: supplied by 12V 1646 [ 1.179312] VDDAO_3V3: supplied by 12V 1647 [ 1.179848] iommu: Default domain type: Translated 1648 [ 1.179973] vgaarb: loaded 1649 [ 1.180753] SCSI subsystem initialized 1650 [ 1.181084] usbcore: registered new interface driver usbfs 1651 [ 1.181120] usbcore: registered new interface driver hub 1652 [ 1.181161] usbcore: registered new device driver usb 1653 [ 1.181458] pps_core: LinuxPPS API ver. 1 registered 1654 [ 1.181464] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 1655 [ 1.181527] PTP clock support registered 1656 [ 1.181712] EDAC MC: Ver: 3.0.0 1657 [ 1.183023] NetLabel: Initializing 1658 [ 1.183031] NetLabel: domain hash size = 128 1659 [ 1.183034] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 1660 [ 1.183076] NetLabel: unlabeled traffic allowed by default 1661 [ 1.183524] clocksource: Switched to clocksource arch_sys_counter 1662 [ 1.183739] VFS: Disk quotas dquot_6.6.0 1663 [ 1.183783] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 1664 [ 1.184130] AppArmor: AppArmor Filesystem Enabled 1665 [ 1.184174] pnp: PnP ACPI: disabled 1666 [ 1.189511] NET: Registered protocol family 2 1667 [ 1.189972] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 1668 [ 1.190080] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 1669 [ 1.190337] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 1670 [ 1.190524] TCP: Hash tables configured (established 32768 bind 32768) 1671 [ 1.190686] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 1672 [ 1.190751] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 1673 [ 1.190798] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 1674 [ 1.190939] NET: Registered protocol family 1 1675 [ 1.190963] PCI: CLS 0 bytes, default 64 1676 [ 1.191102] Trying to unpack rootfs image as initramfs... 1677 [ 1.727357] Freeing initrd memory: 13544K 1678 [ 1.728312] kvm [1]: IPA Size Limit: 40 bits 1679 [ 1.729018] kvm [1]: vgic interrupt IRQ9 1680 [ 1.729152] kvm [1]: Hyp mode initialized successfully 1681 [ 1.733060] Initialise system trusted keyrings 1682 [ 1.733095] Key type blacklist registered 1683 [ 1.733185] workingset: timestamp_bits=44 max_order=20 bucket_order=0 1684 [ 1.736382] zbud: loaded 1685 [ 1.737370] squashfs: version 4.0 (2009/01/31) Phillip Lougher 1686 [ 1.737808] fuse: init (API version 7.32) 1687 [ 1.738561] integrity: Platform Keyring initialized 1688 [ 1.766290] xor: measuring software checksum speed 1689 [ 1.769139] 8regs : 3473 MB/sec 1690 [ 1.771594] 32regs : 4023 MB/sec 1691 [ 1.774243] arm64_neon : 3719 MB/sec 1692 [ 1.774246] xor: using function: 32regs (4023 MB/sec) 1693 [ 1.774252] Key type asymmetric registered 1694 [ 1.774256] Asymmetric key parser 'x509' registered 1695 [ 1.774289] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 1696 [ 1.774374] io scheduler mq-deadline registered 1697 [ 1.774378] io scheduler kyber registered 1698 [ 1.774460] io scheduler bfq registered 1699 [ 1.777006] gpio-447 (usb-hub-reset): hogged as output/high 1700 [ 1.779963] EINJ: ACPI disabled. 1701 [ 1.786084] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 1702 [ 1.787552] VCC_3V3: supplied by VDDAO_3V3 1703 [ 1.787591] FLASH_1V8: supplied by VCC_3V3 1704 [ 1.787623] VCC_1V8: supplied by VCC_3V3 1705 [ 1.787652] VDDAO_1V8: supplied by VDDAO_3V3 1706 [ 1.787684] VDDCPU_A: supplied by regulator-dummy 1707 [ 1.788061] VDDCPU_B: supplied by regulator-dummy 1708 [ 1.788721] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 1709 [ 1.790944] Serial: AMBA driver 1710 [ 1.791225] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 1711 [ 1.791320] printk: console [ttyAML0] enabled 1712 [ 1.791898] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 1713 [ 1.797441] loop: module loaded 1714 [ 1.799285] libphy: Fixed MDIO Bus: probed 1715 [ 1.800293] tun: Universal TUN/TAP device driver, 1.6 1716 [ 1.800978] thunder_xcv, ver 1.0 1717 [ 1.801006] thunder_bgx, ver 1.0 1718 [ 1.801031] nicpf, ver 1.0 1719 [ 1.801495] e1000e: Intel(R) PRO/1000 Network Driver 1720 [ 1.801499] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 1721 [ 1.801537] igb: Intel(R) Gigabit Ethernet Network Driver 1722 [ 1.801540] igb: Copyright (c) 2007-2014 Intel Corporation. 1723 [ 1.801575] igbvf: Intel(R) Gigabit Virtual Function Network Driver 1724 [ 1.801578] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 1725 [ 1.801711] sky2: driver version 1.30 1726 [ 1.802097] VFIO - User Level meta-driver version: 0.3 1727 [ 1.803537] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 1728 [ 1.803557] ehci-pci: EHCI PCI platform driver 1729 [ 1.803599] ehci-platform: EHCI generic platform driver 1730 [ 1.803741] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 1731 [ 1.803752] ohci-pci: OHCI PCI platform driver 1732 [ 1.803784] ohci-platform: OHCI generic platform driver 1733 [ 1.804203] usbcore: registered new interface driver usb-storage 1734 [ 1.805542] mousedev: PS/2 mouse device common for all mice 1735 [ 1.805924] i2c /dev entries driver 1736 [ 1.811056] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 1737 [ 1.811734] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 1738 [ 1.812418] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 1739 [ 1.812983] sdhci: Secure Digital Host Controller Interface driver 1740 [ 1.812990] sdhci: Copyright(c) Pierre Ossman 1741 [ 1.813103] Synopsys Designware Multimedia Card Interface Driver 1742 [ 1.813542] sdhci-pltfm: SDHCI platform and OF driver helper 1743 [ 1.813979] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 1744 [ 1.814328] ledtrig-cpu: registered to indicate activity on CPUs 1745 [ 1.814572] meson-sm: secure-monitor enabled 1746 [ 1.814854] hid: raw HID events driver (C) Jiri Kosina 1747 [ 1.814937] usbcore: registered new interface driver usbhid 1748 [ 1.814939] usbhid: USB HID core driver 1749 [ 1.816060] NET: Registered protocol family 10 1750 [ 1.816473] Segment Routing with IPv6 1751 [ 1.816502] NET: Registered protocol family 17 1752 [ 1.816550] 8021q: 802.1Q VLAN Support v1.8 1753 [ 1.816577] Key type dns_resolver registered 1754 [ 1.816852] registered taskstats version 1 1755 [ 1.816857] Loading compiled-in X.509 certificates 1756 [ 1.818528] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 1757 [ 1.820272] zswap: loaded using pool zstd/z3fold 1758 [ 1.820479] Key type ._fscrypt registered 1759 [ 1.820482] Key type .fscrypt registered 1760 [ 1.820483] Key type fscrypt-provisioning registered 1761 [ 1.821569] Btrfs loaded, crc32c=crc32c-generic 1762 [ 1.828127] Key type encrypted registered 1763 [ 1.828137] AppArmor: AppArmor sha1 policy hashing enabled 1764 [ 1.834358] HUB_5V: supplied by 5V 1765 [ 1.834542] USB_PWR_EN: supplied by 5V 1766 [ 1.836235] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 1767 [ 1.836242] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 1768 [ 1.838910] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 1769 [ 1.838960] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 1770 [ 1.839064] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 1771 [ 1.839822] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 1772 [ 1.839837] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 1773 [ 1.839930] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 1774 [ 1.839957] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 1775 [ 1.840081] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 1776 [ 1.840085] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1777 [ 1.840088] usb usb1: Product: xHCI Host Controller 1778 [ 1.840090] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 1779 [ 1.840092] usb usb1: SerialNumber: xhci-hcd.0.auto 1780 [ 1.840288] hub 1-0:1.0: USB hub found 1781 [ 1.840305] hub 1-0:1.0: 2 ports detected 1782 [ 1.840434] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 1783 [ 1.840440] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 1784 [ 1.840446] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 1785 [ 1.840466] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 1786 [ 1.840500] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 1787 [ 1.840503] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1788 [ 1.840506] usb usb2: Product: xHCI Host Controller 1789 [ 1.840508] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 1790 [ 1.840510] usb usb2: SerialNumber: xhci-hcd.0.auto 1791 [ 1.840662] hub 2-0:1.0: USB hub found 1792 [ 1.840672] hub 2-0:1.0: 1 port detected 1793 [ 1.841004] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 1794 [ 1.842292] meson-gx-mmc ffe05000.sd: Got CD GPIO 1795 [ 1.868624] Freeing unused kernel memory: 3328K 1796 [ 1.919586] Run /init as init process 1797 [ 1.919590] with arguments: 1798 [ 1.919592] /init 1799 [ 1.919594] with environment: 1800 [ 1.919596] HOME=/ 1801 [ 1.919598] TERM=linux 1802 [ 1.919599] hdmimode=1080p60hz 1803 [ 1.919601] cvbsmode=576cvbs 1804 [ 1.919602] max_freq_a53=1896 1805 [ 1.919604] max_freq_a73=1800 1806 [ 1.919605] voutmode=hdmi 1807 [ 1.919607] disablehpd=false 1808 [ 1.919608] cvbscable=0 1809 [ 1.919610] overscan=100 1810 [ 1.933670] mmc0: new ultra high speed SDR25 SDHC card at address b368 1811 [ 1.934167] mmcblk0: mmc0:b368 CBADS 30.0 GiB 1812 [ 1.936098] mmcblk0: p1 1813 [ 2.063676] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 1814 [ 2.063683] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 1815 [ 2.063772] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 1816 [ 2.064204] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 1817 [ 2.064216] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 1818 [ 2.064221] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 1819 [ 2.064225] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 1820 [ 2.064228] meson8b-dwmac ff3f0000.ethernet: COE Type 2 1821 [ 2.064231] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 1822 [ 2.064234] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 1823 [ 2.064325] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 1824 [ 2.064330] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 1825 [ 2.064334] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 1826 [ 2.064727] libphy: stmmac: probed 1827 [ 2.068832] libphy: mdio_mux: probed 1828 [ 2.079912] meson-vrtc ff8000a8.rtc: registered as rtc1 1829 [ 2.100057] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 1830 [ 2.100670] rtc-pcf8563 1-0051: registered as rtc0 1831 [ 2.101194] random: fast init done 1832 [ 2.102287] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 1833 [ 2.102297] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 1834 [ 2.179550] usb 1-1: new high-speed USB device number 2 using xhci-hcd 1835 [ 2.276200] libphy: mdio_mux: probed 1836 [ 2.329903] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 1837 [ 2.329913] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1838 [ 2.329916] usb 1-1: Product: USB2.1 Hub 1839 [ 2.329920] usb 1-1: Manufacturer: GenesysLogic 1840 [ 2.384743] hub 1-1:1.0: USB hub found 1841 [ 2.384995] hub 1-1:1.0: 4 ports detected 1842 [ 2.455658] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 1843 [ 2.478125] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 1844 [ 2.478130] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1845 [ 2.478134] usb 2-1: Product: USB3.1 Hub 1846 [ 2.478137] usb 2-1: Manufacturer: GenesysLogic 1847 [ 2.496729] hub 2-1:1.0: USB hub found 1848 [ 2.497025] hub 2-1:1.0: 4 ports detected 1849 [ 2.888047] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 1850 [ 3.687484] systemd[1]: System time before build time, advancing clock. 1851 [ 3.702349] systemd[1]: Inserted module 'autofs4' 1852 [ 3.752905] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 1853 [ 3.753281] systemd[1]: Detected architecture arm64. 1854 [ 3.802404] systemd[1]: Set hostname to <odroidn2>. 1855 [ 4.205191] random: systemd: uninitialized urandom read (16 bytes read) 1856 [ 4.210804] random: systemd: uninitialized urandom read (16 bytes read) 1857 [ 4.212610] systemd[1]: Created slice User and Session Slice. 1858 [ 4.212994] random: systemd: uninitialized urandom read (16 bytes read) 1859 [ 4.213466] systemd[1]: Listening on Journal Socket (/dev/log). 1860 [ 4.213741] systemd[1]: Reached target System Time Synchronized. 1861 [ 4.214153] systemd[1]: Listening on initctl Compatibility Named Pipe. 1862 [ 4.214831] systemd[1]: Listening on Journal Audit Socket. 1863 [ 4.215272] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 1864 [ 4.217149] systemd[1]: Created slice system-serial\x2dgetty.slice. 1865 [ 4.306635] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 1866 [ 4.817571] zram: Added device: zram0 1867 [ 4.817766] zram: Added device: zram1 1868 [ 4.817950] zram: Added device: zram2 1869 [ 4.847427] pwm-gpio pwmgpio: 1 gpio pwms loaded 1870 [ 5.019977] mc: Linux media interface: v0.10 1871 [ 5.045560] panfrost ffe40000.gpu: clock rate = 24000000 1872 [ 5.045621] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 1873 [ 5.050858] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 1874 [ 5.050866] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 1875 [ 5.050870] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 1876 [ 5.050873] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 1877 [ 5.065393] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 1878 [ 5.072117] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 1879 [ 5.089900] videodev: Linux video capture interface: v2.00 1880 [ 5.131142] meson-drm ff900000.vpu: Queued 2 outputs on vpu 1881 [ 5.152243] Registered IR keymap rc-odroid 1882 [ 5.182759] IR NEC protocol handler initialized 1883 [ 5.188475] meson-drm ff900000.vpu: CVBS Output connector not available 1884 [ 5.211613] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 1885 [ 5.211698] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 1886 [ 5.211766] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 1887 [ 5.213741] meson-ir ff808000.ir: receiver initialized 1888 [ 5.218778] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 1889 [ 5.223849] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 1890 [ 5.224101] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 1891 [ 5.224332] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 1892 [ 5.224391] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 1893 [ 5.227002] zram0: detected capacity change from 0 to 1904500736 1894 [ 5.267118] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 1895 [ 5.274065] axg-sound-card sound: ASoC: no DMI vendor name! 1896 [ 6.291536] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 1897 [ 6.355170] zram1: detected capacity change from 0 to 52428800 1898 [ 8.439310] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 1899 [ 8.439328] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 1900 [ 9.355810] systemd[1]: Started Armbian memory supported logging. 1901 [ 9.358066] systemd[1]: Starting Journal Service... 1902 [ 9.414026] systemd[1]: Started Journal Service. 1903 [ 9.438714] systemd-journald[1816]: Received request to flush runtime journal from PID 1 1904 1905 ### armbian-release: 1906 1907 # PLEASE DO NOT EDIT THIS FILE 1908 BOARD=odroidn2 1909 BOARD_NAME="Odroid N2" 1910 BOARDFAMILY=meson-g12b 1911 BUILD_REPOSITORY_URL=https://github.com/armbian/build 1912 BUILD_REPOSITORY_COMMIT=5f03d652 1913 DISTRIBUTION_CODENAME=buster 1914 DISTRIBUTION_STATUS=supported 1915 VERSION=21.02.1 1916 LINUXFAMILY=meson64 1917 BRANCH=current 1918 ARCH=arm64 1919 IMAGE_TYPE=stable 1920 BOARD_TYPE=conf 1921 INITRD_ARCH=arm64 1922 KERNEL_IMAGE_TYPE=Image 1923 1924 ### boot environment: 1925 1926 verbosity=1 1927 console=both 1928 overlay_prefix=meson 1929 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 1930 rootfstype=ext4 1931 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 1932 1933 ### lsusb: 1934 1935 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 1936 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 1937 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 1938 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1939 1940 ### lscpu: 1941 1942 Architecture: aarch64 1943 Byte Order: Little Endian 1944 CPU(s): 6 1945 On-line CPU(s) list: 0-5 1946 Thread(s) per core: 1 1947 Core(s) per socket: 3 1948 Socket(s): 2 1949 NUMA node(s): 1 1950 Vendor ID: ARM 1951 Model: 4 1952 Model name: Cortex-A53 1953 Stepping: r0p4 1954 CPU max MHz: 1992.0000 1955 CPU min MHz: 100.0000 1956 BogoMIPS: 48.00 1957 L1d cache: unknown size 1958 L1i cache: unknown size 1959 L2 cache: unknown size 1960 NUMA node0 CPU(s): 0-5 1961 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1962 1963 ### cpuinfo: 1964 1965 processor : 0 1966 BogoMIPS : 48.00 1967 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1968 CPU implementer : 0x41 1969 CPU architecture: 8 1970 CPU variant : 0x0 1971 CPU part : 0xd03 1972 CPU revision : 4 1973 1974 processor : 1 1975 BogoMIPS : 48.00 1976 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1977 CPU implementer : 0x41 1978 CPU architecture: 8 1979 CPU variant : 0x0 1980 CPU part : 0xd03 1981 CPU revision : 4 1982 1983 processor : 2 1984 BogoMIPS : 48.00 1985 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1986 CPU implementer : 0x41 1987 CPU architecture: 8 1988 CPU variant : 0x0 1989 CPU part : 0xd09 1990 CPU revision : 2 1991 1992 processor : 3 1993 BogoMIPS : 48.00 1994 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1995 CPU implementer : 0x41 1996 CPU architecture: 8 1997 CPU variant : 0x0 1998 CPU part : 0xd09 1999 CPU revision : 2 2000 2001 processor : 4 2002 BogoMIPS : 48.00 2003 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2004 CPU implementer : 0x41 2005 CPU architecture: 8 2006 CPU variant : 0x0 2007 CPU part : 0xd09 2008 CPU revision : 2 2009 2010 processor : 5 2011 BogoMIPS : 48.00 2012 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2013 CPU implementer : 0x41 2014 CPU architecture: 8 2015 CPU variant : 0x0 2016 CPU part : 0xd09 2017 CPU revision : 2 2018 2019 2020 ### meminfo: 2021 2022 MemTotal: 3719728 kB 2023 MemFree: 3429232 kB 2024 MemAvailable: 3380928 kB 2025 Buffers: 11812 kB 2026 Cached: 40512 kB 2027 SwapCached: 0 kB 2028 Active: 30404 kB 2029 Inactive: 161468 kB 2030 Active(anon): 92 kB 2031 Inactive(anon): 144464 kB 2032 Active(file): 30312 kB 2033 Inactive(file): 17004 kB 2034 Unevictable: 0 kB 2035 Mlocked: 0 kB 2036 SwapTotal: 1859860 kB 2037 SwapFree: 1859860 kB 2038 Dirty: 1580 kB 2039 Writeback: 0 kB 2040 AnonPages: 139692 kB 2041 Mapped: 11016 kB 2042 Shmem: 4864 kB 2043 KReclaimable: 12792 kB 2044 Slab: 38804 kB 2045 SReclaimable: 12792 kB 2046 SUnreclaim: 26012 kB 2047 KernelStack: 2112 kB 2048 PageTables: 3960 kB 2049 NFS_Unstable: 0 kB 2050 Bounce: 0 kB 2051 WritebackTmp: 0 kB 2052 CommitLimit: 3719724 kB 2053 Committed_AS: 4210540 kB 2054 VmallocTotal: 135290159040 kB 2055 VmallocUsed: 30928 kB 2056 VmallocChunk: 0 kB 2057 Percpu: 1368 kB 2058 HardwareCorrupted: 0 kB 2059 AnonHugePages: 40960 kB 2060 ShmemHugePages: 0 kB 2061 ShmemPmdMapped: 0 kB 2062 FileHugePages: 0 kB 2063 FilePmdMapped: 0 kB 2064 CmaTotal: 917504 kB 2065 CmaFree: 909824 kB 2066 HugePages_Total: 0 2067 HugePages_Free: 0 2068 HugePages_Rsvd: 0 2069 HugePages_Surp: 0 2070 Hugepagesize: 2048 kB 2071 Hugetlb: 0 kB 2072 2073 ### virtual memory: 2074 2075 vm.admin_reserve_kbytes = 8192 2076 vm.block_dump = 0 2077 vm.compaction_proactiveness = 20 2078 vm.compact_unevictable_allowed = 1 2079 vm.dirty_background_bytes = 0 2080 vm.dirty_background_ratio = 10 2081 vm.dirty_bytes = 0 2082 vm.dirty_expire_centisecs = 3000 2083 vm.dirty_ratio = 20 2084 vm.dirtytime_expire_seconds = 43200 2085 vm.dirty_writeback_centisecs = 500 2086 vm.extfrag_threshold = 500 2087 vm.hugetlb_shm_group = 0 2088 vm.laptop_mode = 0 2089 vm.legacy_va_layout = 0 2090 vm.lowmem_reserve_ratio = 256 256 32 0 2091 vm.max_map_count = 65530 2092 vm.memory_failure_early_kill = 0 2093 vm.memory_failure_recovery = 1 2094 vm.min_free_kbytes = 45056 2095 vm.min_slab_ratio = 5 2096 vm.min_unmapped_ratio = 1 2097 vm.mmap_min_addr = 4096 2098 vm.mmap_rnd_bits = 18 2099 vm.mmap_rnd_compat_bits = 11 2100 vm.nr_hugepages = 0 2101 vm.nr_hugepages_mempolicy = 0 2102 vm.nr_overcommit_hugepages = 0 2103 vm.numa_stat = 1 2104 vm.numa_zonelist_order = Node 2105 vm.oom_dump_tasks = 1 2106 vm.oom_kill_allocating_task = 0 2107 vm.overcommit_kbytes = 0 2108 vm.overcommit_memory = 0 2109 vm.overcommit_ratio = 50 2110 vm.page-cluster = 0 2111 vm.page_lock_unfairness = 5 2112 vm.panic_on_oom = 0 2113 vm.percpu_pagelist_fraction = 0 2114 vm.stat_interval = 1 2115 vm.swappiness = 100 2116 vm.user_reserve_kbytes = 115020 2117 vm.vfs_cache_pressure = 100 2118 vm.watermark_boost_factor = 15000 2119 vm.watermark_scale_factor = 10 2120 vm.zone_reclaim_mode = 0 2121 2122 ### ip addr: 2123 2124 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 2125 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2126 inet XXX.XXX.0.1/8 scope host lo 2127 valid_lft forever preferred_lft forever 2128 inet6 ::1/128 scope host 2129 valid_lft forever preferred_lft forever 2130 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 2131 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 2132 2133 ### partitions: 2134 2135 major minor #blocks name 2136 2137 179 0 31464960 mmcblk0 2138 179 1 31146208 mmcblk0p1 2139 252 0 1859864 zram0 2140 252 1 51200 zram1 2141 2142 ### df: 2143 2144 udev 1.4G 0 1.4G 0% /dev 2145 tmpfs 364M 4.9M 359M 2% /run 2146 /dev/mmcblk0p1 30G 1.7G 28G 6% / 2147 tmpfs 1.8G 0 1.8G 0% /dev/shm 2148 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 2149 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 2150 tmpfs 1.8G 0 1.8G 0% /tmp 2151 /dev/zram1 49M 1.6M 44M 4% /var/log 2152 2153 ### lsblk: 2154 2155 NAME FSTYPE SIZE MOUNTPOINT UUID 2156 mmcblk0 30G 2157 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 2158 zram1 50M /var/log 2159 2160 ### zramctl: 2161 2162 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 2163 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 2164 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 2165 2166 ### mtab: 2167 2168 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 2169 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 2170 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 2171 2172 ### mmc0:b368 info: 2173 2174 fwrev: 0x0 2175 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 2176 cid: 6f0303434241445310aa002b4d013b00 2177 rca: 0xb368 2178 csd: 400e005a5b590000f00e7f800a404000 2179 manfid: 0x00006f 2180 ocr: 0x00200000 2181 preferred_erase_size: 2097152 2182 type: SD 2183 hwrev: 0x1 2184 date: 11/2019 2185 dsr: 0x404 2186 erase_size: 512 2187 oemid: 0x0303 2188 serial: 0xaa002b4d 2189 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2190 scr: 02b5800300000000 2191 name: CBADS 2192 2193 ### Boot system health: 2194 2195 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 2196 14:21:28: 1908/1992MHz 2.75 23% 11% 5% 0% 6% 0% 34.1°C 0/11 2197 14:21:28: 1908/1992MHz 2.75 87% 26% 7% 0% 51% 1% 33.1°C 0/11 2198 14:21:28: 1908/1992MHz 2.75 76% 9% 1% 0% 63% 0% 30.2°C 0/11 2199 14:21:29: 1908/1992MHz 2.75 57% 7% 9% 0% 38% 1% 30.4°C 0/11 2200 14:21:29: 1908/1992MHz 2.75 33% 2% 2% 0% 27% 1% 29.9°C 0/11 2201 2202 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 2203 2204 ### Activated Armbian ramlog partition with zstd compression 2205 2206 Sun 14 Feb 2021 02:26:36 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 2207 2208 ### dmesg: 2209 2210 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 2211 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 2212 [ 0.000000] Machine model: Hardkernel ODROID-N2 2213 [ 0.000000] efi: UEFI not found. 2214 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 2215 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 2216 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 2217 [ 0.000000] NUMA: No NUMA configuration found 2218 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 2219 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 2220 [ 0.000000] Zone ranges: 2221 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 2222 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 2223 [ 0.000000] Normal empty 2224 [ 0.000000] Movable zone start for each node 2225 [ 0.000000] Early memory node ranges 2226 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 2227 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 2228 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 2229 [ 0.000000] On node 0 totalpages: 972032 2230 [ 0.000000] DMA zone: 4096 pages used for memmap 2231 [ 0.000000] DMA zone: 0 pages reserved 2232 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 2233 [ 0.000000] DMA32 zone: 11104 pages used for memmap 2234 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 2235 [ 0.000000] psci: probing for conduit method from DT. 2236 [ 0.000000] psci: PSCIv1.0 detected in firmware. 2237 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 2238 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 2239 [ 0.000000] psci: SMC Calling Convention v1.1 2240 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 2241 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 2242 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 2243 [ 0.000000] Detected VIPT I-cache on CPU0 2244 [ 0.000000] CPU features: detected: ARM erratum 845719 2245 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 2246 [ 0.000000] Policy zone: DMA32 2247 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 2248 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 2249 Please use sysfs to set IO scheduler for individual devices. 2250 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 2251 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 2252 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 2253 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 2254 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 2255 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 2256 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 2257 [ 0.000000] rcu: RCU event tracing is enabled. 2258 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 2259 [ 0.000000] Trampoline variant of Tasks RCU enabled. 2260 [ 0.000000] Rude variant of Tasks RCU enabled. 2261 [ 0.000000] Tracing variant of Tasks RCU enabled. 2262 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 2263 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 2264 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 2265 [ 0.000000] GIC: Using split EOI/Deactivate mode 2266 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 2267 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 2268 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 2269 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 2270 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 2271 [ 0.000248] Console: colour dummy device 80x25 2272 [ 0.000283] printk: console [tty1] enabled 2273 [ 0.000372] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 2274 [ 0.000384] pid_max: default: 32768 minimum: 301 2275 [ 0.000467] LSM: Security Framework initializing 2276 [ 0.000492] Yama: becoming mindful. 2277 [ 0.000584] AppArmor: AppArmor initialized 2278 [ 0.000635] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 2279 [ 0.000654] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 2280 [ 0.002643] rcu: Hierarchical SRCU implementation. 2281 [ 0.005115] EFI services will not be available. 2282 [ 0.005530] smp: Bringing up secondary CPUs ... 2283 [ 0.006202] Detected VIPT I-cache on CPU1 2284 [ 0.006263] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 2285 [ 0.007456] CPU features: detected: ARM erratum 858921 2286 [ 0.007464] CPU features: detected: Spectre-v2 2287 [ 0.007467] CPU features: detected: Spectre-v4 2288 [ 0.007474] Detected VIPT I-cache on CPU2 2289 [ 0.007498] arch_timer: Enabling local workaround for ARM erratum 858921 2290 [ 0.007513] arch_timer: CPU2: Trapping CNTVCT access 2291 [ 0.007525] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 2292 [ 0.008233] Detected VIPT I-cache on CPU3 2293 [ 0.008249] arch_timer: Enabling local workaround for ARM erratum 858921 2294 [ 0.008256] arch_timer: CPU3: Trapping CNTVCT access 2295 [ 0.008264] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 2296 [ 0.008888] Detected VIPT I-cache on CPU4 2297 [ 0.008904] arch_timer: Enabling local workaround for ARM erratum 858921 2298 [ 0.008911] arch_timer: CPU4: Trapping CNTVCT access 2299 [ 0.008918] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 2300 [ 0.009532] Detected VIPT I-cache on CPU5 2301 [ 0.009549] arch_timer: Enabling local workaround for ARM erratum 858921 2302 [ 0.009555] arch_timer: CPU5: Trapping CNTVCT access 2303 [ 0.009563] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 2304 [ 0.009644] smp: Brought up 1 node, 6 CPUs 2305 [ 0.009661] SMP: Total of 6 processors activated. 2306 [ 0.009668] CPU features: detected: 32-bit EL0 Support 2307 [ 0.009674] CPU features: detected: CRC32 instructions 2308 [ 0.009680] CPU features: detected: 32-bit EL1 Support 2309 [ 0.020923] CPU: All CPU(s) started at EL2 2310 [ 0.020971] alternatives: patching kernel code 2311 [ 0.022901] devtmpfs: initialized 2312 [ 0.030528] Registered cp15_barrier emulation handler 2313 [ 0.030543] Registered setend emulation handler 2314 [ 0.030705] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 2315 [ 0.030749] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 2316 [ 0.044681] pinctrl core: initialized pinctrl subsystem 2317 [ 0.045427] DMI not present or invalid. 2318 [ 0.045791] NET: Registered protocol family 16 2319 [ 0.047282] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 2320 [ 0.047555] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 2321 [ 0.047780] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 2322 [ 0.047824] audit: initializing netlink subsys (disabled) 2323 [ 0.047941] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 2324 [ 0.049235] thermal_sys: Registered thermal governor 'fair_share' 2325 [ 0.049242] thermal_sys: Registered thermal governor 'bang_bang' 2326 [ 0.049246] thermal_sys: Registered thermal governor 'step_wise' 2327 [ 0.049250] thermal_sys: Registered thermal governor 'user_space' 2328 [ 0.049658] cpuidle: using governor menu 2329 [ 0.050002] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 2330 [ 0.050122] ASID allocator initialised with 65536 entries 2331 [ 0.051074] Serial: AMBA PL011 UART driver 2332 [ 0.085694] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 2333 [ 0.085736] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 2334 [ 0.085742] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 2335 [ 0.085746] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 2336 [ 0.087315] cryptd: max_cpu_qlen set to 1000 2337 [ 0.156198] raid6: neonx8 gen() 2781 MB/s 2338 [ 0.224258] raid6: neonx8 xor() 2042 MB/s 2339 [ 0.292347] raid6: neonx4 gen() 2996 MB/s 2340 [ 0.360392] raid6: neonx4 xor() 2399 MB/s 2341 [ 0.428458] raid6: neonx2 gen() 2537 MB/s 2342 [ 0.496524] raid6: neonx2 xor() 2200 MB/s 2343 [ 0.564613] raid6: neonx1 gen() 2063 MB/s 2344 [ 0.632658] raid6: neonx1 xor() 1726 MB/s 2345 [ 0.700731] raid6: int64x8 gen() 1380 MB/s 2346 [ 0.768793] raid6: int64x8 xor() 735 MB/s 2347 [ 0.836880] raid6: int64x4 gen() 1463 MB/s 2348 [ 0.904921] raid6: int64x4 xor() 732 MB/s 2349 [ 0.972991] raid6: int64x2 gen() 1362 MB/s 2350 [ 1.041067] raid6: int64x2 xor() 619 MB/s 2351 [ 1.109131] raid6: int64x1 gen() 1120 MB/s 2352 [ 1.177204] raid6: int64x1 xor() 462 MB/s 2353 [ 1.177208] raid6: using algorithm neonx4 gen() 2996 MB/s 2354 [ 1.177211] raid6: .... xor() 2399 MB/s, rmw enabled 2355 [ 1.177215] raid6: using neon recovery algorithm 2356 [ 1.177672] ACPI: Interpreter disabled. 2357 [ 1.178469] 5V: supplied by 12V 2358 [ 1.179349] VDDAO_3V3: supplied by 12V 2359 [ 1.179850] iommu: Default domain type: Translated 2360 [ 1.179962] vgaarb: loaded 2361 [ 1.180723] SCSI subsystem initialized 2362 [ 1.181070] usbcore: registered new interface driver usbfs 2363 [ 1.181107] usbcore: registered new interface driver hub 2364 [ 1.181143] usbcore: registered new device driver usb 2365 [ 1.181403] pps_core: LinuxPPS API ver. 1 registered 2366 [ 1.181408] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 2367 [ 1.181424] PTP clock support registered 2368 [ 1.181613] EDAC MC: Ver: 3.0.0 2369 [ 1.182969] NetLabel: Initializing 2370 [ 1.182977] NetLabel: domain hash size = 128 2371 [ 1.182980] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 2372 [ 1.183022] NetLabel: unlabeled traffic allowed by default 2373 [ 1.183445] clocksource: Switched to clocksource arch_sys_counter 2374 [ 1.183653] VFS: Disk quotas dquot_6.6.0 2375 [ 1.183698] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 2376 [ 1.184069] AppArmor: AppArmor Filesystem Enabled 2377 [ 1.184116] pnp: PnP ACPI: disabled 2378 [ 1.189322] NET: Registered protocol family 2 2379 [ 1.189781] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 2380 [ 1.189888] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 2381 [ 1.190144] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 2382 [ 1.190330] TCP: Hash tables configured (established 32768 bind 32768) 2383 [ 1.190479] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 2384 [ 1.190542] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 2385 [ 1.190593] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 2386 [ 1.190734] NET: Registered protocol family 1 2387 [ 1.190754] PCI: CLS 0 bytes, default 64 2388 [ 1.190886] Trying to unpack rootfs image as initramfs... 2389 [ 1.726467] Freeing initrd memory: 13544K 2390 [ 1.727429] kvm [1]: IPA Size Limit: 40 bits 2391 [ 1.728165] kvm [1]: vgic interrupt IRQ9 2392 [ 1.728308] kvm [1]: Hyp mode initialized successfully 2393 [ 1.732193] Initialise system trusted keyrings 2394 [ 1.732226] Key type blacklist registered 2395 [ 1.732356] workingset: timestamp_bits=44 max_order=20 bucket_order=0 2396 [ 1.735536] zbud: loaded 2397 [ 1.736530] squashfs: version 4.0 (2009/01/31) Phillip Lougher 2398 [ 1.736967] fuse: init (API version 7.32) 2399 [ 1.737722] integrity: Platform Keyring initialized 2400 [ 1.765393] xor: measuring software checksum speed 2401 [ 1.768241] 8regs : 3473 MB/sec 2402 [ 1.770690] 32regs : 4023 MB/sec 2403 [ 1.773345] arm64_neon : 3719 MB/sec 2404 [ 1.773349] xor: using function: 32regs (4023 MB/sec) 2405 [ 1.773355] Key type asymmetric registered 2406 [ 1.773359] Asymmetric key parser 'x509' registered 2407 [ 1.773391] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 2408 [ 1.773488] io scheduler mq-deadline registered 2409 [ 1.773492] io scheduler kyber registered 2410 [ 1.773578] io scheduler bfq registered 2411 [ 1.776138] gpio-447 (usb-hub-reset): hogged as output/high 2412 [ 1.779087] EINJ: ACPI disabled. 2413 [ 1.785290] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 2414 [ 1.786665] VCC_3V3: supplied by VDDAO_3V3 2415 [ 1.786699] FLASH_1V8: supplied by VCC_3V3 2416 [ 1.786729] VCC_1V8: supplied by VCC_3V3 2417 [ 1.786763] VDDAO_1V8: supplied by VDDAO_3V3 2418 [ 1.786803] VDDCPU_A: supplied by regulator-dummy 2419 [ 1.787151] VDDCPU_B: supplied by regulator-dummy 2420 [ 1.787891] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 2421 [ 1.790109] Serial: AMBA driver 2422 [ 1.790400] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 2423 [ 1.790496] printk: console [ttyAML0] enabled 2424 [ 1.791026] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 2425 [ 1.796529] loop: module loaded 2426 [ 1.798461] libphy: Fixed MDIO Bus: probed 2427 [ 1.799406] tun: Universal TUN/TAP device driver, 1.6 2428 [ 1.800115] thunder_xcv, ver 1.0 2429 [ 1.800148] thunder_bgx, ver 1.0 2430 [ 1.800174] nicpf, ver 1.0 2431 [ 1.800654] e1000e: Intel(R) PRO/1000 Network Driver 2432 [ 1.800658] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 2433 [ 1.800700] igb: Intel(R) Gigabit Ethernet Network Driver 2434 [ 1.800703] igb: Copyright (c) 2007-2014 Intel Corporation. 2435 [ 1.800736] igbvf: Intel(R) Gigabit Virtual Function Network Driver 2436 [ 1.800739] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 2437 [ 1.800868] sky2: driver version 1.30 2438 [ 1.801232] VFIO - User Level meta-driver version: 0.3 2439 [ 1.802638] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 2440 [ 1.802659] ehci-pci: EHCI PCI platform driver 2441 [ 1.802693] ehci-platform: EHCI generic platform driver 2442 [ 1.802829] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 2443 [ 1.802839] ohci-pci: OHCI PCI platform driver 2444 [ 1.802871] ohci-platform: OHCI generic platform driver 2445 [ 1.803293] usbcore: registered new interface driver usb-storage 2446 [ 1.804660] mousedev: PS/2 mouse device common for all mice 2447 [ 1.805058] i2c /dev entries driver 2448 [ 1.810242] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 2449 [ 1.810896] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 2450 [ 1.811582] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 2451 [ 1.812174] sdhci: Secure Digital Host Controller Interface driver 2452 [ 1.812179] sdhci: Copyright(c) Pierre Ossman 2453 [ 1.812274] Synopsys Designware Multimedia Card Interface Driver 2454 [ 1.812713] sdhci-pltfm: SDHCI platform and OF driver helper 2455 [ 1.813157] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 2456 [ 1.813545] ledtrig-cpu: registered to indicate activity on CPUs 2457 [ 1.813793] meson-sm: secure-monitor enabled 2458 [ 1.814085] hid: raw HID events driver (C) Jiri Kosina 2459 [ 1.814169] usbcore: registered new interface driver usbhid 2460 [ 1.814171] usbhid: USB HID core driver 2461 [ 1.815230] NET: Registered protocol family 10 2462 [ 1.816040] Segment Routing with IPv6 2463 [ 1.816073] NET: Registered protocol family 17 2464 [ 1.816130] 8021q: 802.1Q VLAN Support v1.8 2465 [ 1.816153] Key type dns_resolver registered 2466 [ 1.816430] registered taskstats version 1 2467 [ 1.816435] Loading compiled-in X.509 certificates 2468 [ 1.818154] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 2469 [ 1.819992] zswap: loaded using pool zstd/z3fold 2470 [ 1.820157] Key type ._fscrypt registered 2471 [ 1.820160] Key type .fscrypt registered 2472 [ 1.820162] Key type fscrypt-provisioning registered 2473 [ 1.821237] Btrfs loaded, crc32c=crc32c-generic 2474 [ 1.827100] Key type encrypted registered 2475 [ 1.827111] AppArmor: AppArmor sha1 policy hashing enabled 2476 [ 1.833334] HUB_5V: supplied by 5V 2477 [ 1.833567] USB_PWR_EN: supplied by 5V 2478 [ 1.835212] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 2479 [ 1.835218] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 2480 [ 1.837895] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 2481 [ 1.837952] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 2482 [ 1.838058] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 2483 [ 1.838630] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 2484 [ 1.838642] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 2485 [ 1.838726] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 2486 [ 1.838747] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 2487 [ 1.838871] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 2488 [ 1.838874] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2489 [ 1.838877] usb usb1: Product: xHCI Host Controller 2490 [ 1.838880] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 2491 [ 1.838882] usb usb1: SerialNumber: xhci-hcd.0.auto 2492 [ 1.839070] hub 1-0:1.0: USB hub found 2493 [ 1.839084] hub 1-0:1.0: 2 ports detected 2494 [ 1.839212] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 2495 [ 1.839218] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 2496 [ 1.839223] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 2497 [ 1.839244] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 2498 [ 1.839275] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 2499 [ 1.839278] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2500 [ 1.839281] usb usb2: Product: xHCI Host Controller 2501 [ 1.839283] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 2502 [ 1.839285] usb usb2: SerialNumber: xhci-hcd.0.auto 2503 [ 1.839699] hub 2-0:1.0: USB hub found 2504 [ 1.839712] hub 2-0:1.0: 1 port detected 2505 [ 1.839976] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 2506 [ 1.840822] meson-gx-mmc ffe05000.sd: Got CD GPIO 2507 [ 1.868115] Freeing unused kernel memory: 3328K 2508 [ 1.891526] Run /init as init process 2509 [ 1.891531] with arguments: 2510 [ 1.891533] /init 2511 [ 1.891535] with environment: 2512 [ 1.891537] HOME=/ 2513 [ 1.891539] TERM=linux 2514 [ 1.891541] hdmimode=1080p60hz 2515 [ 1.891542] cvbsmode=576cvbs 2516 [ 1.891543] max_freq_a53=1896 2517 [ 1.891545] max_freq_a73=1800 2518 [ 1.891546] voutmode=hdmi 2519 [ 1.891548] disablehpd=false 2520 [ 1.891549] cvbscable=0 2521 [ 1.891551] overscan=100 2522 [ 1.918960] mmc0: new high speed SDHC card at address b368 2523 [ 1.920163] mmcblk0: mmc0:b368 CBADS 30.0 GiB 2524 [ 1.922030] mmcblk0: p1 2525 [ 2.045499] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 2526 [ 2.045507] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 2527 [ 2.045627] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 2528 [ 2.046211] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 2529 [ 2.046225] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 2530 [ 2.046229] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 2531 [ 2.046232] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 2532 [ 2.046235] meson8b-dwmac ff3f0000.ethernet: COE Type 2 2533 [ 2.046238] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 2534 [ 2.046240] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 2535 [ 2.046343] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 2536 [ 2.046348] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 2537 [ 2.046351] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 2538 [ 2.046654] libphy: stmmac: probed 2539 [ 2.048234] libphy: mdio_mux: probed 2540 [ 2.063245] meson-vrtc ff8000a8.rtc: registered as rtc1 2541 [ 2.082036] rtc-pcf8563 1-0051: registered as rtc0 2542 [ 2.082518] random: fast init done 2543 [ 2.083316] rtc-pcf8563 1-0051: setting system clock to 2021-02-14T14:26:29 UTC (1613312789) 2544 [ 2.171465] usb 1-1: new high-speed USB device number 2 using xhci-hcd 2545 [ 2.251922] libphy: mdio_mux: probed 2546 [ 2.321886] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 2547 [ 2.321896] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 2548 [ 2.321900] usb 1-1: Product: USB2.1 Hub 2549 [ 2.321903] usb 1-1: Manufacturer: GenesysLogic 2550 [ 2.383528] hub 1-1:1.0: USB hub found 2551 [ 2.383759] hub 1-1:1.0: 4 ports detected 2552 [ 2.447559] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 2553 [ 2.470059] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 2554 [ 2.470068] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 2555 [ 2.470071] usb 2-1: Product: USB3.1 Hub 2556 [ 2.470075] usb 2-1: Manufacturer: GenesysLogic 2557 [ 2.495526] hub 2-1:1.0: USB hub found 2558 [ 2.495822] hub 2-1:1.0: 4 ports detected 2559 [ 2.737853] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 2560 [ 3.554447] systemd[1]: Inserted module 'autofs4' 2561 [ 3.600937] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 2562 [ 3.601164] systemd[1]: Detected architecture arm64. 2563 [ 3.625325] systemd[1]: Set hostname to <odroidn2>. 2564 [ 4.026501] random: systemd: uninitialized urandom read (16 bytes read) 2565 [ 4.032435] random: systemd: uninitialized urandom read (16 bytes read) 2566 [ 4.032672] systemd[1]: Listening on initctl Compatibility Named Pipe. 2567 [ 4.033175] random: systemd: uninitialized urandom read (16 bytes read) 2568 [ 4.035609] systemd[1]: Created slice system-getty.slice. 2569 [ 4.035911] systemd[1]: Reached target System Time Synchronized. 2570 [ 4.036527] systemd[1]: Listening on Journal Socket (/dev/log). 2571 [ 4.037253] systemd[1]: Listening on Journal Audit Socket. 2572 [ 4.037940] systemd[1]: Listening on Journal Socket. 2573 [ 4.041609] systemd[1]: Starting Restore / save the current clock... 2574 [ 4.086641] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 2575 [ 4.609923] zram: Added device: zram0 2576 [ 4.610108] zram: Added device: zram1 2577 [ 4.610291] zram: Added device: zram2 2578 [ 4.698972] pwm-gpio pwmgpio: 1 gpio pwms loaded 2579 [ 4.853474] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 2580 [ 4.871591] mc: Linux media interface: v0.10 2581 [ 4.971900] Registered IR keymap rc-odroid 2582 [ 4.973016] videodev: Linux video capture interface: v2.00 2583 [ 4.978038] meson-drm ff900000.vpu: Queued 2 outputs on vpu 2584 [ 4.986191] IR NEC protocol handler initialized 2585 [ 4.987935] zram0: detected capacity change from 0 to 1904500736 2586 [ 5.015624] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 2587 [ 5.015765] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 2588 [ 5.015825] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 2589 [ 5.016589] meson-ir ff808000.ir: receiver initialized 2590 [ 5.023205] meson-drm ff900000.vpu: CVBS Output connector not available 2591 [ 5.056762] panfrost ffe40000.gpu: clock rate = 24000000 2592 [ 5.056839] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 2593 [ 5.057853] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 2594 [ 5.057861] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 2595 [ 5.057865] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 2596 [ 5.057868] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 2597 [ 5.060396] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 2598 [ 5.063804] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 2599 [ 5.064438] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 2600 [ 5.066271] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 2601 [ 5.067438] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 2602 [ 5.072759] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 2603 [ 5.101541] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 2604 [ 5.127988] axg-sound-card sound: ASoC: no DMI vendor name! 2605 [ 6.051465] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 2606 [ 6.114369] zram1: detected capacity change from 0 to 52428800 2607 [ 8.199985] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 2608 [ 8.200004] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 2609 [ 9.134113] systemd[1]: Started Armbian memory supported logging. 2610 [ 9.138216] systemd[1]: Starting Journal Service... 2611 [ 9.194616] systemd[1]: Started Journal Service. 2612 [ 9.222654] systemd-journald[1814]: Received request to flush runtime journal from PID 1 2613 2614 ### armbian-release: 2615 2616 # PLEASE DO NOT EDIT THIS FILE 2617 BOARD=odroidn2 2618 BOARD_NAME="Odroid N2" 2619 BOARDFAMILY=meson-g12b 2620 BUILD_REPOSITORY_URL=https://github.com/armbian/build 2621 BUILD_REPOSITORY_COMMIT=5f03d652 2622 DISTRIBUTION_CODENAME=buster 2623 DISTRIBUTION_STATUS=supported 2624 VERSION=21.02.1 2625 LINUXFAMILY=meson64 2626 BRANCH=current 2627 ARCH=arm64 2628 IMAGE_TYPE=stable 2629 BOARD_TYPE=conf 2630 INITRD_ARCH=arm64 2631 KERNEL_IMAGE_TYPE=Image 2632 2633 ### boot environment: 2634 2635 verbosity=1 2636 console=both 2637 overlay_prefix=meson 2638 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 2639 rootfstype=ext4 2640 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 2641 2642 ### lsusb: 2643 2644 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 2645 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 2646 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 2647 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2648 2649 ### lscpu: 2650 2651 Architecture: aarch64 2652 Byte Order: Little Endian 2653 CPU(s): 6 2654 On-line CPU(s) list: 0-5 2655 Thread(s) per core: 1 2656 Core(s) per socket: 3 2657 Socket(s): 2 2658 NUMA node(s): 1 2659 Vendor ID: ARM 2660 Model: 4 2661 Model name: Cortex-A53 2662 Stepping: r0p4 2663 CPU max MHz: 1992.0000 2664 CPU min MHz: 100.0000 2665 BogoMIPS: 48.00 2666 L1d cache: unknown size 2667 L1i cache: unknown size 2668 L2 cache: unknown size 2669 NUMA node0 CPU(s): 0-5 2670 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2671 2672 ### cpuinfo: 2673 2674 processor : 0 2675 BogoMIPS : 48.00 2676 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2677 CPU implementer : 0x41 2678 CPU architecture: 8 2679 CPU variant : 0x0 2680 CPU part : 0xd03 2681 CPU revision : 4 2682 2683 processor : 1 2684 BogoMIPS : 48.00 2685 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2686 CPU implementer : 0x41 2687 CPU architecture: 8 2688 CPU variant : 0x0 2689 CPU part : 0xd03 2690 CPU revision : 4 2691 2692 processor : 2 2693 BogoMIPS : 48.00 2694 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2695 CPU implementer : 0x41 2696 CPU architecture: 8 2697 CPU variant : 0x0 2698 CPU part : 0xd09 2699 CPU revision : 2 2700 2701 processor : 3 2702 BogoMIPS : 48.00 2703 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2704 CPU implementer : 0x41 2705 CPU architecture: 8 2706 CPU variant : 0x0 2707 CPU part : 0xd09 2708 CPU revision : 2 2709 2710 processor : 4 2711 BogoMIPS : 48.00 2712 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2713 CPU implementer : 0x41 2714 CPU architecture: 8 2715 CPU variant : 0x0 2716 CPU part : 0xd09 2717 CPU revision : 2 2718 2719 processor : 5 2720 BogoMIPS : 48.00 2721 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2722 CPU implementer : 0x41 2723 CPU architecture: 8 2724 CPU variant : 0x0 2725 CPU part : 0xd09 2726 CPU revision : 2 2727 2728 2729 ### meminfo: 2730 2731 MemTotal: 3719728 kB 2732 MemFree: 3418672 kB 2733 MemAvailable: 3370612 kB 2734 Buffers: 11672 kB 2735 Cached: 40796 kB 2736 SwapCached: 0 kB 2737 Active: 29504 kB 2738 Inactive: 172620 kB 2739 Active(anon): 112 kB 2740 Inactive(anon): 154400 kB 2741 Active(file): 29392 kB 2742 Inactive(file): 18220 kB 2743 Unevictable: 0 kB 2744 Mlocked: 0 kB 2745 SwapTotal: 1859860 kB 2746 SwapFree: 1859860 kB 2747 Dirty: 1764 kB 2748 Writeback: 0 kB 2749 AnonPages: 149692 kB 2750 Mapped: 11044 kB 2751 Shmem: 4860 kB 2752 KReclaimable: 12984 kB 2753 Slab: 38516 kB 2754 SReclaimable: 12984 kB 2755 SUnreclaim: 25532 kB 2756 KernelStack: 2112 kB 2757 PageTables: 5820 kB 2758 NFS_Unstable: 0 kB 2759 Bounce: 0 kB 2760 WritebackTmp: 0 kB 2761 CommitLimit: 3719724 kB 2762 Committed_AS: 4210340 kB 2763 VmallocTotal: 135290159040 kB 2764 VmallocUsed: 30880 kB 2765 VmallocChunk: 0 kB 2766 Percpu: 1368 kB 2767 HardwareCorrupted: 0 kB 2768 AnonHugePages: 40960 kB 2769 ShmemHugePages: 0 kB 2770 ShmemPmdMapped: 0 kB 2771 FileHugePages: 0 kB 2772 FilePmdMapped: 0 kB 2773 CmaTotal: 917504 kB 2774 CmaFree: 909824 kB 2775 HugePages_Total: 0 2776 HugePages_Free: 0 2777 HugePages_Rsvd: 0 2778 HugePages_Surp: 0 2779 Hugepagesize: 2048 kB 2780 Hugetlb: 0 kB 2781 2782 ### virtual memory: 2783 2784 vm.admin_reserve_kbytes = 8192 2785 vm.block_dump = 0 2786 vm.compaction_proactiveness = 20 2787 vm.compact_unevictable_allowed = 1 2788 vm.dirty_background_bytes = 0 2789 vm.dirty_background_ratio = 10 2790 vm.dirty_bytes = 0 2791 vm.dirty_expire_centisecs = 3000 2792 vm.dirty_ratio = 20 2793 vm.dirtytime_expire_seconds = 43200 2794 vm.dirty_writeback_centisecs = 500 2795 vm.extfrag_threshold = 500 2796 vm.hugetlb_shm_group = 0 2797 vm.laptop_mode = 0 2798 vm.legacy_va_layout = 0 2799 vm.lowmem_reserve_ratio = 256 256 32 0 2800 vm.max_map_count = 65530 2801 vm.memory_failure_early_kill = 0 2802 vm.memory_failure_recovery = 1 2803 vm.min_free_kbytes = 45056 2804 vm.min_slab_ratio = 5 2805 vm.min_unmapped_ratio = 1 2806 vm.mmap_min_addr = 4096 2807 vm.mmap_rnd_bits = 18 2808 vm.mmap_rnd_compat_bits = 11 2809 vm.nr_hugepages = 0 2810 vm.nr_hugepages_mempolicy = 0 2811 vm.nr_overcommit_hugepages = 0 2812 vm.numa_stat = 1 2813 vm.numa_zonelist_order = Node 2814 vm.oom_dump_tasks = 1 2815 vm.oom_kill_allocating_task = 0 2816 vm.overcommit_kbytes = 0 2817 vm.overcommit_memory = 0 2818 vm.overcommit_ratio = 50 2819 vm.page-cluster = 0 2820 vm.page_lock_unfairness = 5 2821 vm.panic_on_oom = 0 2822 vm.percpu_pagelist_fraction = 0 2823 vm.stat_interval = 1 2824 vm.swappiness = 100 2825 vm.user_reserve_kbytes = 115067 2826 vm.vfs_cache_pressure = 100 2827 vm.watermark_boost_factor = 15000 2828 vm.watermark_scale_factor = 10 2829 vm.zone_reclaim_mode = 0 2830 2831 ### ip addr: 2832 2833 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 2834 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2835 inet XXX.XXX.0.1/8 scope host lo 2836 valid_lft forever preferred_lft forever 2837 inet6 ::1/128 scope host 2838 valid_lft forever preferred_lft forever 2839 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 2840 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 2841 2842 ### partitions: 2843 2844 major minor #blocks name 2845 2846 179 0 31464960 mmcblk0 2847 179 1 31146208 mmcblk0p1 2848 252 0 1859864 zram0 2849 252 1 51200 zram1 2850 2851 ### df: 2852 2853 udev 1.4G 0 1.4G 0% /dev 2854 tmpfs 364M 4.9M 359M 2% /run 2855 /dev/mmcblk0p1 30G 1.7G 28G 6% / 2856 tmpfs 1.8G 0 1.8G 0% /dev/shm 2857 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 2858 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 2859 tmpfs 1.8G 0 1.8G 0% /tmp 2860 /dev/zram1 49M 1.8M 44M 4% /var/log 2861 2862 ### lsblk: 2863 2864 NAME FSTYPE SIZE MOUNTPOINT UUID 2865 mmcblk0 30G 2866 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 2867 zram1 50M /var/log 2868 2869 ### zramctl: 2870 2871 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 2872 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 2873 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 2874 2875 ### mtab: 2876 2877 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 2878 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 2879 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 2880 2881 ### mmc0:b368 info: 2882 2883 fwrev: 0x0 2884 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 2885 cid: 6f0303434241445310aa002b4d013b00 2886 rca: 0xb368 2887 csd: 400e005a5b590000f00e7f800a404000 2888 manfid: 0x00006f 2889 ocr: 0x00200000 2890 preferred_erase_size: 2097152 2891 type: SD 2892 hwrev: 0x1 2893 date: 11/2019 2894 dsr: 0x404 2895 erase_size: 512 2896 oemid: 0x0303 2897 serial: 0xaa002b4d 2898 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2899 scr: 02b5800300000000 2900 name: CBADS 2901 2902 ### Boot system health: 2903 2904 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 2905 14:26:38: 1908/1992MHz 2.60 26% 12% 5% 0% 8% 0% 32.0°C 0/11 2906 14:26:38: 1908/1992MHz 2.60 74% 14% 9% 0% 48% 1% 30.6°C 0/11 2907 14:26:38: 1908/1992MHz 2.60 60% 2% 2% 1% 55% 0% 29.6°C 0/11 2908 14:26:39: 1908/1992MHz 2.60 58% 3% 3% 0% 51% 0% 29.7°C 0/11 2909 14:26:39: 1908/1992MHz 2.60 47% 3% 4% 0% 38% 0% 29.5°C 0/11 2910 2911 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 2912 2913 ### Activated Armbian ramlog partition with zstd compression 2914 2915 Sun 14 Feb 2021 02:30:12 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 2916 2917 ### dmesg: 2918 2919 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 2920 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 2921 [ 0.000000] Machine model: Hardkernel ODROID-N2 2922 [ 0.000000] efi: UEFI not found. 2923 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 2924 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 2925 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 2926 [ 0.000000] NUMA: No NUMA configuration found 2927 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 2928 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 2929 [ 0.000000] Zone ranges: 2930 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 2931 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 2932 [ 0.000000] Normal empty 2933 [ 0.000000] Movable zone start for each node 2934 [ 0.000000] Early memory node ranges 2935 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 2936 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 2937 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 2938 [ 0.000000] On node 0 totalpages: 972032 2939 [ 0.000000] DMA zone: 4096 pages used for memmap 2940 [ 0.000000] DMA zone: 0 pages reserved 2941 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 2942 [ 0.000000] DMA32 zone: 11104 pages used for memmap 2943 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 2944 [ 0.000000] psci: probing for conduit method from DT. 2945 [ 0.000000] psci: PSCIv1.0 detected in firmware. 2946 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 2947 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 2948 [ 0.000000] psci: SMC Calling Convention v1.1 2949 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 2950 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 2951 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 2952 [ 0.000000] Detected VIPT I-cache on CPU0 2953 [ 0.000000] CPU features: detected: ARM erratum 845719 2954 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 2955 [ 0.000000] Policy zone: DMA32 2956 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 2957 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 2958 Please use sysfs to set IO scheduler for individual devices. 2959 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 2960 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 2961 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 2962 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 2963 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 2964 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 2965 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 2966 [ 0.000000] rcu: RCU event tracing is enabled. 2967 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 2968 [ 0.000000] Trampoline variant of Tasks RCU enabled. 2969 [ 0.000000] Rude variant of Tasks RCU enabled. 2970 [ 0.000000] Tracing variant of Tasks RCU enabled. 2971 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 2972 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 2973 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 2974 [ 0.000000] GIC: Using split EOI/Deactivate mode 2975 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 2976 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 2977 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 2978 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 2979 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 2980 [ 0.000249] Console: colour dummy device 80x25 2981 [ 0.000284] printk: console [tty1] enabled 2982 [ 0.000370] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 2983 [ 0.000382] pid_max: default: 32768 minimum: 301 2984 [ 0.000465] LSM: Security Framework initializing 2985 [ 0.000492] Yama: becoming mindful. 2986 [ 0.000581] AppArmor: AppArmor initialized 2987 [ 0.000632] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 2988 [ 0.000651] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 2989 [ 0.002653] rcu: Hierarchical SRCU implementation. 2990 [ 0.005091] EFI services will not be available. 2991 [ 0.005515] smp: Bringing up secondary CPUs ... 2992 [ 0.006187] Detected VIPT I-cache on CPU1 2993 [ 0.006249] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 2994 [ 0.007446] CPU features: detected: ARM erratum 858921 2995 [ 0.007454] CPU features: detected: Spectre-v2 2996 [ 0.007457] CPU features: detected: Spectre-v4 2997 [ 0.007463] Detected VIPT I-cache on CPU2 2998 [ 0.007490] arch_timer: Enabling local workaround for ARM erratum 858921 2999 [ 0.007503] arch_timer: CPU2: Trapping CNTVCT access 3000 [ 0.007517] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 3001 [ 0.008230] Detected VIPT I-cache on CPU3 3002 [ 0.008246] arch_timer: Enabling local workaround for ARM erratum 858921 3003 [ 0.008253] arch_timer: CPU3: Trapping CNTVCT access 3004 [ 0.008260] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 3005 [ 0.008883] Detected VIPT I-cache on CPU4 3006 [ 0.008900] arch_timer: Enabling local workaround for ARM erratum 858921 3007 [ 0.008907] arch_timer: CPU4: Trapping CNTVCT access 3008 [ 0.008914] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 3009 [ 0.009528] Detected VIPT I-cache on CPU5 3010 [ 0.009544] arch_timer: Enabling local workaround for ARM erratum 858921 3011 [ 0.009551] arch_timer: CPU5: Trapping CNTVCT access 3012 [ 0.009559] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 3013 [ 0.009641] smp: Brought up 1 node, 6 CPUs 3014 [ 0.009658] SMP: Total of 6 processors activated. 3015 [ 0.009665] CPU features: detected: 32-bit EL0 Support 3016 [ 0.009671] CPU features: detected: CRC32 instructions 3017 [ 0.009677] CPU features: detected: 32-bit EL1 Support 3018 [ 0.020892] CPU: All CPU(s) started at EL2 3019 [ 0.020943] alternatives: patching kernel code 3020 [ 0.022883] devtmpfs: initialized 3021 [ 0.030529] Registered cp15_barrier emulation handler 3022 [ 0.030542] Registered setend emulation handler 3023 [ 0.030680] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 3024 [ 0.030718] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 3025 [ 0.044635] pinctrl core: initialized pinctrl subsystem 3026 [ 0.045364] DMI not present or invalid. 3027 [ 0.045739] NET: Registered protocol family 16 3028 [ 0.047260] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 3029 [ 0.047530] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 3030 [ 0.047758] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 3031 [ 0.047799] audit: initializing netlink subsys (disabled) 3032 [ 0.047911] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 3033 [ 0.049236] thermal_sys: Registered thermal governor 'fair_share' 3034 [ 0.049244] thermal_sys: Registered thermal governor 'bang_bang' 3035 [ 0.049248] thermal_sys: Registered thermal governor 'step_wise' 3036 [ 0.049251] thermal_sys: Registered thermal governor 'user_space' 3037 [ 0.049718] cpuidle: using governor menu 3038 [ 0.050053] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 3039 [ 0.050170] ASID allocator initialised with 65536 entries 3040 [ 0.051125] Serial: AMBA PL011 UART driver 3041 [ 0.085127] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 3042 [ 0.085138] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 3043 [ 0.085144] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 3044 [ 0.085148] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 3045 [ 0.087393] cryptd: max_cpu_qlen set to 1000 3046 [ 0.156152] raid6: neonx8 gen() 2783 MB/s 3047 [ 0.224217] raid6: neonx8 xor() 2042 MB/s 3048 [ 0.292307] raid6: neonx4 gen() 2987 MB/s 3049 [ 0.360349] raid6: neonx4 xor() 2399 MB/s 3050 [ 0.428415] raid6: neonx2 gen() 2561 MB/s 3051 [ 0.496487] raid6: neonx2 xor() 2190 MB/s 3052 [ 0.564550] raid6: neonx1 gen() 2062 MB/s 3053 [ 0.632612] raid6: neonx1 xor() 1727 MB/s 3054 [ 0.700685] raid6: int64x8 gen() 1376 MB/s 3055 [ 0.768754] raid6: int64x8 xor() 735 MB/s 3056 [ 0.836843] raid6: int64x4 gen() 1463 MB/s 3057 [ 0.904885] raid6: int64x4 xor() 733 MB/s 3058 [ 0.972956] raid6: int64x2 gen() 1363 MB/s 3059 [ 1.041023] raid6: int64x2 xor() 619 MB/s 3060 [ 1.109086] raid6: int64x1 gen() 1120 MB/s 3061 [ 1.177145] raid6: int64x1 xor() 462 MB/s 3062 [ 1.177149] raid6: using algorithm neonx4 gen() 2987 MB/s 3063 [ 1.177152] raid6: .... xor() 2399 MB/s, rmw enabled 3064 [ 1.177156] raid6: using neon recovery algorithm 3065 [ 1.177614] ACPI: Interpreter disabled. 3066 [ 1.178419] 5V: supplied by 12V 3067 [ 1.179327] VDDAO_3V3: supplied by 12V 3068 [ 1.179817] iommu: Default domain type: Translated 3069 [ 1.179928] vgaarb: loaded 3070 [ 1.180910] SCSI subsystem initialized 3071 [ 1.181117] usbcore: registered new interface driver usbfs 3072 [ 1.181150] usbcore: registered new interface driver hub 3073 [ 1.181182] usbcore: registered new device driver usb 3074 [ 1.181438] pps_core: LinuxPPS API ver. 1 registered 3075 [ 1.181442] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 3076 [ 1.181465] PTP clock support registered 3077 [ 1.181666] EDAC MC: Ver: 3.0.0 3078 [ 1.183010] NetLabel: Initializing 3079 [ 1.183017] NetLabel: domain hash size = 128 3080 [ 1.183020] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 3081 [ 1.183061] NetLabel: unlabeled traffic allowed by default 3082 [ 1.183491] clocksource: Switched to clocksource arch_sys_counter 3083 [ 1.183699] VFS: Disk quotas dquot_6.6.0 3084 [ 1.183742] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 3085 [ 1.184112] AppArmor: AppArmor Filesystem Enabled 3086 [ 1.184160] pnp: PnP ACPI: disabled 3087 [ 1.189941] NET: Registered protocol family 2 3088 [ 1.190404] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 3089 [ 1.190509] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 3090 [ 1.190766] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 3091 [ 1.190953] TCP: Hash tables configured (established 32768 bind 32768) 3092 [ 1.191103] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 3093 [ 1.191167] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 3094 [ 1.191213] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 3095 [ 1.191364] NET: Registered protocol family 1 3096 [ 1.191384] PCI: CLS 0 bytes, default 64 3097 [ 1.191566] Trying to unpack rootfs image as initramfs... 3098 [ 1.727544] Freeing initrd memory: 13544K 3099 [ 1.728481] kvm [1]: IPA Size Limit: 40 bits 3100 [ 1.729184] kvm [1]: vgic interrupt IRQ9 3101 [ 1.729316] kvm [1]: Hyp mode initialized successfully 3102 [ 1.733236] Initialise system trusted keyrings 3103 [ 1.733266] Key type blacklist registered 3104 [ 1.733414] workingset: timestamp_bits=44 max_order=20 bucket_order=0 3105 [ 1.736580] zbud: loaded 3106 [ 1.737550] squashfs: version 4.0 (2009/01/31) Phillip Lougher 3107 [ 1.738038] fuse: init (API version 7.32) 3108 [ 1.738817] integrity: Platform Keyring initialized 3109 [ 1.767010] xor: measuring software checksum speed 3110 [ 1.769855] 8regs : 3473 MB/sec 3111 [ 1.772310] 32regs : 4022 MB/sec 3112 [ 1.774957] arm64_neon : 3722 MB/sec 3113 [ 1.774961] xor: using function: 32regs (4022 MB/sec) 3114 [ 1.774969] Key type asymmetric registered 3115 [ 1.774973] Asymmetric key parser 'x509' registered 3116 [ 1.775010] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 3117 [ 1.775120] io scheduler mq-deadline registered 3118 [ 1.775124] io scheduler kyber registered 3119 [ 1.775206] io scheduler bfq registered 3120 [ 1.777770] gpio-447 (usb-hub-reset): hogged as output/high 3121 [ 1.780772] EINJ: ACPI disabled. 3122 [ 1.786941] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 3123 [ 1.788410] VCC_3V3: supplied by VDDAO_3V3 3124 [ 1.788444] FLASH_1V8: supplied by VCC_3V3 3125 [ 1.788476] VCC_1V8: supplied by VCC_3V3 3126 [ 1.788517] VDDAO_1V8: supplied by VDDAO_3V3 3127 [ 1.788553] VDDCPU_A: supplied by regulator-dummy 3128 [ 1.788909] VDDCPU_B: supplied by regulator-dummy 3129 [ 1.789576] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 3130 [ 1.791906] Serial: AMBA driver 3131 [ 1.792200] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 3132 [ 1.792291] printk: console [ttyAML0] enabled 3133 [ 1.792797] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 3134 [ 1.797999] loop: module loaded 3135 [ 1.799933] libphy: Fixed MDIO Bus: probed 3136 [ 1.801017] tun: Universal TUN/TAP device driver, 1.6 3137 [ 1.801675] thunder_xcv, ver 1.0 3138 [ 1.801708] thunder_bgx, ver 1.0 3139 [ 1.801738] nicpf, ver 1.0 3140 [ 1.802204] e1000e: Intel(R) PRO/1000 Network Driver 3141 [ 1.802208] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 3142 [ 1.802248] igb: Intel(R) Gigabit Ethernet Network Driver 3143 [ 1.802251] igb: Copyright (c) 2007-2014 Intel Corporation. 3144 [ 1.802279] igbvf: Intel(R) Gigabit Virtual Function Network Driver 3145 [ 1.802282] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 3146 [ 1.802411] sky2: driver version 1.30 3147 [ 1.802786] VFIO - User Level meta-driver version: 0.3 3148 [ 1.804235] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 3149 [ 1.804273] ehci-pci: EHCI PCI platform driver 3150 [ 1.804309] ehci-platform: EHCI generic platform driver 3151 [ 1.804452] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 3152 [ 1.804463] ohci-pci: OHCI PCI platform driver 3153 [ 1.804498] ohci-platform: OHCI generic platform driver 3154 [ 1.804926] usbcore: registered new interface driver usb-storage 3155 [ 1.806268] mousedev: PS/2 mouse device common for all mice 3156 [ 1.806647] i2c /dev entries driver 3157 [ 1.811803] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 3158 [ 1.812470] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 3159 [ 1.813436] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 3160 [ 1.814042] sdhci: Secure Digital Host Controller Interface driver 3161 [ 1.814046] sdhci: Copyright(c) Pierre Ossman 3162 [ 1.814151] Synopsys Designware Multimedia Card Interface Driver 3163 [ 1.814596] sdhci-pltfm: SDHCI platform and OF driver helper 3164 [ 1.815001] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 3165 [ 1.815347] ledtrig-cpu: registered to indicate activity on CPUs 3166 [ 1.815641] meson-sm: secure-monitor enabled 3167 [ 1.815801] hid: raw HID events driver (C) Jiri Kosina 3168 [ 1.815973] usbcore: registered new interface driver usbhid 3169 [ 1.815977] usbhid: USB HID core driver 3170 [ 1.817175] NET: Registered protocol family 10 3171 [ 1.817566] Segment Routing with IPv6 3172 [ 1.817595] NET: Registered protocol family 17 3173 [ 1.817640] 8021q: 802.1Q VLAN Support v1.8 3174 [ 1.817664] Key type dns_resolver registered 3175 [ 1.817937] registered taskstats version 1 3176 [ 1.817942] Loading compiled-in X.509 certificates 3177 [ 1.819693] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 3178 [ 1.821314] zswap: loaded using pool zstd/z3fold 3179 [ 1.821489] Key type ._fscrypt registered 3180 [ 1.821491] Key type .fscrypt registered 3181 [ 1.821493] Key type fscrypt-provisioning registered 3182 [ 1.822573] Btrfs loaded, crc32c=crc32c-generic 3183 [ 1.831945] Key type encrypted registered 3184 [ 1.831957] AppArmor: AppArmor sha1 policy hashing enabled 3185 [ 1.838309] HUB_5V: supplied by 5V 3186 [ 1.838526] USB_PWR_EN: supplied by 5V 3187 [ 5.728088] ------------[ cut here ]------------ 3188 [ 5.728095] pcie_pll_pll already disabled 3189 [ 5.728122] WARNING: CPU: 3 PID: 1261 at drivers/clk/clk.c:952 clk_core_disable+0xb0/0xb8 3190 [ 5.728124] Modules linked in: 3191 [ 5.728131] CPU: 3 PID: 1261 Comm: kworker/3:2 Not tainted 5.10.12-meson64 #21.02.1 3192 [ 5.728133] Hardware name: Hardkernel ODROID-N2 (DT) 3193 [ 5.728141] Workqueue: events deferred_probe_work_func 3194 [ 5.728146] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--) 3195 [ 5.728148] pc : clk_core_disable+0xb0/0xb8 3196 [ 5.728151] lr : clk_core_disable+0xb0/0xb8 3197 [ 5.728152] sp : ffff800013bd3b00 3198 [ 5.728154] x29: ffff800013bd3b00 x28: 0000000000000000 3199 [ 5.728159] x27: ffff000044383dc8 x26: ffff8000118d5528 3200 [ 5.728162] x25: ffff000040835400 x24: ffff0000b505feb8 3201 [ 5.728165] x23: ffff800010efcda0 x22: ffff000040b26000 3202 [ 5.728169] x21: ffff000040bb5180 x20: ffff00004025a600 3203 [ 5.728172] x19: ffff00004025a600 x18: ffff80001173b1e0 3204 [ 5.728175] x17: 0000000000000020 x16: 000000000000000c 3205 [ 5.728178] x15: 000000000000010d x14: ffff800013bd37c0 3206 [ 5.728182] x13: 00000000ffffffea x12: ffff8000117ab218 3207 [ 5.728185] x11: 0000000000000003 x10: ffff8000117931d8 3208 [ 5.728188] x9 : ffff800011793230 x8 : 0000000000017fe8 3209 [ 5.728191] x7 : c0000000ffffefff x6 : 0000000000000001 3210 [ 5.728194] x5 : 0000000000000000 x4 : 0000000000000000 3211 [ 5.728197] x3 : 00000000ffffffff x2 : ffff80001173b1a8 3212 [ 5.728200] x1 : ce3edb13a9fd6400 x0 : 0000000000000000 3213 [ 5.728204] Call trace: 3214 [ 5.728207] clk_core_disable+0xb0/0xb8 3215 [ 5.728209] clk_core_disable_lock+0x24/0x40 3216 [ 5.728211] clk_disable+0x20/0x30 3217 [ 5.728215] phy_g12a_usb3_pcie_probe+0x120/0x1f0 3218 [ 5.728218] platform_drv_probe+0x54/0xa8 3219 [ 5.728220] really_probe+0xe8/0x4d0 3220 [ 5.728223] driver_probe_device+0xf4/0x160 3221 [ 5.728225] __device_attach_driver+0x8c/0x118 3222 [ 5.728228] bus_for_each_drv+0x7c/0xd0 3223 [ 5.728231] __device_attach+0xe8/0x168 3224 [ 5.728233] device_initial_probe+0x14/0x20 3225 [ 5.728236] bus_probe_device+0x9c/0xa8 3226 [ 5.728238] deferred_probe_work_func+0x88/0xd8 3227 [ 5.728243] process_one_work+0x1e8/0x360 3228 [ 5.728245] worker_thread+0x210/0x480 3229 [ 5.728247] kthread+0x154/0x158 3230 [ 5.728251] ret_from_fork+0x10/0x34 3231 [ 5.728253] ---[ end trace d25d3f5e82e377cf ]--- 3232 [ 5.728255] ------------[ cut here ]------------ 3233 [ 5.728257] pcie_pll_pll already unprepared 3234 [ 5.728272] WARNING: CPU: 3 PID: 1261 at drivers/clk/clk.c:811 clk_core_unprepare+0xf0/0x110 3235 [ 5.728273] Modules linked in: 3236 [ 5.728276] CPU: 3 PID: 1261 Comm: kworker/3:2 Tainted: G W 5.10.12-meson64 #21.02.1 3237 [ 5.728278] Hardware name: Hardkernel ODROID-N2 (DT) 3238 [ 5.728282] Workqueue: events deferred_probe_work_func 3239 [ 5.728285] pstate: 60000005 (nZCv daif -PAN -UAO -TCO BTYPE=--) 3240 [ 5.728287] pc : clk_core_unprepare+0xf0/0x110 3241 [ 5.728290] lr : clk_core_unprepare+0xf0/0x110 3242 [ 5.728291] sp : ffff800013bd3b10 3243 [ 5.728293] x29: ffff800013bd3b10 x28: 0000000000000000 3244 [ 5.728296] x27: ffff000044383dc8 x26: ffff8000118d5528 3245 [ 5.728300] x25: ffff000040835400 x24: ffff0000b505feb8 3246 [ 5.728303] x23: ffff800010efcda0 x22: ffff000040b26000 3247 [ 5.728306] x21: ffff000040bb5180 x20: ffff000040835400 3248 [ 5.728310] x19: ffff00004025a600 x18: ffff80001173b1e0 3249 [ 5.728313] x17: 0000000000000020 x16: 000000000000000c 3250 [ 5.728316] x15: 000000000000013a x14: ffff800013bd37d0 3251 [ 5.728319] x13: 00000000ffffffea x12: ffff8000117ab218 3252 [ 5.728322] x11: 0000000000000003 x10: ffff8000117931d8 3253 [ 5.728325] x9 : ffff800011793230 x8 : 0000000000017fe8 3254 [ 5.728328] x7 : c0000000ffffefff x6 : 0000000000000001 3255 [ 5.728331] x5 : 0000000000000000 x4 : 0000000000000000 3256 [ 5.728334] x3 : 00000000ffffffff x2 : ffff80001173b1a8 3257 [ 5.728337] x1 : ce3edb13a9fd6400 x0 : 0000000000000000 3258 [ 5.728340] Call trace: 3259 [ 5.728343] clk_core_unprepare+0xf0/0x110 3260 [ 5.728345] clk_unprepare+0x2c/0x48 3261 [ 5.728348] phy_g12a_usb3_pcie_probe+0x128/0x1f0 3262 [ 5.728350] platform_drv_probe+0x54/0xa8 3263 [ 5.728353] really_probe+0xe8/0x4d0 3264 [ 5.728356] driver_probe_device+0xf4/0x160 3265 [ 5.728358] __device_attach_driver+0x8c/0x118 3266 [ 5.728360] bus_for_each_drv+0x7c/0xd0 3267 [ 5.728363] __device_attach+0xe8/0x168 3268 [ 5.728365] device_initial_probe+0x14/0x20 3269 [ 5.728367] bus_probe_device+0x9c/0xa8 3270 [ 5.728370] deferred_probe_work_func+0x88/0xd8 3271 [ 5.728372] process_one_work+0x1e8/0x360 3272 [ 5.728374] worker_thread+0x210/0x480 3273 [ 5.728376] kthread+0x154/0x158 3274 [ 5.728379] ret_from_fork+0x10/0x34 3275 [ 5.728380] ---[ end trace d25d3f5e82e377d0 ]--- 3276 [ 5.728423] phy-g12a-usb3-pcie: probe of ff646000.phy failed with error -5 3277 [ 5.730142] meson-gx-mmc ffe05000.sd: Got CD GPIO 3278 [ 5.756496] Freeing unused kernel memory: 3328K 3279 [ 5.779555] Run /init as init process 3280 [ 5.779560] with arguments: 3281 [ 5.779562] /init 3282 [ 5.779565] with environment: 3283 [ 5.779566] HOME=/ 3284 [ 5.779568] TERM=linux 3285 [ 5.779570] hdmimode=1080p60hz 3286 [ 5.779572] cvbsmode=576cvbs 3287 [ 5.779573] max_freq_a53=1896 3288 [ 5.779575] max_freq_a73=1800 3289 [ 5.779576] voutmode=hdmi 3290 [ 5.779578] disablehpd=false 3291 [ 5.779579] cvbscable=0 3292 [ 5.779581] overscan=100 3293 [ 5.821716] mmc0: new ultra high speed SDR25 SDHC card at address b368 3294 [ 5.822290] mmcblk0: mmc0:b368 CBADS 30.0 GiB 3295 [ 5.824388] mmcblk0: p1 3296 [ 5.952775] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 3297 [ 5.952781] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 3298 [ 5.952861] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 3299 [ 5.953252] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 3300 [ 5.953258] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 3301 [ 5.953262] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 3302 [ 5.953265] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 3303 [ 5.953267] meson8b-dwmac ff3f0000.ethernet: COE Type 2 3304 [ 5.953269] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 3305 [ 5.953271] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 3306 [ 5.953312] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 3307 [ 5.953316] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 3308 [ 5.953318] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 3309 [ 5.953490] libphy: stmmac: probed 3310 [ 5.956379] libphy: mdio_mux: probed 3311 [ 5.963210] meson-vrtc ff8000a8.rtc: registered as rtc1 3312 [ 5.983254] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 3313 [ 5.983433] rtc-pcf8563 1-0051: registered as rtc0 3314 [ 5.984776] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 3315 [ 5.984784] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 3316 [ 5.988229] random: fast init done 3317 [ 6.159996] libphy: mdio_mux: probed 3318 [ 6.406327] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 3319 [ 7.207132] systemd[1]: System time before build time, advancing clock. 3320 [ 7.221948] systemd[1]: Inserted module 'autofs4' 3321 [ 7.268432] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 3322 [ 7.268646] systemd[1]: Detected architecture arm64. 3323 [ 7.293324] systemd[1]: Set hostname to <odroidn2>. 3324 [ 7.620719] random: systemd: uninitialized urandom read (16 bytes read) 3325 [ 7.624049] random: systemd: uninitialized urandom read (16 bytes read) 3326 [ 7.624331] systemd[1]: Listening on udev Control Socket. 3327 [ 7.624535] random: systemd: uninitialized urandom read (16 bytes read) 3328 [ 7.624641] systemd[1]: Listening on udev Kernel Socket. 3329 [ 7.625537] systemd[1]: Created slice User and Session Slice. 3330 [ 7.625630] systemd[1]: Reached target Slices. 3331 [ 7.625879] systemd[1]: Listening on Syslog Socket. 3332 [ 7.626684] systemd[1]: Created slice system-serial\x2dgetty.slice. 3333 [ 7.626996] systemd[1]: Listening on Journal Socket. 3334 [ 7.682441] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 3335 [ 8.238727] pwm-gpio pwmgpio: 1 gpio pwms loaded 3336 [ 8.317144] zram: Added device: zram0 3337 [ 8.317486] zram: Added device: zram1 3338 [ 8.317803] zram: Added device: zram2 3339 [ 8.408957] mc: Linux media interface: v0.10 3340 [ 8.417850] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 3341 [ 8.440629] panfrost ffe40000.gpu: clock rate = 24000000 3342 [ 8.440690] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 3343 [ 8.441316] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 3344 [ 8.441321] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 3345 [ 8.441325] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 3346 [ 8.441328] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 3347 [ 8.456580] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 3348 [ 8.482923] videodev: Linux video capture interface: v2.00 3349 [ 8.520765] meson-drm ff900000.vpu: Queued 2 outputs on vpu 3350 [ 8.527536] Registered IR keymap rc-odroid 3351 [ 8.538996] IR NEC protocol handler initialized 3352 [ 8.546082] meson-drm ff900000.vpu: CVBS Output connector not available 3353 [ 8.567567] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 3354 [ 8.567673] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 3355 [ 8.567734] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 3356 [ 8.568416] meson-ir ff808000.ir: receiver initialized 3357 [ 8.576351] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 3358 [ 8.578018] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 3359 [ 8.578316] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 3360 [ 8.578600] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 3361 [ 8.578659] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 3362 [ 8.613799] zram0: detected capacity change from 0 to 1904500736 3363 [ 8.644149] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 3364 [ 8.658096] axg-sound-card sound: ASoC: no DMI vendor name! 3365 [ 9.651510] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 3366 [ 9.714218] zram1: detected capacity change from 0 to 52428800 3367 [ 11.799746] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 3368 [ 11.799765] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 3369 [ 12.752409] systemd[1]: Started Armbian memory supported logging. 3370 [ 12.756354] systemd[1]: Starting Journal Service... 3371 [ 12.801657] systemd[1]: Started Journal Service. 3372 [ 12.829055] systemd-journald[1797]: Received request to flush runtime journal from PID 1 3373 3374 ### armbian-release: 3375 3376 # PLEASE DO NOT EDIT THIS FILE 3377 BOARD=odroidn2 3378 BOARD_NAME="Odroid N2" 3379 BOARDFAMILY=meson-g12b 3380 BUILD_REPOSITORY_URL=https://github.com/armbian/build 3381 BUILD_REPOSITORY_COMMIT=5f03d652 3382 DISTRIBUTION_CODENAME=buster 3383 DISTRIBUTION_STATUS=supported 3384 VERSION=21.02.1 3385 LINUXFAMILY=meson64 3386 BRANCH=current 3387 ARCH=arm64 3388 IMAGE_TYPE=stable 3389 BOARD_TYPE=conf 3390 INITRD_ARCH=arm64 3391 KERNEL_IMAGE_TYPE=Image 3392 3393 ### boot environment: 3394 3395 verbosity=1 3396 console=both 3397 overlay_prefix=meson 3398 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 3399 rootfstype=ext4 3400 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 3401 3402 ### lsusb: 3403 3404 3405 ### lscpu: 3406 3407 Architecture: aarch64 3408 Byte Order: Little Endian 3409 CPU(s): 6 3410 On-line CPU(s) list: 0-5 3411 Thread(s) per core: 1 3412 Core(s) per socket: 3 3413 Socket(s): 2 3414 NUMA node(s): 1 3415 Vendor ID: ARM 3416 Model: 4 3417 Model name: Cortex-A53 3418 Stepping: r0p4 3419 CPU max MHz: 1992.0000 3420 CPU min MHz: 100.0000 3421 BogoMIPS: 48.00 3422 L1d cache: unknown size 3423 L1i cache: unknown size 3424 L2 cache: unknown size 3425 NUMA node0 CPU(s): 0-5 3426 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3427 3428 ### cpuinfo: 3429 3430 processor : 0 3431 BogoMIPS : 48.00 3432 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3433 CPU implementer : 0x41 3434 CPU architecture: 8 3435 CPU variant : 0x0 3436 CPU part : 0xd03 3437 CPU revision : 4 3438 3439 processor : 1 3440 BogoMIPS : 48.00 3441 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3442 CPU implementer : 0x41 3443 CPU architecture: 8 3444 CPU variant : 0x0 3445 CPU part : 0xd03 3446 CPU revision : 4 3447 3448 processor : 2 3449 BogoMIPS : 48.00 3450 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3451 CPU implementer : 0x41 3452 CPU architecture: 8 3453 CPU variant : 0x0 3454 CPU part : 0xd09 3455 CPU revision : 2 3456 3457 processor : 3 3458 BogoMIPS : 48.00 3459 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3460 CPU implementer : 0x41 3461 CPU architecture: 8 3462 CPU variant : 0x0 3463 CPU part : 0xd09 3464 CPU revision : 2 3465 3466 processor : 4 3467 BogoMIPS : 48.00 3468 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3469 CPU implementer : 0x41 3470 CPU architecture: 8 3471 CPU variant : 0x0 3472 CPU part : 0xd09 3473 CPU revision : 2 3474 3475 processor : 5 3476 BogoMIPS : 48.00 3477 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3478 CPU implementer : 0x41 3479 CPU architecture: 8 3480 CPU variant : 0x0 3481 CPU part : 0xd09 3482 CPU revision : 2 3483 3484 3485 ### meminfo: 3486 3487 MemTotal: 3719728 kB 3488 MemFree: 3405144 kB 3489 MemAvailable: 3356628 kB 3490 Buffers: 11672 kB 3491 Cached: 40100 kB 3492 SwapCached: 0 kB 3493 Active: 29768 kB 3494 Inactive: 185860 kB 3495 Active(anon): 84 kB 3496 Inactive(anon): 168520 kB 3497 Active(file): 29684 kB 3498 Inactive(file): 17340 kB 3499 Unevictable: 0 kB 3500 Mlocked: 0 kB 3501 SwapTotal: 1859860 kB 3502 SwapFree: 1859860 kB 3503 Dirty: 2040 kB 3504 Writeback: 0 kB 3505 AnonPages: 163768 kB 3506 Mapped: 10424 kB 3507 Shmem: 4900 kB 3508 KReclaimable: 12660 kB 3509 Slab: 38264 kB 3510 SReclaimable: 12660 kB 3511 SUnreclaim: 25604 kB 3512 KernelStack: 2096 kB 3513 PageTables: 4212 kB 3514 NFS_Unstable: 0 kB 3515 Bounce: 0 kB 3516 WritebackTmp: 0 kB 3517 CommitLimit: 3719724 kB 3518 Committed_AS: 4210668 kB 3519 VmallocTotal: 135290159040 kB 3520 VmallocUsed: 30896 kB 3521 VmallocChunk: 0 kB 3522 Percpu: 1368 kB 3523 HardwareCorrupted: 0 kB 3524 AnonHugePages: 0 kB 3525 ShmemHugePages: 0 kB 3526 ShmemPmdMapped: 0 kB 3527 FileHugePages: 0 kB 3528 FilePmdMapped: 0 kB 3529 CmaTotal: 917504 kB 3530 CmaFree: 909824 kB 3531 HugePages_Total: 0 3532 HugePages_Free: 0 3533 HugePages_Rsvd: 0 3534 HugePages_Surp: 0 3535 Hugepagesize: 2048 kB 3536 Hugetlb: 0 kB 3537 3538 ### virtual memory: 3539 3540 vm.admin_reserve_kbytes = 8192 3541 vm.block_dump = 0 3542 vm.compaction_proactiveness = 20 3543 vm.compact_unevictable_allowed = 1 3544 vm.dirty_background_bytes = 0 3545 vm.dirty_background_ratio = 10 3546 vm.dirty_bytes = 0 3547 vm.dirty_expire_centisecs = 3000 3548 vm.dirty_ratio = 20 3549 vm.dirtytime_expire_seconds = 43200 3550 vm.dirty_writeback_centisecs = 500 3551 vm.extfrag_threshold = 500 3552 vm.hugetlb_shm_group = 0 3553 vm.laptop_mode = 0 3554 vm.legacy_va_layout = 0 3555 vm.lowmem_reserve_ratio = 256 256 32 0 3556 vm.max_map_count = 65530 3557 vm.memory_failure_early_kill = 0 3558 vm.memory_failure_recovery = 1 3559 vm.min_free_kbytes = 45056 3560 vm.min_slab_ratio = 5 3561 vm.min_unmapped_ratio = 1 3562 vm.mmap_min_addr = 4096 3563 vm.mmap_rnd_bits = 18 3564 vm.mmap_rnd_compat_bits = 11 3565 vm.nr_hugepages = 0 3566 vm.nr_hugepages_mempolicy = 0 3567 vm.nr_overcommit_hugepages = 0 3568 vm.numa_stat = 1 3569 vm.numa_zonelist_order = Node 3570 vm.oom_dump_tasks = 1 3571 vm.oom_kill_allocating_task = 0 3572 vm.overcommit_kbytes = 0 3573 vm.overcommit_memory = 0 3574 vm.overcommit_ratio = 50 3575 vm.page-cluster = 0 3576 vm.page_lock_unfairness = 5 3577 vm.panic_on_oom = 0 3578 vm.percpu_pagelist_fraction = 0 3579 vm.stat_interval = 1 3580 vm.swappiness = 100 3581 vm.user_reserve_kbytes = 115023 3582 vm.vfs_cache_pressure = 100 3583 vm.watermark_boost_factor = 15000 3584 vm.watermark_scale_factor = 10 3585 vm.zone_reclaim_mode = 0 3586 3587 ### ip addr: 3588 3589 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 3590 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 3591 inet XXX.XXX.0.1/8 scope host lo 3592 valid_lft forever preferred_lft forever 3593 inet6 ::1/128 scope host 3594 valid_lft forever preferred_lft forever 3595 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 3596 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 3597 3598 ### partitions: 3599 3600 major minor #blocks name 3601 3602 179 0 31464960 mmcblk0 3603 179 1 31146208 mmcblk0p1 3604 252 0 1859864 zram0 3605 252 1 51200 zram1 3606 3607 ### df: 3608 3609 udev 1.4G 0 1.4G 0% /dev 3610 tmpfs 364M 4.9M 359M 2% /run 3611 /dev/mmcblk0p1 30G 1.7G 28G 6% / 3612 tmpfs 1.8G 0 1.8G 0% /dev/shm 3613 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 3614 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 3615 tmpfs 1.8G 0 1.8G 0% /tmp 3616 /dev/zram1 49M 2.0M 43M 5% /var/log 3617 3618 ### lsblk: 3619 3620 NAME FSTYPE SIZE MOUNTPOINT UUID 3621 mmcblk0 30G 3622 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 3623 zram1 50M /var/log 3624 3625 ### zramctl: 3626 3627 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 3628 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 3629 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 3630 3631 ### mtab: 3632 3633 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 3634 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 3635 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 3636 3637 ### mmc0:b368 info: 3638 3639 fwrev: 0x0 3640 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 3641 cid: 6f0303434241445310aa002b4d013b00 3642 rca: 0xb368 3643 csd: 400e005a5b590000f00e7f800a404000 3644 manfid: 0x00006f 3645 ocr: 0x00200000 3646 preferred_erase_size: 2097152 3647 type: SD 3648 hwrev: 0x1 3649 date: 11/2019 3650 dsr: 0x404 3651 erase_size: 512 3652 oemid: 0x0303 3653 serial: 0xaa002b4d 3654 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 3655 scr: 02b5800300000000 3656 name: CBADS 3657 3658 ### Boot system health: 3659 3660 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 3661 14:30:13: 1908/1992MHz 0.29 18% 8% 4% 0% 5% 0% 32.8°C 0/11 3662 14:30:13: 1908/1992MHz 0.29 85% 31% 9% 0% 42% 1% 31.7°C 0/11 3663 14:30:13: 1908/1992MHz 0.29 73% 14% 1% 0% 56% 1% 30.6°C 0/11 3664 14:30:14: 1908/1992MHz 0.29 65% 7% 4% 0% 50% 1% 31.0°C 0/11 3665 14:30:14: 1908/1000MHz 0.83 65% 5% 5% 0% 53% 0% 29.9°C 0/11 3666 3667 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 3668 3669 ### Activated Armbian ramlog partition with zstd compression 3670 3671 Sun 14 Feb 2021 02:39:31 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 3672 3673 ### dmesg: 3674 3675 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 3676 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 3677 [ 0.000000] Machine model: Hardkernel ODROID-N2 3678 [ 0.000000] efi: UEFI not found. 3679 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 3680 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 3681 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 3682 [ 0.000000] NUMA: No NUMA configuration found 3683 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 3684 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 3685 [ 0.000000] Zone ranges: 3686 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 3687 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 3688 [ 0.000000] Normal empty 3689 [ 0.000000] Movable zone start for each node 3690 [ 0.000000] Early memory node ranges 3691 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 3692 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 3693 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 3694 [ 0.000000] On node 0 totalpages: 972032 3695 [ 0.000000] DMA zone: 4096 pages used for memmap 3696 [ 0.000000] DMA zone: 0 pages reserved 3697 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 3698 [ 0.000000] DMA32 zone: 11104 pages used for memmap 3699 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 3700 [ 0.000000] psci: probing for conduit method from DT. 3701 [ 0.000000] psci: PSCIv1.0 detected in firmware. 3702 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 3703 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 3704 [ 0.000000] psci: SMC Calling Convention v1.1 3705 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 3706 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 3707 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 3708 [ 0.000000] Detected VIPT I-cache on CPU0 3709 [ 0.000000] CPU features: detected: ARM erratum 845719 3710 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 3711 [ 0.000000] Policy zone: DMA32 3712 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 3713 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 3714 Please use sysfs to set IO scheduler for individual devices. 3715 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 3716 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 3717 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 3718 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 3719 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 3720 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 3721 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 3722 [ 0.000000] rcu: RCU event tracing is enabled. 3723 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 3724 [ 0.000000] Trampoline variant of Tasks RCU enabled. 3725 [ 0.000000] Rude variant of Tasks RCU enabled. 3726 [ 0.000000] Tracing variant of Tasks RCU enabled. 3727 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 3728 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 3729 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 3730 [ 0.000000] GIC: Using split EOI/Deactivate mode 3731 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 3732 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 3733 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 3734 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 3735 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 3736 [ 0.000249] Console: colour dummy device 80x25 3737 [ 0.000282] printk: console [tty1] enabled 3738 [ 0.000369] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 3739 [ 0.000381] pid_max: default: 32768 minimum: 301 3740 [ 0.000467] LSM: Security Framework initializing 3741 [ 0.000493] Yama: becoming mindful. 3742 [ 0.000587] AppArmor: AppArmor initialized 3743 [ 0.000636] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 3744 [ 0.000655] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 3745 [ 0.002651] rcu: Hierarchical SRCU implementation. 3746 [ 0.005096] EFI services will not be available. 3747 [ 0.005521] smp: Bringing up secondary CPUs ... 3748 [ 0.006194] Detected VIPT I-cache on CPU1 3749 [ 0.006255] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 3750 [ 0.007448] CPU features: detected: ARM erratum 858921 3751 [ 0.007456] CPU features: detected: Spectre-v2 3752 [ 0.007460] CPU features: detected: Spectre-v4 3753 [ 0.007467] Detected VIPT I-cache on CPU2 3754 [ 0.007493] arch_timer: Enabling local workaround for ARM erratum 858921 3755 [ 0.007508] arch_timer: CPU2: Trapping CNTVCT access 3756 [ 0.007522] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 3757 [ 0.008230] Detected VIPT I-cache on CPU3 3758 [ 0.008246] arch_timer: Enabling local workaround for ARM erratum 858921 3759 [ 0.008253] arch_timer: CPU3: Trapping CNTVCT access 3760 [ 0.008261] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 3761 [ 0.008884] Detected VIPT I-cache on CPU4 3762 [ 0.008901] arch_timer: Enabling local workaround for ARM erratum 858921 3763 [ 0.008908] arch_timer: CPU4: Trapping CNTVCT access 3764 [ 0.008916] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 3765 [ 0.009531] Detected VIPT I-cache on CPU5 3766 [ 0.009548] arch_timer: Enabling local workaround for ARM erratum 858921 3767 [ 0.009555] arch_timer: CPU5: Trapping CNTVCT access 3768 [ 0.009563] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 3769 [ 0.009643] smp: Brought up 1 node, 6 CPUs 3770 [ 0.009660] SMP: Total of 6 processors activated. 3771 [ 0.009668] CPU features: detected: 32-bit EL0 Support 3772 [ 0.009674] CPU features: detected: CRC32 instructions 3773 [ 0.009680] CPU features: detected: 32-bit EL1 Support 3774 [ 0.020895] CPU: All CPU(s) started at EL2 3775 [ 0.020944] alternatives: patching kernel code 3776 [ 0.022889] devtmpfs: initialized 3777 [ 0.030534] Registered cp15_barrier emulation handler 3778 [ 0.030548] Registered setend emulation handler 3779 [ 0.030680] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 3780 [ 0.030718] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 3781 [ 0.044641] pinctrl core: initialized pinctrl subsystem 3782 [ 0.045259] DMI not present or invalid. 3783 [ 0.045630] NET: Registered protocol family 16 3784 [ 0.047209] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 3785 [ 0.047481] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 3786 [ 0.047711] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 3787 [ 0.047756] audit: initializing netlink subsys (disabled) 3788 [ 0.047874] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 3789 [ 0.049198] thermal_sys: Registered thermal governor 'fair_share' 3790 [ 0.049205] thermal_sys: Registered thermal governor 'bang_bang' 3791 [ 0.049209] thermal_sys: Registered thermal governor 'step_wise' 3792 [ 0.049213] thermal_sys: Registered thermal governor 'user_space' 3793 [ 0.049658] cpuidle: using governor menu 3794 [ 0.049997] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 3795 [ 0.050115] ASID allocator initialised with 65536 entries 3796 [ 0.051075] Serial: AMBA PL011 UART driver 3797 [ 0.084873] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 3798 [ 0.084884] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 3799 [ 0.084889] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 3800 [ 0.084893] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 3801 [ 0.087179] cryptd: max_cpu_qlen set to 1000 3802 [ 0.156242] raid6: neonx8 gen() 2786 MB/s 3803 [ 0.224619] raid6: neonx8 xor() 1601 MB/s 3804 [ 0.292430] raid6: neonx4 gen() 2193 MB/s 3805 [ 0.360467] raid6: neonx4 xor() 2399 MB/s 3806 [ 0.428540] raid6: neonx2 gen() 2559 MB/s 3807 [ 0.496604] raid6: neonx2 xor() 2208 MB/s 3808 [ 0.564668] raid6: neonx1 gen() 2070 MB/s 3809 [ 0.632730] raid6: neonx1 xor() 1726 MB/s 3810 [ 0.700799] raid6: int64x8 gen() 1376 MB/s 3811 [ 0.768864] raid6: int64x8 xor() 735 MB/s 3812 [ 0.836942] raid6: int64x4 gen() 1463 MB/s 3813 [ 0.904999] raid6: int64x4 xor() 733 MB/s 3814 [ 0.973065] raid6: int64x2 gen() 1362 MB/s 3815 [ 1.041138] raid6: int64x2 xor() 619 MB/s 3816 [ 1.109209] raid6: int64x1 gen() 1120 MB/s 3817 [ 1.177258] raid6: int64x1 xor() 462 MB/s 3818 [ 1.177261] raid6: using algorithm neonx8 gen() 2786 MB/s 3819 [ 1.177264] raid6: .... xor() 1601 MB/s, rmw enabled 3820 [ 1.177268] raid6: using neon recovery algorithm 3821 [ 1.177717] ACPI: Interpreter disabled. 3822 [ 1.178497] 5V: supplied by 12V 3823 [ 1.179400] VDDAO_3V3: supplied by 12V 3824 [ 1.179849] iommu: Default domain type: Translated 3825 [ 1.179975] vgaarb: loaded 3826 [ 1.180680] SCSI subsystem initialized 3827 [ 1.180950] usbcore: registered new interface driver usbfs 3828 [ 1.180993] usbcore: registered new interface driver hub 3829 [ 1.181029] usbcore: registered new device driver usb 3830 [ 1.181307] pps_core: LinuxPPS API ver. 1 registered 3831 [ 1.181312] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 3832 [ 1.181328] PTP clock support registered 3833 [ 1.181546] EDAC MC: Ver: 3.0.0 3834 [ 1.183255] NetLabel: Initializing 3835 [ 1.183262] NetLabel: domain hash size = 128 3836 [ 1.183265] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 3837 [ 1.183306] NetLabel: unlabeled traffic allowed by default 3838 [ 1.183734] clocksource: Switched to clocksource arch_sys_counter 3839 [ 1.183939] VFS: Disk quotas dquot_6.6.0 3840 [ 1.183982] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 3841 [ 1.184339] AppArmor: AppArmor Filesystem Enabled 3842 [ 1.184388] pnp: PnP ACPI: disabled 3843 [ 1.190191] NET: Registered protocol family 2 3844 [ 1.190649] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 3845 [ 1.190755] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 3846 [ 1.191011] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 3847 [ 1.191199] TCP: Hash tables configured (established 32768 bind 32768) 3848 [ 1.191349] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 3849 [ 1.191412] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 3850 [ 1.191459] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 3851 [ 1.191602] NET: Registered protocol family 1 3852 [ 1.191622] PCI: CLS 0 bytes, default 64 3853 [ 1.191836] Trying to unpack rootfs image as initramfs... 3854 [ 1.728301] Freeing initrd memory: 13544K 3855 [ 1.729242] kvm [1]: IPA Size Limit: 40 bits 3856 [ 1.729947] kvm [1]: vgic interrupt IRQ9 3857 [ 1.730091] kvm [1]: Hyp mode initialized successfully 3858 [ 1.733994] Initialise system trusted keyrings 3859 [ 1.734030] Key type blacklist registered 3860 [ 1.734145] workingset: timestamp_bits=44 max_order=20 bucket_order=0 3861 [ 1.737353] zbud: loaded 3862 [ 1.738342] squashfs: version 4.0 (2009/01/31) Phillip Lougher 3863 [ 1.738783] fuse: init (API version 7.32) 3864 [ 1.739549] integrity: Platform Keyring initialized 3865 [ 1.767134] xor: measuring software checksum speed 3866 [ 1.769983] 8regs : 3473 MB/sec 3867 [ 1.772439] 32regs : 4020 MB/sec 3868 [ 1.775088] arm64_neon : 3719 MB/sec 3869 [ 1.775091] xor: using function: 32regs (4020 MB/sec) 3870 [ 1.775099] Key type asymmetric registered 3871 [ 1.775103] Asymmetric key parser 'x509' registered 3872 [ 1.775136] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 3873 [ 1.775219] io scheduler mq-deadline registered 3874 [ 1.775223] io scheduler kyber registered 3875 [ 1.775303] io scheduler bfq registered 3876 [ 1.777838] gpio-447 (usb-hub-reset): hogged as output/high 3877 [ 1.780855] EINJ: ACPI disabled. 3878 [ 1.787120] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 3879 [ 1.788651] VCC_3V3: supplied by VDDAO_3V3 3880 [ 1.788700] FLASH_1V8: supplied by VCC_3V3 3881 [ 1.788729] VCC_1V8: supplied by VCC_3V3 3882 [ 1.788758] VDDAO_1V8: supplied by VDDAO_3V3 3883 [ 1.788786] VDDCPU_A: supplied by regulator-dummy 3884 [ 1.789145] VDDCPU_B: supplied by regulator-dummy 3885 [ 1.789833] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 3886 [ 1.792408] Serial: AMBA driver 3887 [ 1.792702] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 3888 [ 1.792784] printk: console [ttyAML0] enabled 3889 [ 1.793315] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 3890 [ 1.798905] loop: module loaded 3891 [ 1.800925] libphy: Fixed MDIO Bus: probed 3892 [ 1.802030] tun: Universal TUN/TAP device driver, 1.6 3893 [ 1.802687] thunder_xcv, ver 1.0 3894 [ 1.802716] thunder_bgx, ver 1.0 3895 [ 1.802745] nicpf, ver 1.0 3896 [ 1.803204] e1000e: Intel(R) PRO/1000 Network Driver 3897 [ 1.803208] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 3898 [ 1.803252] igb: Intel(R) Gigabit Ethernet Network Driver 3899 [ 1.803255] igb: Copyright (c) 2007-2014 Intel Corporation. 3900 [ 1.803286] igbvf: Intel(R) Gigabit Virtual Function Network Driver 3901 [ 1.803289] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 3902 [ 1.803412] sky2: driver version 1.30 3903 [ 1.803969] VFIO - User Level meta-driver version: 0.3 3904 [ 1.805495] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 3905 [ 1.805517] ehci-pci: EHCI PCI platform driver 3906 [ 1.805546] ehci-platform: EHCI generic platform driver 3907 [ 1.805675] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 3908 [ 1.805685] ohci-pci: OHCI PCI platform driver 3909 [ 1.805714] ohci-platform: OHCI generic platform driver 3910 [ 1.806128] usbcore: registered new interface driver usb-storage 3911 [ 1.807386] mousedev: PS/2 mouse device common for all mice 3912 [ 1.807711] i2c /dev entries driver 3913 [ 1.812661] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 3914 [ 1.813332] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 3915 [ 1.814008] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 3916 [ 1.814603] sdhci: Secure Digital Host Controller Interface driver 3917 [ 1.814608] sdhci: Copyright(c) Pierre Ossman 3918 [ 1.814713] Synopsys Designware Multimedia Card Interface Driver 3919 [ 1.815155] sdhci-pltfm: SDHCI platform and OF driver helper 3920 [ 1.815576] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 3921 [ 1.816636] ledtrig-cpu: registered to indicate activity on CPUs 3922 [ 1.816975] meson-sm: secure-monitor enabled 3923 [ 1.817150] hid: raw HID events driver (C) Jiri Kosina 3924 [ 1.817230] usbcore: registered new interface driver usbhid 3925 [ 1.817233] usbhid: USB HID core driver 3926 [ 1.818212] NET: Registered protocol family 10 3927 [ 1.818604] Segment Routing with IPv6 3928 [ 1.818630] NET: Registered protocol family 17 3929 [ 1.818669] 8021q: 802.1Q VLAN Support v1.8 3930 [ 1.818690] Key type dns_resolver registered 3931 [ 1.818987] registered taskstats version 1 3932 [ 1.818993] Loading compiled-in X.509 certificates 3933 [ 1.820665] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 3934 [ 1.822249] zswap: loaded using pool zstd/z3fold 3935 [ 1.822402] Key type ._fscrypt registered 3936 [ 1.822404] Key type .fscrypt registered 3937 [ 1.822406] Key type fscrypt-provisioning registered 3938 [ 1.823483] Btrfs loaded, crc32c=crc32c-generic 3939 [ 1.831993] Key type encrypted registered 3940 [ 1.832006] AppArmor: AppArmor sha1 policy hashing enabled 3941 [ 1.838273] HUB_5V: supplied by 5V 3942 [ 1.838479] USB_PWR_EN: supplied by 5V 3943 [ 1.840239] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 3944 [ 1.840245] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 3945 [ 1.842928] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 3946 [ 1.842976] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 3947 [ 1.843086] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 3948 [ 1.843700] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 3949 [ 1.843712] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 3950 [ 1.843823] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 3951 [ 1.843846] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 3952 [ 1.843967] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 3953 [ 1.843970] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3954 [ 1.843973] usb usb1: Product: xHCI Host Controller 3955 [ 1.843976] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 3956 [ 1.843978] usb usb1: SerialNumber: xhci-hcd.0.auto 3957 [ 1.844204] hub 1-0:1.0: USB hub found 3958 [ 1.844217] hub 1-0:1.0: 2 ports detected 3959 [ 1.844348] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 3960 [ 1.844356] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 3961 [ 1.844362] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 3962 [ 1.844386] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 3963 [ 1.844416] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 3964 [ 1.844420] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3965 [ 1.844422] usb usb2: Product: xHCI Host Controller 3966 [ 1.844424] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 3967 [ 1.844426] usb usb2: SerialNumber: xhci-hcd.0.auto 3968 [ 1.844593] hub 2-0:1.0: USB hub found 3969 [ 1.844603] hub 2-0:1.0: 1 port detected 3970 [ 1.845716] meson-gx-mmc ffe05000.sd: Got CD GPIO 3971 [ 1.872755] Freeing unused kernel memory: 3328K 3972 [ 1.915819] Run /init as init process 3973 [ 1.915824] with arguments: 3974 [ 1.915826] /init 3975 [ 1.915828] with environment: 3976 [ 1.915830] HOME=/ 3977 [ 1.915831] TERM=linux 3978 [ 1.915833] hdmimode=1080p60hz 3979 [ 1.915834] cvbsmode=576cvbs 3980 [ 1.915836] max_freq_a53=1896 3981 [ 1.915838] max_freq_a73=1800 3982 [ 1.915839] voutmode=hdmi 3983 [ 1.915840] disablehpd=false 3984 [ 1.915842] cvbscable=0 3985 [ 1.915843] overscan=100 3986 [ 1.922453] mmc0: new high speed SDHC card at address b368 3987 [ 1.922987] mmcblk0: mmc0:b368 CBADS 30.0 GiB 3988 [ 1.924684] mmcblk0: p1 3989 [ 2.053301] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 3990 [ 2.053311] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 3991 [ 2.053459] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 3992 [ 2.054805] meson-vrtc ff8000a8.rtc: registered as rtc1 3993 [ 2.056736] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 3994 [ 2.056746] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 3995 [ 2.056750] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 3996 [ 2.056753] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 3997 [ 2.056755] meson8b-dwmac ff3f0000.ethernet: COE Type 2 3998 [ 2.056757] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 3999 [ 2.056759] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 4000 [ 2.056819] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 4001 [ 2.056822] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 4002 [ 2.056825] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 4003 [ 2.057057] libphy: stmmac: probed 4004 [ 2.058413] libphy: mdio_mux: probed 4005 [ 2.079026] rtc-pcf8563 1-0051: registered as rtc0 4006 [ 2.080262] rtc-pcf8563 1-0051: setting system clock to 2021-02-14T14:39:19 UTC (1613313559) 4007 [ 2.183746] usb 1-1: new high-speed USB device number 2 using xhci-hcd 4008 [ 2.264151] libphy: mdio_mux: probed 4009 [ 2.334081] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 4010 [ 2.334087] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4011 [ 2.334090] usb 1-1: Product: USB2.1 Hub 4012 [ 2.334092] usb 1-1: Manufacturer: GenesysLogic 4013 [ 2.388587] hub 1-1:1.0: USB hub found 4014 [ 2.388844] hub 1-1:1.0: 4 ports detected 4015 [ 2.453226] random: fast init done 4016 [ 2.459837] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 4017 [ 2.482318] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 4018 [ 2.482321] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4019 [ 2.482324] usb 2-1: Product: USB3.1 Hub 4020 [ 2.482326] usb 2-1: Manufacturer: GenesysLogic 4021 [ 2.500562] hub 2-1:1.0: USB hub found 4022 [ 2.500842] hub 2-1:1.0: 4 ports detected 4023 [ 2.607733] usb 1-2: new high-speed USB device number 3 using xhci-hcd 4024 [ 3.271738] usb 1-2: device descriptor read/64, error -71 4025 [ 4.211740] usb 1-2: device descriptor read/64, error -71 4026 [ 4.447726] usb 1-2: new high-speed USB device number 4 using xhci-hcd 4027 [ 5.171739] usb 1-2: device descriptor read/64, error -71 4028 [ 5.855737] usb 1-2: device descriptor read/64, error -71 4029 [ 5.963754] usb usb1-port2: attempt power cycle 4030 [ 6.615726] usb 1-2: new high-speed USB device number 5 using xhci-hcd 4031 [ 6.615854] usb 1-2: Device not responding to setup address. 4032 [ 6.823996] usb 1-2: Device not responding to setup address. 4033 [ 7.031724] usb 1-2: device not accepting address 5, error -71 4034 [ 7.159726] usb 1-2: new high-speed USB device number 6 using xhci-hcd 4035 [ 7.159820] usb 1-2: Device not responding to setup address. 4036 [ 7.367868] usb 1-2: Device not responding to setup address. 4037 [ 7.575724] usb 1-2: device not accepting address 6, error -71 4038 [ 7.575755] usb usb1-port2: unable to enumerate USB device 4039 [ 7.813614] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 4040 [ 8.636555] systemd[1]: Inserted module 'autofs4' 4041 [ 8.683074] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 4042 [ 8.683291] systemd[1]: Detected architecture arm64. 4043 [ 8.705578] systemd[1]: Set hostname to <odroidn2>. 4044 [ 9.034843] random: systemd: uninitialized urandom read (16 bytes read) 4045 [ 9.038190] random: systemd: uninitialized urandom read (16 bytes read) 4046 [ 9.038480] systemd[1]: Listening on Journal Socket (/dev/log). 4047 [ 9.038683] random: systemd: uninitialized urandom read (16 bytes read) 4048 [ 9.039524] systemd[1]: Created slice User and Session Slice. 4049 [ 9.039639] systemd[1]: Reached target Swap. 4050 [ 9.039918] systemd[1]: Listening on fsck to fsckd communication Socket. 4051 [ 9.040117] systemd[1]: Listening on udev Kernel Socket. 4052 [ 9.040275] systemd[1]: Listening on initctl Compatibility Named Pipe. 4053 [ 9.040349] systemd[1]: Reached target System Time Synchronized. 4054 [ 9.142488] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 4055 [ 9.654843] zram: Added device: zram0 4056 [ 9.655117] zram: Added device: zram1 4057 [ 9.655315] zram: Added device: zram2 4058 [ 9.663794] pwm-gpio pwmgpio: 1 gpio pwms loaded 4059 [ 9.841039] mc: Linux media interface: v0.10 4060 [ 9.866049] panfrost ffe40000.gpu: clock rate = 24000000 4061 [ 9.866110] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 4062 [ 9.873148] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 4063 [ 9.873156] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 4064 [ 9.873160] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 4065 [ 9.873162] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 4066 [ 9.887117] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 4067 [ 9.887571] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 4068 [ 9.898366] meson-drm ff900000.vpu: Queued 2 outputs on vpu 4069 [ 9.920275] videodev: Linux video capture interface: v2.00 4070 [ 9.955810] Registered IR keymap rc-odroid 4071 [ 9.971701] meson-drm ff900000.vpu: CVBS Output connector not available 4072 [ 9.978138] IR NEC protocol handler initialized 4073 [ 9.999824] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 4074 [ 10.001037] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 4075 [ 10.001456] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 4076 [ 10.001800] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 4077 [ 10.001882] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 4078 [ 10.003868] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 4079 [ 10.004027] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 4080 [ 10.004148] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 4081 [ 10.004399] meson-ir ff808000.ir: receiver initialized 4082 [ 10.020517] zram0: detected capacity change from 0 to 1904500736 4083 [ 10.076250] axg-sound-card sound: ASoC: no DMI vendor name! 4084 [ 10.085194] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 4085 [ 11.079752] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 4086 [ 11.142364] zram1: detected capacity change from 0 to 52428800 4087 [ 13.228097] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 4088 [ 13.228118] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 4089 [ 14.185990] systemd[1]: Started Armbian memory supported logging. 4090 [ 14.190073] systemd[1]: Starting Journal Service... 4091 [ 14.245059] systemd[1]: Started Journal Service. 4092 [ 14.272650] systemd-journald[1815]: Received request to flush runtime journal from PID 1 4093 4094 ### armbian-release: 4095 4096 # PLEASE DO NOT EDIT THIS FILE 4097 BOARD=odroidn2 4098 BOARD_NAME="Odroid N2" 4099 BOARDFAMILY=meson-g12b 4100 BUILD_REPOSITORY_URL=https://github.com/armbian/build 4101 BUILD_REPOSITORY_COMMIT=5f03d652 4102 DISTRIBUTION_CODENAME=buster 4103 DISTRIBUTION_STATUS=supported 4104 VERSION=21.02.1 4105 LINUXFAMILY=meson64 4106 BRANCH=current 4107 ARCH=arm64 4108 IMAGE_TYPE=stable 4109 BOARD_TYPE=conf 4110 INITRD_ARCH=arm64 4111 KERNEL_IMAGE_TYPE=Image 4112 4113 ### boot environment: 4114 4115 verbosity=1 4116 console=both 4117 overlay_prefix=meson 4118 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 4119 rootfstype=ext4 4120 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 4121 4122 ### lsusb: 4123 4124 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 4125 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 4126 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 4127 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4128 4129 ### lscpu: 4130 4131 Architecture: aarch64 4132 Byte Order: Little Endian 4133 CPU(s): 6 4134 On-line CPU(s) list: 0-5 4135 Thread(s) per core: 1 4136 Core(s) per socket: 3 4137 Socket(s): 2 4138 NUMA node(s): 1 4139 Vendor ID: ARM 4140 Model: 4 4141 Model name: Cortex-A53 4142 Stepping: r0p4 4143 CPU max MHz: 1992.0000 4144 CPU min MHz: 100.0000 4145 BogoMIPS: 48.00 4146 L1d cache: unknown size 4147 L1i cache: unknown size 4148 L2 cache: unknown size 4149 NUMA node0 CPU(s): 0-5 4150 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4151 4152 ### cpuinfo: 4153 4154 processor : 0 4155 BogoMIPS : 48.00 4156 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4157 CPU implementer : 0x41 4158 CPU architecture: 8 4159 CPU variant : 0x0 4160 CPU part : 0xd03 4161 CPU revision : 4 4162 4163 processor : 1 4164 BogoMIPS : 48.00 4165 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4166 CPU implementer : 0x41 4167 CPU architecture: 8 4168 CPU variant : 0x0 4169 CPU part : 0xd03 4170 CPU revision : 4 4171 4172 processor : 2 4173 BogoMIPS : 48.00 4174 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4175 CPU implementer : 0x41 4176 CPU architecture: 8 4177 CPU variant : 0x0 4178 CPU part : 0xd09 4179 CPU revision : 2 4180 4181 processor : 3 4182 BogoMIPS : 48.00 4183 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4184 CPU implementer : 0x41 4185 CPU architecture: 8 4186 CPU variant : 0x0 4187 CPU part : 0xd09 4188 CPU revision : 2 4189 4190 processor : 4 4191 BogoMIPS : 48.00 4192 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4193 CPU implementer : 0x41 4194 CPU architecture: 8 4195 CPU variant : 0x0 4196 CPU part : 0xd09 4197 CPU revision : 2 4198 4199 processor : 5 4200 BogoMIPS : 48.00 4201 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4202 CPU implementer : 0x41 4203 CPU architecture: 8 4204 CPU variant : 0x0 4205 CPU part : 0xd09 4206 CPU revision : 2 4207 4208 4209 ### meminfo: 4210 4211 MemTotal: 3719728 kB 4212 MemFree: 3422452 kB 4213 MemAvailable: 3374548 kB 4214 Buffers: 11544 kB 4215 Cached: 41396 kB 4216 SwapCached: 0 kB 4217 Active: 30428 kB 4218 Inactive: 168048 kB 4219 Active(anon): 88 kB 4220 Inactive(anon): 150308 kB 4221 Active(file): 30340 kB 4222 Inactive(file): 17740 kB 4223 Unevictable: 0 kB 4224 Mlocked: 0 kB 4225 SwapTotal: 1859860 kB 4226 SwapFree: 1859860 kB 4227 Dirty: 2244 kB 4228 Writeback: 0 kB 4229 AnonPages: 145256 kB 4230 Mapped: 11048 kB 4231 Shmem: 4864 kB 4232 KReclaimable: 12832 kB 4233 Slab: 38580 kB 4234 SReclaimable: 12832 kB 4235 SUnreclaim: 25748 kB 4236 KernelStack: 2048 kB 4237 PageTables: 4500 kB 4238 NFS_Unstable: 0 kB 4239 Bounce: 0 kB 4240 WritebackTmp: 0 kB 4241 CommitLimit: 3719724 kB 4242 Committed_AS: 4210668 kB 4243 VmallocTotal: 135290159040 kB 4244 VmallocUsed: 30864 kB 4245 VmallocChunk: 0 kB 4246 Percpu: 1368 kB 4247 HardwareCorrupted: 0 kB 4248 AnonHugePages: 0 kB 4249 ShmemHugePages: 0 kB 4250 ShmemPmdMapped: 0 kB 4251 FileHugePages: 0 kB 4252 FilePmdMapped: 0 kB 4253 CmaTotal: 917504 kB 4254 CmaFree: 909824 kB 4255 HugePages_Total: 0 4256 HugePages_Free: 0 4257 HugePages_Rsvd: 0 4258 HugePages_Surp: 0 4259 Hugepagesize: 2048 kB 4260 Hugetlb: 0 kB 4261 4262 ### virtual memory: 4263 4264 vm.admin_reserve_kbytes = 8192 4265 vm.block_dump = 0 4266 vm.compaction_proactiveness = 20 4267 vm.compact_unevictable_allowed = 1 4268 vm.dirty_background_bytes = 0 4269 vm.dirty_background_ratio = 10 4270 vm.dirty_bytes = 0 4271 vm.dirty_expire_centisecs = 3000 4272 vm.dirty_ratio = 20 4273 vm.dirtytime_expire_seconds = 43200 4274 vm.dirty_writeback_centisecs = 500 4275 vm.extfrag_threshold = 500 4276 vm.hugetlb_shm_group = 0 4277 vm.laptop_mode = 0 4278 vm.legacy_va_layout = 0 4279 vm.lowmem_reserve_ratio = 256 256 32 0 4280 vm.max_map_count = 65530 4281 vm.memory_failure_early_kill = 0 4282 vm.memory_failure_recovery = 1 4283 vm.min_free_kbytes = 45056 4284 vm.min_slab_ratio = 5 4285 vm.min_unmapped_ratio = 1 4286 vm.mmap_min_addr = 4096 4287 vm.mmap_rnd_bits = 18 4288 vm.mmap_rnd_compat_bits = 11 4289 vm.nr_hugepages = 0 4290 vm.nr_hugepages_mempolicy = 0 4291 vm.nr_overcommit_hugepages = 0 4292 vm.numa_stat = 1 4293 vm.numa_zonelist_order = Node 4294 vm.oom_dump_tasks = 1 4295 vm.oom_kill_allocating_task = 0 4296 vm.overcommit_kbytes = 0 4297 vm.overcommit_memory = 0 4298 vm.overcommit_ratio = 50 4299 vm.page-cluster = 0 4300 vm.page_lock_unfairness = 5 4301 vm.panic_on_oom = 0 4302 vm.percpu_pagelist_fraction = 0 4303 vm.stat_interval = 1 4304 vm.swappiness = 100 4305 vm.user_reserve_kbytes = 115025 4306 vm.vfs_cache_pressure = 100 4307 vm.watermark_boost_factor = 15000 4308 vm.watermark_scale_factor = 10 4309 vm.zone_reclaim_mode = 0 4310 4311 ### ip addr: 4312 4313 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 4314 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 4315 inet XXX.XXX.0.1/8 scope host lo 4316 valid_lft forever preferred_lft forever 4317 inet6 ::1/128 scope host 4318 valid_lft forever preferred_lft forever 4319 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 4320 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 4321 4322 ### partitions: 4323 4324 major minor #blocks name 4325 4326 179 0 31464960 mmcblk0 4327 179 1 31146208 mmcblk0p1 4328 252 0 1859864 zram0 4329 252 1 51200 zram1 4330 4331 ### df: 4332 4333 udev 1.4G 0 1.4G 0% /dev 4334 tmpfs 364M 4.9M 359M 2% /run 4335 /dev/mmcblk0p1 30G 1.7G 28G 6% / 4336 tmpfs 1.8G 0 1.8G 0% /dev/shm 4337 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 4338 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 4339 tmpfs 1.8G 0 1.8G 0% /tmp 4340 /dev/zram1 49M 2.3M 43M 5% /var/log 4341 4342 ### lsblk: 4343 4344 NAME FSTYPE SIZE MOUNTPOINT UUID 4345 mmcblk0 30G 4346 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 4347 zram1 50M /var/log 4348 4349 ### zramctl: 4350 4351 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 4352 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 4353 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 4354 4355 ### mtab: 4356 4357 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 4358 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 4359 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 4360 4361 ### mmc0:b368 info: 4362 4363 fwrev: 0x0 4364 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 4365 cid: 6f0303434241445310aa002b4d013b00 4366 rca: 0xb368 4367 csd: 400e005a5b590000f00e7f800a404000 4368 manfid: 0x00006f 4369 ocr: 0x00200000 4370 preferred_erase_size: 2097152 4371 type: SD 4372 hwrev: 0x1 4373 date: 11/2019 4374 dsr: 0x404 4375 erase_size: 512 4376 oemid: 0x0303 4377 serial: 0xaa002b4d 4378 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4379 scr: 02b5800300000000 4380 name: CBADS 4381 4382 ### Boot system health: 4383 4384 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 4385 14:39:32: 1908/1992MHz 1.56 15% 7% 3% 0% 4% 0% 33.3°C 0/11 4386 14:39:33: 1908/1992MHz 1.56 79% 34% 6% 0% 36% 0% 33.2°C 0/11 4387 14:39:33: 1908/1992MHz 1.56 66% 17% 1% 0% 45% 0% 30.4°C 0/11 4388 14:39:33: 1908/1992MHz 1.56 55% 6% 7% 0% 41% 1% 30.1°C 0/11 4389 14:39:34: 1908/1992MHz 1.56 55% 6% 4% 0% 44% 0% 29.5°C 0/11 4390 4391 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 4392 4393 ### Activated Armbian ramlog partition with zstd compression 4394 4395 Sun 14 Feb 2021 02:45:08 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 4396 4397 ### dmesg: 4398 4399 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 4400 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 4401 [ 0.000000] Machine model: Hardkernel ODROID-N2 4402 [ 0.000000] efi: UEFI not found. 4403 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 4404 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 4405 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 4406 [ 0.000000] NUMA: No NUMA configuration found 4407 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 4408 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 4409 [ 0.000000] Zone ranges: 4410 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 4411 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 4412 [ 0.000000] Normal empty 4413 [ 0.000000] Movable zone start for each node 4414 [ 0.000000] Early memory node ranges 4415 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 4416 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 4417 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 4418 [ 0.000000] On node 0 totalpages: 972032 4419 [ 0.000000] DMA zone: 4096 pages used for memmap 4420 [ 0.000000] DMA zone: 0 pages reserved 4421 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 4422 [ 0.000000] DMA32 zone: 11104 pages used for memmap 4423 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 4424 [ 0.000000] psci: probing for conduit method from DT. 4425 [ 0.000000] psci: PSCIv1.0 detected in firmware. 4426 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 4427 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 4428 [ 0.000000] psci: SMC Calling Convention v1.1 4429 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 4430 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 4431 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 4432 [ 0.000000] Detected VIPT I-cache on CPU0 4433 [ 0.000000] CPU features: detected: ARM erratum 845719 4434 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 4435 [ 0.000000] Policy zone: DMA32 4436 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 4437 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 4438 Please use sysfs to set IO scheduler for individual devices. 4439 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 4440 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 4441 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 4442 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 4443 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 4444 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 4445 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 4446 [ 0.000000] rcu: RCU event tracing is enabled. 4447 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 4448 [ 0.000000] Trampoline variant of Tasks RCU enabled. 4449 [ 0.000000] Rude variant of Tasks RCU enabled. 4450 [ 0.000000] Tracing variant of Tasks RCU enabled. 4451 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 4452 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 4453 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 4454 [ 0.000000] GIC: Using split EOI/Deactivate mode 4455 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 4456 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 4457 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 4458 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 4459 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 4460 [ 0.000246] Console: colour dummy device 80x25 4461 [ 0.000281] printk: console [tty1] enabled 4462 [ 0.000368] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 4463 [ 0.000380] pid_max: default: 32768 minimum: 301 4464 [ 0.000462] LSM: Security Framework initializing 4465 [ 0.000488] Yama: becoming mindful. 4466 [ 0.000579] AppArmor: AppArmor initialized 4467 [ 0.000629] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 4468 [ 0.000648] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 4469 [ 0.002641] rcu: Hierarchical SRCU implementation. 4470 [ 0.005107] EFI services will not be available. 4471 [ 0.005531] smp: Bringing up secondary CPUs ... 4472 [ 0.006207] Detected VIPT I-cache on CPU1 4473 [ 0.006265] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 4474 [ 0.007461] CPU features: detected: ARM erratum 858921 4475 [ 0.007469] CPU features: detected: Spectre-v2 4476 [ 0.007473] CPU features: detected: Spectre-v4 4477 [ 0.007479] Detected VIPT I-cache on CPU2 4478 [ 0.007504] arch_timer: Enabling local workaround for ARM erratum 858921 4479 [ 0.007519] arch_timer: CPU2: Trapping CNTVCT access 4480 [ 0.007533] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 4481 [ 0.008242] Detected VIPT I-cache on CPU3 4482 [ 0.008258] arch_timer: Enabling local workaround for ARM erratum 858921 4483 [ 0.008265] arch_timer: CPU3: Trapping CNTVCT access 4484 [ 0.008273] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 4485 [ 0.008899] Detected VIPT I-cache on CPU4 4486 [ 0.008916] arch_timer: Enabling local workaround for ARM erratum 858921 4487 [ 0.008923] arch_timer: CPU4: Trapping CNTVCT access 4488 [ 0.008931] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 4489 [ 0.009545] Detected VIPT I-cache on CPU5 4490 [ 0.009561] arch_timer: Enabling local workaround for ARM erratum 858921 4491 [ 0.009568] arch_timer: CPU5: Trapping CNTVCT access 4492 [ 0.009576] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 4493 [ 0.009657] smp: Brought up 1 node, 6 CPUs 4494 [ 0.009675] SMP: Total of 6 processors activated. 4495 [ 0.009683] CPU features: detected: 32-bit EL0 Support 4496 [ 0.009689] CPU features: detected: CRC32 instructions 4497 [ 0.009695] CPU features: detected: 32-bit EL1 Support 4498 [ 0.020982] CPU: All CPU(s) started at EL2 4499 [ 0.021032] alternatives: patching kernel code 4500 [ 0.022977] devtmpfs: initialized 4501 [ 0.030627] Registered cp15_barrier emulation handler 4502 [ 0.030641] Registered setend emulation handler 4503 [ 0.030774] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 4504 [ 0.030812] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 4505 [ 0.044748] pinctrl core: initialized pinctrl subsystem 4506 [ 0.045493] DMI not present or invalid. 4507 [ 0.045868] NET: Registered protocol family 16 4508 [ 0.047348] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 4509 [ 0.047619] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 4510 [ 0.047848] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 4511 [ 0.047895] audit: initializing netlink subsys (disabled) 4512 [ 0.048003] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 4513 [ 0.049312] thermal_sys: Registered thermal governor 'fair_share' 4514 [ 0.049322] thermal_sys: Registered thermal governor 'bang_bang' 4515 [ 0.049326] thermal_sys: Registered thermal governor 'step_wise' 4516 [ 0.049329] thermal_sys: Registered thermal governor 'user_space' 4517 [ 0.049766] cpuidle: using governor menu 4518 [ 0.050104] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 4519 [ 0.050224] ASID allocator initialised with 65536 entries 4520 [ 0.051184] Serial: AMBA PL011 UART driver 4521 [ 0.084726] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 4522 [ 0.084738] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 4523 [ 0.084742] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 4524 [ 0.084746] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 4525 [ 0.086721] cryptd: max_cpu_qlen set to 1000 4526 [ 0.156256] raid6: neonx8 gen() 2782 MB/s 4527 [ 0.224294] raid6: neonx8 xor() 2041 MB/s 4528 [ 0.292360] raid6: neonx4 gen() 2994 MB/s 4529 [ 0.360426] raid6: neonx4 xor() 2349 MB/s 4530 [ 0.428494] raid6: neonx2 gen() 2581 MB/s 4531 [ 0.496556] raid6: neonx2 xor() 2144 MB/s 4532 [ 0.564620] raid6: neonx1 gen() 2016 MB/s 4533 [ 0.632689] raid6: neonx1 xor() 1720 MB/s 4534 [ 0.700759] raid6: int64x8 gen() 1375 MB/s 4535 [ 0.768818] raid6: int64x8 xor() 735 MB/s 4536 [ 0.836907] raid6: int64x4 gen() 1463 MB/s 4537 [ 0.904956] raid6: int64x4 xor() 733 MB/s 4538 [ 0.973027] raid6: int64x2 gen() 1363 MB/s 4539 [ 1.041091] raid6: int64x2 xor() 619 MB/s 4540 [ 1.109148] raid6: int64x1 gen() 1120 MB/s 4541 [ 1.177210] raid6: int64x1 xor() 462 MB/s 4542 [ 1.177214] raid6: using algorithm neonx4 gen() 2994 MB/s 4543 [ 1.177217] raid6: .... xor() 2349 MB/s, rmw enabled 4544 [ 1.177221] raid6: using neon recovery algorithm 4545 [ 1.177668] ACPI: Interpreter disabled. 4546 [ 1.178455] 5V: supplied by 12V 4547 [ 1.179359] VDDAO_3V3: supplied by 12V 4548 [ 1.179825] iommu: Default domain type: Translated 4549 [ 1.179953] vgaarb: loaded 4550 [ 1.180893] SCSI subsystem initialized 4551 [ 1.181180] usbcore: registered new interface driver usbfs 4552 [ 1.181222] usbcore: registered new interface driver hub 4553 [ 1.181259] usbcore: registered new device driver usb 4554 [ 1.181522] pps_core: LinuxPPS API ver. 1 registered 4555 [ 1.181526] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 4556 [ 1.181550] PTP clock support registered 4557 [ 1.181765] EDAC MC: Ver: 3.0.0 4558 [ 1.183088] NetLabel: Initializing 4559 [ 1.183096] NetLabel: domain hash size = 128 4560 [ 1.183099] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 4561 [ 1.183140] NetLabel: unlabeled traffic allowed by default 4562 [ 1.183563] clocksource: Switched to clocksource arch_sys_counter 4563 [ 1.183769] VFS: Disk quotas dquot_6.6.0 4564 [ 1.183812] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 4565 [ 1.184171] AppArmor: AppArmor Filesystem Enabled 4566 [ 1.184220] pnp: PnP ACPI: disabled 4567 [ 1.189544] NET: Registered protocol family 2 4568 [ 1.190003] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 4569 [ 1.190113] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 4570 [ 1.190369] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 4571 [ 1.190556] TCP: Hash tables configured (established 32768 bind 32768) 4572 [ 1.190708] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 4573 [ 1.190773] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 4574 [ 1.190820] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 4575 [ 1.190962] NET: Registered protocol family 1 4576 [ 1.190981] PCI: CLS 0 bytes, default 64 4577 [ 1.191103] Trying to unpack rootfs image as initramfs... 4578 [ 1.728150] Freeing initrd memory: 13544K 4579 [ 1.729083] kvm [1]: IPA Size Limit: 40 bits 4580 [ 1.729796] kvm [1]: vgic interrupt IRQ9 4581 [ 1.729929] kvm [1]: Hyp mode initialized successfully 4582 [ 1.733891] Initialise system trusted keyrings 4583 [ 1.733923] Key type blacklist registered 4584 [ 1.734025] workingset: timestamp_bits=44 max_order=20 bucket_order=0 4585 [ 1.737229] zbud: loaded 4586 [ 1.738200] squashfs: version 4.0 (2009/01/31) Phillip Lougher 4587 [ 1.738633] fuse: init (API version 7.32) 4588 [ 1.739404] integrity: Platform Keyring initialized 4589 [ 1.766653] xor: measuring software checksum speed 4590 [ 1.769502] 8regs : 3473 MB/sec 4591 [ 1.771958] 32regs : 4021 MB/sec 4592 [ 1.774608] arm64_neon : 3719 MB/sec 4593 [ 1.774611] xor: using function: 32regs (4021 MB/sec) 4594 [ 1.774619] Key type asymmetric registered 4595 [ 1.774623] Asymmetric key parser 'x509' registered 4596 [ 1.774656] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 4597 [ 1.774782] io scheduler mq-deadline registered 4598 [ 1.774786] io scheduler kyber registered 4599 [ 1.774866] io scheduler bfq registered 4600 [ 1.777423] gpio-447 (usb-hub-reset): hogged as output/high 4601 [ 1.780380] EINJ: ACPI disabled. 4602 [ 1.786659] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 4603 [ 1.788113] VCC_3V3: supplied by VDDAO_3V3 4604 [ 1.788147] FLASH_1V8: supplied by VCC_3V3 4605 [ 1.788183] VCC_1V8: supplied by VCC_3V3 4606 [ 1.788211] VDDAO_1V8: supplied by VDDAO_3V3 4607 [ 1.788250] VDDCPU_A: supplied by regulator-dummy 4608 [ 1.788617] VDDCPU_B: supplied by regulator-dummy 4609 [ 1.789299] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 4610 [ 1.791644] Serial: AMBA driver 4611 [ 1.791941] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 4612 [ 1.792031] printk: console [ttyAML0] enabled 4613 [ 1.792555] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 4614 [ 1.797800] loop: module loaded 4615 [ 1.799849] libphy: Fixed MDIO Bus: probed 4616 [ 1.800903] tun: Universal TUN/TAP device driver, 1.6 4617 [ 1.801535] thunder_xcv, ver 1.0 4618 [ 1.801567] thunder_bgx, ver 1.0 4619 [ 1.801592] nicpf, ver 1.0 4620 [ 1.802046] e1000e: Intel(R) PRO/1000 Network Driver 4621 [ 1.802049] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 4622 [ 1.802084] igb: Intel(R) Gigabit Ethernet Network Driver 4623 [ 1.802088] igb: Copyright (c) 2007-2014 Intel Corporation. 4624 [ 1.802116] igbvf: Intel(R) Gigabit Virtual Function Network Driver 4625 [ 1.802119] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 4626 [ 1.802238] sky2: driver version 1.30 4627 [ 1.802562] VFIO - User Level meta-driver version: 0.3 4628 [ 1.804005] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 4629 [ 1.804028] ehci-pci: EHCI PCI platform driver 4630 [ 1.804065] ehci-platform: EHCI generic platform driver 4631 [ 1.804207] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 4632 [ 1.804217] ohci-pci: OHCI PCI platform driver 4633 [ 1.804249] ohci-platform: OHCI generic platform driver 4634 [ 1.804674] usbcore: registered new interface driver usb-storage 4635 [ 1.805967] mousedev: PS/2 mouse device common for all mice 4636 [ 1.806337] i2c /dev entries driver 4637 [ 1.811440] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 4638 [ 1.812144] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 4639 [ 1.812825] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 4640 [ 1.813403] sdhci: Secure Digital Host Controller Interface driver 4641 [ 1.813409] sdhci: Copyright(c) Pierre Ossman 4642 [ 1.813892] Synopsys Designware Multimedia Card Interface Driver 4643 [ 1.814354] sdhci-pltfm: SDHCI platform and OF driver helper 4644 [ 1.814798] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 4645 [ 1.815940] ledtrig-cpu: registered to indicate activity on CPUs 4646 [ 1.816223] meson-sm: secure-monitor enabled 4647 [ 1.816375] hid: raw HID events driver (C) Jiri Kosina 4648 [ 1.816454] usbcore: registered new interface driver usbhid 4649 [ 1.816455] usbhid: USB HID core driver 4650 [ 1.817335] NET: Registered protocol family 10 4651 [ 1.817752] Segment Routing with IPv6 4652 [ 1.817779] NET: Registered protocol family 17 4653 [ 1.817833] 8021q: 802.1Q VLAN Support v1.8 4654 [ 1.817855] Key type dns_resolver registered 4655 [ 1.818124] registered taskstats version 1 4656 [ 1.818129] Loading compiled-in X.509 certificates 4657 [ 1.819896] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 4658 [ 1.821514] zswap: loaded using pool zstd/z3fold 4659 [ 1.821693] Key type ._fscrypt registered 4660 [ 1.821696] Key type .fscrypt registered 4661 [ 1.821698] Key type fscrypt-provisioning registered 4662 [ 1.822771] Btrfs loaded, crc32c=crc32c-generic 4663 [ 1.831825] Key type encrypted registered 4664 [ 1.831838] AppArmor: AppArmor sha1 policy hashing enabled 4665 [ 1.838078] HUB_5V: supplied by 5V 4666 [ 1.838293] USB_PWR_EN: supplied by 5V 4667 [ 1.840078] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 4668 [ 1.840088] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 4669 [ 1.842788] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 4670 [ 1.842846] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 4671 [ 1.842960] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 4672 [ 1.843661] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 4673 [ 1.843675] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 4674 [ 1.843765] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 4675 [ 1.843788] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 4676 [ 1.843917] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 4677 [ 1.843921] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4678 [ 1.843924] usb usb1: Product: xHCI Host Controller 4679 [ 1.843926] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 4680 [ 1.843928] usb usb1: SerialNumber: xhci-hcd.0.auto 4681 [ 1.844123] hub 1-0:1.0: USB hub found 4682 [ 1.844137] hub 1-0:1.0: 2 ports detected 4683 [ 1.844270] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 4684 [ 1.844276] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 4685 [ 1.844282] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 4686 [ 1.844305] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 4687 [ 1.844335] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 4688 [ 1.844338] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4689 [ 1.844341] usb usb2: Product: xHCI Host Controller 4690 [ 1.844343] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 4691 [ 1.844345] usb usb2: SerialNumber: xhci-hcd.0.auto 4692 [ 1.844498] hub 2-0:1.0: USB hub found 4693 [ 1.844510] hub 2-0:1.0: 1 port detected 4694 [ 1.845616] meson-gx-mmc ffe05000.sd: Got CD GPIO 4695 [ 1.872580] Freeing unused kernel memory: 3328K 4696 [ 1.907635] Run /init as init process 4697 [ 1.907639] with arguments: 4698 [ 1.907641] /init 4699 [ 1.907643] with environment: 4700 [ 1.907645] HOME=/ 4701 [ 1.907647] TERM=linux 4702 [ 1.907649] hdmimode=1080p60hz 4703 [ 1.907650] cvbsmode=576cvbs 4704 [ 1.907652] max_freq_a53=1896 4705 [ 1.907654] max_freq_a73=1800 4706 [ 1.907655] voutmode=hdmi 4707 [ 1.907656] disablehpd=false 4708 [ 1.907658] cvbscable=0 4709 [ 1.907659] overscan=100 4710 [ 1.937743] mmc0: new ultra high speed SDR25 SDHC card at address b368 4711 [ 1.938323] mmcblk0: mmc0:b368 CBADS 30.0 GiB 4712 [ 1.940164] mmcblk0: p1 4713 [ 2.063353] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 4714 [ 2.063362] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 4715 [ 2.063471] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 4716 [ 2.067937] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 4717 [ 2.067949] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 4718 [ 2.067953] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 4719 [ 2.067957] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 4720 [ 2.067960] meson8b-dwmac ff3f0000.ethernet: COE Type 2 4721 [ 2.067963] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 4722 [ 2.067965] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 4723 [ 2.068058] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 4724 [ 2.068061] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 4725 [ 2.068065] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 4726 [ 2.068360] libphy: stmmac: probed 4727 [ 2.069206] meson-vrtc ff8000a8.rtc: registered as rtc1 4728 [ 2.076879] libphy: mdio_mux: probed 4729 [ 2.098889] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 4730 [ 2.099066] rtc-pcf8563 1-0051: registered as rtc0 4731 [ 2.100234] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 4732 [ 2.100242] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 4733 [ 2.102996] random: fast init done 4734 [ 2.183574] usb 1-1: new high-speed USB device number 2 using xhci-hcd 4735 [ 2.292163] libphy: mdio_mux: probed 4736 [ 2.333962] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 4737 [ 2.333969] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4738 [ 2.333972] usb 1-1: Product: USB2.1 Hub 4739 [ 2.333974] usb 1-1: Manufacturer: GenesysLogic 4740 [ 2.388502] hub 1-1:1.0: USB hub found 4741 [ 2.388720] hub 1-1:1.0: 4 ports detected 4742 [ 2.459684] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 4743 [ 2.482160] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 4744 [ 2.482165] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4745 [ 2.482168] usb 2-1: Product: USB3.1 Hub 4746 [ 2.482171] usb 2-1: Manufacturer: GenesysLogic 4747 [ 2.500541] hub 2-1:1.0: USB hub found 4748 [ 2.500831] hub 2-1:1.0: 4 ports detected 4749 [ 2.607565] usb 1-2: new high-speed USB device number 3 using xhci-hcd 4750 [ 2.756006] usb 1-2: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 4751 [ 2.756009] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 4752 [ 2.756012] usb 1-2: Product: PCTV 292e 4753 [ 2.756014] usb 1-2: Manufacturer: PCTV 4754 [ 2.756016] usb 1-2: SerialNumber: 0011356964 4755 [ 3.163492] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 4756 [ 3.967637] systemd[1]: System time before build time, advancing clock. 4757 [ 3.982491] systemd[1]: Inserted module 'autofs4' 4758 [ 4.029017] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 4759 [ 4.029241] systemd[1]: Detected architecture arm64. 4760 [ 4.057405] systemd[1]: Set hostname to <odroidn2>. 4761 [ 4.384621] random: systemd: uninitialized urandom read (16 bytes read) 4762 [ 4.387957] random: systemd: uninitialized urandom read (16 bytes read) 4763 [ 4.388240] systemd[1]: Listening on udev Control Socket. 4764 [ 4.388564] random: systemd: uninitialized urandom read (16 bytes read) 4765 [ 4.388689] systemd[1]: Listening on Journal Audit Socket. 4766 [ 4.388855] systemd[1]: Listening on udev Kernel Socket. 4767 [ 4.389741] systemd[1]: Created slice User and Session Slice. 4768 [ 4.390571] systemd[1]: Created slice system-getty.slice. 4769 [ 4.390759] systemd[1]: Listening on initctl Compatibility Named Pipe. 4770 [ 4.391008] systemd[1]: Listening on fsck to fsckd communication Socket. 4771 [ 4.487915] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 4772 [ 4.966626] zram: Added device: zram0 4773 [ 4.966831] zram: Added device: zram1 4774 [ 4.967025] zram: Added device: zram2 4775 [ 5.072509] pwm-gpio pwmgpio: 1 gpio pwms loaded 4776 [ 5.203494] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 4777 [ 5.223738] mc: Linux media interface: v0.10 4778 [ 5.250472] zram0: detected capacity change from 0 to 1904500736 4779 [ 5.275590] Registered IR keymap rc-odroid 4780 [ 5.285304] videodev: Linux video capture interface: v2.00 4781 [ 5.294083] panfrost ffe40000.gpu: clock rate = 24000000 4782 [ 5.294135] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 4783 [ 5.294733] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 4784 [ 5.294739] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 4785 [ 5.294743] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 4786 [ 5.294745] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 4787 [ 5.298580] IR NEC protocol handler initialized 4788 [ 5.309754] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 4789 [ 5.326417] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 4790 [ 5.326510] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 4791 [ 5.326568] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 4792 [ 5.329003] meson-ir ff808000.ir: receiver initialized 4793 [ 5.340946] meson-drm ff900000.vpu: Queued 2 outputs on vpu 4794 [ 5.406987] meson-drm ff900000.vpu: CVBS Output connector not available 4795 [ 5.435623] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 4796 [ 5.435951] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 4797 [ 5.436194] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 4798 [ 5.436392] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 4799 [ 5.436445] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 4800 [ 5.441615] em28xx 1-2:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 4801 [ 5.441622] em28xx 1-2:1.0: DVB interface 0 found: isoc 4802 [ 5.469573] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 4803 [ 5.470988] axg-sound-card sound: ASoC: no DMI vendor name! 4804 [ 5.503744] em28xx 1-2:1.0: chip ID is em28178 4805 [ 6.363590] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 4806 [ 6.427252] zram1: detected capacity change from 0 to 52428800 4807 [ 7.525840] em28xx 1-2:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 4808 [ 7.525848] em28xx 1-2:1.0: EEPROM info: 4809 [ 7.525852] em28xx 1-2:1.0: microcode start address = 0x0004, boot configuration = 0x01 4810 [ 7.531952] em28xx 1-2:1.0: AC97 audio (5 sample rates) 4811 [ 7.531956] em28xx 1-2:1.0: 500mA max power 4812 [ 7.531960] em28xx 1-2:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 4813 [ 7.591589] em28xx 1-2:1.0: Identified as PCTV tripleStick (292e) (card=94) 4814 [ 7.591599] em28xx 1-2:1.0: dvb set to isoc mode. 4815 [ 7.591824] usbcore: registered new interface driver em28xx 4816 [ 7.618032] em28xx 1-2:1.0: Binding DVB extension 4817 [ 7.631250] i2c i2c-4: Added multiplexed i2c bus 5 4818 [ 7.631258] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 4819 [ 7.631261] si2168 4-0064: firmware version: B 4.0.2 4820 [ 7.639603] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 4821 [ 7.639650] dvbdev: DVB: registering new adapter (1-2:1.0) 4822 [ 7.639657] em28xx 1-2:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 4823 [ 7.639663] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 4824 [ 7.640299] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 4825 [ 7.642589] em28xx 1-2:1.0: DVB extension successfully initialized 4826 [ 7.642598] em28xx: Registered (Em28xx dvb Extension) extension 4827 [ 7.649581] em28xx 1-2:1.0: Registering input extension 4828 [ 7.679566] Registered IR keymap rc-pinnacle-pctv-hd 4829 [ 7.679764] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1 4830 [ 7.679841] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 4831 [ 7.679905] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1/input1 4832 [ 7.680022] em28xx 1-2:1.0: Input extension successfully initialized 4833 [ 7.680029] em28xx: Registered (Em28xx Input Extension) extension 4834 [ 8.510015] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 4835 [ 8.510035] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 4836 [ 9.474365] systemd[1]: Started Armbian memory supported logging. 4837 [ 9.476659] systemd[1]: Starting Journal Service... 4838 [ 9.544130] systemd[1]: Started Journal Service. 4839 [ 9.569191] systemd-journald[1823]: Received request to flush runtime journal from PID 1 4840 4841 ### armbian-release: 4842 4843 # PLEASE DO NOT EDIT THIS FILE 4844 BOARD=odroidn2 4845 BOARD_NAME="Odroid N2" 4846 BOARDFAMILY=meson-g12b 4847 BUILD_REPOSITORY_URL=https://github.com/armbian/build 4848 BUILD_REPOSITORY_COMMIT=5f03d652 4849 DISTRIBUTION_CODENAME=buster 4850 DISTRIBUTION_STATUS=supported 4851 VERSION=21.02.1 4852 LINUXFAMILY=meson64 4853 BRANCH=current 4854 ARCH=arm64 4855 IMAGE_TYPE=stable 4856 BOARD_TYPE=conf 4857 INITRD_ARCH=arm64 4858 KERNEL_IMAGE_TYPE=Image 4859 4860 ### boot environment: 4861 4862 verbosity=1 4863 console=both 4864 overlay_prefix=meson 4865 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 4866 rootfstype=ext4 4867 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 4868 4869 ### lsusb: 4870 4871 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 4872 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 4873 Bus 001 Device 003: ID 2013:025f PCTV Systems 4874 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 4875 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4876 4877 ### lscpu: 4878 4879 Architecture: aarch64 4880 Byte Order: Little Endian 4881 CPU(s): 6 4882 On-line CPU(s) list: 0-5 4883 Thread(s) per core: 1 4884 Core(s) per socket: 3 4885 Socket(s): 2 4886 NUMA node(s): 1 4887 Vendor ID: ARM 4888 Model: 4 4889 Model name: Cortex-A53 4890 Stepping: r0p4 4891 CPU max MHz: 1992.0000 4892 CPU min MHz: 100.0000 4893 BogoMIPS: 48.00 4894 L1d cache: unknown size 4895 L1i cache: unknown size 4896 L2 cache: unknown size 4897 NUMA node0 CPU(s): 0-5 4898 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4899 4900 ### cpuinfo: 4901 4902 processor : 0 4903 BogoMIPS : 48.00 4904 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4905 CPU implementer : 0x41 4906 CPU architecture: 8 4907 CPU variant : 0x0 4908 CPU part : 0xd03 4909 CPU revision : 4 4910 4911 processor : 1 4912 BogoMIPS : 48.00 4913 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4914 CPU implementer : 0x41 4915 CPU architecture: 8 4916 CPU variant : 0x0 4917 CPU part : 0xd03 4918 CPU revision : 4 4919 4920 processor : 2 4921 BogoMIPS : 48.00 4922 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4923 CPU implementer : 0x41 4924 CPU architecture: 8 4925 CPU variant : 0x0 4926 CPU part : 0xd09 4927 CPU revision : 2 4928 4929 processor : 3 4930 BogoMIPS : 48.00 4931 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4932 CPU implementer : 0x41 4933 CPU architecture: 8 4934 CPU variant : 0x0 4935 CPU part : 0xd09 4936 CPU revision : 2 4937 4938 processor : 4 4939 BogoMIPS : 48.00 4940 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4941 CPU implementer : 0x41 4942 CPU architecture: 8 4943 CPU variant : 0x0 4944 CPU part : 0xd09 4945 CPU revision : 2 4946 4947 processor : 5 4948 BogoMIPS : 48.00 4949 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4950 CPU implementer : 0x41 4951 CPU architecture: 8 4952 CPU variant : 0x0 4953 CPU part : 0xd09 4954 CPU revision : 2 4955 4956 4957 ### meminfo: 4958 4959 MemTotal: 3719728 kB 4960 MemFree: 3477076 kB 4961 MemAvailable: 3429592 kB 4962 Buffers: 11444 kB 4963 Cached: 42136 kB 4964 SwapCached: 0 kB 4965 Active: 28816 kB 4966 Inactive: 111868 kB 4967 Active(anon): 120 kB 4968 Inactive(anon): 91804 kB 4969 Active(file): 28696 kB 4970 Inactive(file): 20064 kB 4971 Unevictable: 0 kB 4972 Mlocked: 0 kB 4973 SwapTotal: 1859860 kB 4974 SwapFree: 1859860 kB 4975 Dirty: 2532 kB 4976 Writeback: 0 kB 4977 AnonPages: 86960 kB 4978 Mapped: 12984 kB 4979 Shmem: 4972 kB 4980 KReclaimable: 12992 kB 4981 Slab: 39768 kB 4982 SReclaimable: 12992 kB 4983 SUnreclaim: 26776 kB 4984 KernelStack: 2576 kB 4985 PageTables: 4148 kB 4986 NFS_Unstable: 0 kB 4987 Bounce: 0 kB 4988 WritebackTmp: 0 kB 4989 CommitLimit: 3719724 kB 4990 Committed_AS: 4240968 kB 4991 VmallocTotal: 135290159040 kB 4992 VmallocUsed: 33216 kB 4993 VmallocChunk: 0 kB 4994 Percpu: 1368 kB 4995 HardwareCorrupted: 0 kB 4996 AnonHugePages: 0 kB 4997 ShmemHugePages: 0 kB 4998 ShmemPmdMapped: 0 kB 4999 FileHugePages: 0 kB 5000 FilePmdMapped: 0 kB 5001 CmaTotal: 917504 kB 5002 CmaFree: 909824 kB 5003 HugePages_Total: 0 5004 HugePages_Free: 0 5005 HugePages_Rsvd: 0 5006 HugePages_Surp: 0 5007 Hugepagesize: 2048 kB 5008 Hugetlb: 0 kB 5009 5010 ### virtual memory: 5011 5012 vm.admin_reserve_kbytes = 8192 5013 vm.block_dump = 0 5014 vm.compaction_proactiveness = 20 5015 vm.compact_unevictable_allowed = 1 5016 vm.dirty_background_bytes = 0 5017 vm.dirty_background_ratio = 10 5018 vm.dirty_bytes = 0 5019 vm.dirty_expire_centisecs = 3000 5020 vm.dirty_ratio = 20 5021 vm.dirtytime_expire_seconds = 43200 5022 vm.dirty_writeback_centisecs = 500 5023 vm.extfrag_threshold = 500 5024 vm.hugetlb_shm_group = 0 5025 vm.laptop_mode = 0 5026 vm.legacy_va_layout = 0 5027 vm.lowmem_reserve_ratio = 256 256 32 0 5028 vm.max_map_count = 65530 5029 vm.memory_failure_early_kill = 0 5030 vm.memory_failure_recovery = 1 5031 vm.min_free_kbytes = 45056 5032 vm.min_slab_ratio = 5 5033 vm.min_unmapped_ratio = 1 5034 vm.mmap_min_addr = 4096 5035 vm.mmap_rnd_bits = 18 5036 vm.mmap_rnd_compat_bits = 11 5037 vm.nr_hugepages = 0 5038 vm.nr_hugepages_mempolicy = 0 5039 vm.nr_overcommit_hugepages = 0 5040 vm.numa_stat = 1 5041 vm.numa_zonelist_order = Node 5042 vm.oom_dump_tasks = 1 5043 vm.oom_kill_allocating_task = 0 5044 vm.overcommit_kbytes = 0 5045 vm.overcommit_memory = 0 5046 vm.overcommit_ratio = 50 5047 vm.page-cluster = 0 5048 vm.page_lock_unfairness = 5 5049 vm.panic_on_oom = 0 5050 vm.percpu_pagelist_fraction = 0 5051 vm.stat_interval = 1 5052 vm.swappiness = 100 5053 vm.user_reserve_kbytes = 115035 5054 vm.vfs_cache_pressure = 100 5055 vm.watermark_boost_factor = 15000 5056 vm.watermark_scale_factor = 10 5057 vm.zone_reclaim_mode = 0 5058 5059 ### ip addr: 5060 5061 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 5062 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 5063 inet XXX.XXX.0.1/8 scope host lo 5064 valid_lft forever preferred_lft forever 5065 inet6 ::1/128 scope host 5066 valid_lft forever preferred_lft forever 5067 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 5068 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 5069 5070 ### partitions: 5071 5072 major minor #blocks name 5073 5074 179 0 31464960 mmcblk0 5075 179 1 31146208 mmcblk0p1 5076 252 0 1859864 zram0 5077 252 1 51200 zram1 5078 5079 ### df: 5080 5081 udev 1.4G 0 1.4G 0% /dev 5082 tmpfs 364M 4.9M 359M 2% /run 5083 /dev/mmcblk0p1 30G 1.7G 28G 6% / 5084 tmpfs 1.8G 0 1.8G 0% /dev/shm 5085 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 5086 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 5087 tmpfs 1.8G 0 1.8G 0% /tmp 5088 /dev/zram1 49M 2.5M 43M 6% /var/log 5089 5090 ### lsblk: 5091 5092 NAME FSTYPE SIZE MOUNTPOINT UUID 5093 mmcblk0 30G 5094 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 5095 zram1 50M /var/log 5096 5097 ### zramctl: 5098 5099 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 5100 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 5101 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 5102 5103 ### mtab: 5104 5105 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 5106 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 5107 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 5108 5109 ### mmc0:b368 info: 5110 5111 fwrev: 0x0 5112 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 5113 cid: 6f0303434241445310aa002b4d013b00 5114 rca: 0xb368 5115 csd: 400e005a5b590000f00e7f800a404000 5116 manfid: 0x00006f 5117 ocr: 0x00200000 5118 preferred_erase_size: 2097152 5119 type: SD 5120 hwrev: 0x1 5121 date: 11/2019 5122 dsr: 0x404 5123 erase_size: 512 5124 oemid: 0x0303 5125 serial: 0xaa002b4d 5126 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 5127 scr: 02b5800300000000 5128 name: CBADS 5129 5130 ### Boot system health: 5131 5132 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 5133 14:45:09: 1908/1992MHz 2.67 23% 10% 5% 0% 6% 0% 33.6°C 0/11 5134 14:45:09: 1908/1992MHz 2.67 87% 33% 6% 0% 44% 1% 31.6°C 0/11 5135 14:45:09: 1908/1992MHz 2.67 63% 12% 0% 0% 48% 0% 30.3°C 0/11 5136 14:45:10: 1908/1992MHz 2.67 57% 9% 5% 0% 39% 2% 30.5°C 0/11 5137 14:45:10: 1908/1992MHz 2.67 49% 3% 5% 0% 36% 2% 29.8°C 0/11 5138 5139 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 5140 5141 ### Activated Armbian ramlog partition with zstd compression 5142 5143 Sun 14 Feb 2021 03:31:27 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 5144 5145 ### dmesg: 5146 5147 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 5148 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 5149 [ 0.000000] Machine model: Hardkernel ODROID-N2 5150 [ 0.000000] efi: UEFI not found. 5151 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 5152 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 5153 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 5154 [ 0.000000] NUMA: No NUMA configuration found 5155 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 5156 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 5157 [ 0.000000] Zone ranges: 5158 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 5159 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 5160 [ 0.000000] Normal empty 5161 [ 0.000000] Movable zone start for each node 5162 [ 0.000000] Early memory node ranges 5163 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 5164 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 5165 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 5166 [ 0.000000] On node 0 totalpages: 972032 5167 [ 0.000000] DMA zone: 4096 pages used for memmap 5168 [ 0.000000] DMA zone: 0 pages reserved 5169 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 5170 [ 0.000000] DMA32 zone: 11104 pages used for memmap 5171 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 5172 [ 0.000000] psci: probing for conduit method from DT. 5173 [ 0.000000] psci: PSCIv1.0 detected in firmware. 5174 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 5175 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 5176 [ 0.000000] psci: SMC Calling Convention v1.1 5177 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 5178 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 5179 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 5180 [ 0.000000] Detected VIPT I-cache on CPU0 5181 [ 0.000000] CPU features: detected: ARM erratum 845719 5182 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 5183 [ 0.000000] Policy zone: DMA32 5184 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 5185 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 5186 Please use sysfs to set IO scheduler for individual devices. 5187 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 5188 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 5189 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 5190 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 5191 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 5192 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 5193 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 5194 [ 0.000000] rcu: RCU event tracing is enabled. 5195 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 5196 [ 0.000000] Trampoline variant of Tasks RCU enabled. 5197 [ 0.000000] Rude variant of Tasks RCU enabled. 5198 [ 0.000000] Tracing variant of Tasks RCU enabled. 5199 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 5200 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 5201 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 5202 [ 0.000000] GIC: Using split EOI/Deactivate mode 5203 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 5204 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 5205 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 5206 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 5207 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 5208 [ 0.000242] Console: colour dummy device 80x25 5209 [ 0.000277] printk: console [tty1] enabled 5210 [ 0.000361] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 5211 [ 0.000373] pid_max: default: 32768 minimum: 301 5212 [ 0.000456] LSM: Security Framework initializing 5213 [ 0.000482] Yama: becoming mindful. 5214 [ 0.000573] AppArmor: AppArmor initialized 5215 [ 0.000624] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 5216 [ 0.000643] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 5217 [ 0.002637] rcu: Hierarchical SRCU implementation. 5218 [ 0.004997] EFI services will not be available. 5219 [ 0.005420] smp: Bringing up secondary CPUs ... 5220 [ 0.006092] Detected VIPT I-cache on CPU1 5221 [ 0.006154] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 5222 [ 0.007345] CPU features: detected: ARM erratum 858921 5223 [ 0.007353] CPU features: detected: Spectre-v2 5224 [ 0.007356] CPU features: detected: Spectre-v4 5225 [ 0.007363] Detected VIPT I-cache on CPU2 5226 [ 0.007388] arch_timer: Enabling local workaround for ARM erratum 858921 5227 [ 0.007402] arch_timer: CPU2: Trapping CNTVCT access 5228 [ 0.007415] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 5229 [ 0.008123] Detected VIPT I-cache on CPU3 5230 [ 0.008139] arch_timer: Enabling local workaround for ARM erratum 858921 5231 [ 0.008147] arch_timer: CPU3: Trapping CNTVCT access 5232 [ 0.008155] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 5233 [ 0.008780] Detected VIPT I-cache on CPU4 5234 [ 0.008796] arch_timer: Enabling local workaround for ARM erratum 858921 5235 [ 0.008803] arch_timer: CPU4: Trapping CNTVCT access 5236 [ 0.008811] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 5237 [ 0.009423] Detected VIPT I-cache on CPU5 5238 [ 0.009439] arch_timer: Enabling local workaround for ARM erratum 858921 5239 [ 0.009446] arch_timer: CPU5: Trapping CNTVCT access 5240 [ 0.009454] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 5241 [ 0.009534] smp: Brought up 1 node, 6 CPUs 5242 [ 0.009552] SMP: Total of 6 processors activated. 5243 [ 0.009560] CPU features: detected: 32-bit EL0 Support 5244 [ 0.009566] CPU features: detected: CRC32 instructions 5245 [ 0.009571] CPU features: detected: 32-bit EL1 Support 5246 [ 0.020804] CPU: All CPU(s) started at EL2 5247 [ 0.020853] alternatives: patching kernel code 5248 [ 0.022794] devtmpfs: initialized 5249 [ 0.030438] Registered cp15_barrier emulation handler 5250 [ 0.030452] Registered setend emulation handler 5251 [ 0.030616] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 5252 [ 0.030661] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 5253 [ 0.044584] pinctrl core: initialized pinctrl subsystem 5254 [ 0.045319] DMI not present or invalid. 5255 [ 0.045684] NET: Registered protocol family 16 5256 [ 0.047240] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 5257 [ 0.047513] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 5258 [ 0.047738] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 5259 [ 0.047782] audit: initializing netlink subsys (disabled) 5260 [ 0.047888] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 5261 [ 0.049110] thermal_sys: Registered thermal governor 'fair_share' 5262 [ 0.049118] thermal_sys: Registered thermal governor 'bang_bang' 5263 [ 0.049122] thermal_sys: Registered thermal governor 'step_wise' 5264 [ 0.049126] thermal_sys: Registered thermal governor 'user_space' 5265 [ 0.049546] cpuidle: using governor menu 5266 [ 0.049895] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 5267 [ 0.050013] ASID allocator initialised with 65536 entries 5268 [ 0.050942] Serial: AMBA PL011 UART driver 5269 [ 0.084507] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 5270 [ 0.084521] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 5271 [ 0.084526] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 5272 [ 0.084530] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 5273 [ 0.086563] cryptd: max_cpu_qlen set to 1000 5274 [ 0.156194] raid6: neonx8 gen() 2780 MB/s 5275 [ 0.224355] raid6: neonx8 xor() 1603 MB/s 5276 [ 0.292375] raid6: neonx4 gen() 2197 MB/s 5277 [ 0.360419] raid6: neonx4 xor() 2399 MB/s 5278 [ 0.428485] raid6: neonx2 gen() 2560 MB/s 5279 [ 0.496547] raid6: neonx2 xor() 2201 MB/s 5280 [ 0.564619] raid6: neonx1 gen() 2065 MB/s 5281 [ 0.632680] raid6: neonx1 xor() 1726 MB/s 5282 [ 0.700756] raid6: int64x8 gen() 1375 MB/s 5283 [ 0.768807] raid6: int64x8 xor() 735 MB/s 5284 [ 0.836894] raid6: int64x4 gen() 1463 MB/s 5285 [ 0.904954] raid6: int64x4 xor() 733 MB/s 5286 [ 0.973009] raid6: int64x2 gen() 1362 MB/s 5287 [ 1.041087] raid6: int64x2 xor() 619 MB/s 5288 [ 1.109154] raid6: int64x1 gen() 1120 MB/s 5289 [ 1.177217] raid6: int64x1 xor() 462 MB/s 5290 [ 1.177221] raid6: using algorithm neonx8 gen() 2780 MB/s 5291 [ 1.177224] raid6: .... xor() 1603 MB/s, rmw enabled 5292 [ 1.177227] raid6: using neon recovery algorithm 5293 [ 1.177651] ACPI: Interpreter disabled. 5294 [ 1.178438] 5V: supplied by 12V 5295 [ 1.179313] VDDAO_3V3: supplied by 12V 5296 [ 1.179781] iommu: Default domain type: Translated 5297 [ 1.179908] vgaarb: loaded 5298 [ 1.180741] SCSI subsystem initialized 5299 [ 1.180929] usbcore: registered new interface driver usbfs 5300 [ 1.180968] usbcore: registered new interface driver hub 5301 [ 1.180999] usbcore: registered new device driver usb 5302 [ 1.181271] pps_core: LinuxPPS API ver. 1 registered 5303 [ 1.181276] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 5304 [ 1.181294] PTP clock support registered 5305 [ 1.181538] EDAC MC: Ver: 3.0.0 5306 [ 1.182848] NetLabel: Initializing 5307 [ 1.182856] NetLabel: domain hash size = 128 5308 [ 1.182858] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 5309 [ 1.182910] NetLabel: unlabeled traffic allowed by default 5310 [ 1.183359] clocksource: Switched to clocksource arch_sys_counter 5311 [ 1.183566] VFS: Disk quotas dquot_6.6.0 5312 [ 1.183610] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 5313 [ 1.183972] AppArmor: AppArmor Filesystem Enabled 5314 [ 1.184017] pnp: PnP ACPI: disabled 5315 [ 1.189861] NET: Registered protocol family 2 5316 [ 1.190306] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 5317 [ 1.190410] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 5318 [ 1.190667] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 5319 [ 1.190854] TCP: Hash tables configured (established 32768 bind 32768) 5320 [ 1.191006] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 5321 [ 1.191069] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 5322 [ 1.191116] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 5323 [ 1.191260] NET: Registered protocol family 1 5324 [ 1.191283] PCI: CLS 0 bytes, default 64 5325 [ 1.191453] Trying to unpack rootfs image as initramfs... 5326 [ 1.727376] Freeing initrd memory: 13544K 5327 [ 1.728278] kvm [1]: IPA Size Limit: 40 bits 5328 [ 1.728985] kvm [1]: vgic interrupt IRQ9 5329 [ 1.729117] kvm [1]: Hyp mode initialized successfully 5330 [ 1.734239] Initialise system trusted keyrings 5331 [ 1.734268] Key type blacklist registered 5332 [ 1.734400] workingset: timestamp_bits=44 max_order=20 bucket_order=0 5333 [ 1.737587] zbud: loaded 5334 [ 1.738571] squashfs: version 4.0 (2009/01/31) Phillip Lougher 5335 [ 1.739035] fuse: init (API version 7.32) 5336 [ 1.739822] integrity: Platform Keyring initialized 5337 [ 1.767175] xor: measuring software checksum speed 5338 [ 1.770046] 8regs : 3473 MB/sec 5339 [ 1.772502] 32regs : 4020 MB/sec 5340 [ 1.775151] arm64_neon : 3719 MB/sec 5341 [ 1.775154] xor: using function: 32regs (4020 MB/sec) 5342 [ 1.775163] Key type asymmetric registered 5343 [ 1.775167] Asymmetric key parser 'x509' registered 5344 [ 1.775203] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 5345 [ 1.775315] io scheduler mq-deadline registered 5346 [ 1.775320] io scheduler kyber registered 5347 [ 1.775409] io scheduler bfq registered 5348 [ 1.777854] gpio-447 (usb-hub-reset): hogged as output/high 5349 [ 1.780791] EINJ: ACPI disabled. 5350 [ 1.786904] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 5351 [ 1.788407] VCC_3V3: supplied by VDDAO_3V3 5352 [ 1.788446] FLASH_1V8: supplied by VCC_3V3 5353 [ 1.788476] VCC_1V8: supplied by VCC_3V3 5354 [ 1.788504] VDDAO_1V8: supplied by VDDAO_3V3 5355 [ 1.788536] VDDCPU_A: supplied by regulator-dummy 5356 [ 1.788891] VDDCPU_B: supplied by regulator-dummy 5357 [ 1.789552] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 5358 [ 1.791893] Serial: AMBA driver 5359 [ 1.792177] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 5360 [ 1.792273] printk: console [ttyAML0] enabled 5361 [ 1.792813] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 5362 [ 1.798113] loop: module loaded 5363 [ 1.800027] libphy: Fixed MDIO Bus: probed 5364 [ 1.800997] tun: Universal TUN/TAP device driver, 1.6 5365 [ 1.801598] thunder_xcv, ver 1.0 5366 [ 1.801627] thunder_bgx, ver 1.0 5367 [ 1.801653] nicpf, ver 1.0 5368 [ 1.802103] e1000e: Intel(R) PRO/1000 Network Driver 5369 [ 1.802107] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 5370 [ 1.802147] igb: Intel(R) Gigabit Ethernet Network Driver 5371 [ 1.802150] igb: Copyright (c) 2007-2014 Intel Corporation. 5372 [ 1.802186] igbvf: Intel(R) Gigabit Virtual Function Network Driver 5373 [ 1.802189] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 5374 [ 1.802316] sky2: driver version 1.30 5375 [ 1.802671] VFIO - User Level meta-driver version: 0.3 5376 [ 1.804056] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 5377 [ 1.804078] ehci-pci: EHCI PCI platform driver 5378 [ 1.804114] ehci-platform: EHCI generic platform driver 5379 [ 1.804256] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 5380 [ 1.804268] ohci-pci: OHCI PCI platform driver 5381 [ 1.804302] ohci-platform: OHCI generic platform driver 5382 [ 1.804683] usbcore: registered new interface driver usb-storage 5383 [ 1.805927] mousedev: PS/2 mouse device common for all mice 5384 [ 1.806327] i2c /dev entries driver 5385 [ 1.811338] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 5386 [ 1.812031] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 5387 [ 1.812713] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 5388 [ 1.813302] sdhci: Secure Digital Host Controller Interface driver 5389 [ 1.813309] sdhci: Copyright(c) Pierre Ossman 5390 [ 1.813424] Synopsys Designware Multimedia Card Interface Driver 5391 [ 1.813931] sdhci-pltfm: SDHCI platform and OF driver helper 5392 [ 1.814534] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 5393 [ 1.814899] ledtrig-cpu: registered to indicate activity on CPUs 5394 [ 1.815553] meson-sm: secure-monitor enabled 5395 [ 1.815921] hid: raw HID events driver (C) Jiri Kosina 5396 [ 1.816018] usbcore: registered new interface driver usbhid 5397 [ 1.816021] usbhid: USB HID core driver 5398 [ 1.817820] NET: Registered protocol family 10 5399 [ 1.818475] Segment Routing with IPv6 5400 [ 1.818508] NET: Registered protocol family 17 5401 [ 1.818556] 8021q: 802.1Q VLAN Support v1.8 5402 [ 1.818579] Key type dns_resolver registered 5403 [ 1.818858] registered taskstats version 1 5404 [ 1.818864] Loading compiled-in X.509 certificates 5405 [ 1.820753] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 5406 [ 1.822316] zswap: loaded using pool zstd/z3fold 5407 [ 1.822476] Key type ._fscrypt registered 5408 [ 1.822479] Key type .fscrypt registered 5409 [ 1.822481] Key type fscrypt-provisioning registered 5410 [ 1.823610] Btrfs loaded, crc32c=crc32c-generic 5411 [ 1.829870] Key type encrypted registered 5412 [ 1.829881] AppArmor: AppArmor sha1 policy hashing enabled 5413 [ 1.836314] HUB_5V: supplied by 5V 5414 [ 1.836521] USB_PWR_EN: supplied by 5V 5415 [ 1.838176] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 5416 [ 1.838183] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 5417 [ 1.840894] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 5418 [ 1.840950] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 5419 [ 1.841048] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 5420 [ 1.841640] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 5421 [ 1.841652] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 5422 [ 1.841745] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 5423 [ 1.841770] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 5424 [ 1.841895] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 5425 [ 1.841899] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 5426 [ 1.841902] usb usb1: Product: xHCI Host Controller 5427 [ 1.841905] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 5428 [ 1.841907] usb usb1: SerialNumber: xhci-hcd.0.auto 5429 [ 1.842096] hub 1-0:1.0: USB hub found 5430 [ 1.842108] hub 1-0:1.0: 2 ports detected 5431 [ 1.842244] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 5432 [ 1.842250] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 5433 [ 1.842256] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 5434 [ 1.842276] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 5435 [ 1.842310] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 5436 [ 1.842313] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 5437 [ 1.842316] usb usb2: Product: xHCI Host Controller 5438 [ 1.842318] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 5439 [ 1.842320] usb usb2: SerialNumber: xhci-hcd.0.auto 5440 [ 1.842462] hub 2-0:1.0: USB hub found 5441 [ 1.842472] hub 2-0:1.0: 1 port detected 5442 [ 1.843560] meson-gx-mmc ffe05000.sd: Got CD GPIO 5443 [ 1.868391] Freeing unused kernel memory: 3328K 5444 [ 1.899426] Run /init as init process 5445 [ 1.899430] with arguments: 5446 [ 1.899432] /init 5447 [ 1.899434] with environment: 5448 [ 1.899435] HOME=/ 5449 [ 1.899437] TERM=linux 5450 [ 1.899439] hdmimode=custombuilt 5451 [ 1.899440] cvbsmode=576cvbs 5452 [ 1.899442] max_freq_a53=1896 5453 [ 1.899444] max_freq_a73=1800 5454 [ 1.899445] voutmode=hdmi 5455 [ 1.899447] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 5456 [ 1.899448] disablehpd=false 5457 [ 1.899449] cvbscable= 5458 [ 1.899451] overscan=100 5459 [ 1.933534] mmc0: new ultra high speed SDR25 SDHC card at address b368 5460 [ 1.934136] mmcblk0: mmc0:b368 CBADS 30.0 GiB 5461 [ 1.935958] mmcblk0: p1 5462 [ 2.061306] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 5463 [ 2.061313] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 5464 [ 2.061389] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 5465 [ 2.063005] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 5466 [ 2.063018] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 5467 [ 2.063022] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 5468 [ 2.063025] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 5469 [ 2.063027] meson8b-dwmac ff3f0000.ethernet: COE Type 2 5470 [ 2.063030] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 5471 [ 2.063032] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 5472 [ 2.063112] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 5473 [ 2.063115] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 5474 [ 2.063119] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 5475 [ 2.063413] libphy: stmmac: probed 5476 [ 2.065154] libphy: mdio_mux: probed 5477 [ 2.083750] meson-vrtc ff8000a8.rtc: registered as rtc1 5478 [ 2.089761] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 5479 [ 2.090025] rtc-pcf8563 1-0051: registered as rtc0 5480 [ 2.091204] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 5481 [ 2.091213] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 5482 [ 2.097435] random: fast init done 5483 [ 2.179488] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 5484 [ 2.204109] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 5485 [ 2.204117] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 5486 [ 2.204120] usb 2-1: Product: USB3.1 Hub 5487 [ 2.204122] usb 2-1: Manufacturer: GenesysLogic 5488 [ 2.226471] hub 2-1:1.0: USB hub found 5489 [ 2.226755] hub 2-1:1.0: 4 ports detected 5490 [ 2.275826] libphy: mdio_mux: probed 5491 [ 2.327383] usb 1-1: new high-speed USB device number 2 using xhci-hcd 5492 [ 2.477681] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 5493 [ 2.477689] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 5494 [ 2.477693] usb 1-1: Product: USB2.1 Hub 5495 [ 2.477696] usb 1-1: Manufacturer: GenesysLogic 5496 [ 2.514585] hub 1-1:1.0: USB hub found 5497 [ 2.514835] hub 1-1:1.0: 4 ports detected 5498 [ 2.817050] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 5499 [ 3.623797] systemd[1]: System time before build time, advancing clock. 5500 [ 3.638655] systemd[1]: Inserted module 'autofs4' 5501 [ 3.685040] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 5502 [ 3.685266] systemd[1]: Detected architecture arm64. 5503 [ 3.717286] systemd[1]: Set hostname to <odroidn2>. 5504 [ 4.116648] random: systemd: uninitialized urandom read (16 bytes read) 5505 [ 4.122330] random: systemd: uninitialized urandom read (16 bytes read) 5506 [ 4.122571] systemd[1]: Listening on initctl Compatibility Named Pipe. 5507 [ 4.123078] random: systemd: uninitialized urandom read (16 bytes read) 5508 [ 4.125495] systemd[1]: Created slice system-serial\x2dgetty.slice. 5509 [ 4.126339] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 5510 [ 4.127021] systemd[1]: Listening on Syslog Socket. 5511 [ 4.127399] systemd[1]: Reached target Remote File Systems. 5512 [ 4.127831] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 5513 [ 4.128464] systemd[1]: Listening on fsck to fsckd communication Socket. 5514 [ 4.202981] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 5515 [ 4.739693] zram: Added device: zram0 5516 [ 4.740232] zram: Added device: zram1 5517 [ 4.742196] zram: Added device: zram2 5518 [ 4.757640] pwm-gpio pwmgpio: 1 gpio pwms loaded 5519 [ 4.912993] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 5520 [ 4.928275] mc: Linux media interface: v0.10 5521 [ 5.000089] videodev: Linux video capture interface: v2.00 5522 [ 5.051385] Registered IR keymap rc-odroid 5523 [ 5.052948] meson-drm ff900000.vpu: Queued 2 outputs on vpu 5524 [ 5.078502] IR NEC protocol handler initialized 5525 [ 5.096913] panfrost ffe40000.gpu: clock rate = 24000000 5526 [ 5.096996] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 5527 [ 5.099683] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 5528 [ 5.099693] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 5529 [ 5.099698] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 5530 [ 5.099702] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 5531 [ 5.100015] meson-drm ff900000.vpu: CVBS Output connector not available 5532 [ 5.107478] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 5533 [ 5.107590] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 5534 [ 5.107685] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 5535 [ 5.107866] meson-ir ff808000.ir: receiver initialized 5536 [ 5.117233] zram0: detected capacity change from 0 to 1904500736 5537 [ 5.118309] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 5538 [ 5.129159] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 5539 [ 5.129612] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 5540 [ 5.129873] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 5541 [ 5.130701] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 5542 [ 5.149419] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 5543 [ 5.423519] Console: switching to colour frame buffer device 240x67 5544 [ 5.450037] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 5545 [ 5.495261] axg-sound-card sound: ASoC: no DMI vendor name! 5546 [ 6.175378] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 5547 [ 6.238314] zram1: detected capacity change from 0 to 52428800 5548 [ 8.322454] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 5549 [ 8.322472] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 5550 [ 9.301131] systemd[1]: Started Armbian memory supported logging. 5551 [ 9.303514] systemd[1]: Starting Journal Service... 5552 [ 9.358414] systemd[1]: Started Journal Service. 5553 [ 9.383517] systemd-journald[1841]: Received request to flush runtime journal from PID 1 5554 5555 ### armbian-release: 5556 5557 # PLEASE DO NOT EDIT THIS FILE 5558 BOARD=odroidn2 5559 BOARD_NAME="Odroid N2" 5560 BOARDFAMILY=meson-g12b 5561 BUILD_REPOSITORY_URL=https://github.com/armbian/build 5562 BUILD_REPOSITORY_COMMIT=5f03d652 5563 DISTRIBUTION_CODENAME=buster 5564 DISTRIBUTION_STATUS=supported 5565 VERSION=21.02.1 5566 LINUXFAMILY=meson64 5567 BRANCH=current 5568 ARCH=arm64 5569 IMAGE_TYPE=stable 5570 BOARD_TYPE=conf 5571 INITRD_ARCH=arm64 5572 KERNEL_IMAGE_TYPE=Image 5573 5574 ### boot environment: 5575 5576 verbosity=1 5577 console=both 5578 overlay_prefix=meson 5579 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 5580 rootfstype=ext4 5581 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 5582 5583 ### lsusb: 5584 5585 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 5586 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 5587 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 5588 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 5589 5590 ### lscpu: 5591 5592 Architecture: aarch64 5593 Byte Order: Little Endian 5594 CPU(s): 6 5595 On-line CPU(s) list: 0-5 5596 Thread(s) per core: 1 5597 Core(s) per socket: 3 5598 Socket(s): 2 5599 NUMA node(s): 1 5600 Vendor ID: ARM 5601 Model: 4 5602 Model name: Cortex-A53 5603 Stepping: r0p4 5604 CPU max MHz: 1992.0000 5605 CPU min MHz: 100.0000 5606 BogoMIPS: 48.00 5607 L1d cache: unknown size 5608 L1i cache: unknown size 5609 L2 cache: unknown size 5610 NUMA node0 CPU(s): 0-5 5611 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5612 5613 ### cpuinfo: 5614 5615 processor : 0 5616 BogoMIPS : 48.00 5617 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5618 CPU implementer : 0x41 5619 CPU architecture: 8 5620 CPU variant : 0x0 5621 CPU part : 0xd03 5622 CPU revision : 4 5623 5624 processor : 1 5625 BogoMIPS : 48.00 5626 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5627 CPU implementer : 0x41 5628 CPU architecture: 8 5629 CPU variant : 0x0 5630 CPU part : 0xd03 5631 CPU revision : 4 5632 5633 processor : 2 5634 BogoMIPS : 48.00 5635 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5636 CPU implementer : 0x41 5637 CPU architecture: 8 5638 CPU variant : 0x0 5639 CPU part : 0xd09 5640 CPU revision : 2 5641 5642 processor : 3 5643 BogoMIPS : 48.00 5644 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5645 CPU implementer : 0x41 5646 CPU architecture: 8 5647 CPU variant : 0x0 5648 CPU part : 0xd09 5649 CPU revision : 2 5650 5651 processor : 4 5652 BogoMIPS : 48.00 5653 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5654 CPU implementer : 0x41 5655 CPU architecture: 8 5656 CPU variant : 0x0 5657 CPU part : 0xd09 5658 CPU revision : 2 5659 5660 processor : 5 5661 BogoMIPS : 48.00 5662 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5663 CPU implementer : 0x41 5664 CPU architecture: 8 5665 CPU variant : 0x0 5666 CPU part : 0xd09 5667 CPU revision : 2 5668 5669 5670 ### meminfo: 5671 5672 MemTotal: 3719728 kB 5673 MemFree: 3393120 kB 5674 MemAvailable: 3345248 kB 5675 Buffers: 11544 kB 5676 Cached: 42060 kB 5677 SwapCached: 0 kB 5678 Active: 28944 kB 5679 Inactive: 187684 kB 5680 Active(anon): 100 kB 5681 Inactive(anon): 167948 kB 5682 Active(file): 28844 kB 5683 Inactive(file): 19736 kB 5684 Unevictable: 0 kB 5685 Mlocked: 0 kB 5686 SwapTotal: 1859860 kB 5687 SwapFree: 1859860 kB 5688 Dirty: 2796 kB 5689 Writeback: 0 kB 5690 AnonPages: 163196 kB 5691 Mapped: 13640 kB 5692 Shmem: 4864 kB 5693 KReclaimable: 12896 kB 5694 Slab: 39208 kB 5695 SReclaimable: 12896 kB 5696 SUnreclaim: 26312 kB 5697 KernelStack: 2560 kB 5698 PageTables: 5628 kB 5699 NFS_Unstable: 0 kB 5700 Bounce: 0 kB 5701 WritebackTmp: 0 kB 5702 CommitLimit: 3719724 kB 5703 Committed_AS: 4239576 kB 5704 VmallocTotal: 135290159040 kB 5705 VmallocUsed: 31328 kB 5706 VmallocChunk: 0 kB 5707 Percpu: 1368 kB 5708 HardwareCorrupted: 0 kB 5709 AnonHugePages: 40960 kB 5710 ShmemHugePages: 0 kB 5711 ShmemPmdMapped: 0 kB 5712 FileHugePages: 0 kB 5713 FilePmdMapped: 0 kB 5714 CmaTotal: 917504 kB 5715 CmaFree: 901724 kB 5716 HugePages_Total: 0 5717 HugePages_Free: 0 5718 HugePages_Rsvd: 0 5719 HugePages_Surp: 0 5720 Hugepagesize: 2048 kB 5721 Hugetlb: 0 kB 5722 5723 ### virtual memory: 5724 5725 vm.admin_reserve_kbytes = 8192 5726 vm.block_dump = 0 5727 vm.compaction_proactiveness = 20 5728 vm.compact_unevictable_allowed = 1 5729 vm.dirty_background_bytes = 0 5730 vm.dirty_background_ratio = 10 5731 vm.dirty_bytes = 0 5732 vm.dirty_expire_centisecs = 3000 5733 vm.dirty_ratio = 20 5734 vm.dirtytime_expire_seconds = 43200 5735 vm.dirty_writeback_centisecs = 500 5736 vm.extfrag_threshold = 500 5737 vm.hugetlb_shm_group = 0 5738 vm.laptop_mode = 0 5739 vm.legacy_va_layout = 0 5740 vm.lowmem_reserve_ratio = 256 256 32 0 5741 vm.max_map_count = 65530 5742 vm.memory_failure_early_kill = 0 5743 vm.memory_failure_recovery = 1 5744 vm.min_free_kbytes = 45056 5745 vm.min_slab_ratio = 5 5746 vm.min_unmapped_ratio = 1 5747 vm.mmap_min_addr = 4096 5748 vm.mmap_rnd_bits = 18 5749 vm.mmap_rnd_compat_bits = 11 5750 vm.nr_hugepages = 0 5751 vm.nr_hugepages_mempolicy = 0 5752 vm.nr_overcommit_hugepages = 0 5753 vm.numa_stat = 1 5754 vm.numa_zonelist_order = Node 5755 vm.oom_dump_tasks = 1 5756 vm.oom_kill_allocating_task = 0 5757 vm.overcommit_kbytes = 0 5758 vm.overcommit_memory = 0 5759 vm.overcommit_ratio = 50 5760 vm.page-cluster = 0 5761 vm.page_lock_unfairness = 5 5762 vm.panic_on_oom = 0 5763 vm.percpu_pagelist_fraction = 0 5764 vm.stat_interval = 1 5765 vm.swappiness = 100 5766 vm.user_reserve_kbytes = 115051 5767 vm.vfs_cache_pressure = 100 5768 vm.watermark_boost_factor = 15000 5769 vm.watermark_scale_factor = 10 5770 vm.zone_reclaim_mode = 0 5771 5772 ### ip addr: 5773 5774 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 5775 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 5776 inet XXX.XXX.0.1/8 scope host lo 5777 valid_lft forever preferred_lft forever 5778 inet6 ::1/128 scope host 5779 valid_lft forever preferred_lft forever 5780 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 5781 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 5782 5783 ### partitions: 5784 5785 major minor #blocks name 5786 5787 179 0 31464960 mmcblk0 5788 179 1 31146208 mmcblk0p1 5789 252 0 1859864 zram0 5790 252 1 51200 zram1 5791 5792 ### df: 5793 5794 udev 1.4G 0 1.4G 0% /dev 5795 tmpfs 364M 4.9M 359M 2% /run 5796 /dev/mmcblk0p1 30G 1.7G 28G 6% / 5797 tmpfs 1.8G 0 1.8G 0% /dev/shm 5798 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 5799 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 5800 tmpfs 1.8G 0 1.8G 0% /tmp 5801 /dev/zram1 49M 2.8M 43M 7% /var/log 5802 5803 ### lsblk: 5804 5805 NAME FSTYPE SIZE MOUNTPOINT UUID 5806 mmcblk0 30G 5807 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 5808 zram1 50M /var/log 5809 5810 ### zramctl: 5811 5812 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 5813 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 5814 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 5815 5816 ### mtab: 5817 5818 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 5819 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 5820 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 5821 5822 ### mmc0:b368 info: 5823 5824 fwrev: 0x0 5825 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 5826 cid: 6f0303434241445310aa002b4d013b00 5827 rca: 0xb368 5828 csd: 400e005a5b590000f00e7f800a404000 5829 manfid: 0x00006f 5830 ocr: 0x00200000 5831 preferred_erase_size: 2097152 5832 type: SD 5833 hwrev: 0x1 5834 date: 11/2019 5835 dsr: 0x404 5836 erase_size: 512 5837 oemid: 0x0303 5838 serial: 0xaa002b4d 5839 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 5840 scr: 02b5800300000000 5841 name: CBADS 5842 5843 ### Boot system health: 5844 5845 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 5846 15:31:28: 1908/1992MHz 2.82 23% 11% 5% 0% 6% 0% 33.4°C 0/11 5847 15:31:28: 1908/1992MHz 2.82 76% 33% 9% 0% 32% 0% 33.2°C 0/11 5848 15:31:28: 1908/1992MHz 2.82 78% 15% 1% 0% 60% 0% 31.3°C 0/11 5849 15:31:29: 1908/1992MHz 2.82 58% 8% 5% 0% 43% 1% 31.9°C 0/11 5850 15:31:29: 1908/1000MHz 2.82 35% 3% 4% 0% 26% 0% 30.5°C 0/11 5851 5852 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 5853 5854 ### Activated Armbian ramlog partition with zstd compression 5855 5856 Sun 14 Feb 2021 03:35:55 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 5857 5858 ### dmesg: 5859 5860 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 5861 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 5862 [ 0.000000] Machine model: Hardkernel ODROID-N2 5863 [ 0.000000] efi: UEFI not found. 5864 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 5865 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 5866 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 5867 [ 0.000000] NUMA: No NUMA configuration found 5868 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 5869 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 5870 [ 0.000000] Zone ranges: 5871 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 5872 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 5873 [ 0.000000] Normal empty 5874 [ 0.000000] Movable zone start for each node 5875 [ 0.000000] Early memory node ranges 5876 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 5877 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 5878 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 5879 [ 0.000000] On node 0 totalpages: 972032 5880 [ 0.000000] DMA zone: 4096 pages used for memmap 5881 [ 0.000000] DMA zone: 0 pages reserved 5882 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 5883 [ 0.000000] DMA32 zone: 11104 pages used for memmap 5884 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 5885 [ 0.000000] psci: probing for conduit method from DT. 5886 [ 0.000000] psci: PSCIv1.0 detected in firmware. 5887 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 5888 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 5889 [ 0.000000] psci: SMC Calling Convention v1.1 5890 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 5891 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 5892 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 5893 [ 0.000000] Detected VIPT I-cache on CPU0 5894 [ 0.000000] CPU features: detected: ARM erratum 845719 5895 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 5896 [ 0.000000] Policy zone: DMA32 5897 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 5898 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 5899 Please use sysfs to set IO scheduler for individual devices. 5900 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 5901 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 5902 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 5903 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 5904 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 5905 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 5906 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 5907 [ 0.000000] rcu: RCU event tracing is enabled. 5908 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 5909 [ 0.000000] Trampoline variant of Tasks RCU enabled. 5910 [ 0.000000] Rude variant of Tasks RCU enabled. 5911 [ 0.000000] Tracing variant of Tasks RCU enabled. 5912 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 5913 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 5914 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 5915 [ 0.000000] GIC: Using split EOI/Deactivate mode 5916 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 5917 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 5918 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 5919 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 5920 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 5921 [ 0.000241] Console: colour dummy device 80x25 5922 [ 0.000276] printk: console [tty1] enabled 5923 [ 0.000364] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 5924 [ 0.000376] pid_max: default: 32768 minimum: 301 5925 [ 0.000459] LSM: Security Framework initializing 5926 [ 0.000485] Yama: becoming mindful. 5927 [ 0.000577] AppArmor: AppArmor initialized 5928 [ 0.000626] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 5929 [ 0.000645] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 5930 [ 0.002645] rcu: Hierarchical SRCU implementation. 5931 [ 0.005035] EFI services will not be available. 5932 [ 0.005452] smp: Bringing up secondary CPUs ... 5933 [ 0.006121] Detected VIPT I-cache on CPU1 5934 [ 0.006181] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 5935 [ 0.007376] CPU features: detected: ARM erratum 858921 5936 [ 0.007384] CPU features: detected: Spectre-v2 5937 [ 0.007388] CPU features: detected: Spectre-v4 5938 [ 0.007394] Detected VIPT I-cache on CPU2 5939 [ 0.007419] arch_timer: Enabling local workaround for ARM erratum 858921 5940 [ 0.007434] arch_timer: CPU2: Trapping CNTVCT access 5941 [ 0.007446] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 5942 [ 0.008151] Detected VIPT I-cache on CPU3 5943 [ 0.008167] arch_timer: Enabling local workaround for ARM erratum 858921 5944 [ 0.008174] arch_timer: CPU3: Trapping CNTVCT access 5945 [ 0.008182] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 5946 [ 0.008808] Detected VIPT I-cache on CPU4 5947 [ 0.008824] arch_timer: Enabling local workaround for ARM erratum 858921 5948 [ 0.008831] arch_timer: CPU4: Trapping CNTVCT access 5949 [ 0.008838] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 5950 [ 0.009451] Detected VIPT I-cache on CPU5 5951 [ 0.009467] arch_timer: Enabling local workaround for ARM erratum 858921 5952 [ 0.009474] arch_timer: CPU5: Trapping CNTVCT access 5953 [ 0.009482] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 5954 [ 0.009561] smp: Brought up 1 node, 6 CPUs 5955 [ 0.009579] SMP: Total of 6 processors activated. 5956 [ 0.009587] CPU features: detected: 32-bit EL0 Support 5957 [ 0.009593] CPU features: detected: CRC32 instructions 5958 [ 0.009599] CPU features: detected: 32-bit EL1 Support 5959 [ 0.020794] CPU: All CPU(s) started at EL2 5960 [ 0.020845] alternatives: patching kernel code 5961 [ 0.022786] devtmpfs: initialized 5962 [ 0.030436] Registered cp15_barrier emulation handler 5963 [ 0.030451] Registered setend emulation handler 5964 [ 0.030615] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 5965 [ 0.030661] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 5966 [ 0.044580] pinctrl core: initialized pinctrl subsystem 5967 [ 0.045311] DMI not present or invalid. 5968 [ 0.045684] NET: Registered protocol family 16 5969 [ 0.047120] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 5970 [ 0.047391] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 5971 [ 0.047620] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 5972 [ 0.047664] audit: initializing netlink subsys (disabled) 5973 [ 0.047781] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 5974 [ 0.049001] thermal_sys: Registered thermal governor 'fair_share' 5975 [ 0.049008] thermal_sys: Registered thermal governor 'bang_bang' 5976 [ 0.049012] thermal_sys: Registered thermal governor 'step_wise' 5977 [ 0.049015] thermal_sys: Registered thermal governor 'user_space' 5978 [ 0.049441] cpuidle: using governor menu 5979 [ 0.049792] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 5980 [ 0.049908] ASID allocator initialised with 65536 entries 5981 [ 0.050819] Serial: AMBA PL011 UART driver 5982 [ 0.083298] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 5983 [ 0.083307] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 5984 [ 0.083312] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 5985 [ 0.083316] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 5986 [ 0.086294] cryptd: max_cpu_qlen set to 1000 5987 [ 0.156200] raid6: neonx8 gen() 2779 MB/s 5988 [ 0.224671] raid6: neonx8 xor() 1602 MB/s 5989 [ 0.292393] raid6: neonx4 gen() 2200 MB/s 5990 [ 0.360431] raid6: neonx4 xor() 2399 MB/s 5991 [ 0.428496] raid6: neonx2 gen() 2550 MB/s 5992 [ 0.496581] raid6: neonx2 xor() 2198 MB/s 5993 [ 0.564634] raid6: neonx1 gen() 2069 MB/s 5994 [ 0.632692] raid6: neonx1 xor() 1727 MB/s 5995 [ 0.700763] raid6: int64x8 gen() 1376 MB/s 5996 [ 0.768823] raid6: int64x8 xor() 735 MB/s 5997 [ 0.836911] raid6: int64x4 gen() 1463 MB/s 5998 [ 0.904964] raid6: int64x4 xor() 733 MB/s 5999 [ 0.973023] raid6: int64x2 gen() 1362 MB/s 6000 [ 1.041100] raid6: int64x2 xor() 619 MB/s 6001 [ 1.109169] raid6: int64x1 gen() 1120 MB/s 6002 [ 1.177228] raid6: int64x1 xor() 462 MB/s 6003 [ 1.177231] raid6: using algorithm neonx8 gen() 2779 MB/s 6004 [ 1.177234] raid6: .... xor() 1602 MB/s, rmw enabled 6005 [ 1.177238] raid6: using neon recovery algorithm 6006 [ 1.177690] ACPI: Interpreter disabled. 6007 [ 1.178520] 5V: supplied by 12V 6008 [ 1.179413] VDDAO_3V3: supplied by 12V 6009 [ 1.179867] iommu: Default domain type: Translated 6010 [ 1.179981] vgaarb: loaded 6011 [ 1.180711] SCSI subsystem initialized 6012 [ 1.180961] usbcore: registered new interface driver usbfs 6013 [ 1.181008] usbcore: registered new interface driver hub 6014 [ 1.181043] usbcore: registered new device driver usb 6015 [ 1.181305] pps_core: LinuxPPS API ver. 1 registered 6016 [ 1.181310] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 6017 [ 1.181327] PTP clock support registered 6018 [ 1.181523] EDAC MC: Ver: 3.0.0 6019 [ 1.182970] NetLabel: Initializing 6020 [ 1.182977] NetLabel: domain hash size = 128 6021 [ 1.182980] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 6022 [ 1.183021] NetLabel: unlabeled traffic allowed by default 6023 [ 1.183461] clocksource: Switched to clocksource arch_sys_counter 6024 [ 1.183666] VFS: Disk quotas dquot_6.6.0 6025 [ 1.183711] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 6026 [ 1.184078] AppArmor: AppArmor Filesystem Enabled 6027 [ 1.184125] pnp: PnP ACPI: disabled 6028 [ 1.189256] NET: Registered protocol family 2 6029 [ 1.189708] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 6030 [ 1.189814] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 6031 [ 1.190072] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 6032 [ 1.190259] TCP: Hash tables configured (established 32768 bind 32768) 6033 [ 1.190409] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 6034 [ 1.190477] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 6035 [ 1.190523] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 6036 [ 1.190667] NET: Registered protocol family 1 6037 [ 1.190687] PCI: CLS 0 bytes, default 64 6038 [ 1.190812] Trying to unpack rootfs image as initramfs... 6039 [ 1.727158] Freeing initrd memory: 13544K 6040 [ 1.728078] kvm [1]: IPA Size Limit: 40 bits 6041 [ 1.728787] kvm [1]: vgic interrupt IRQ9 6042 [ 1.728920] kvm [1]: Hyp mode initialized successfully 6043 [ 1.734026] Initialise system trusted keyrings 6044 [ 1.734063] Key type blacklist registered 6045 [ 1.734167] workingset: timestamp_bits=44 max_order=20 bucket_order=0 6046 [ 1.737371] zbud: loaded 6047 [ 1.738350] squashfs: version 4.0 (2009/01/31) Phillip Lougher 6048 [ 1.738797] fuse: init (API version 7.32) 6049 [ 1.739581] integrity: Platform Keyring initialized 6050 [ 1.766039] xor: measuring software checksum speed 6051 [ 1.768887] 8regs : 3473 MB/sec 6052 [ 1.771336] 32regs : 4024 MB/sec 6053 [ 1.773989] arm64_neon : 3719 MB/sec 6054 [ 1.773993] xor: using function: 32regs (4024 MB/sec) 6055 [ 1.774000] Key type asymmetric registered 6056 [ 1.774004] Asymmetric key parser 'x509' registered 6057 [ 1.774036] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 6058 [ 1.774125] io scheduler mq-deadline registered 6059 [ 1.774130] io scheduler kyber registered 6060 [ 1.774217] io scheduler bfq registered 6061 [ 1.776716] gpio-447 (usb-hub-reset): hogged as output/high 6062 [ 1.779591] EINJ: ACPI disabled. 6063 [ 1.785628] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 6064 [ 1.786994] VCC_3V3: supplied by VDDAO_3V3 6065 [ 1.787029] FLASH_1V8: supplied by VCC_3V3 6066 [ 1.787060] VCC_1V8: supplied by VCC_3V3 6067 [ 1.787086] VDDAO_1V8: supplied by VDDAO_3V3 6068 [ 1.787130] VDDCPU_A: supplied by regulator-dummy 6069 [ 1.787510] VDDCPU_B: supplied by regulator-dummy 6070 [ 1.788176] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 6071 [ 1.790397] Serial: AMBA driver 6072 [ 1.790682] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 6073 [ 1.790776] printk: console [ttyAML0] enabled 6074 [ 1.791334] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 6075 [ 1.796585] loop: module loaded 6076 [ 1.798438] libphy: Fixed MDIO Bus: probed 6077 [ 1.799373] tun: Universal TUN/TAP device driver, 1.6 6078 [ 1.800057] thunder_xcv, ver 1.0 6079 [ 1.800091] thunder_bgx, ver 1.0 6080 [ 1.800119] nicpf, ver 1.0 6081 [ 1.800564] e1000e: Intel(R) PRO/1000 Network Driver 6082 [ 1.800568] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 6083 [ 1.800611] igb: Intel(R) Gigabit Ethernet Network Driver 6084 [ 1.800614] igb: Copyright (c) 2007-2014 Intel Corporation. 6085 [ 1.800652] igbvf: Intel(R) Gigabit Virtual Function Network Driver 6086 [ 1.800656] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 6087 [ 1.800788] sky2: driver version 1.30 6088 [ 1.801141] VFIO - User Level meta-driver version: 0.3 6089 [ 1.802459] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 6090 [ 1.802479] ehci-pci: EHCI PCI platform driver 6091 [ 1.802510] ehci-platform: EHCI generic platform driver 6092 [ 1.802648] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 6093 [ 1.802658] ohci-pci: OHCI PCI platform driver 6094 [ 1.802695] ohci-platform: OHCI generic platform driver 6095 [ 1.803074] usbcore: registered new interface driver usb-storage 6096 [ 1.804478] mousedev: PS/2 mouse device common for all mice 6097 [ 1.804868] i2c /dev entries driver 6098 [ 1.809944] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 6099 [ 1.810604] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 6100 [ 1.811281] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 6101 [ 1.812523] sdhci: Secure Digital Host Controller Interface driver 6102 [ 1.812530] sdhci: Copyright(c) Pierre Ossman 6103 [ 1.812650] Synopsys Designware Multimedia Card Interface Driver 6104 [ 1.813081] sdhci-pltfm: SDHCI platform and OF driver helper 6105 [ 1.813545] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 6106 [ 1.813986] ledtrig-cpu: registered to indicate activity on CPUs 6107 [ 1.814221] meson-sm: secure-monitor enabled 6108 [ 1.814451] hid: raw HID events driver (C) Jiri Kosina 6109 [ 1.814533] usbcore: registered new interface driver usbhid 6110 [ 1.814535] usbhid: USB HID core driver 6111 [ 1.815576] NET: Registered protocol family 10 6112 [ 1.815993] Segment Routing with IPv6 6113 [ 1.816020] NET: Registered protocol family 17 6114 [ 1.816063] 8021q: 802.1Q VLAN Support v1.8 6115 [ 1.816085] Key type dns_resolver registered 6116 [ 1.816379] registered taskstats version 1 6117 [ 1.816387] Loading compiled-in X.509 certificates 6118 [ 1.818048] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 6119 [ 1.819896] zswap: loaded using pool zstd/z3fold 6120 [ 1.820108] Key type ._fscrypt registered 6121 [ 1.820111] Key type .fscrypt registered 6122 [ 1.820113] Key type fscrypt-provisioning registered 6123 [ 1.821193] Btrfs loaded, crc32c=crc32c-generic 6124 [ 1.827007] Key type encrypted registered 6125 [ 1.827018] AppArmor: AppArmor sha1 policy hashing enabled 6126 [ 1.833260] HUB_5V: supplied by 5V 6127 [ 1.833479] USB_PWR_EN: supplied by 5V 6128 [ 1.835081] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 6129 [ 1.835088] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 6130 [ 1.837780] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 6131 [ 1.837828] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 6132 [ 1.838114] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 6133 [ 1.838696] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 6134 [ 1.838708] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 6135 [ 1.838795] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 6136 [ 1.838814] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 6137 [ 1.838935] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 6138 [ 1.838939] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 6139 [ 1.838942] usb usb1: Product: xHCI Host Controller 6140 [ 1.838944] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 6141 [ 1.838947] usb usb1: SerialNumber: xhci-hcd.0.auto 6142 [ 1.839152] hub 1-0:1.0: USB hub found 6143 [ 1.839165] hub 1-0:1.0: 2 ports detected 6144 [ 1.839295] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 6145 [ 1.839300] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 6146 [ 1.839305] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 6147 [ 1.839325] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 6148 [ 1.839360] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 6149 [ 1.839363] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 6150 [ 1.839365] usb usb2: Product: xHCI Host Controller 6151 [ 1.839367] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 6152 [ 1.839369] usb usb2: SerialNumber: xhci-hcd.0.auto 6153 [ 1.839639] hub 2-0:1.0: USB hub found 6154 [ 1.839652] hub 2-0:1.0: 1 port detected 6155 [ 1.840815] meson-gx-mmc ffe05000.sd: Got CD GPIO 6156 [ 1.868472] Freeing unused kernel memory: 3328K 6157 [ 1.895572] Run /init as init process 6158 [ 1.895576] with arguments: 6159 [ 1.895578] /init 6160 [ 1.895580] with environment: 6161 [ 1.895582] HOME=/ 6162 [ 1.895583] TERM=linux 6163 [ 1.895585] hdmimode=custombuilt 6164 [ 1.895587] cvbsmode=576cvbs 6165 [ 1.895588] max_freq_a53=1896 6166 [ 1.895589] max_freq_a73=1800 6167 [ 1.895591] voutmode=hdmi 6168 [ 1.895593] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 6169 [ 1.895594] disablehpd=false 6170 [ 1.895595] cvbscable= 6171 [ 1.895597] overscan=100 6172 [ 1.918162] mmc0: new high speed SDHC card at address b368 6173 [ 1.918960] mmcblk0: mmc0:b368 CBADS 30.0 GiB 6174 [ 1.921406] mmcblk0: p1 6175 [ 2.046518] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 6176 [ 2.046524] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 6177 [ 2.046632] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 6178 [ 2.050202] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 6179 [ 2.050213] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 6180 [ 2.050216] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 6181 [ 2.050219] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 6182 [ 2.050221] meson8b-dwmac ff3f0000.ethernet: COE Type 2 6183 [ 2.050223] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 6184 [ 2.050225] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 6185 [ 2.050295] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 6186 [ 2.050299] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 6187 [ 2.050302] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 6188 [ 2.050555] libphy: stmmac: probed 6189 [ 2.052025] libphy: mdio_mux: probed 6190 [ 2.057629] meson-vrtc ff8000a8.rtc: registered as rtc1 6191 [ 2.086340] rtc-pcf8563 1-0051: registered as rtc0 6192 [ 2.086499] random: fast init done 6193 [ 2.087501] rtc-pcf8563 1-0051: setting system clock to 2021-02-14T15:35:48 UTC (1613316948) 6194 [ 2.179498] usb 1-1: new high-speed USB device number 2 using xhci-hcd 6195 [ 2.263931] libphy: mdio_mux: probed 6196 [ 2.329897] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 6197 [ 2.329906] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 6198 [ 2.329911] usb 1-1: Product: USB2.1 Hub 6199 [ 2.329914] usb 1-1: Manufacturer: GenesysLogic 6200 [ 2.383643] hub 1-1:1.0: USB hub found 6201 [ 2.383891] hub 1-1:1.0: 4 ports detected 6202 [ 2.455601] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 6203 [ 2.478072] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 6204 [ 2.478078] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 6205 [ 2.478081] usb 2-1: Product: USB3.1 Hub 6206 [ 2.478084] usb 2-1: Manufacturer: GenesysLogic 6207 [ 2.495583] hub 2-1:1.0: USB hub found 6208 [ 2.495874] hub 2-1:1.0: 4 ports detected 6209 [ 2.733524] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 6210 [ 3.551830] systemd[1]: Inserted module 'autofs4' 6211 [ 3.598411] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 6212 [ 3.598626] systemd[1]: Detected architecture arm64. 6213 [ 3.621163] systemd[1]: Set hostname to <odroidn2>. 6214 [ 3.950447] random: systemd: uninitialized urandom read (16 bytes read) 6215 [ 3.953775] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 6216 [ 3.953817] random: systemd: uninitialized urandom read (16 bytes read) 6217 [ 3.954077] systemd[1]: Listening on udev Control Socket. 6218 [ 3.954278] random: systemd: uninitialized urandom read (16 bytes read) 6219 [ 3.954379] systemd[1]: Listening on udev Kernel Socket. 6220 [ 3.954611] systemd[1]: Listening on Journal Socket (/dev/log). 6221 [ 3.954765] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 6222 [ 3.954853] systemd[1]: Reached target Paths. 6223 [ 3.955068] systemd[1]: Listening on Journal Socket. 6224 [ 4.042461] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 6225 [ 4.531202] zram: Added device: zram0 6226 [ 4.531407] zram: Added device: zram1 6227 [ 4.531809] zram: Added device: zram2 6228 [ 4.638772] pwm-gpio pwmgpio: 1 gpio pwms loaded 6229 [ 4.788189] zram0: detected capacity change from 0 to 1904500736 6230 [ 4.794152] mc: Linux media interface: v0.10 6231 [ 4.829664] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 6232 [ 4.849394] videodev: Linux video capture interface: v2.00 6233 [ 4.863932] panfrost ffe40000.gpu: clock rate = 24000000 6234 [ 4.863981] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 6235 [ 4.864572] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 6236 [ 4.864590] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 6237 [ 4.864595] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 6238 [ 4.864598] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 6239 [ 4.879291] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 6240 [ 4.895565] Registered IR keymap rc-odroid 6241 [ 4.918182] meson-drm ff900000.vpu: Queued 2 outputs on vpu 6242 [ 4.927807] IR NEC protocol handler initialized 6243 [ 4.955721] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 6244 [ 4.955880] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 6245 [ 4.955978] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 6246 [ 4.956212] meson-ir ff808000.ir: receiver initialized 6247 [ 4.962178] meson-drm ff900000.vpu: CVBS Output connector not available 6248 [ 4.987546] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 6249 [ 4.988061] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 6250 [ 4.988636] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 6251 [ 4.989048] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 6252 [ 5.005575] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 6253 [ 5.267623] Console: switching to colour frame buffer device 240x67 6254 [ 5.294133] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 6255 [ 5.343856] axg-sound-card sound: ASoC: no DMI vendor name! 6256 [ 5.855484] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 6257 [ 5.920174] zram1: detected capacity change from 0 to 52428800 6258 [ 8.005272] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 6259 [ 8.005293] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 6260 [ 8.998474] systemd[1]: Started Armbian memory supported logging. 6261 [ 9.000984] systemd[1]: Starting Journal Service... 6262 [ 9.060395] systemd[1]: Started Journal Service. 6263 [ 9.085554] systemd-journald[1839]: Received request to flush runtime journal from PID 1 6264 6265 ### armbian-release: 6266 6267 # PLEASE DO NOT EDIT THIS FILE 6268 BOARD=odroidn2 6269 BOARD_NAME="Odroid N2" 6270 BOARDFAMILY=meson-g12b 6271 BUILD_REPOSITORY_URL=https://github.com/armbian/build 6272 BUILD_REPOSITORY_COMMIT=5f03d652 6273 DISTRIBUTION_CODENAME=buster 6274 DISTRIBUTION_STATUS=supported 6275 VERSION=21.02.1 6276 LINUXFAMILY=meson64 6277 BRANCH=current 6278 ARCH=arm64 6279 IMAGE_TYPE=stable 6280 BOARD_TYPE=conf 6281 INITRD_ARCH=arm64 6282 KERNEL_IMAGE_TYPE=Image 6283 6284 ### boot environment: 6285 6286 verbosity=1 6287 console=both 6288 overlay_prefix=meson 6289 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 6290 rootfstype=ext4 6291 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 6292 6293 ### lsusb: 6294 6295 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 6296 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 6297 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 6298 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 6299 6300 ### lscpu: 6301 6302 Architecture: aarch64 6303 Byte Order: Little Endian 6304 CPU(s): 6 6305 On-line CPU(s) list: 0-5 6306 Thread(s) per core: 1 6307 Core(s) per socket: 3 6308 Socket(s): 2 6309 NUMA node(s): 1 6310 Vendor ID: ARM 6311 Model: 4 6312 Model name: Cortex-A53 6313 Stepping: r0p4 6314 CPU max MHz: 1992.0000 6315 CPU min MHz: 100.0000 6316 BogoMIPS: 48.00 6317 L1d cache: unknown size 6318 L1i cache: unknown size 6319 L2 cache: unknown size 6320 NUMA node0 CPU(s): 0-5 6321 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6322 6323 ### cpuinfo: 6324 6325 processor : 0 6326 BogoMIPS : 48.00 6327 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6328 CPU implementer : 0x41 6329 CPU architecture: 8 6330 CPU variant : 0x0 6331 CPU part : 0xd03 6332 CPU revision : 4 6333 6334 processor : 1 6335 BogoMIPS : 48.00 6336 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6337 CPU implementer : 0x41 6338 CPU architecture: 8 6339 CPU variant : 0x0 6340 CPU part : 0xd03 6341 CPU revision : 4 6342 6343 processor : 2 6344 BogoMIPS : 48.00 6345 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6346 CPU implementer : 0x41 6347 CPU architecture: 8 6348 CPU variant : 0x0 6349 CPU part : 0xd09 6350 CPU revision : 2 6351 6352 processor : 3 6353 BogoMIPS : 48.00 6354 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6355 CPU implementer : 0x41 6356 CPU architecture: 8 6357 CPU variant : 0x0 6358 CPU part : 0xd09 6359 CPU revision : 2 6360 6361 processor : 4 6362 BogoMIPS : 48.00 6363 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6364 CPU implementer : 0x41 6365 CPU architecture: 8 6366 CPU variant : 0x0 6367 CPU part : 0xd09 6368 CPU revision : 2 6369 6370 processor : 5 6371 BogoMIPS : 48.00 6372 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6373 CPU implementer : 0x41 6374 CPU architecture: 8 6375 CPU variant : 0x0 6376 CPU part : 0xd09 6377 CPU revision : 2 6378 6379 6380 ### meminfo: 6381 6382 MemTotal: 3719728 kB 6383 MemFree: 3404044 kB 6384 MemAvailable: 3356372 kB 6385 Buffers: 11544 kB 6386 Cached: 42116 kB 6387 SwapCached: 0 kB 6388 Active: 28568 kB 6389 Inactive: 175588 kB 6390 Active(anon): 104 kB 6391 Inactive(anon): 155564 kB 6392 Active(file): 28464 kB 6393 Inactive(file): 20024 kB 6394 Unevictable: 0 kB 6395 Mlocked: 0 kB 6396 SwapTotal: 1859860 kB 6397 SwapFree: 1859860 kB 6398 Dirty: 3036 kB 6399 Writeback: 0 kB 6400 AnonPages: 150872 kB 6401 Mapped: 13644 kB 6402 Shmem: 4868 kB 6403 KReclaimable: 12884 kB 6404 Slab: 39084 kB 6405 SReclaimable: 12884 kB 6406 SUnreclaim: 26200 kB 6407 KernelStack: 2592 kB 6408 PageTables: 6616 kB 6409 NFS_Unstable: 0 kB 6410 Bounce: 0 kB 6411 WritebackTmp: 0 kB 6412 CommitLimit: 3719724 kB 6413 Committed_AS: 4240268 kB 6414 VmallocTotal: 135290159040 kB 6415 VmallocUsed: 31360 kB 6416 VmallocChunk: 0 kB 6417 Percpu: 1368 kB 6418 HardwareCorrupted: 0 kB 6419 AnonHugePages: 0 kB 6420 ShmemHugePages: 0 kB 6421 ShmemPmdMapped: 0 kB 6422 FileHugePages: 0 kB 6423 FilePmdMapped: 0 kB 6424 CmaTotal: 917504 kB 6425 CmaFree: 901724 kB 6426 HugePages_Total: 0 6427 HugePages_Free: 0 6428 HugePages_Rsvd: 0 6429 HugePages_Surp: 0 6430 Hugepagesize: 2048 kB 6431 Hugetlb: 0 kB 6432 6433 ### virtual memory: 6434 6435 vm.admin_reserve_kbytes = 8192 6436 vm.block_dump = 0 6437 vm.compaction_proactiveness = 20 6438 vm.compact_unevictable_allowed = 1 6439 vm.dirty_background_bytes = 0 6440 vm.dirty_background_ratio = 10 6441 vm.dirty_bytes = 0 6442 vm.dirty_expire_centisecs = 3000 6443 vm.dirty_ratio = 20 6444 vm.dirtytime_expire_seconds = 43200 6445 vm.dirty_writeback_centisecs = 500 6446 vm.extfrag_threshold = 500 6447 vm.hugetlb_shm_group = 0 6448 vm.laptop_mode = 0 6449 vm.legacy_va_layout = 0 6450 vm.lowmem_reserve_ratio = 256 256 32 0 6451 vm.max_map_count = 65530 6452 vm.memory_failure_early_kill = 0 6453 vm.memory_failure_recovery = 1 6454 vm.min_free_kbytes = 45056 6455 vm.min_slab_ratio = 5 6456 vm.min_unmapped_ratio = 1 6457 vm.mmap_min_addr = 4096 6458 vm.mmap_rnd_bits = 18 6459 vm.mmap_rnd_compat_bits = 11 6460 vm.nr_hugepages = 0 6461 vm.nr_hugepages_mempolicy = 0 6462 vm.nr_overcommit_hugepages = 0 6463 vm.numa_stat = 1 6464 vm.numa_zonelist_order = Node 6465 vm.oom_dump_tasks = 1 6466 vm.oom_kill_allocating_task = 0 6467 vm.overcommit_kbytes = 0 6468 vm.overcommit_memory = 0 6469 vm.overcommit_ratio = 50 6470 vm.page-cluster = 0 6471 vm.page_lock_unfairness = 5 6472 vm.panic_on_oom = 0 6473 vm.percpu_pagelist_fraction = 0 6474 vm.stat_interval = 1 6475 vm.swappiness = 100 6476 vm.user_reserve_kbytes = 115074 6477 vm.vfs_cache_pressure = 100 6478 vm.watermark_boost_factor = 15000 6479 vm.watermark_scale_factor = 10 6480 vm.zone_reclaim_mode = 0 6481 6482 ### ip addr: 6483 6484 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 6485 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 6486 inet XXX.XXX.0.1/8 scope host lo 6487 valid_lft forever preferred_lft forever 6488 inet6 ::1/128 scope host 6489 valid_lft forever preferred_lft forever 6490 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 6491 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 6492 6493 ### partitions: 6494 6495 major minor #blocks name 6496 6497 179 0 31464960 mmcblk0 6498 179 1 31146208 mmcblk0p1 6499 252 0 1859864 zram0 6500 252 1 51200 zram1 6501 6502 ### df: 6503 6504 udev 1.4G 0 1.4G 0% /dev 6505 tmpfs 364M 4.9M 359M 2% /run 6506 /dev/mmcblk0p1 30G 1.7G 28G 6% / 6507 tmpfs 1.8G 0 1.8G 0% /dev/shm 6508 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 6509 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 6510 tmpfs 1.8G 0 1.8G 0% /tmp 6511 /dev/zram1 49M 3.0M 42M 7% /var/log 6512 6513 ### lsblk: 6514 6515 NAME FSTYPE SIZE MOUNTPOINT UUID 6516 mmcblk0 30G 6517 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 6518 zram1 50M /var/log 6519 6520 ### zramctl: 6521 6522 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 6523 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 6524 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 6525 6526 ### mtab: 6527 6528 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 6529 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 6530 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 6531 6532 ### mmc0:b368 info: 6533 6534 fwrev: 0x0 6535 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 6536 cid: 6f0303434241445310aa002b4d013b00 6537 rca: 0xb368 6538 csd: 400e005a5b590000f00e7f800a404000 6539 manfid: 0x00006f 6540 ocr: 0x00200000 6541 preferred_erase_size: 2097152 6542 type: SD 6543 hwrev: 0x1 6544 date: 11/2019 6545 dsr: 0x404 6546 erase_size: 512 6547 oemid: 0x0303 6548 serial: 0xaa002b4d 6549 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 6550 scr: 02b5800300000000 6551 name: CBADS 6552 6553 ### Boot system health: 6554 6555 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 6556 15:35:56: 1908/1992MHz 1.05 25% 12% 5% 0% 7% 0% 34.7°C 0/11 6557 15:35:57: 1908/1992MHz 1.05 84% 28% 3% 0% 50% 0% 33.7°C 0/11 6558 15:35:57: 1908/1992MHz 1.05 63% 8% 8% 0% 45% 0% 31.6°C 0/11 6559 15:35:57: 1908/1992MHz 1.05 55% 3% 2% 0% 50% 0% 30.7°C 0/11 6560 15:35:58: 1908/1992MHz 1.05 52% 1% 3% 0% 44% 0% 31.0°C 0/11 6561 6562 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 6563 6564 ### Activated Armbian ramlog partition with zstd compression 6565 6566 Sun 14 Feb 2021 03:40:26 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 6567 6568 ### dmesg: 6569 6570 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 6571 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 6572 [ 0.000000] Machine model: Hardkernel ODROID-N2 6573 [ 0.000000] efi: UEFI not found. 6574 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 6575 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 6576 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 6577 [ 0.000000] NUMA: No NUMA configuration found 6578 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 6579 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 6580 [ 0.000000] Zone ranges: 6581 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 6582 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 6583 [ 0.000000] Normal empty 6584 [ 0.000000] Movable zone start for each node 6585 [ 0.000000] Early memory node ranges 6586 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 6587 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 6588 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 6589 [ 0.000000] On node 0 totalpages: 972032 6590 [ 0.000000] DMA zone: 4096 pages used for memmap 6591 [ 0.000000] DMA zone: 0 pages reserved 6592 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 6593 [ 0.000000] DMA32 zone: 11104 pages used for memmap 6594 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 6595 [ 0.000000] psci: probing for conduit method from DT. 6596 [ 0.000000] psci: PSCIv1.0 detected in firmware. 6597 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 6598 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 6599 [ 0.000000] psci: SMC Calling Convention v1.1 6600 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 6601 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 6602 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 6603 [ 0.000000] Detected VIPT I-cache on CPU0 6604 [ 0.000000] CPU features: detected: ARM erratum 845719 6605 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 6606 [ 0.000000] Policy zone: DMA32 6607 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 6608 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 6609 Please use sysfs to set IO scheduler for individual devices. 6610 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 6611 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 6612 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 6613 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 6614 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 6615 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 6616 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 6617 [ 0.000000] rcu: RCU event tracing is enabled. 6618 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 6619 [ 0.000000] Trampoline variant of Tasks RCU enabled. 6620 [ 0.000000] Rude variant of Tasks RCU enabled. 6621 [ 0.000000] Tracing variant of Tasks RCU enabled. 6622 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 6623 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 6624 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 6625 [ 0.000000] GIC: Using split EOI/Deactivate mode 6626 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 6627 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 6628 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 6629 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 6630 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 6631 [ 0.000240] Console: colour dummy device 80x25 6632 [ 0.000274] printk: console [tty1] enabled 6633 [ 0.000362] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 6634 [ 0.000374] pid_max: default: 32768 minimum: 301 6635 [ 0.000456] LSM: Security Framework initializing 6636 [ 0.000482] Yama: becoming mindful. 6637 [ 0.000572] AppArmor: AppArmor initialized 6638 [ 0.000623] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 6639 [ 0.000642] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 6640 [ 0.002639] rcu: Hierarchical SRCU implementation. 6641 [ 0.005043] EFI services will not be available. 6642 [ 0.005467] smp: Bringing up secondary CPUs ... 6643 [ 0.006138] Detected VIPT I-cache on CPU1 6644 [ 0.006199] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 6645 [ 0.007393] CPU features: detected: ARM erratum 858921 6646 [ 0.007401] CPU features: detected: Spectre-v2 6647 [ 0.007404] CPU features: detected: Spectre-v4 6648 [ 0.007410] Detected VIPT I-cache on CPU2 6649 [ 0.007436] arch_timer: Enabling local workaround for ARM erratum 858921 6650 [ 0.007450] arch_timer: CPU2: Trapping CNTVCT access 6651 [ 0.007463] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 6652 [ 0.008170] Detected VIPT I-cache on CPU3 6653 [ 0.008186] arch_timer: Enabling local workaround for ARM erratum 858921 6654 [ 0.008193] arch_timer: CPU3: Trapping CNTVCT access 6655 [ 0.008201] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 6656 [ 0.008829] Detected VIPT I-cache on CPU4 6657 [ 0.008846] arch_timer: Enabling local workaround for ARM erratum 858921 6658 [ 0.008853] arch_timer: CPU4: Trapping CNTVCT access 6659 [ 0.008861] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 6660 [ 0.009476] Detected VIPT I-cache on CPU5 6661 [ 0.009493] arch_timer: Enabling local workaround for ARM erratum 858921 6662 [ 0.009500] arch_timer: CPU5: Trapping CNTVCT access 6663 [ 0.009508] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 6664 [ 0.009588] smp: Brought up 1 node, 6 CPUs 6665 [ 0.009605] SMP: Total of 6 processors activated. 6666 [ 0.009613] CPU features: detected: 32-bit EL0 Support 6667 [ 0.009618] CPU features: detected: CRC32 instructions 6668 [ 0.009624] CPU features: detected: 32-bit EL1 Support 6669 [ 0.020896] CPU: All CPU(s) started at EL2 6670 [ 0.020945] alternatives: patching kernel code 6671 [ 0.022888] devtmpfs: initialized 6672 [ 0.030570] Registered cp15_barrier emulation handler 6673 [ 0.030584] Registered setend emulation handler 6674 [ 0.030718] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 6675 [ 0.030756] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 6676 [ 0.044691] pinctrl core: initialized pinctrl subsystem 6677 [ 0.045404] DMI not present or invalid. 6678 [ 0.045768] NET: Registered protocol family 16 6679 [ 0.047296] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 6680 [ 0.047568] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 6681 [ 0.047796] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 6682 [ 0.047839] audit: initializing netlink subsys (disabled) 6683 [ 0.047935] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 6684 [ 0.049256] thermal_sys: Registered thermal governor 'fair_share' 6685 [ 0.049263] thermal_sys: Registered thermal governor 'bang_bang' 6686 [ 0.049268] thermal_sys: Registered thermal governor 'step_wise' 6687 [ 0.049272] thermal_sys: Registered thermal governor 'user_space' 6688 [ 0.049724] cpuidle: using governor menu 6689 [ 0.050075] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 6690 [ 0.050198] ASID allocator initialised with 65536 entries 6691 [ 0.051116] Serial: AMBA PL011 UART driver 6692 [ 0.086242] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 6693 [ 0.086251] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 6694 [ 0.086256] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 6695 [ 0.086260] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 6696 [ 0.087680] cryptd: max_cpu_qlen set to 1000 6697 [ 0.156193] raid6: neonx8 gen() 2785 MB/s 6698 [ 0.224254] raid6: neonx8 xor() 2041 MB/s 6699 [ 0.292347] raid6: neonx4 gen() 3000 MB/s 6700 [ 0.360390] raid6: neonx4 xor() 2399 MB/s 6701 [ 0.428459] raid6: neonx2 gen() 2564 MB/s 6702 [ 0.496536] raid6: neonx2 xor() 2206 MB/s 6703 [ 0.564595] raid6: neonx1 gen() 2014 MB/s 6704 [ 0.632660] raid6: neonx1 xor() 1719 MB/s 6705 [ 0.700730] raid6: int64x8 gen() 1376 MB/s 6706 [ 0.768787] raid6: int64x8 xor() 735 MB/s 6707 [ 0.836869] raid6: int64x4 gen() 1463 MB/s 6708 [ 0.904930] raid6: int64x4 xor() 733 MB/s 6709 [ 0.972998] raid6: int64x2 gen() 1363 MB/s 6710 [ 1.041066] raid6: int64x2 xor() 619 MB/s 6711 [ 1.109128] raid6: int64x1 gen() 1120 MB/s 6712 [ 1.177185] raid6: int64x1 xor() 462 MB/s 6713 [ 1.177189] raid6: using algorithm neonx4 gen() 3000 MB/s 6714 [ 1.177192] raid6: .... xor() 2399 MB/s, rmw enabled 6715 [ 1.177196] raid6: using neon recovery algorithm 6716 [ 1.177648] ACPI: Interpreter disabled. 6717 [ 1.178417] 5V: supplied by 12V 6718 [ 1.179315] VDDAO_3V3: supplied by 12V 6719 [ 1.179772] iommu: Default domain type: Translated 6720 [ 1.179899] vgaarb: loaded 6721 [ 1.180584] SCSI subsystem initialized 6722 [ 1.180998] usbcore: registered new interface driver usbfs 6723 [ 1.181045] usbcore: registered new interface driver hub 6724 [ 1.181082] usbcore: registered new device driver usb 6725 [ 1.181391] pps_core: LinuxPPS API ver. 1 registered 6726 [ 1.181398] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 6727 [ 1.181426] PTP clock support registered 6728 [ 1.181605] EDAC MC: Ver: 3.0.0 6729 [ 1.182914] NetLabel: Initializing 6730 [ 1.182922] NetLabel: domain hash size = 128 6731 [ 1.182925] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 6732 [ 1.182968] NetLabel: unlabeled traffic allowed by default 6733 [ 1.183457] clocksource: Switched to clocksource arch_sys_counter 6734 [ 1.183674] VFS: Disk quotas dquot_6.6.0 6735 [ 1.183718] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 6736 [ 1.184067] AppArmor: AppArmor Filesystem Enabled 6737 [ 1.184168] pnp: PnP ACPI: disabled 6738 [ 1.189759] NET: Registered protocol family 2 6739 [ 1.190213] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 6740 [ 1.190319] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 6741 [ 1.190576] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 6742 [ 1.190763] TCP: Hash tables configured (established 32768 bind 32768) 6743 [ 1.190914] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 6744 [ 1.190979] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 6745 [ 1.191026] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 6746 [ 1.191168] NET: Registered protocol family 1 6747 [ 1.191187] PCI: CLS 0 bytes, default 64 6748 [ 1.191315] Trying to unpack rootfs image as initramfs... 6749 [ 1.727262] Freeing initrd memory: 13544K 6750 [ 1.728192] kvm [1]: IPA Size Limit: 40 bits 6751 [ 1.728898] kvm [1]: vgic interrupt IRQ9 6752 [ 1.729029] kvm [1]: Hyp mode initialized successfully 6753 [ 1.734193] Initialise system trusted keyrings 6754 [ 1.734227] Key type blacklist registered 6755 [ 1.734363] workingset: timestamp_bits=44 max_order=20 bucket_order=0 6756 [ 1.737570] zbud: loaded 6757 [ 1.738543] squashfs: version 4.0 (2009/01/31) Phillip Lougher 6758 [ 1.739005] fuse: init (API version 7.32) 6759 [ 1.739809] integrity: Platform Keyring initialized 6760 [ 1.767793] xor: measuring software checksum speed 6761 [ 1.770632] 8regs : 3473 MB/sec 6762 [ 1.773091] 32regs : 4021 MB/sec 6763 [ 1.775744] arm64_neon : 3719 MB/sec 6764 [ 1.775748] xor: using function: 32regs (4021 MB/sec) 6765 [ 1.775754] Key type asymmetric registered 6766 [ 1.775759] Asymmetric key parser 'x509' registered 6767 [ 1.775795] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 6768 [ 1.775904] io scheduler mq-deadline registered 6769 [ 1.775908] io scheduler kyber registered 6770 [ 1.775986] io scheduler bfq registered 6771 [ 1.778437] gpio-447 (usb-hub-reset): hogged as output/high 6772 [ 1.781309] EINJ: ACPI disabled. 6773 [ 1.787425] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 6774 [ 1.788914] VCC_3V3: supplied by VDDAO_3V3 6775 [ 1.788950] FLASH_1V8: supplied by VCC_3V3 6776 [ 1.788981] VCC_1V8: supplied by VCC_3V3 6777 [ 1.789012] VDDAO_1V8: supplied by VDDAO_3V3 6778 [ 1.789040] VDDCPU_A: supplied by regulator-dummy 6779 [ 1.789393] VDDCPU_B: supplied by regulator-dummy 6780 [ 1.790053] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 6781 [ 1.792340] Serial: AMBA driver 6782 [ 1.792639] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 6783 [ 1.792733] printk: console [ttyAML0] enabled 6784 [ 1.793273] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 6785 [ 1.798544] loop: module loaded 6786 [ 1.800423] libphy: Fixed MDIO Bus: probed 6787 [ 1.801549] tun: Universal TUN/TAP device driver, 1.6 6788 [ 1.802163] thunder_xcv, ver 1.0 6789 [ 1.802196] thunder_bgx, ver 1.0 6790 [ 1.802225] nicpf, ver 1.0 6791 [ 1.802652] e1000e: Intel(R) PRO/1000 Network Driver 6792 [ 1.802655] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 6793 [ 1.802697] igb: Intel(R) Gigabit Ethernet Network Driver 6794 [ 1.802701] igb: Copyright (c) 2007-2014 Intel Corporation. 6795 [ 1.802734] igbvf: Intel(R) Gigabit Virtual Function Network Driver 6796 [ 1.802736] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 6797 [ 1.802860] sky2: driver version 1.30 6798 [ 1.803215] VFIO - User Level meta-driver version: 0.3 6799 [ 1.804586] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 6800 [ 1.804606] ehci-pci: EHCI PCI platform driver 6801 [ 1.804635] ehci-platform: EHCI generic platform driver 6802 [ 1.804758] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 6803 [ 1.804767] ohci-pci: OHCI PCI platform driver 6804 [ 1.804797] ohci-platform: OHCI generic platform driver 6805 [ 1.805176] usbcore: registered new interface driver usb-storage 6806 [ 1.806358] mousedev: PS/2 mouse device common for all mice 6807 [ 1.806676] i2c /dev entries driver 6808 [ 1.811710] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 6809 [ 1.812386] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 6810 [ 1.813064] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 6811 [ 1.813662] sdhci: Secure Digital Host Controller Interface driver 6812 [ 1.813666] sdhci: Copyright(c) Pierre Ossman 6813 [ 1.813772] Synopsys Designware Multimedia Card Interface Driver 6814 [ 1.814194] sdhci-pltfm: SDHCI platform and OF driver helper 6815 [ 1.814600] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 6816 [ 1.815022] ledtrig-cpu: registered to indicate activity on CPUs 6817 [ 1.815247] meson-sm: secure-monitor enabled 6818 [ 1.815408] hid: raw HID events driver (C) Jiri Kosina 6819 [ 1.815509] usbcore: registered new interface driver usbhid 6820 [ 1.815512] usbhid: USB HID core driver 6821 [ 1.816477] NET: Registered protocol family 10 6822 [ 1.816880] Segment Routing with IPv6 6823 [ 1.816910] NET: Registered protocol family 17 6824 [ 1.816953] 8021q: 802.1Q VLAN Support v1.8 6825 [ 1.816976] Key type dns_resolver registered 6826 [ 1.817251] registered taskstats version 1 6827 [ 1.817257] Loading compiled-in X.509 certificates 6828 [ 1.818943] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 6829 [ 1.821249] zswap: loaded using pool zstd/z3fold 6830 [ 1.821445] Key type ._fscrypt registered 6831 [ 1.821448] Key type .fscrypt registered 6832 [ 1.821449] Key type fscrypt-provisioning registered 6833 [ 1.822547] Btrfs loaded, crc32c=crc32c-generic 6834 [ 1.828699] Key type encrypted registered 6835 [ 1.828710] AppArmor: AppArmor sha1 policy hashing enabled 6836 [ 1.834923] HUB_5V: supplied by 5V 6837 [ 1.835147] USB_PWR_EN: supplied by 5V 6838 [ 1.836836] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 6839 [ 1.836843] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 6840 [ 1.839541] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 6841 [ 1.839592] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 6842 [ 1.839713] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 6843 [ 1.840436] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 6844 [ 1.840449] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 6845 [ 1.840540] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 6846 [ 1.840561] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 6847 [ 1.840687] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 6848 [ 1.840690] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 6849 [ 1.840693] usb usb1: Product: xHCI Host Controller 6850 [ 1.840695] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 6851 [ 1.840697] usb usb1: SerialNumber: xhci-hcd.0.auto 6852 [ 1.840942] hub 1-0:1.0: USB hub found 6853 [ 1.840955] hub 1-0:1.0: 2 ports detected 6854 [ 1.841133] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 6855 [ 1.841140] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 6856 [ 1.841146] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 6857 [ 1.841166] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 6858 [ 1.841198] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 6859 [ 1.841201] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 6860 [ 1.841203] usb usb2: Product: xHCI Host Controller 6861 [ 1.841205] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 6862 [ 1.841208] usb usb2: SerialNumber: xhci-hcd.0.auto 6863 [ 1.841409] hub 2-0:1.0: USB hub found 6864 [ 1.841420] hub 2-0:1.0: 1 port detected 6865 [ 1.841743] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 6866 [ 1.842694] meson-gx-mmc ffe05000.sd: Got CD GPIO 6867 [ 1.868494] Freeing unused kernel memory: 3328K 6868 [ 1.907560] Run /init as init process 6869 [ 1.907565] with arguments: 6870 [ 1.907567] /init 6871 [ 1.907569] with environment: 6872 [ 1.907570] HOME=/ 6873 [ 1.907572] TERM=linux 6874 [ 1.907574] hdmimode=custombuilt 6875 [ 1.907576] cvbsmode=576cvbs 6876 [ 1.907577] max_freq_a53=1896 6877 [ 1.907578] max_freq_a73=1800 6878 [ 1.907580] voutmode=hdmi 6879 [ 1.907582] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 6880 [ 1.907583] disablehpd=false 6881 [ 1.907585] cvbscable= 6882 [ 1.907586] overscan=100 6883 [ 1.933631] mmc0: new ultra high speed SDR25 SDHC card at address b368 6884 [ 1.934233] mmcblk0: mmc0:b368 CBADS 30.0 GiB 6885 [ 1.936043] mmcblk0: p1 6886 [ 2.060094] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 6887 [ 2.060101] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 6888 [ 2.060196] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 6889 [ 2.063597] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 6890 [ 2.063620] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 6891 [ 2.063626] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 6892 [ 2.063630] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 6893 [ 2.063633] meson8b-dwmac ff3f0000.ethernet: COE Type 2 6894 [ 2.063636] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 6895 [ 2.063639] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 6896 [ 2.063777] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 6897 [ 2.063781] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 6898 [ 2.063785] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 6899 [ 2.064313] libphy: stmmac: probed 6900 [ 2.066880] libphy: mdio_mux: probed 6901 [ 2.082687] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 6902 [ 2.082973] rtc-pcf8563 1-0051: registered as rtc0 6903 [ 2.084245] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 6904 [ 2.084259] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 6905 [ 2.087239] random: fast init done 6906 [ 2.094208] meson-vrtc ff8000a8.rtc: registered as rtc1 6907 [ 2.179602] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 6908 [ 2.204213] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 6909 [ 2.204223] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 6910 [ 2.204226] usb 2-1: Product: USB3.1 Hub 6911 [ 2.204230] usb 2-1: Manufacturer: GenesysLogic 6912 [ 2.225416] hub 2-1:1.0: USB hub found 6913 [ 2.225708] hub 2-1:1.0: 4 ports detected 6914 [ 2.272060] libphy: mdio_mux: probed 6915 [ 2.327478] usb 1-1: new high-speed USB device number 2 using xhci-hcd 6916 [ 2.477754] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 6917 [ 2.477763] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 6918 [ 2.477766] usb 1-1: Product: USB2.1 Hub 6919 [ 2.477769] usb 1-1: Manufacturer: GenesysLogic 6920 [ 2.513449] hub 1-1:1.0: USB hub found 6921 [ 2.513704] hub 1-1:1.0: 4 ports detected 6922 [ 2.997323] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 6923 [ 3.799827] systemd[1]: System time before build time, advancing clock. 6924 [ 3.814657] systemd[1]: Inserted module 'autofs4' 6925 [ 3.861020] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 6926 [ 3.861236] systemd[1]: Detected architecture arm64. 6927 [ 3.897326] systemd[1]: Set hostname to <odroidn2>. 6928 [ 4.224425] random: systemd: uninitialized urandom read (16 bytes read) 6929 [ 4.227769] random: systemd: uninitialized urandom read (16 bytes read) 6930 [ 4.228031] systemd[1]: Listening on fsck to fsckd communication Socket. 6931 [ 4.228242] random: systemd: uninitialized urandom read (16 bytes read) 6932 [ 4.228425] systemd[1]: Listening on Journal Socket. 6933 [ 4.230589] systemd[1]: Starting Nameserver information manager... 6934 [ 4.232426] systemd[1]: Mounting POSIX Message Queue File System... 6935 [ 4.239565] systemd[1]: Starting Load Kernel Modules... 6936 [ 4.240104] systemd[1]: Listening on udev Control Socket. 6937 [ 4.240311] systemd[1]: Reached target Remote File Systems. 6938 [ 4.283670] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 6939 [ 4.835792] zram: Added device: zram0 6940 [ 4.836396] zram: Added device: zram1 6941 [ 4.837117] zram: Added device: zram2 6942 [ 4.869546] pwm-gpio pwmgpio: 1 gpio pwms loaded 6943 [ 5.006984] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 6944 [ 5.010241] mc: Linux media interface: v0.10 6945 [ 5.104364] videodev: Linux video capture interface: v2.00 6946 [ 5.139502] Registered IR keymap rc-odroid 6947 [ 5.141106] meson-drm ff900000.vpu: Queued 2 outputs on vpu 6948 [ 5.157734] IR NEC protocol handler initialized 6949 [ 5.183532] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 6950 [ 5.183664] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 6951 [ 5.183731] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 6952 [ 5.183997] meson-ir ff808000.ir: receiver initialized 6953 [ 5.187022] meson-drm ff900000.vpu: CVBS Output connector not available 6954 [ 5.190129] panfrost ffe40000.gpu: clock rate = 24000000 6955 [ 5.190184] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 6956 [ 5.190845] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 6957 [ 5.190853] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 6958 [ 5.190857] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 6959 [ 5.190859] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 6960 [ 5.204035] zram0: detected capacity change from 0 to 1904500736 6961 [ 5.205421] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 6962 [ 5.215608] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 6963 [ 5.216742] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 6964 [ 5.217267] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 6965 [ 5.217695] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 6966 [ 5.274077] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 6967 [ 5.511639] Console: switching to colour frame buffer device 240x67 6968 [ 5.546366] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 6969 [ 5.583607] axg-sound-card sound: ASoC: no DMI vendor name! 6970 [ 6.259478] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 6971 [ 6.322574] zram1: detected capacity change from 0 to 52428800 6972 [ 8.408378] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 6973 [ 8.408398] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 6974 [ 9.425903] systemd[1]: Started Armbian memory supported logging. 6975 [ 9.430088] systemd[1]: Starting Journal Service... 6976 [ 9.484948] systemd[1]: Started Journal Service. 6977 [ 9.512729] systemd-journald[1843]: Received request to flush runtime journal from PID 1 6978 6979 ### armbian-release: 6980 6981 # PLEASE DO NOT EDIT THIS FILE 6982 BOARD=odroidn2 6983 BOARD_NAME="Odroid N2" 6984 BOARDFAMILY=meson-g12b 6985 BUILD_REPOSITORY_URL=https://github.com/armbian/build 6986 BUILD_REPOSITORY_COMMIT=5f03d652 6987 DISTRIBUTION_CODENAME=buster 6988 DISTRIBUTION_STATUS=supported 6989 VERSION=21.02.1 6990 LINUXFAMILY=meson64 6991 BRANCH=current 6992 ARCH=arm64 6993 IMAGE_TYPE=stable 6994 BOARD_TYPE=conf 6995 INITRD_ARCH=arm64 6996 KERNEL_IMAGE_TYPE=Image 6997 6998 ### boot environment: 6999 7000 verbosity=1 7001 console=both 7002 overlay_prefix=meson 7003 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 7004 rootfstype=ext4 7005 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 7006 7007 ### lsusb: 7008 7009 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 7010 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 7011 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 7012 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 7013 7014 ### lscpu: 7015 7016 Architecture: aarch64 7017 Byte Order: Little Endian 7018 CPU(s): 6 7019 On-line CPU(s) list: 0-5 7020 Thread(s) per core: 1 7021 Core(s) per socket: 3 7022 Socket(s): 2 7023 NUMA node(s): 1 7024 Vendor ID: ARM 7025 Model: 4 7026 Model name: Cortex-A53 7027 Stepping: r0p4 7028 CPU max MHz: 1992.0000 7029 CPU min MHz: 100.0000 7030 BogoMIPS: 48.00 7031 L1d cache: unknown size 7032 L1i cache: unknown size 7033 L2 cache: unknown size 7034 NUMA node0 CPU(s): 0-5 7035 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7036 7037 ### cpuinfo: 7038 7039 processor : 0 7040 BogoMIPS : 48.00 7041 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7042 CPU implementer : 0x41 7043 CPU architecture: 8 7044 CPU variant : 0x0 7045 CPU part : 0xd03 7046 CPU revision : 4 7047 7048 processor : 1 7049 BogoMIPS : 48.00 7050 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7051 CPU implementer : 0x41 7052 CPU architecture: 8 7053 CPU variant : 0x0 7054 CPU part : 0xd03 7055 CPU revision : 4 7056 7057 processor : 2 7058 BogoMIPS : 48.00 7059 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7060 CPU implementer : 0x41 7061 CPU architecture: 8 7062 CPU variant : 0x0 7063 CPU part : 0xd09 7064 CPU revision : 2 7065 7066 processor : 3 7067 BogoMIPS : 48.00 7068 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7069 CPU implementer : 0x41 7070 CPU architecture: 8 7071 CPU variant : 0x0 7072 CPU part : 0xd09 7073 CPU revision : 2 7074 7075 processor : 4 7076 BogoMIPS : 48.00 7077 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7078 CPU implementer : 0x41 7079 CPU architecture: 8 7080 CPU variant : 0x0 7081 CPU part : 0xd09 7082 CPU revision : 2 7083 7084 processor : 5 7085 BogoMIPS : 48.00 7086 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7087 CPU implementer : 0x41 7088 CPU architecture: 8 7089 CPU variant : 0x0 7090 CPU part : 0xd09 7091 CPU revision : 2 7092 7093 7094 ### meminfo: 7095 7096 MemTotal: 3719728 kB 7097 MemFree: 3384152 kB 7098 MemAvailable: 3336876 kB 7099 Buffers: 11544 kB 7100 Cached: 42336 kB 7101 SwapCached: 0 kB 7102 Active: 29568 kB 7103 Inactive: 197080 kB 7104 Active(anon): 96 kB 7105 Inactive(anon): 177404 kB 7106 Active(file): 29472 kB 7107 Inactive(file): 19676 kB 7108 Unevictable: 0 kB 7109 Mlocked: 0 kB 7110 SwapTotal: 1859860 kB 7111 SwapFree: 1859860 kB 7112 Dirty: 3316 kB 7113 Writeback: 0 kB 7114 AnonPages: 172388 kB 7115 Mapped: 10748 kB 7116 Shmem: 4868 kB 7117 KReclaimable: 13016 kB 7118 Slab: 39268 kB 7119 SReclaimable: 13016 kB 7120 SUnreclaim: 26252 kB 7121 KernelStack: 2128 kB 7122 PageTables: 4028 kB 7123 NFS_Unstable: 0 kB 7124 Bounce: 0 kB 7125 WritebackTmp: 0 kB 7126 CommitLimit: 3719724 kB 7127 Committed_AS: 4210484 kB 7128 VmallocTotal: 135290159040 kB 7129 VmallocUsed: 30912 kB 7130 VmallocChunk: 0 kB 7131 Percpu: 1368 kB 7132 HardwareCorrupted: 0 kB 7133 AnonHugePages: 0 kB 7134 ShmemHugePages: 0 kB 7135 ShmemPmdMapped: 0 kB 7136 FileHugePages: 0 kB 7137 FilePmdMapped: 0 kB 7138 CmaTotal: 917504 kB 7139 CmaFree: 901724 kB 7140 HugePages_Total: 0 7141 HugePages_Free: 0 7142 HugePages_Rsvd: 0 7143 HugePages_Surp: 0 7144 Hugepagesize: 2048 kB 7145 Hugetlb: 0 kB 7146 7147 ### virtual memory: 7148 7149 vm.admin_reserve_kbytes = 8192 7150 vm.block_dump = 0 7151 vm.compaction_proactiveness = 20 7152 vm.compact_unevictable_allowed = 1 7153 vm.dirty_background_bytes = 0 7154 vm.dirty_background_ratio = 10 7155 vm.dirty_bytes = 0 7156 vm.dirty_expire_centisecs = 3000 7157 vm.dirty_ratio = 20 7158 vm.dirtytime_expire_seconds = 43200 7159 vm.dirty_writeback_centisecs = 500 7160 vm.extfrag_threshold = 500 7161 vm.hugetlb_shm_group = 0 7162 vm.laptop_mode = 0 7163 vm.legacy_va_layout = 0 7164 vm.lowmem_reserve_ratio = 256 256 32 0 7165 vm.max_map_count = 65530 7166 vm.memory_failure_early_kill = 0 7167 vm.memory_failure_recovery = 1 7168 vm.min_free_kbytes = 45056 7169 vm.min_slab_ratio = 5 7170 vm.min_unmapped_ratio = 1 7171 vm.mmap_min_addr = 4096 7172 vm.mmap_rnd_bits = 18 7173 vm.mmap_rnd_compat_bits = 11 7174 vm.nr_hugepages = 0 7175 vm.nr_hugepages_mempolicy = 0 7176 vm.nr_overcommit_hugepages = 0 7177 vm.numa_stat = 1 7178 vm.numa_zonelist_order = Node 7179 vm.oom_dump_tasks = 1 7180 vm.oom_kill_allocating_task = 0 7181 vm.overcommit_kbytes = 0 7182 vm.overcommit_memory = 0 7183 vm.overcommit_ratio = 50 7184 vm.page-cluster = 0 7185 vm.page_lock_unfairness = 5 7186 vm.panic_on_oom = 0 7187 vm.percpu_pagelist_fraction = 0 7188 vm.stat_interval = 1 7189 vm.swappiness = 100 7190 vm.user_reserve_kbytes = 115076 7191 vm.vfs_cache_pressure = 100 7192 vm.watermark_boost_factor = 15000 7193 vm.watermark_scale_factor = 10 7194 vm.zone_reclaim_mode = 0 7195 7196 ### ip addr: 7197 7198 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 7199 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 7200 inet XXX.XXX.0.1/8 scope host lo 7201 valid_lft forever preferred_lft forever 7202 inet6 ::1/128 scope host 7203 valid_lft forever preferred_lft forever 7204 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 7205 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 7206 7207 ### partitions: 7208 7209 major minor #blocks name 7210 7211 179 0 31464960 mmcblk0 7212 179 1 31146208 mmcblk0p1 7213 252 0 1859864 zram0 7214 252 1 51200 zram1 7215 7216 ### df: 7217 7218 udev 1.4G 0 1.4G 0% /dev 7219 tmpfs 364M 4.9M 359M 2% /run 7220 /dev/mmcblk0p1 30G 1.7G 28G 6% / 7221 tmpfs 1.8G 0 1.8G 0% /dev/shm 7222 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 7223 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 7224 tmpfs 1.8G 0 1.8G 0% /tmp 7225 /dev/zram1 49M 3.3M 42M 8% /var/log 7226 7227 ### lsblk: 7228 7229 NAME FSTYPE SIZE MOUNTPOINT UUID 7230 mmcblk0 30G 7231 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 7232 zram1 50M /var/log 7233 7234 ### zramctl: 7235 7236 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 7237 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 7238 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 7239 7240 ### mtab: 7241 7242 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 7243 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 7244 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 7245 7246 ### mmc0:b368 info: 7247 7248 fwrev: 0x0 7249 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 7250 cid: 6f0303434241445310aa002b4d013b00 7251 rca: 0xb368 7252 csd: 400e005a5b590000f00e7f800a404000 7253 manfid: 0x00006f 7254 ocr: 0x00200000 7255 preferred_erase_size: 2097152 7256 type: SD 7257 hwrev: 0x1 7258 date: 11/2019 7259 dsr: 0x404 7260 erase_size: 512 7261 oemid: 0x0303 7262 serial: 0xaa002b4d 7263 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 7264 scr: 02b5800300000000 7265 name: CBADS 7266 7267 ### Boot system health: 7268 7269 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 7270 15:40:27: 1908/1992MHz 2.52 23% 11% 5% 0% 6% 0% 34.4°C 0/11 7271 15:40:27: 1908/1992MHz 2.52 84% 34% 10% 0% 36% 1% 34.6°C 0/11 7272 15:40:27: 1908/ 250MHz 2.52 68% 16% 0% 0% 49% 0% 32.0°C 0/11 7273 15:40:28: 1908/1992MHz 2.52 52% 5% 5% 0% 42% 0% 31.0°C 0/11 7274 15:40:28: 1908/1992MHz 2.52 47% 7% 4% 0% 33% 0% 30.9°C 0/11 7275 7276 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 7277 7278 ### Activated Armbian ramlog partition with zstd compression 7279 7280 Sun 14 Feb 2021 03:44:06 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 7281 7282 ### dmesg: 7283 7284 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 7285 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 7286 [ 0.000000] Machine model: Hardkernel ODROID-N2 7287 [ 0.000000] efi: UEFI not found. 7288 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 7289 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 7290 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 7291 [ 0.000000] NUMA: No NUMA configuration found 7292 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 7293 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 7294 [ 0.000000] Zone ranges: 7295 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 7296 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 7297 [ 0.000000] Normal empty 7298 [ 0.000000] Movable zone start for each node 7299 [ 0.000000] Early memory node ranges 7300 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 7301 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 7302 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 7303 [ 0.000000] On node 0 totalpages: 972032 7304 [ 0.000000] DMA zone: 4096 pages used for memmap 7305 [ 0.000000] DMA zone: 0 pages reserved 7306 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 7307 [ 0.000000] DMA32 zone: 11104 pages used for memmap 7308 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 7309 [ 0.000000] psci: probing for conduit method from DT. 7310 [ 0.000000] psci: PSCIv1.0 detected in firmware. 7311 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 7312 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 7313 [ 0.000000] psci: SMC Calling Convention v1.1 7314 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 7315 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 7316 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 7317 [ 0.000000] Detected VIPT I-cache on CPU0 7318 [ 0.000000] CPU features: detected: ARM erratum 845719 7319 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 7320 [ 0.000000] Policy zone: DMA32 7321 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 7322 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 7323 Please use sysfs to set IO scheduler for individual devices. 7324 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 7325 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 7326 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 7327 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 7328 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 7329 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 7330 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 7331 [ 0.000000] rcu: RCU event tracing is enabled. 7332 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 7333 [ 0.000000] Trampoline variant of Tasks RCU enabled. 7334 [ 0.000000] Rude variant of Tasks RCU enabled. 7335 [ 0.000000] Tracing variant of Tasks RCU enabled. 7336 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 7337 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 7338 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 7339 [ 0.000000] GIC: Using split EOI/Deactivate mode 7340 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 7341 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 7342 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 7343 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 7344 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 7345 [ 0.000241] Console: colour dummy device 80x25 7346 [ 0.000274] printk: console [tty1] enabled 7347 [ 0.000362] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 7348 [ 0.000374] pid_max: default: 32768 minimum: 301 7349 [ 0.000458] LSM: Security Framework initializing 7350 [ 0.000484] Yama: becoming mindful. 7351 [ 0.000577] AppArmor: AppArmor initialized 7352 [ 0.000625] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 7353 [ 0.000644] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 7354 [ 0.002629] rcu: Hierarchical SRCU implementation. 7355 [ 0.004985] EFI services will not be available. 7356 [ 0.005404] smp: Bringing up secondary CPUs ... 7357 [ 0.006077] Detected VIPT I-cache on CPU1 7358 [ 0.006140] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 7359 [ 0.007338] CPU features: detected: ARM erratum 858921 7360 [ 0.007346] CPU features: detected: Spectre-v2 7361 [ 0.007350] CPU features: detected: Spectre-v4 7362 [ 0.007356] Detected VIPT I-cache on CPU2 7363 [ 0.007382] arch_timer: Enabling local workaround for ARM erratum 858921 7364 [ 0.007396] arch_timer: CPU2: Trapping CNTVCT access 7365 [ 0.007410] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 7366 [ 0.008115] Detected VIPT I-cache on CPU3 7367 [ 0.008131] arch_timer: Enabling local workaround for ARM erratum 858921 7368 [ 0.008138] arch_timer: CPU3: Trapping CNTVCT access 7369 [ 0.008146] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 7370 [ 0.008777] Detected VIPT I-cache on CPU4 7371 [ 0.008793] arch_timer: Enabling local workaround for ARM erratum 858921 7372 [ 0.008800] arch_timer: CPU4: Trapping CNTVCT access 7373 [ 0.008808] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 7374 [ 0.009424] Detected VIPT I-cache on CPU5 7375 [ 0.009440] arch_timer: Enabling local workaround for ARM erratum 858921 7376 [ 0.009447] arch_timer: CPU5: Trapping CNTVCT access 7377 [ 0.009454] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 7378 [ 0.009535] smp: Brought up 1 node, 6 CPUs 7379 [ 0.009552] SMP: Total of 6 processors activated. 7380 [ 0.009561] CPU features: detected: 32-bit EL0 Support 7381 [ 0.009567] CPU features: detected: CRC32 instructions 7382 [ 0.009572] CPU features: detected: 32-bit EL1 Support 7383 [ 0.020823] CPU: All CPU(s) started at EL2 7384 [ 0.020874] alternatives: patching kernel code 7385 [ 0.022814] devtmpfs: initialized 7386 [ 0.030481] Registered cp15_barrier emulation handler 7387 [ 0.030495] Registered setend emulation handler 7388 [ 0.030634] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 7389 [ 0.030674] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 7390 [ 0.044535] pinctrl core: initialized pinctrl subsystem 7391 [ 0.045251] DMI not present or invalid. 7392 [ 0.045620] NET: Registered protocol family 16 7393 [ 0.047149] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 7394 [ 0.047422] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 7395 [ 0.047664] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 7396 [ 0.047703] audit: initializing netlink subsys (disabled) 7397 [ 0.047805] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 7398 [ 0.048990] thermal_sys: Registered thermal governor 'fair_share' 7399 [ 0.048997] thermal_sys: Registered thermal governor 'bang_bang' 7400 [ 0.049001] thermal_sys: Registered thermal governor 'step_wise' 7401 [ 0.049005] thermal_sys: Registered thermal governor 'user_space' 7402 [ 0.049420] cpuidle: using governor menu 7403 [ 0.049774] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 7404 [ 0.049896] ASID allocator initialised with 65536 entries 7405 [ 0.050804] Serial: AMBA PL011 UART driver 7406 [ 0.085662] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 7407 [ 0.085672] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 7408 [ 0.085677] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 7409 [ 0.085681] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 7410 [ 0.087361] cryptd: max_cpu_qlen set to 1000 7411 [ 0.156119] raid6: neonx8 gen() 2786 MB/s 7412 [ 0.224183] raid6: neonx8 xor() 2042 MB/s 7413 [ 0.292285] raid6: neonx4 gen() 2992 MB/s 7414 [ 0.360495] raid6: neonx4 xor() 1586 MB/s 7415 [ 0.428462] raid6: neonx2 gen() 2080 MB/s 7416 [ 0.496509] raid6: neonx2 xor() 2206 MB/s 7417 [ 0.564574] raid6: neonx1 gen() 2010 MB/s 7418 [ 0.632639] raid6: neonx1 xor() 1718 MB/s 7419 [ 0.700713] raid6: int64x8 gen() 1377 MB/s 7420 [ 0.768784] raid6: int64x8 xor() 736 MB/s 7421 [ 0.836855] raid6: int64x4 gen() 1463 MB/s 7422 [ 0.904906] raid6: int64x4 xor() 733 MB/s 7423 [ 0.972974] raid6: int64x2 gen() 1362 MB/s 7424 [ 1.041044] raid6: int64x2 xor() 619 MB/s 7425 [ 1.109114] raid6: int64x1 gen() 1120 MB/s 7426 [ 1.177178] raid6: int64x1 xor() 462 MB/s 7427 [ 1.177182] raid6: using algorithm neonx4 gen() 2992 MB/s 7428 [ 1.177185] raid6: .... xor() 1586 MB/s, rmw enabled 7429 [ 1.177188] raid6: using neon recovery algorithm 7430 [ 1.177620] ACPI: Interpreter disabled. 7431 [ 1.178381] 5V: supplied by 12V 7432 [ 1.179285] VDDAO_3V3: supplied by 12V 7433 [ 1.179748] iommu: Default domain type: Translated 7434 [ 1.179879] vgaarb: loaded 7435 [ 1.180641] SCSI subsystem initialized 7436 [ 1.180953] usbcore: registered new interface driver usbfs 7437 [ 1.181004] usbcore: registered new interface driver hub 7438 [ 1.181042] usbcore: registered new device driver usb 7439 [ 1.181303] pps_core: LinuxPPS API ver. 1 registered 7440 [ 1.181308] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 7441 [ 1.181333] PTP clock support registered 7442 [ 1.181526] EDAC MC: Ver: 3.0.0 7443 [ 1.182875] NetLabel: Initializing 7444 [ 1.182882] NetLabel: domain hash size = 128 7445 [ 1.182885] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 7446 [ 1.182928] NetLabel: unlabeled traffic allowed by default 7447 [ 1.183371] clocksource: Switched to clocksource arch_sys_counter 7448 [ 1.183574] VFS: Disk quotas dquot_6.6.0 7449 [ 1.183617] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 7450 [ 1.183975] AppArmor: AppArmor Filesystem Enabled 7451 [ 1.184019] pnp: PnP ACPI: disabled 7452 [ 1.189625] NET: Registered protocol family 2 7453 [ 1.190085] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 7454 [ 1.190190] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 7455 [ 1.190446] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 7456 [ 1.190633] TCP: Hash tables configured (established 32768 bind 32768) 7457 [ 1.190787] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 7458 [ 1.190854] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 7459 [ 1.190901] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 7460 [ 1.191047] NET: Registered protocol family 1 7461 [ 1.191066] PCI: CLS 0 bytes, default 64 7462 [ 1.191190] Trying to unpack rootfs image as initramfs... 7463 [ 1.726875] Freeing initrd memory: 13544K 7464 [ 1.727781] kvm [1]: IPA Size Limit: 40 bits 7465 [ 1.728495] kvm [1]: vgic interrupt IRQ9 7466 [ 1.728629] kvm [1]: Hyp mode initialized successfully 7467 [ 1.732519] Initialise system trusted keyrings 7468 [ 1.732554] Key type blacklist registered 7469 [ 1.732653] workingset: timestamp_bits=44 max_order=20 bucket_order=0 7470 [ 1.735862] zbud: loaded 7471 [ 1.736833] squashfs: version 4.0 (2009/01/31) Phillip Lougher 7472 [ 1.737287] fuse: init (API version 7.32) 7473 [ 1.738066] integrity: Platform Keyring initialized 7474 [ 1.765644] xor: measuring software checksum speed 7475 [ 1.768489] 8regs : 3473 MB/sec 7476 [ 1.770938] 32regs : 4022 MB/sec 7477 [ 1.773593] arm64_neon : 3719 MB/sec 7478 [ 1.773596] xor: using function: 32regs (4022 MB/sec) 7479 [ 1.773602] Key type asymmetric registered 7480 [ 1.773606] Asymmetric key parser 'x509' registered 7481 [ 1.773639] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 7482 [ 1.773769] io scheduler mq-deadline registered 7483 [ 1.773774] io scheduler kyber registered 7484 [ 1.773852] io scheduler bfq registered 7485 [ 1.776340] gpio-447 (usb-hub-reset): hogged as output/high 7486 [ 1.779139] EINJ: ACPI disabled. 7487 [ 1.785338] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 7488 [ 1.786697] VCC_3V3: supplied by VDDAO_3V3 7489 [ 1.786752] FLASH_1V8: supplied by VCC_3V3 7490 [ 1.786782] VCC_1V8: supplied by VCC_3V3 7491 [ 1.786808] VDDAO_1V8: supplied by VDDAO_3V3 7492 [ 1.786835] VDDCPU_A: supplied by regulator-dummy 7493 [ 1.787201] VDDCPU_B: supplied by regulator-dummy 7494 [ 1.787896] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 7495 [ 1.790096] Serial: AMBA driver 7496 [ 1.790390] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 7497 [ 1.790484] printk: console [ttyAML0] enabled 7498 [ 1.791009] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 7499 [ 1.796638] loop: module loaded 7500 [ 1.798469] libphy: Fixed MDIO Bus: probed 7501 [ 1.799762] tun: Universal TUN/TAP device driver, 1.6 7502 [ 1.800372] thunder_xcv, ver 1.0 7503 [ 1.800399] thunder_bgx, ver 1.0 7504 [ 1.800425] nicpf, ver 1.0 7505 [ 1.800864] e1000e: Intel(R) PRO/1000 Network Driver 7506 [ 1.800868] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 7507 [ 1.800907] igb: Intel(R) Gigabit Ethernet Network Driver 7508 [ 1.800910] igb: Copyright (c) 2007-2014 Intel Corporation. 7509 [ 1.800944] igbvf: Intel(R) Gigabit Virtual Function Network Driver 7510 [ 1.800947] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 7511 [ 1.801074] sky2: driver version 1.30 7512 [ 1.801430] VFIO - User Level meta-driver version: 0.3 7513 [ 1.802789] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 7514 [ 1.802813] ehci-pci: EHCI PCI platform driver 7515 [ 1.802850] ehci-platform: EHCI generic platform driver 7516 [ 1.802972] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 7517 [ 1.802982] ohci-pci: OHCI PCI platform driver 7518 [ 1.803013] ohci-platform: OHCI generic platform driver 7519 [ 1.803466] usbcore: registered new interface driver usb-storage 7520 [ 1.804696] mousedev: PS/2 mouse device common for all mice 7521 [ 1.805084] i2c /dev entries driver 7522 [ 1.810088] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 7523 [ 1.810747] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 7524 [ 1.811448] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 7525 [ 1.812057] sdhci: Secure Digital Host Controller Interface driver 7526 [ 1.812062] sdhci: Copyright(c) Pierre Ossman 7527 [ 1.812159] Synopsys Designware Multimedia Card Interface Driver 7528 [ 1.812572] sdhci-pltfm: SDHCI platform and OF driver helper 7529 [ 1.813011] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 7530 [ 1.813417] ledtrig-cpu: registered to indicate activity on CPUs 7531 [ 1.813841] meson-sm: secure-monitor enabled 7532 [ 1.814035] hid: raw HID events driver (C) Jiri Kosina 7533 [ 1.814143] usbcore: registered new interface driver usbhid 7534 [ 1.814146] usbhid: USB HID core driver 7535 [ 1.815143] NET: Registered protocol family 10 7536 [ 1.815630] Segment Routing with IPv6 7537 [ 1.815659] NET: Registered protocol family 17 7538 [ 1.815712] 8021q: 802.1Q VLAN Support v1.8 7539 [ 1.815734] Key type dns_resolver registered 7540 [ 1.816033] registered taskstats version 1 7541 [ 1.816038] Loading compiled-in X.509 certificates 7542 [ 1.817785] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 7543 [ 1.819753] zswap: loaded using pool zstd/z3fold 7544 [ 1.819935] Key type ._fscrypt registered 7545 [ 1.819937] Key type .fscrypt registered 7546 [ 1.819939] Key type fscrypt-provisioning registered 7547 [ 1.821014] Btrfs loaded, crc32c=crc32c-generic 7548 [ 1.827199] Key type encrypted registered 7549 [ 1.827211] AppArmor: AppArmor sha1 policy hashing enabled 7550 [ 1.833678] HUB_5V: supplied by 5V 7551 [ 1.833866] USB_PWR_EN: supplied by 5V 7552 [ 1.835537] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 7553 [ 1.835545] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 7554 [ 1.838220] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 7555 [ 1.838264] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 7556 [ 1.838369] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 7557 [ 1.838947] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 7558 [ 1.838958] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 7559 [ 1.839043] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 7560 [ 1.839066] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 7561 [ 1.839189] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 7562 [ 1.839192] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 7563 [ 1.839195] usb usb1: Product: xHCI Host Controller 7564 [ 1.839197] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 7565 [ 1.839199] usb usb1: SerialNumber: xhci-hcd.0.auto 7566 [ 1.839541] hub 1-0:1.0: USB hub found 7567 [ 1.839561] hub 1-0:1.0: 2 ports detected 7568 [ 1.839705] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 7569 [ 1.839713] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 7570 [ 1.839720] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 7571 [ 1.839743] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 7572 [ 1.839787] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 7573 [ 1.839790] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 7574 [ 1.839793] usb usb2: Product: xHCI Host Controller 7575 [ 1.839796] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 7576 [ 1.839798] usb usb2: SerialNumber: xhci-hcd.0.auto 7577 [ 1.839988] hub 2-0:1.0: USB hub found 7578 [ 1.839999] hub 2-0:1.0: 1 port detected 7579 [ 1.841098] meson-gx-mmc ffe05000.sd: Got CD GPIO 7580 [ 1.868424] Freeing unused kernel memory: 3328K 7581 [ 1.903438] Run /init as init process 7582 [ 1.903442] with arguments: 7583 [ 1.903444] /init 7584 [ 1.903446] with environment: 7585 [ 1.903448] HOME=/ 7586 [ 1.903450] TERM=linux 7587 [ 1.903451] hdmimode=custombuilt 7588 [ 1.903453] cvbsmode=576cvbs 7589 [ 1.903454] max_freq_a53=1896 7590 [ 1.903456] max_freq_a73=1800 7591 [ 1.903457] voutmode=hdmi 7592 [ 1.903459] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 7593 [ 1.903460] disablehpd=false 7594 [ 1.903461] cvbscable= 7595 [ 1.903463] overscan=100 7596 [ 1.934835] mmc0: new ultra high speed SDR25 SDHC card at address b368 7597 [ 1.935742] mmcblk0: mmc0:b368 CBADS 30.0 GiB 7598 [ 1.937746] mmcblk0: p1 7599 [ 2.062994] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 7600 [ 2.063002] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 7601 [ 2.063112] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 7602 [ 2.063580] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 7603 [ 2.063587] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 7604 [ 2.063590] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 7605 [ 2.063592] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 7606 [ 2.063595] meson8b-dwmac ff3f0000.ethernet: COE Type 2 7607 [ 2.063597] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 7608 [ 2.063598] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 7609 [ 2.063660] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 7610 [ 2.063662] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 7611 [ 2.063665] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 7612 [ 2.063868] libphy: stmmac: probed 7613 [ 2.067816] libphy: mdio_mux: probed 7614 [ 2.079029] meson-vrtc ff8000a8.rtc: registered as rtc1 7615 [ 2.095750] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 7616 [ 2.096215] rtc-pcf8563 1-0051: registered as rtc0 7617 [ 2.097403] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 7618 [ 2.097411] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 7619 [ 2.101899] random: fast init done 7620 [ 2.179382] usb 1-1: new high-speed USB device number 2 using xhci-hcd 7621 [ 2.271831] libphy: mdio_mux: probed 7622 [ 2.329757] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 7623 [ 2.329764] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 7624 [ 2.329767] usb 1-1: Product: USB2.1 Hub 7625 [ 2.329769] usb 1-1: Manufacturer: GenesysLogic 7626 [ 2.383935] hub 1-1:1.0: USB hub found 7627 [ 2.384156] hub 1-1:1.0: 4 ports detected 7628 [ 2.455477] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 7629 [ 2.477958] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 7630 [ 2.477961] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 7631 [ 2.477964] usb 2-1: Product: USB3.1 Hub 7632 [ 2.477967] usb 2-1: Manufacturer: GenesysLogic 7633 [ 2.495920] hub 2-1:1.0: USB hub found 7634 [ 2.496203] hub 2-1:1.0: 4 ports detected 7635 [ 2.603371] usb 1-2: new high-speed USB device number 3 using xhci-hcd 7636 [ 2.752394] usb 1-2: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 7637 [ 2.752398] usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0 7638 [ 2.752400] usb 1-2: Product: USB2.0 Hub 7639 [ 2.799979] hub 1-2:1.0: USB hub found 7640 [ 2.800213] hub 1-2:1.0: 4 ports detected 7641 [ 3.087378] usb 1-2.3: new high-speed USB device number 4 using xhci-hcd 7642 [ 3.108038] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 7643 [ 3.188479] usb 1-2.3: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 7644 [ 3.188486] usb 1-2.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0 7645 [ 3.188489] usb 1-2.3: Product: USB2.0 Hub 7646 [ 3.248032] hub 1-2.3:1.0: USB hub found 7647 [ 3.248271] hub 1-2.3:1.0: 4 ports detected 7648 [ 3.327383] usb 1-2.4: new high-speed USB device number 5 using xhci-hcd 7649 [ 3.427840] usb 1-2.4: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 7650 [ 3.427847] usb 1-2.4: New USB device strings: Mfr=3, Product=1, SerialNumber=2 7651 [ 3.427850] usb 1-2.4: Product: PCTV 292e 7652 [ 3.427853] usb 1-2.4: Manufacturer: PCTV 7653 [ 3.427855] usb 1-2.4: SerialNumber: 0011356964 7654 [ 3.911533] systemd[1]: System time before build time, advancing clock. 7655 [ 3.926319] systemd[1]: Inserted module 'autofs4' 7656 [ 3.972806] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 7657 [ 3.973035] systemd[1]: Detected architecture arm64. 7658 [ 3.997873] systemd[1]: Set hostname to <odroidn2>. 7659 [ 4.324781] random: systemd: uninitialized urandom read (16 bytes read) 7660 [ 4.328074] random: systemd: uninitialized urandom read (16 bytes read) 7661 [ 4.328105] systemd[1]: Reached target Swap. 7662 [ 4.328345] random: systemd: uninitialized urandom read (16 bytes read) 7663 [ 4.329194] systemd[1]: Created slice User and Session Slice. 7664 [ 4.329574] systemd[1]: Listening on Journal Socket. 7665 [ 4.329695] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 7666 [ 4.329836] systemd[1]: Listening on fsck to fsckd communication Socket. 7667 [ 4.330050] systemd[1]: Listening on udev Control Socket. 7668 [ 4.330134] systemd[1]: Reached target System Time Synchronized. 7669 [ 4.418179] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 7670 [ 4.878088] zram: Added device: zram0 7671 [ 4.878295] zram: Added device: zram1 7672 [ 4.878469] zram: Added device: zram2 7673 [ 5.032348] pwm-gpio pwmgpio: 1 gpio pwms loaded 7674 [ 5.070667] zram0: detected capacity change from 0 to 1904500736 7675 [ 5.178878] mc: Linux media interface: v0.10 7676 [ 5.209317] panfrost ffe40000.gpu: clock rate = 24000000 7677 [ 5.209378] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 7678 [ 5.209969] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 7679 [ 5.209976] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 7680 [ 5.209980] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 7681 [ 5.209982] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 7682 [ 5.225725] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 7683 [ 5.238255] videodev: Linux video capture interface: v2.00 7684 [ 5.249186] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 7685 [ 5.253819] meson-drm ff900000.vpu: Queued 2 outputs on vpu 7686 [ 5.303434] Registered IR keymap rc-odroid 7687 [ 5.305177] meson-drm ff900000.vpu: CVBS Output connector not available 7688 [ 5.325014] IR NEC protocol handler initialized 7689 [ 5.331615] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 7690 [ 5.334087] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 7691 [ 5.334645] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 7692 [ 5.335274] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 7693 [ 5.359457] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 7694 [ 5.359550] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 7695 [ 5.359615] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 7696 [ 5.361487] meson-ir ff808000.ir: receiver initialized 7697 [ 5.396466] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 7698 [ 5.414433] em28xx 1-2.4:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 7699 [ 5.414441] em28xx 1-2.4:1.0: DVB interface 0 found: isoc 7700 [ 5.471438] em28xx 1-2.4:1.0: chip ID is em28178 7701 [ 5.623528] Console: switching to colour frame buffer device 240x67 7702 [ 5.650081] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 7703 [ 5.682389] axg-sound-card sound: ASoC: no DMI vendor name! 7704 [ 6.167383] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 7705 [ 6.233636] zram1: detected capacity change from 0 to 52428800 7706 [ 7.493570] em28xx 1-2.4:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 7707 [ 7.493574] em28xx 1-2.4:1.0: EEPROM info: 7708 [ 7.493577] em28xx 1-2.4:1.0: microcode start address = 0x0004, boot configuration = 0x01 7709 [ 7.499690] em28xx 1-2.4:1.0: AC97 audio (5 sample rates) 7710 [ 7.499693] em28xx 1-2.4:1.0: 500mA max power 7711 [ 7.499696] em28xx 1-2.4:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 7712 [ 7.559369] em28xx 1-2.4:1.0: Identified as PCTV tripleStick (292e) (card=94) 7713 [ 7.559373] em28xx 1-2.4:1.0: dvb set to isoc mode. 7714 [ 7.559574] usbcore: registered new interface driver em28xx 7715 [ 7.585707] em28xx 1-2.4:1.0: Binding DVB extension 7716 [ 7.599073] i2c i2c-4: Added multiplexed i2c bus 5 7717 [ 7.599081] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 7718 [ 7.599084] si2168 4-0064: firmware version: B 4.0.2 7719 [ 7.607574] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 7720 [ 7.607604] dvbdev: DVB: registering new adapter (1-2.4:1.0) 7721 [ 7.607611] em28xx 1-2.4:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 7722 [ 7.607617] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 7723 [ 7.608262] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 7724 [ 7.631876] em28xx 1-2.4:1.0: DVB extension successfully initialized 7725 [ 7.631884] em28xx: Registered (Em28xx dvb Extension) extension 7726 [ 7.638753] em28xx 1-2.4:1.0: Registering input extension 7727 [ 7.671370] Registered IR keymap rc-pinnacle-pctv-hd 7728 [ 7.671548] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.0/rc/rc1 7729 [ 7.671621] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 7730 [ 7.671682] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.0/rc/rc1/input1 7731 [ 7.671749] em28xx 1-2.4:1.0: Input extension successfully initialized 7732 [ 7.671752] em28xx: Registered (Em28xx Input Extension) extension 7733 [ 8.317860] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 7734 [ 8.317881] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 7735 [ 9.331622] systemd[1]: Started Armbian memory supported logging. 7736 [ 9.333967] systemd[1]: Starting Journal Service... 7737 [ 9.401266] systemd[1]: Started Journal Service. 7738 [ 9.426296] systemd-journald[1843]: Received request to flush runtime journal from PID 1 7739 7740 ### armbian-release: 7741 7742 # PLEASE DO NOT EDIT THIS FILE 7743 BOARD=odroidn2 7744 BOARD_NAME="Odroid N2" 7745 BOARDFAMILY=meson-g12b 7746 BUILD_REPOSITORY_URL=https://github.com/armbian/build 7747 BUILD_REPOSITORY_COMMIT=5f03d652 7748 DISTRIBUTION_CODENAME=buster 7749 DISTRIBUTION_STATUS=supported 7750 VERSION=21.02.1 7751 LINUXFAMILY=meson64 7752 BRANCH=current 7753 ARCH=arm64 7754 IMAGE_TYPE=stable 7755 BOARD_TYPE=conf 7756 INITRD_ARCH=arm64 7757 KERNEL_IMAGE_TYPE=Image 7758 7759 ### boot environment: 7760 7761 verbosity=1 7762 console=both 7763 overlay_prefix=meson 7764 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 7765 rootfstype=ext4 7766 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 7767 7768 ### lsusb: 7769 7770 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 7771 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 7772 Bus 001 Device 005: ID 2013:025f PCTV Systems 7773 Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. Hub 7774 Bus 001 Device 003: ID 05e3:0608 Genesys Logic, Inc. Hub 7775 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 7776 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 7777 7778 ### lscpu: 7779 7780 Architecture: aarch64 7781 Byte Order: Little Endian 7782 CPU(s): 6 7783 On-line CPU(s) list: 0-5 7784 Thread(s) per core: 1 7785 Core(s) per socket: 3 7786 Socket(s): 2 7787 NUMA node(s): 1 7788 Vendor ID: ARM 7789 Model: 4 7790 Model name: Cortex-A53 7791 Stepping: r0p4 7792 CPU max MHz: 1992.0000 7793 CPU min MHz: 100.0000 7794 BogoMIPS: 48.00 7795 L1d cache: unknown size 7796 L1i cache: unknown size 7797 L2 cache: unknown size 7798 NUMA node0 CPU(s): 0-5 7799 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7800 7801 ### cpuinfo: 7802 7803 processor : 0 7804 BogoMIPS : 48.00 7805 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7806 CPU implementer : 0x41 7807 CPU architecture: 8 7808 CPU variant : 0x0 7809 CPU part : 0xd03 7810 CPU revision : 4 7811 7812 processor : 1 7813 BogoMIPS : 48.00 7814 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7815 CPU implementer : 0x41 7816 CPU architecture: 8 7817 CPU variant : 0x0 7818 CPU part : 0xd03 7819 CPU revision : 4 7820 7821 processor : 2 7822 BogoMIPS : 48.00 7823 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7824 CPU implementer : 0x41 7825 CPU architecture: 8 7826 CPU variant : 0x0 7827 CPU part : 0xd09 7828 CPU revision : 2 7829 7830 processor : 3 7831 BogoMIPS : 48.00 7832 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7833 CPU implementer : 0x41 7834 CPU architecture: 8 7835 CPU variant : 0x0 7836 CPU part : 0xd09 7837 CPU revision : 2 7838 7839 processor : 4 7840 BogoMIPS : 48.00 7841 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7842 CPU implementer : 0x41 7843 CPU architecture: 8 7844 CPU variant : 0x0 7845 CPU part : 0xd09 7846 CPU revision : 2 7847 7848 processor : 5 7849 BogoMIPS : 48.00 7850 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 7851 CPU implementer : 0x41 7852 CPU architecture: 8 7853 CPU variant : 0x0 7854 CPU part : 0xd09 7855 CPU revision : 2 7856 7857 7858 ### meminfo: 7859 7860 MemTotal: 3719728 kB 7861 MemFree: 3405160 kB 7862 MemAvailable: 3358320 kB 7863 Buffers: 11568 kB 7864 Cached: 43268 kB 7865 SwapCached: 0 kB 7866 Active: 28840 kB 7867 Inactive: 175020 kB 7868 Active(anon): 108 kB 7869 Inactive(anon): 153688 kB 7870 Active(file): 28732 kB 7871 Inactive(file): 21332 kB 7872 Unevictable: 0 kB 7873 Mlocked: 0 kB 7874 SwapTotal: 1859860 kB 7875 SwapFree: 1859860 kB 7876 Dirty: 3560 kB 7877 Writeback: 0 kB 7878 AnonPages: 148736 kB 7879 Mapped: 13328 kB 7880 Shmem: 4916 kB 7881 KReclaimable: 12972 kB 7882 Slab: 40548 kB 7883 SReclaimable: 12972 kB 7884 SUnreclaim: 27576 kB 7885 KernelStack: 2528 kB 7886 PageTables: 5344 kB 7887 NFS_Unstable: 0 kB 7888 Bounce: 0 kB 7889 WritebackTmp: 0 kB 7890 CommitLimit: 3719724 kB 7891 Committed_AS: 4241156 kB 7892 VmallocTotal: 135290159040 kB 7893 VmallocUsed: 33152 kB 7894 VmallocChunk: 0 kB 7895 Percpu: 1368 kB 7896 HardwareCorrupted: 0 kB 7897 AnonHugePages: 0 kB 7898 ShmemHugePages: 0 kB 7899 ShmemPmdMapped: 0 kB 7900 FileHugePages: 0 kB 7901 FilePmdMapped: 0 kB 7902 CmaTotal: 917504 kB 7903 CmaFree: 901724 kB 7904 HugePages_Total: 0 7905 HugePages_Free: 0 7906 HugePages_Rsvd: 0 7907 HugePages_Surp: 0 7908 Hugepagesize: 2048 kB 7909 Hugetlb: 0 kB 7910 7911 ### virtual memory: 7912 7913 vm.admin_reserve_kbytes = 8192 7914 vm.block_dump = 0 7915 vm.compaction_proactiveness = 20 7916 vm.compact_unevictable_allowed = 1 7917 vm.dirty_background_bytes = 0 7918 vm.dirty_background_ratio = 10 7919 vm.dirty_bytes = 0 7920 vm.dirty_expire_centisecs = 3000 7921 vm.dirty_ratio = 20 7922 vm.dirtytime_expire_seconds = 43200 7923 vm.dirty_writeback_centisecs = 500 7924 vm.extfrag_threshold = 500 7925 vm.hugetlb_shm_group = 0 7926 vm.laptop_mode = 0 7927 vm.legacy_va_layout = 0 7928 vm.lowmem_reserve_ratio = 256 256 32 0 7929 vm.max_map_count = 65530 7930 vm.memory_failure_early_kill = 0 7931 vm.memory_failure_recovery = 1 7932 vm.min_free_kbytes = 45056 7933 vm.min_slab_ratio = 5 7934 vm.min_unmapped_ratio = 1 7935 vm.mmap_min_addr = 4096 7936 vm.mmap_rnd_bits = 18 7937 vm.mmap_rnd_compat_bits = 11 7938 vm.nr_hugepages = 0 7939 vm.nr_hugepages_mempolicy = 0 7940 vm.nr_overcommit_hugepages = 0 7941 vm.numa_stat = 1 7942 vm.numa_zonelist_order = Node 7943 vm.oom_dump_tasks = 1 7944 vm.oom_kill_allocating_task = 0 7945 vm.overcommit_kbytes = 0 7946 vm.overcommit_memory = 0 7947 vm.overcommit_ratio = 50 7948 vm.page-cluster = 0 7949 vm.page_lock_unfairness = 5 7950 vm.panic_on_oom = 0 7951 vm.percpu_pagelist_fraction = 0 7952 vm.stat_interval = 1 7953 vm.swappiness = 100 7954 vm.user_reserve_kbytes = 115012 7955 vm.vfs_cache_pressure = 100 7956 vm.watermark_boost_factor = 15000 7957 vm.watermark_scale_factor = 10 7958 vm.zone_reclaim_mode = 0 7959 7960 ### ip addr: 7961 7962 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 7963 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 7964 inet XXX.XXX.0.1/8 scope host lo 7965 valid_lft forever preferred_lft forever 7966 inet6 ::1/128 scope host 7967 valid_lft forever preferred_lft forever 7968 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 7969 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 7970 7971 ### partitions: 7972 7973 major minor #blocks name 7974 7975 179 0 31464960 mmcblk0 7976 179 1 31146208 mmcblk0p1 7977 252 0 1859864 zram0 7978 252 1 51200 zram1 7979 7980 ### df: 7981 7982 udev 1.4G 0 1.4G 0% /dev 7983 tmpfs 364M 4.9M 359M 2% /run 7984 /dev/mmcblk0p1 30G 1.7G 28G 6% / 7985 tmpfs 1.8G 0 1.8G 0% /dev/shm 7986 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 7987 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 7988 tmpfs 1.8G 0 1.8G 0% /tmp 7989 /dev/zram1 49M 3.5M 42M 8% /var/log 7990 7991 ### lsblk: 7992 7993 NAME FSTYPE SIZE MOUNTPOINT UUID 7994 mmcblk0 30G 7995 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 7996 zram1 50M /var/log 7997 7998 ### zramctl: 7999 8000 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 8001 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 8002 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 8003 8004 ### mtab: 8005 8006 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 8007 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 8008 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 8009 8010 ### mmc0:b368 info: 8011 8012 fwrev: 0x0 8013 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 8014 cid: 6f0303434241445310aa002b4d013b00 8015 rca: 0xb368 8016 csd: 400e005a5b590000f00e7f800a404000 8017 manfid: 0x00006f 8018 ocr: 0x00200000 8019 preferred_erase_size: 2097152 8020 type: SD 8021 hwrev: 0x1 8022 date: 11/2019 8023 dsr: 0x404 8024 erase_size: 512 8025 oemid: 0x0303 8026 serial: 0xaa002b4d 8027 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8028 scr: 02b5800300000000 8029 name: CBADS 8030 8031 ### Boot system health: 8032 8033 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 8034 15:44:06: 1908/1992MHz 2.82 23% 10% 5% 0% 6% 0% 33.4°C 0/11 8035 15:44:07: 1908/1992MHz 2.82 47% 27% 8% 0% 9% 0% 33.5°C 0/11 8036 15:44:07: 1908/1992MHz 2.82 78% 24% 1% 0% 51% 0% 31.6°C 0/11 8037 15:44:07: 1908/1992MHz 2.82 51% 7% 4% 0% 39% 0% 31.5°C 0/11 8038 15:44:08: 1908/1992MHz 2.82 65% 10% 5% 0% 46% 1% 32.2°C 0/11 8039 8040 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 8041 8042 ### Activated Armbian ramlog partition with zstd compression 8043 8044 Sun 14 Feb 2021 03:45:32 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 8045 8046 ### dmesg: 8047 8048 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 8049 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 8050 [ 0.000000] Machine model: Hardkernel ODROID-N2 8051 [ 0.000000] efi: UEFI not found. 8052 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 8053 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 8054 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 8055 [ 0.000000] NUMA: No NUMA configuration found 8056 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 8057 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 8058 [ 0.000000] Zone ranges: 8059 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 8060 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 8061 [ 0.000000] Normal empty 8062 [ 0.000000] Movable zone start for each node 8063 [ 0.000000] Early memory node ranges 8064 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 8065 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 8066 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 8067 [ 0.000000] On node 0 totalpages: 972032 8068 [ 0.000000] DMA zone: 4096 pages used for memmap 8069 [ 0.000000] DMA zone: 0 pages reserved 8070 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 8071 [ 0.000000] DMA32 zone: 11104 pages used for memmap 8072 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 8073 [ 0.000000] psci: probing for conduit method from DT. 8074 [ 0.000000] psci: PSCIv1.0 detected in firmware. 8075 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 8076 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 8077 [ 0.000000] psci: SMC Calling Convention v1.1 8078 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 8079 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 8080 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 8081 [ 0.000000] Detected VIPT I-cache on CPU0 8082 [ 0.000000] CPU features: detected: ARM erratum 845719 8083 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 8084 [ 0.000000] Policy zone: DMA32 8085 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 8086 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 8087 Please use sysfs to set IO scheduler for individual devices. 8088 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 8089 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 8090 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 8091 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 8092 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 8093 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 8094 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 8095 [ 0.000000] rcu: RCU event tracing is enabled. 8096 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 8097 [ 0.000000] Trampoline variant of Tasks RCU enabled. 8098 [ 0.000000] Rude variant of Tasks RCU enabled. 8099 [ 0.000000] Tracing variant of Tasks RCU enabled. 8100 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 8101 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 8102 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 8103 [ 0.000000] GIC: Using split EOI/Deactivate mode 8104 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 8105 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 8106 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 8107 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 8108 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 8109 [ 0.000239] Console: colour dummy device 80x25 8110 [ 0.000273] printk: console [tty1] enabled 8111 [ 0.000359] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 8112 [ 0.000371] pid_max: default: 32768 minimum: 301 8113 [ 0.000456] LSM: Security Framework initializing 8114 [ 0.000482] Yama: becoming mindful. 8115 [ 0.000574] AppArmor: AppArmor initialized 8116 [ 0.000623] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 8117 [ 0.000641] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 8118 [ 0.002631] rcu: Hierarchical SRCU implementation. 8119 [ 0.004981] EFI services will not be available. 8120 [ 0.005405] smp: Bringing up secondary CPUs ... 8121 [ 0.006077] Detected VIPT I-cache on CPU1 8122 [ 0.006138] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 8123 [ 0.007334] CPU features: detected: ARM erratum 858921 8124 [ 0.007342] CPU features: detected: Spectre-v2 8125 [ 0.007346] CPU features: detected: Spectre-v4 8126 [ 0.007353] Detected VIPT I-cache on CPU2 8127 [ 0.007379] arch_timer: Enabling local workaround for ARM erratum 858921 8128 [ 0.007393] arch_timer: CPU2: Trapping CNTVCT access 8129 [ 0.007407] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 8130 [ 0.008114] Detected VIPT I-cache on CPU3 8131 [ 0.008130] arch_timer: Enabling local workaround for ARM erratum 858921 8132 [ 0.008138] arch_timer: CPU3: Trapping CNTVCT access 8133 [ 0.008145] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 8134 [ 0.008770] Detected VIPT I-cache on CPU4 8135 [ 0.008788] arch_timer: Enabling local workaround for ARM erratum 858921 8136 [ 0.008794] arch_timer: CPU4: Trapping CNTVCT access 8137 [ 0.008802] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 8138 [ 0.009414] Detected VIPT I-cache on CPU5 8139 [ 0.009430] arch_timer: Enabling local workaround for ARM erratum 858921 8140 [ 0.009437] arch_timer: CPU5: Trapping CNTVCT access 8141 [ 0.009445] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 8142 [ 0.009525] smp: Brought up 1 node, 6 CPUs 8143 [ 0.009541] SMP: Total of 6 processors activated. 8144 [ 0.009549] CPU features: detected: 32-bit EL0 Support 8145 [ 0.009555] CPU features: detected: CRC32 instructions 8146 [ 0.009561] CPU features: detected: 32-bit EL1 Support 8147 [ 0.020801] CPU: All CPU(s) started at EL2 8148 [ 0.020850] alternatives: patching kernel code 8149 [ 0.022791] devtmpfs: initialized 8150 [ 0.030451] Registered cp15_barrier emulation handler 8151 [ 0.030464] Registered setend emulation handler 8152 [ 0.030599] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 8153 [ 0.030637] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 8154 [ 0.044579] pinctrl core: initialized pinctrl subsystem 8155 [ 0.045311] DMI not present or invalid. 8156 [ 0.045684] NET: Registered protocol family 16 8157 [ 0.047203] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 8158 [ 0.047477] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 8159 [ 0.047703] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 8160 [ 0.047742] audit: initializing netlink subsys (disabled) 8161 [ 0.047845] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 8162 [ 0.049187] thermal_sys: Registered thermal governor 'fair_share' 8163 [ 0.049193] thermal_sys: Registered thermal governor 'bang_bang' 8164 [ 0.049197] thermal_sys: Registered thermal governor 'step_wise' 8165 [ 0.049200] thermal_sys: Registered thermal governor 'user_space' 8166 [ 0.049615] cpuidle: using governor menu 8167 [ 0.049961] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 8168 [ 0.050080] ASID allocator initialised with 65536 entries 8169 [ 0.051000] Serial: AMBA PL011 UART driver 8170 [ 0.085825] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 8171 [ 0.085838] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 8172 [ 0.085844] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 8173 [ 0.085849] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 8174 [ 0.087365] cryptd: max_cpu_qlen set to 1000 8175 [ 0.156125] raid6: neonx8 gen() 2781 MB/s 8176 [ 0.224183] raid6: neonx8 xor() 2044 MB/s 8177 [ 0.292249] raid6: neonx4 gen() 3011 MB/s 8178 [ 0.360316] raid6: neonx4 xor() 2255 MB/s 8179 [ 0.428379] raid6: neonx2 gen() 2578 MB/s 8180 [ 0.496447] raid6: neonx2 xor() 2146 MB/s 8181 [ 0.564510] raid6: neonx1 gen() 2008 MB/s 8182 [ 0.632578] raid6: neonx1 xor() 1723 MB/s 8183 [ 0.700660] raid6: int64x8 gen() 1377 MB/s 8184 [ 0.768717] raid6: int64x8 xor() 735 MB/s 8185 [ 0.836803] raid6: int64x4 gen() 1463 MB/s 8186 [ 0.904855] raid6: int64x4 xor() 733 MB/s 8187 [ 0.972913] raid6: int64x2 gen() 1362 MB/s 8188 [ 1.040992] raid6: int64x2 xor() 619 MB/s 8189 [ 1.109040] raid6: int64x1 gen() 1120 MB/s 8190 [ 1.177130] raid6: int64x1 xor() 462 MB/s 8191 [ 1.177134] raid6: using algorithm neonx4 gen() 3011 MB/s 8192 [ 1.177137] raid6: .... xor() 2255 MB/s, rmw enabled 8193 [ 1.177141] raid6: using neon recovery algorithm 8194 [ 1.177565] ACPI: Interpreter disabled. 8195 [ 1.178351] 5V: supplied by 12V 8196 [ 1.179270] VDDAO_3V3: supplied by 12V 8197 [ 1.179741] iommu: Default domain type: Translated 8198 [ 1.179868] vgaarb: loaded 8199 [ 1.180595] SCSI subsystem initialized 8200 [ 1.180896] usbcore: registered new interface driver usbfs 8201 [ 1.181009] usbcore: registered new interface driver hub 8202 [ 1.181051] usbcore: registered new device driver usb 8203 [ 1.181305] pps_core: LinuxPPS API ver. 1 registered 8204 [ 1.181310] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 8205 [ 1.181343] PTP clock support registered 8206 [ 1.181534] EDAC MC: Ver: 3.0.0 8207 [ 1.182930] NetLabel: Initializing 8208 [ 1.182938] NetLabel: domain hash size = 128 8209 [ 1.182941] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 8210 [ 1.182980] NetLabel: unlabeled traffic allowed by default 8211 [ 1.183420] clocksource: Switched to clocksource arch_sys_counter 8212 [ 1.183625] VFS: Disk quotas dquot_6.6.0 8213 [ 1.183669] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 8214 [ 1.184033] AppArmor: AppArmor Filesystem Enabled 8215 [ 1.184084] pnp: PnP ACPI: disabled 8216 [ 1.189822] NET: Registered protocol family 2 8217 [ 1.190267] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 8218 [ 1.190371] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 8219 [ 1.190628] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 8220 [ 1.190815] TCP: Hash tables configured (established 32768 bind 32768) 8221 [ 1.190969] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 8222 [ 1.191032] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 8223 [ 1.191078] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 8224 [ 1.191215] NET: Registered protocol family 1 8225 [ 1.191236] PCI: CLS 0 bytes, default 64 8226 [ 1.191363] Trying to unpack rootfs image as initramfs... 8227 [ 1.726912] Freeing initrd memory: 13544K 8228 [ 1.727835] kvm [1]: IPA Size Limit: 40 bits 8229 [ 1.728545] kvm [1]: vgic interrupt IRQ9 8230 [ 1.728678] kvm [1]: Hyp mode initialized successfully 8231 [ 1.732578] Initialise system trusted keyrings 8232 [ 1.732612] Key type blacklist registered 8233 [ 1.732712] workingset: timestamp_bits=44 max_order=20 bucket_order=0 8234 [ 1.735918] zbud: loaded 8235 [ 1.736896] squashfs: version 4.0 (2009/01/31) Phillip Lougher 8236 [ 1.737362] fuse: init (API version 7.32) 8237 [ 1.738114] integrity: Platform Keyring initialized 8238 [ 1.765831] xor: measuring software checksum speed 8239 [ 1.768678] 8regs : 3473 MB/sec 8240 [ 1.771127] 32regs : 4021 MB/sec 8241 [ 1.773782] arm64_neon : 3719 MB/sec 8242 [ 1.773786] xor: using function: 32regs (4021 MB/sec) 8243 [ 1.773793] Key type asymmetric registered 8244 [ 1.773797] Asymmetric key parser 'x509' registered 8245 [ 1.773829] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 8246 [ 1.773926] io scheduler mq-deadline registered 8247 [ 1.773931] io scheduler kyber registered 8248 [ 1.774020] io scheduler bfq registered 8249 [ 1.776514] gpio-447 (usb-hub-reset): hogged as output/high 8250 [ 1.779388] EINJ: ACPI disabled. 8251 [ 1.785572] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 8252 [ 1.786936] VCC_3V3: supplied by VDDAO_3V3 8253 [ 1.786971] FLASH_1V8: supplied by VCC_3V3 8254 [ 1.787005] VCC_1V8: supplied by VCC_3V3 8255 [ 1.787033] VDDAO_1V8: supplied by VDDAO_3V3 8256 [ 1.787075] VDDCPU_A: supplied by regulator-dummy 8257 [ 1.787455] VDDCPU_B: supplied by regulator-dummy 8258 [ 1.788129] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 8259 [ 1.790337] Serial: AMBA driver 8260 [ 1.790621] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 8261 [ 1.790715] printk: console [ttyAML0] enabled 8262 [ 1.791237] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 8263 [ 1.796533] loop: module loaded 8264 [ 1.798470] libphy: Fixed MDIO Bus: probed 8265 [ 1.799677] tun: Universal TUN/TAP device driver, 1.6 8266 [ 1.800277] thunder_xcv, ver 1.0 8267 [ 1.800304] thunder_bgx, ver 1.0 8268 [ 1.800330] nicpf, ver 1.0 8269 [ 1.800741] e1000e: Intel(R) PRO/1000 Network Driver 8270 [ 1.800744] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 8271 [ 1.800783] igb: Intel(R) Gigabit Ethernet Network Driver 8272 [ 1.800786] igb: Copyright (c) 2007-2014 Intel Corporation. 8273 [ 1.800815] igbvf: Intel(R) Gigabit Virtual Function Network Driver 8274 [ 1.800818] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 8275 [ 1.800935] sky2: driver version 1.30 8276 [ 1.801282] VFIO - User Level meta-driver version: 0.3 8277 [ 1.802592] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 8278 [ 1.802609] ehci-pci: EHCI PCI platform driver 8279 [ 1.802638] ehci-platform: EHCI generic platform driver 8280 [ 1.802758] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 8281 [ 1.802767] ohci-pci: OHCI PCI platform driver 8282 [ 1.802801] ohci-platform: OHCI generic platform driver 8283 [ 1.803169] usbcore: registered new interface driver usb-storage 8284 [ 1.804483] mousedev: PS/2 mouse device common for all mice 8285 [ 1.804851] i2c /dev entries driver 8286 [ 1.809979] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 8287 [ 1.810624] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 8288 [ 1.811292] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 8289 [ 1.811958] sdhci: Secure Digital Host Controller Interface driver 8290 [ 1.811966] sdhci: Copyright(c) Pierre Ossman 8291 [ 1.812119] Synopsys Designware Multimedia Card Interface Driver 8292 [ 1.812565] sdhci-pltfm: SDHCI platform and OF driver helper 8293 [ 1.813041] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 8294 [ 1.814241] ledtrig-cpu: registered to indicate activity on CPUs 8295 [ 1.814499] meson-sm: secure-monitor enabled 8296 [ 1.814657] hid: raw HID events driver (C) Jiri Kosina 8297 [ 1.814745] usbcore: registered new interface driver usbhid 8298 [ 1.814747] usbhid: USB HID core driver 8299 [ 1.815769] NET: Registered protocol family 10 8300 [ 1.816156] Segment Routing with IPv6 8301 [ 1.816186] NET: Registered protocol family 17 8302 [ 1.816227] 8021q: 802.1Q VLAN Support v1.8 8303 [ 1.816250] Key type dns_resolver registered 8304 [ 1.816523] registered taskstats version 1 8305 [ 1.816528] Loading compiled-in X.509 certificates 8306 [ 1.818187] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 8307 [ 1.819817] zswap: loaded using pool zstd/z3fold 8308 [ 1.819980] Key type ._fscrypt registered 8309 [ 1.819982] Key type .fscrypt registered 8310 [ 1.819984] Key type fscrypt-provisioning registered 8311 [ 1.821061] Btrfs loaded, crc32c=crc32c-generic 8312 [ 1.827020] Key type encrypted registered 8313 [ 1.827032] AppArmor: AppArmor sha1 policy hashing enabled 8314 [ 1.833224] HUB_5V: supplied by 5V 8315 [ 1.833432] USB_PWR_EN: supplied by 5V 8316 [ 1.835061] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 8317 [ 1.835069] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 8318 [ 1.837746] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 8319 [ 1.837794] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 8320 [ 1.837886] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 8321 [ 1.838439] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 8322 [ 1.838450] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 8323 [ 1.838534] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 8324 [ 1.838558] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 8325 [ 1.838685] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 8326 [ 1.838688] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 8327 [ 1.838691] usb usb1: Product: xHCI Host Controller 8328 [ 1.838693] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 8329 [ 1.838696] usb usb1: SerialNumber: xhci-hcd.0.auto 8330 [ 1.838881] hub 1-0:1.0: USB hub found 8331 [ 1.838894] hub 1-0:1.0: 2 ports detected 8332 [ 1.839027] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 8333 [ 1.839034] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 8334 [ 1.839039] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 8335 [ 1.839061] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 8336 [ 1.839093] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 8337 [ 1.839096] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 8338 [ 1.839098] usb usb2: Product: xHCI Host Controller 8339 [ 1.839100] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 8340 [ 1.839103] usb usb2: SerialNumber: xhci-hcd.0.auto 8341 [ 1.839248] hub 2-0:1.0: USB hub found 8342 [ 1.839259] hub 2-0:1.0: 1 port detected 8343 [ 1.840694] meson-gx-mmc ffe05000.sd: Got CD GPIO 8344 [ 1.868168] Freeing unused kernel memory: 3328K 8345 [ 1.919477] Run /init as init process 8346 [ 1.919480] with arguments: 8347 [ 1.919483] /init 8348 [ 1.919484] with environment: 8349 [ 1.919486] HOME=/ 8350 [ 1.919488] TERM=linux 8351 [ 1.919490] hdmimode=custombuilt 8352 [ 1.919491] cvbsmode=576cvbs 8353 [ 1.919492] max_freq_a53=1896 8354 [ 1.919494] max_freq_a73=1800 8355 [ 1.919495] voutmode=hdmi 8356 [ 1.919497] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 8357 [ 1.919498] disablehpd=false 8358 [ 1.919500] cvbscable= 8359 [ 1.919501] overscan=100 8360 [ 1.933573] mmc0: new ultra high speed SDR25 SDHC card at address b368 8361 [ 1.934071] mmcblk0: mmc0:b368 CBADS 30.0 GiB 8362 [ 1.936059] mmcblk0: p1 8363 [ 2.063147] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 8364 [ 2.063154] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 8365 [ 2.063238] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 8366 [ 2.063634] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 8367 [ 2.063641] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 8368 [ 2.063644] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 8369 [ 2.063646] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 8370 [ 2.063648] meson8b-dwmac ff3f0000.ethernet: COE Type 2 8371 [ 2.063651] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 8372 [ 2.063653] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 8373 [ 2.063690] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 8374 [ 2.063692] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 8375 [ 2.063695] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 8376 [ 2.063879] libphy: stmmac: probed 8377 [ 2.065180] libphy: mdio_mux: probed 8378 [ 2.065385] meson-vrtc ff8000a8.rtc: registered as rtc1 8379 [ 2.091722] random: fast init done 8380 [ 2.095522] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 8381 [ 2.096009] rtc-pcf8563 1-0051: registered as rtc0 8382 [ 2.097569] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 8383 [ 2.097582] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 8384 [ 2.175437] usb 1-1: new high-speed USB device number 2 using xhci-hcd 8385 [ 2.272069] libphy: mdio_mux: probed 8386 [ 2.325754] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 8387 [ 2.325761] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 8388 [ 2.325764] usb 1-1: Product: USB2.1 Hub 8389 [ 2.325766] usb 1-1: Manufacturer: GenesysLogic 8390 [ 2.383249] hub 1-1:1.0: USB hub found 8391 [ 2.383468] hub 1-1:1.0: 4 ports detected 8392 [ 2.451521] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 8393 [ 2.474005] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 8394 [ 2.474008] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 8395 [ 2.474011] usb 2-1: Product: USB3.1 Hub 8396 [ 2.474014] usb 2-1: Manufacturer: GenesysLogic 8397 [ 2.495236] hub 2-1:1.0: USB hub found 8398 [ 2.495517] hub 2-1:1.0: 4 ports detected 8399 [ 2.599420] usb 1-2: new high-speed USB device number 3 using xhci-hcd 8400 [ 2.747860] usb 1-2: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 8401 [ 2.747863] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 8402 [ 2.747865] usb 1-2: Product: PCTV 292e 8403 [ 2.747867] usb 1-2: Manufacturer: PCTV 8404 [ 2.747870] usb 1-2: SerialNumber: 0011356964 8405 [ 3.145478] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 8406 [ 3.939028] systemd[1]: System time before build time, advancing clock. 8407 [ 3.953926] systemd[1]: Inserted module 'autofs4' 8408 [ 4.004456] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 8409 [ 4.004834] systemd[1]: Detected architecture arm64. 8410 [ 4.055254] systemd[1]: Set hostname to <odroidn2>. 8411 [ 4.391989] random: systemd: uninitialized urandom read (16 bytes read) 8412 [ 4.395322] random: systemd: uninitialized urandom read (16 bytes read) 8413 [ 4.395354] systemd[1]: Reached target Swap. 8414 [ 4.395645] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 8415 [ 4.395665] random: systemd: uninitialized urandom read (16 bytes read) 8416 [ 4.396903] systemd[1]: Created slice system-serial\x2dgetty.slice. 8417 [ 4.397134] systemd[1]: Listening on initctl Compatibility Named Pipe. 8418 [ 4.397216] systemd[1]: Reached target System Time Synchronized. 8419 [ 4.397616] systemd[1]: Created slice User and Session Slice. 8420 [ 4.397698] systemd[1]: Reached target Slices. 8421 [ 4.460211] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 8422 [ 5.019759] zram: Added device: zram0 8423 [ 5.020264] zram: Added device: zram1 8424 [ 5.020582] zram: Added device: zram2 8425 [ 5.028598] pwm-gpio pwmgpio: 1 gpio pwms loaded 8426 [ 5.165684] mc: Linux media interface: v0.10 8427 [ 5.196498] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 8428 [ 5.211748] videodev: Linux video capture interface: v2.00 8429 [ 5.255592] panfrost ffe40000.gpu: clock rate = 24000000 8430 [ 5.255643] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 8431 [ 5.256183] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 8432 [ 5.256187] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 8433 [ 5.256190] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 8434 [ 5.256193] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 8435 [ 5.270796] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 8436 [ 5.279597] Registered IR keymap rc-odroid 8437 [ 5.296479] meson-drm ff900000.vpu: Queued 2 outputs on vpu 8438 [ 5.304600] IR NEC protocol handler initialized 8439 [ 5.335526] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 8440 [ 5.335654] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 8441 [ 5.335739] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 8442 [ 5.335974] meson-ir ff808000.ir: receiver initialized 8443 [ 5.353851] meson-drm ff900000.vpu: CVBS Output connector not available 8444 [ 5.379507] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 8445 [ 5.380038] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 8446 [ 5.380410] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 8447 [ 5.383681] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 8448 [ 5.415479] zram0: detected capacity change from 0 to 1904500736 8449 [ 5.436660] em28xx 1-2:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 8450 [ 5.436668] em28xx 1-2:1.0: DVB interface 0 found: isoc 8451 [ 5.445553] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 8452 [ 5.495650] em28xx 1-2:1.0: chip ID is em28178 8453 [ 5.683578] Console: switching to colour frame buffer device 240x67 8454 [ 5.710122] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 8455 [ 5.742557] axg-sound-card sound: ASoC: no DMI vendor name! 8456 [ 6.463437] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 8457 [ 6.530381] zram1: detected capacity change from 0 to 52428800 8458 [ 7.526990] em28xx 1-2:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0xc2b3eb9b 8459 [ 7.526995] em28xx 1-2:1.0: EEPROM info: 8460 [ 7.526998] em28xx 1-2:1.0: microcode start address = 0x0004, boot configuration = 0x01 8461 [ 7.533105] em28xx 1-2:1.0: AC97 audio (5 sample rates) 8462 [ 7.533108] em28xx 1-2:1.0: 500mA max power 8463 [ 7.533112] em28xx 1-2:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 8464 [ 7.591416] em28xx 1-2:1.0: Identified as PCTV tripleStick (292e) (card=94) 8465 [ 7.591421] em28xx 1-2:1.0: dvb set to isoc mode. 8466 [ 7.591559] usbcore: registered new interface driver em28xx 8467 [ 7.617780] em28xx 1-2:1.0: Binding DVB extension 8468 [ 7.631034] i2c i2c-4: Added multiplexed i2c bus 5 8469 [ 7.631042] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 8470 [ 7.631045] si2168 4-0064: firmware version: B 4.0.2 8471 [ 7.639643] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 8472 [ 7.639722] dvbdev: DVB: registering new adapter (1-2:1.0) 8473 [ 7.639731] em28xx 1-2:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 8474 [ 7.639740] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 8475 [ 7.640797] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 8476 [ 7.643019] em28xx 1-2:1.0: DVB extension successfully initialized 8477 [ 7.643030] em28xx: Registered (Em28xx dvb Extension) extension 8478 [ 7.650381] em28xx 1-2:1.0: Registering input extension 8479 [ 7.683417] Registered IR keymap rc-pinnacle-pctv-hd 8480 [ 7.683592] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1 8481 [ 7.683671] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 8482 [ 7.683733] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1/input1 8483 [ 7.683811] em28xx 1-2:1.0: Input extension successfully initialized 8484 [ 7.683815] em28xx: Registered (Em28xx Input Extension) extension 8485 [ 8.614907] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 8486 [ 8.614926] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 8487 [ 9.640132] systemd[1]: Started Armbian memory supported logging. 8488 [ 9.642499] systemd[1]: Starting Journal Service... 8489 [ 9.705707] systemd[1]: Started Journal Service. 8490 [ 9.730652] systemd-journald[1846]: Received request to flush runtime journal from PID 1 8491 8492 ### armbian-release: 8493 8494 # PLEASE DO NOT EDIT THIS FILE 8495 BOARD=odroidn2 8496 BOARD_NAME="Odroid N2" 8497 BOARDFAMILY=meson-g12b 8498 BUILD_REPOSITORY_URL=https://github.com/armbian/build 8499 BUILD_REPOSITORY_COMMIT=5f03d652 8500 DISTRIBUTION_CODENAME=buster 8501 DISTRIBUTION_STATUS=supported 8502 VERSION=21.02.1 8503 LINUXFAMILY=meson64 8504 BRANCH=current 8505 ARCH=arm64 8506 IMAGE_TYPE=stable 8507 BOARD_TYPE=conf 8508 INITRD_ARCH=arm64 8509 KERNEL_IMAGE_TYPE=Image 8510 8511 ### boot environment: 8512 8513 verbosity=1 8514 console=both 8515 overlay_prefix=meson 8516 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 8517 rootfstype=ext4 8518 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 8519 8520 ### lsusb: 8521 8522 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 8523 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 8524 Bus 001 Device 003: ID 2013:025f PCTV Systems 8525 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 8526 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 8527 8528 ### lscpu: 8529 8530 Architecture: aarch64 8531 Byte Order: Little Endian 8532 CPU(s): 6 8533 On-line CPU(s) list: 0-5 8534 Thread(s) per core: 1 8535 Core(s) per socket: 3 8536 Socket(s): 2 8537 NUMA node(s): 1 8538 Vendor ID: ARM 8539 Model: 4 8540 Model name: Cortex-A53 8541 Stepping: r0p4 8542 CPU max MHz: 1992.0000 8543 CPU min MHz: 100.0000 8544 BogoMIPS: 48.00 8545 L1d cache: unknown size 8546 L1i cache: unknown size 8547 L2 cache: unknown size 8548 NUMA node0 CPU(s): 0-5 8549 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 8550 8551 ### cpuinfo: 8552 8553 processor : 0 8554 BogoMIPS : 48.00 8555 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 8556 CPU implementer : 0x41 8557 CPU architecture: 8 8558 CPU variant : 0x0 8559 CPU part : 0xd03 8560 CPU revision : 4 8561 8562 processor : 1 8563 BogoMIPS : 48.00 8564 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 8565 CPU implementer : 0x41 8566 CPU architecture: 8 8567 CPU variant : 0x0 8568 CPU part : 0xd03 8569 CPU revision : 4 8570 8571 processor : 2 8572 BogoMIPS : 48.00 8573 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 8574 CPU implementer : 0x41 8575 CPU architecture: 8 8576 CPU variant : 0x0 8577 CPU part : 0xd09 8578 CPU revision : 2 8579 8580 processor : 3 8581 BogoMIPS : 48.00 8582 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 8583 CPU implementer : 0x41 8584 CPU architecture: 8 8585 CPU variant : 0x0 8586 CPU part : 0xd09 8587 CPU revision : 2 8588 8589 processor : 4 8590 BogoMIPS : 48.00 8591 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 8592 CPU implementer : 0x41 8593 CPU architecture: 8 8594 CPU variant : 0x0 8595 CPU part : 0xd09 8596 CPU revision : 2 8597 8598 processor : 5 8599 BogoMIPS : 48.00 8600 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 8601 CPU implementer : 0x41 8602 CPU architecture: 8 8603 CPU variant : 0x0 8604 CPU part : 0xd09 8605 CPU revision : 2 8606 8607 8608 ### meminfo: 8609 8610 MemTotal: 3719728 kB 8611 MemFree: 3436856 kB 8612 MemAvailable: 3390088 kB 8613 Buffers: 11444 kB 8614 Cached: 43724 kB 8615 SwapCached: 0 kB 8616 Active: 29060 kB 8617 Inactive: 141492 kB 8618 Active(anon): 156 kB 8619 Inactive(anon): 120508 kB 8620 Active(file): 28904 kB 8621 Inactive(file): 20984 kB 8622 Unevictable: 0 kB 8623 Mlocked: 0 kB 8624 SwapTotal: 1859860 kB 8625 SwapFree: 1859860 kB 8626 Dirty: 3816 kB 8627 Writeback: 0 kB 8628 AnonPages: 115916 kB 8629 Mapped: 13168 kB 8630 Shmem: 4984 kB 8631 KReclaimable: 13292 kB 8632 Slab: 40728 kB 8633 SReclaimable: 13292 kB 8634 SUnreclaim: 27436 kB 8635 KernelStack: 2544 kB 8636 PageTables: 4640 kB 8637 NFS_Unstable: 0 kB 8638 Bounce: 0 kB 8639 WritebackTmp: 0 kB 8640 CommitLimit: 3719724 kB 8641 Committed_AS: 4240076 kB 8642 VmallocTotal: 135290159040 kB 8643 VmallocUsed: 33248 kB 8644 VmallocChunk: 0 kB 8645 Percpu: 1368 kB 8646 HardwareCorrupted: 0 kB 8647 AnonHugePages: 0 kB 8648 ShmemHugePages: 0 kB 8649 ShmemPmdMapped: 0 kB 8650 FileHugePages: 0 kB 8651 FilePmdMapped: 0 kB 8652 CmaTotal: 917504 kB 8653 CmaFree: 901724 kB 8654 HugePages_Total: 0 8655 HugePages_Free: 0 8656 HugePages_Rsvd: 0 8657 HugePages_Surp: 0 8658 Hugepagesize: 2048 kB 8659 Hugetlb: 0 kB 8660 8661 ### virtual memory: 8662 8663 vm.admin_reserve_kbytes = 8192 8664 vm.block_dump = 0 8665 vm.compaction_proactiveness = 20 8666 vm.compact_unevictable_allowed = 1 8667 vm.dirty_background_bytes = 0 8668 vm.dirty_background_ratio = 10 8669 vm.dirty_bytes = 0 8670 vm.dirty_expire_centisecs = 3000 8671 vm.dirty_ratio = 20 8672 vm.dirtytime_expire_seconds = 43200 8673 vm.dirty_writeback_centisecs = 500 8674 vm.extfrag_threshold = 500 8675 vm.hugetlb_shm_group = 0 8676 vm.laptop_mode = 0 8677 vm.legacy_va_layout = 0 8678 vm.lowmem_reserve_ratio = 256 256 32 0 8679 vm.max_map_count = 65530 8680 vm.memory_failure_early_kill = 0 8681 vm.memory_failure_recovery = 1 8682 vm.min_free_kbytes = 45056 8683 vm.min_slab_ratio = 5 8684 vm.min_unmapped_ratio = 1 8685 vm.mmap_min_addr = 4096 8686 vm.mmap_rnd_bits = 18 8687 vm.mmap_rnd_compat_bits = 11 8688 vm.nr_hugepages = 0 8689 vm.nr_hugepages_mempolicy = 0 8690 vm.nr_overcommit_hugepages = 0 8691 vm.numa_stat = 1 8692 vm.numa_zonelist_order = Node 8693 vm.oom_dump_tasks = 1 8694 vm.oom_kill_allocating_task = 0 8695 vm.overcommit_kbytes = 0 8696 vm.overcommit_memory = 0 8697 vm.overcommit_ratio = 50 8698 vm.page-cluster = 0 8699 vm.page_lock_unfairness = 5 8700 vm.panic_on_oom = 0 8701 vm.percpu_pagelist_fraction = 0 8702 vm.stat_interval = 1 8703 vm.swappiness = 100 8704 vm.user_reserve_kbytes = 115057 8705 vm.vfs_cache_pressure = 100 8706 vm.watermark_boost_factor = 15000 8707 vm.watermark_scale_factor = 10 8708 vm.zone_reclaim_mode = 0 8709 8710 ### ip addr: 8711 8712 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 8713 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 8714 inet XXX.XXX.0.1/8 scope host lo 8715 valid_lft forever preferred_lft forever 8716 inet6 ::1/128 scope host 8717 valid_lft forever preferred_lft forever 8718 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 8719 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 8720 8721 ### partitions: 8722 8723 major minor #blocks name 8724 8725 179 0 31464960 mmcblk0 8726 179 1 31146208 mmcblk0p1 8727 252 0 1859864 zram0 8728 252 1 51200 zram1 8729 8730 ### df: 8731 8732 udev 1.4G 0 1.4G 0% /dev 8733 tmpfs 364M 4.9M 359M 2% /run 8734 /dev/mmcblk0p1 30G 1.7G 28G 6% / 8735 tmpfs 1.8G 0 1.8G 0% /dev/shm 8736 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 8737 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 8738 tmpfs 1.8G 0 1.8G 0% /tmp 8739 /dev/zram1 49M 3.8M 42M 9% /var/log 8740 8741 ### lsblk: 8742 8743 NAME FSTYPE SIZE MOUNTPOINT UUID 8744 mmcblk0 30G 8745 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 8746 zram1 50M /var/log 8747 8748 ### zramctl: 8749 8750 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 8751 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 8752 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 8753 8754 ### mtab: 8755 8756 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 8757 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 8758 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 8759 8760 ### mmc0:b368 info: 8761 8762 fwrev: 0x0 8763 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 8764 cid: 6f0303434241445310aa002b4d013b00 8765 rca: 0xb368 8766 csd: 400e005a5b590000f00e7f800a404000 8767 manfid: 0x00006f 8768 ocr: 0x00200000 8769 preferred_erase_size: 2097152 8770 type: SD 8771 hwrev: 0x1 8772 date: 11/2019 8773 dsr: 0x404 8774 erase_size: 512 8775 oemid: 0x0303 8776 serial: 0xaa002b4d 8777 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 8778 scr: 02b5800300000000 8779 name: CBADS 8780 8781 ### Boot system health: 8782 8783 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 8784 15:45:33: 1908/1992MHz 1.71 23% 11% 5% 0% 6% 0% 34.6°C 0/11 8785 15:45:33: 1908/1992MHz 1.71 71% 37% 10% 0% 21% 1% 33.0°C 0/11 8786 15:45:33: 1908/1992MHz 1.71 78% 20% 3% 0% 52% 0% 32.3°C 0/11 8787 15:45:34: 1908/1992MHz 1.71 63% 8% 4% 0% 48% 1% 31.3°C 0/11 8788 15:45:34: 1908/1992MHz 1.71 35% 3% 1% 0% 30% 0% 30.3°C 0/11 8789 8790 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 8791 8792 ### Activated Armbian ramlog partition with zstd compression 8793 8794 Sun 14 Feb 2021 03:49:19 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 8795 8796 ### dmesg: 8797 8798 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 8799 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 8800 [ 0.000000] Machine model: Hardkernel ODROID-N2 8801 [ 0.000000] efi: UEFI not found. 8802 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 8803 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 8804 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 8805 [ 0.000000] NUMA: No NUMA configuration found 8806 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 8807 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 8808 [ 0.000000] Zone ranges: 8809 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 8810 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 8811 [ 0.000000] Normal empty 8812 [ 0.000000] Movable zone start for each node 8813 [ 0.000000] Early memory node ranges 8814 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 8815 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 8816 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 8817 [ 0.000000] On node 0 totalpages: 972032 8818 [ 0.000000] DMA zone: 4096 pages used for memmap 8819 [ 0.000000] DMA zone: 0 pages reserved 8820 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 8821 [ 0.000000] DMA32 zone: 11104 pages used for memmap 8822 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 8823 [ 0.000000] psci: probing for conduit method from DT. 8824 [ 0.000000] psci: PSCIv1.0 detected in firmware. 8825 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 8826 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 8827 [ 0.000000] psci: SMC Calling Convention v1.1 8828 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 8829 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 8830 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 8831 [ 0.000000] Detected VIPT I-cache on CPU0 8832 [ 0.000000] CPU features: detected: ARM erratum 845719 8833 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 8834 [ 0.000000] Policy zone: DMA32 8835 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 8836 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 8837 Please use sysfs to set IO scheduler for individual devices. 8838 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 8839 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 8840 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 8841 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 8842 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 8843 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 8844 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 8845 [ 0.000000] rcu: RCU event tracing is enabled. 8846 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 8847 [ 0.000000] Trampoline variant of Tasks RCU enabled. 8848 [ 0.000000] Rude variant of Tasks RCU enabled. 8849 [ 0.000000] Tracing variant of Tasks RCU enabled. 8850 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 8851 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 8852 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 8853 [ 0.000000] GIC: Using split EOI/Deactivate mode 8854 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 8855 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 8856 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 8857 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 8858 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 8859 [ 0.000238] Console: colour dummy device 80x25 8860 [ 0.000272] printk: console [tty1] enabled 8861 [ 0.000359] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 8862 [ 0.000371] pid_max: default: 32768 minimum: 301 8863 [ 0.000454] LSM: Security Framework initializing 8864 [ 0.000481] Yama: becoming mindful. 8865 [ 0.000572] AppArmor: AppArmor initialized 8866 [ 0.000622] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 8867 [ 0.000641] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 8868 [ 0.002638] rcu: Hierarchical SRCU implementation. 8869 [ 0.005005] EFI services will not be available. 8870 [ 0.005423] smp: Bringing up secondary CPUs ... 8871 [ 0.006091] Detected VIPT I-cache on CPU1 8872 [ 0.006153] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 8873 [ 0.007345] CPU features: detected: ARM erratum 858921 8874 [ 0.007352] CPU features: detected: Spectre-v2 8875 [ 0.007356] CPU features: detected: Spectre-v4 8876 [ 0.007363] Detected VIPT I-cache on CPU2 8877 [ 0.007388] arch_timer: Enabling local workaround for ARM erratum 858921 8878 [ 0.007403] arch_timer: CPU2: Trapping CNTVCT access 8879 [ 0.007416] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 8880 [ 0.008128] Detected VIPT I-cache on CPU3 8881 [ 0.008145] arch_timer: Enabling local workaround for ARM erratum 858921 8882 [ 0.008153] arch_timer: CPU3: Trapping CNTVCT access 8883 [ 0.008160] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 8884 [ 0.008790] Detected VIPT I-cache on CPU4 8885 [ 0.008807] arch_timer: Enabling local workaround for ARM erratum 858921 8886 [ 0.008814] arch_timer: CPU4: Trapping CNTVCT access 8887 [ 0.008821] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 8888 [ 0.009438] Detected VIPT I-cache on CPU5 8889 [ 0.009454] arch_timer: Enabling local workaround for ARM erratum 858921 8890 [ 0.009461] arch_timer: CPU5: Trapping CNTVCT access 8891 [ 0.009468] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 8892 [ 0.009550] smp: Brought up 1 node, 6 CPUs 8893 [ 0.009567] SMP: Total of 6 processors activated. 8894 [ 0.009575] CPU features: detected: 32-bit EL0 Support 8895 [ 0.009581] CPU features: detected: CRC32 instructions 8896 [ 0.009587] CPU features: detected: 32-bit EL1 Support 8897 [ 0.020883] CPU: All CPU(s) started at EL2 8898 [ 0.020933] alternatives: patching kernel code 8899 [ 0.022877] devtmpfs: initialized 8900 [ 0.030551] Registered cp15_barrier emulation handler 8901 [ 0.030565] Registered setend emulation handler 8902 [ 0.030703] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 8903 [ 0.030742] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 8904 [ 0.044678] pinctrl core: initialized pinctrl subsystem 8905 [ 0.045410] DMI not present or invalid. 8906 [ 0.045779] NET: Registered protocol family 16 8907 [ 0.047352] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 8908 [ 0.047625] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 8909 [ 0.047851] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 8910 [ 0.047893] audit: initializing netlink subsys (disabled) 8911 [ 0.047997] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 8912 [ 0.049247] thermal_sys: Registered thermal governor 'fair_share' 8913 [ 0.049255] thermal_sys: Registered thermal governor 'bang_bang' 8914 [ 0.049259] thermal_sys: Registered thermal governor 'step_wise' 8915 [ 0.049262] thermal_sys: Registered thermal governor 'user_space' 8916 [ 0.049699] cpuidle: using governor menu 8917 [ 0.050049] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 8918 [ 0.050166] ASID allocator initialised with 65536 entries 8919 [ 0.051093] Serial: AMBA PL011 UART driver 8920 [ 0.084892] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 8921 [ 0.084903] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 8922 [ 0.084908] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 8923 [ 0.084912] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 8924 [ 0.086959] cryptd: max_cpu_qlen set to 1000 8925 [ 0.156157] raid6: neonx8 gen() 2787 MB/s 8926 [ 0.224220] raid6: neonx8 xor() 2042 MB/s 8927 [ 0.292295] raid6: neonx4 gen() 2999 MB/s 8928 [ 0.360368] raid6: neonx4 xor() 2346 MB/s 8929 [ 0.428472] raid6: neonx2 gen() 2575 MB/s 8930 [ 0.496611] raid6: neonx2 xor() 1455 MB/s 8931 [ 0.564660] raid6: neonx1 gen() 1820 MB/s 8932 [ 0.632697] raid6: neonx1 xor() 1727 MB/s 8933 [ 0.700773] raid6: int64x8 gen() 1379 MB/s 8934 [ 0.768828] raid6: int64x8 xor() 735 MB/s 8935 [ 0.836913] raid6: int64x4 gen() 1463 MB/s 8936 [ 0.904965] raid6: int64x4 xor() 733 MB/s 8937 [ 0.973025] raid6: int64x2 gen() 1362 MB/s 8938 [ 1.041106] raid6: int64x2 xor() 619 MB/s 8939 [ 1.109158] raid6: int64x1 gen() 1120 MB/s 8940 [ 1.177228] raid6: int64x1 xor() 462 MB/s 8941 [ 1.177231] raid6: using algorithm neonx4 gen() 2999 MB/s 8942 [ 1.177234] raid6: .... xor() 2346 MB/s, rmw enabled 8943 [ 1.177238] raid6: using neon recovery algorithm 8944 [ 1.177683] ACPI: Interpreter disabled. 8945 [ 1.178450] 5V: supplied by 12V 8946 [ 1.179339] VDDAO_3V3: supplied by 12V 8947 [ 1.179805] iommu: Default domain type: Translated 8948 [ 1.179918] vgaarb: loaded 8949 [ 1.180644] SCSI subsystem initialized 8950 [ 1.181023] usbcore: registered new interface driver usbfs 8951 [ 1.181060] usbcore: registered new interface driver hub 8952 [ 1.181098] usbcore: registered new device driver usb 8953 [ 1.181410] pps_core: LinuxPPS API ver. 1 registered 8954 [ 1.181414] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 8955 [ 1.181433] PTP clock support registered 8956 [ 1.181632] EDAC MC: Ver: 3.0.0 8957 [ 1.182968] NetLabel: Initializing 8958 [ 1.182976] NetLabel: domain hash size = 128 8959 [ 1.182978] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 8960 [ 1.183021] NetLabel: unlabeled traffic allowed by default 8961 [ 1.183498] clocksource: Switched to clocksource arch_sys_counter 8962 [ 1.183713] VFS: Disk quotas dquot_6.6.0 8963 [ 1.183758] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 8964 [ 1.184105] AppArmor: AppArmor Filesystem Enabled 8965 [ 1.184152] pnp: PnP ACPI: disabled 8966 [ 1.189684] NET: Registered protocol family 2 8967 [ 1.190147] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 8968 [ 1.190252] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 8969 [ 1.190508] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 8970 [ 1.190696] TCP: Hash tables configured (established 32768 bind 32768) 8971 [ 1.190848] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 8972 [ 1.190914] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 8973 [ 1.190961] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 8974 [ 1.191106] NET: Registered protocol family 1 8975 [ 1.191125] PCI: CLS 0 bytes, default 64 8976 [ 1.191251] Trying to unpack rootfs image as initramfs... 8977 [ 1.727226] Freeing initrd memory: 13544K 8978 [ 1.728149] kvm [1]: IPA Size Limit: 40 bits 8979 [ 1.728852] kvm [1]: vgic interrupt IRQ9 8980 [ 1.728985] kvm [1]: Hyp mode initialized successfully 8981 [ 1.734075] Initialise system trusted keyrings 8982 [ 1.734114] Key type blacklist registered 8983 [ 1.734240] workingset: timestamp_bits=44 max_order=20 bucket_order=0 8984 [ 1.737431] zbud: loaded 8985 [ 1.738416] squashfs: version 4.0 (2009/01/31) Phillip Lougher 8986 [ 1.738901] fuse: init (API version 7.32) 8987 [ 1.739700] integrity: Platform Keyring initialized 8988 [ 1.767881] xor: measuring software checksum speed 8989 [ 1.770719] 8regs : 3473 MB/sec 8990 [ 1.773200] 32regs : 4024 MB/sec 8991 [ 1.775860] arm64_neon : 3718 MB/sec 8992 [ 1.775863] xor: using function: 32regs (4024 MB/sec) 8993 [ 1.775872] Key type asymmetric registered 8994 [ 1.775876] Asymmetric key parser 'x509' registered 8995 [ 1.775912] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 8996 [ 1.776023] io scheduler mq-deadline registered 8997 [ 1.776028] io scheduler kyber registered 8998 [ 1.776105] io scheduler bfq registered 8999 [ 1.778569] gpio-447 (usb-hub-reset): hogged as output/high 9000 [ 1.781461] EINJ: ACPI disabled. 9001 [ 1.787661] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 9002 [ 1.789022] VCC_3V3: supplied by VDDAO_3V3 9003 [ 1.789055] FLASH_1V8: supplied by VCC_3V3 9004 [ 1.789100] VCC_1V8: supplied by VCC_3V3 9005 [ 1.789126] VDDAO_1V8: supplied by VDDAO_3V3 9006 [ 1.789156] VDDCPU_A: supplied by regulator-dummy 9007 [ 1.789510] VDDCPU_B: supplied by regulator-dummy 9008 [ 1.790177] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 9009 [ 1.792636] Serial: AMBA driver 9010 [ 1.792916] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 9011 [ 1.793010] printk: console [ttyAML0] enabled 9012 [ 1.793552] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 9013 [ 1.798845] loop: module loaded 9014 [ 1.800746] libphy: Fixed MDIO Bus: probed 9015 [ 1.801871] tun: Universal TUN/TAP device driver, 1.6 9016 [ 1.802489] thunder_xcv, ver 1.0 9017 [ 1.802521] thunder_bgx, ver 1.0 9018 [ 1.802554] nicpf, ver 1.0 9019 [ 1.802990] e1000e: Intel(R) PRO/1000 Network Driver 9020 [ 1.802993] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 9021 [ 1.803034] igb: Intel(R) Gigabit Ethernet Network Driver 9022 [ 1.803037] igb: Copyright (c) 2007-2014 Intel Corporation. 9023 [ 1.803072] igbvf: Intel(R) Gigabit Virtual Function Network Driver 9024 [ 1.803075] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 9025 [ 1.803196] sky2: driver version 1.30 9026 [ 1.803707] VFIO - User Level meta-driver version: 0.3 9027 [ 1.805058] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 9028 [ 1.805079] ehci-pci: EHCI PCI platform driver 9029 [ 1.805111] ehci-platform: EHCI generic platform driver 9030 [ 1.805239] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 9031 [ 1.805250] ohci-pci: OHCI PCI platform driver 9032 [ 1.805286] ohci-platform: OHCI generic platform driver 9033 [ 1.805662] usbcore: registered new interface driver usb-storage 9034 [ 1.806882] mousedev: PS/2 mouse device common for all mice 9035 [ 1.807263] i2c /dev entries driver 9036 [ 1.812505] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 9037 [ 1.813167] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 9038 [ 1.813852] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 9039 [ 1.814452] sdhci: Secure Digital Host Controller Interface driver 9040 [ 1.814460] sdhci: Copyright(c) Pierre Ossman 9041 [ 1.814582] Synopsys Designware Multimedia Card Interface Driver 9042 [ 1.815077] sdhci-pltfm: SDHCI platform and OF driver helper 9043 [ 1.816148] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 9044 [ 1.816898] ledtrig-cpu: registered to indicate activity on CPUs 9045 [ 1.817210] meson-sm: secure-monitor enabled 9046 [ 1.817394] hid: raw HID events driver (C) Jiri Kosina 9047 [ 1.817476] usbcore: registered new interface driver usbhid 9048 [ 1.817478] usbhid: USB HID core driver 9049 [ 1.818448] NET: Registered protocol family 10 9050 [ 1.818878] Segment Routing with IPv6 9051 [ 1.818908] NET: Registered protocol family 17 9052 [ 1.818962] 8021q: 802.1Q VLAN Support v1.8 9053 [ 1.818985] Key type dns_resolver registered 9054 [ 1.819258] registered taskstats version 1 9055 [ 1.819264] Loading compiled-in X.509 certificates 9056 [ 1.821090] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 9057 [ 1.822708] zswap: loaded using pool zstd/z3fold 9058 [ 1.822889] Key type ._fscrypt registered 9059 [ 1.822890] Key type .fscrypt registered 9060 [ 1.822892] Key type fscrypt-provisioning registered 9061 [ 1.824052] Btrfs loaded, crc32c=crc32c-generic 9062 [ 1.830084] Key type encrypted registered 9063 [ 1.830096] AppArmor: AppArmor sha1 policy hashing enabled 9064 [ 1.836612] HUB_5V: supplied by 5V 9065 [ 1.836812] USB_PWR_EN: supplied by 5V 9066 [ 1.838434] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 9067 [ 1.838441] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 9068 [ 1.841163] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 9069 [ 1.841215] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 9070 [ 1.841333] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 9071 [ 1.841942] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 9072 [ 1.841954] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 9073 [ 1.842041] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 9074 [ 1.842060] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 9075 [ 1.842181] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 9076 [ 1.842185] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 9077 [ 1.842188] usb usb1: Product: xHCI Host Controller 9078 [ 1.842190] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 9079 [ 1.842192] usb usb1: SerialNumber: xhci-hcd.0.auto 9080 [ 1.842386] hub 1-0:1.0: USB hub found 9081 [ 1.842399] hub 1-0:1.0: 2 ports detected 9082 [ 1.842529] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 9083 [ 1.842536] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 9084 [ 1.842541] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 9085 [ 1.842560] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 9086 [ 1.842590] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 9087 [ 1.842593] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 9088 [ 1.842596] usb usb2: Product: xHCI Host Controller 9089 [ 1.842598] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 9090 [ 1.842600] usb usb2: SerialNumber: xhci-hcd.0.auto 9091 [ 1.842749] hub 2-0:1.0: USB hub found 9092 [ 1.842760] hub 2-0:1.0: 1 port detected 9093 [ 1.844367] meson-gx-mmc ffe05000.sd: Got CD GPIO 9094 [ 1.868658] Freeing unused kernel memory: 3328K 9095 [ 1.919566] Run /init as init process 9096 [ 1.919571] with arguments: 9097 [ 1.919573] /init 9098 [ 1.919575] with environment: 9099 [ 1.919576] HOME=/ 9100 [ 1.919578] TERM=linux 9101 [ 1.919580] hdmimode=custombuilt 9102 [ 1.919581] cvbsmode=576cvbs 9103 [ 1.919582] max_freq_a53=1896 9104 [ 1.919584] max_freq_a73=1800 9105 [ 1.919585] voutmode=hdmi 9106 [ 1.919587] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 9107 [ 1.919588] disablehpd=false 9108 [ 1.919590] cvbscable= 9109 [ 1.919591] overscan=100 9110 [ 1.933653] mmc1: new ultra high speed SDR25 SDHC card at address b368 9111 [ 1.934456] mmcblk1: mmc1:b368 CBADS 30.0 GiB 9112 [ 1.936464] mmcblk1: p1 9113 [ 2.060778] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 9114 [ 2.060785] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 9115 [ 2.060886] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 9116 [ 2.061325] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 9117 [ 2.061331] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 9118 [ 2.061334] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 9119 [ 2.061337] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 9120 [ 2.061339] meson8b-dwmac ff3f0000.ethernet: COE Type 2 9121 [ 2.061341] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 9122 [ 2.061343] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 9123 [ 2.061381] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 9124 [ 2.061384] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 9125 [ 2.061386] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 9126 [ 2.061566] libphy: stmmac: probed 9127 [ 2.062746] libphy: mdio_mux: probed 9128 [ 2.089916] meson-vrtc ff8000a8.rtc: registered as rtc1 9129 [ 2.090738] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 9130 [ 2.090883] rtc-pcf8563 1-0051: registered as rtc0 9131 [ 2.092069] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 9132 [ 2.092077] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 9133 [ 2.099899] random: fast init done 9134 [ 2.179627] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 9135 [ 2.204233] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 9136 [ 2.204239] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 9137 [ 2.204242] usb 2-1: Product: USB3.1 Hub 9138 [ 2.204245] usb 2-1: Manufacturer: GenesysLogic 9139 [ 2.226804] hub 2-1:1.0: USB hub found 9140 [ 2.227091] hub 2-1:1.0: 4 ports detected 9141 [ 2.263959] libphy: mdio_mux: probed 9142 [ 2.327527] usb 1-1: new high-speed USB device number 2 using xhci-hcd 9143 [ 2.477801] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 9144 [ 2.477808] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 9145 [ 2.477812] usb 1-1: Product: USB2.1 Hub 9146 [ 2.477816] usb 1-1: Manufacturer: GenesysLogic 9147 [ 2.514838] hub 1-1:1.0: USB hub found 9148 [ 2.515107] hub 1-1:1.0: 4 ports detected 9149 [ 2.707509] usb 1-2: new high-speed USB device number 3 using xhci-hcd 9150 [ 2.856572] usb 1-2: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 9151 [ 2.856579] usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0 9152 [ 2.856583] usb 1-2: Product: USB2.0 Hub 9153 [ 2.898883] hub 1-2:1.0: USB hub found 9154 [ 2.899144] hub 1-2:1.0: 4 ports detected 9155 [ 3.187507] usb 1-2.3: new high-speed USB device number 4 using xhci-hcd 9156 [ 3.203178] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 9157 [ 3.292662] usb 1-2.3: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 9158 [ 3.292671] usb 1-2.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0 9159 [ 3.292675] usb 1-2.3: Product: USB2.0 Hub 9160 [ 3.346873] hub 1-2.3:1.0: USB hub found 9161 [ 3.347120] hub 1-2.3:1.0: 4 ports detected 9162 [ 3.427508] usb 1-2.4: new high-speed USB device number 5 using xhci-hcd 9163 [ 3.528085] usb 1-2.4: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 9164 [ 3.528093] usb 1-2.4: New USB device strings: Mfr=3, Product=1, SerialNumber=2 9165 [ 3.528097] usb 1-2.4: Product: PCTV 292e 9166 [ 3.528100] usb 1-2.4: Manufacturer: PCTV 9167 [ 3.528104] usb 1-2.4: SerialNumber: 0011356964 9168 [ 4.003442] systemd[1]: System time before build time, advancing clock. 9169 [ 4.018265] systemd[1]: Inserted module 'autofs4' 9170 [ 4.064719] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 9171 [ 4.064934] systemd[1]: Detected architecture arm64. 9172 [ 4.089901] systemd[1]: Set hostname to <odroidn2>. 9173 [ 4.417284] random: systemd: uninitialized urandom read (16 bytes read) 9174 [ 4.420622] random: systemd: uninitialized urandom read (16 bytes read) 9175 [ 4.420858] systemd[1]: Listening on Syslog Socket. 9176 [ 4.421203] random: systemd: uninitialized urandom read (16 bytes read) 9177 [ 4.421380] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 9178 [ 4.421665] systemd[1]: Listening on udev Control Socket. 9179 [ 4.422934] systemd[1]: Created slice system-serial\x2dgetty.slice. 9180 [ 4.423362] systemd[1]: Created slice User and Session Slice. 9181 [ 4.423754] systemd[1]: Listening on Journal Audit Socket. 9182 [ 4.423842] systemd[1]: Reached target Swap. 9183 [ 4.485537] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 9184 [ 5.042710] zram: Added device: zram0 9185 [ 5.043164] zram: Added device: zram1 9186 [ 5.043963] zram: Added device: zram2 9187 [ 5.050821] pwm-gpio pwmgpio: 1 gpio pwms loaded 9188 [ 5.206246] mc: Linux media interface: v0.10 9189 [ 5.255377] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 9190 [ 5.294985] videodev: Linux video capture interface: v2.00 9191 [ 5.323805] meson-drm ff900000.vpu: Queued 2 outputs on vpu 9192 [ 5.339648] Registered IR keymap rc-odroid 9193 [ 5.397303] IR NEC protocol handler initialized 9194 [ 5.404965] meson-drm ff900000.vpu: CVBS Output connector not available 9195 [ 5.423649] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 9196 [ 5.423795] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 9197 [ 5.423883] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 9198 [ 5.424052] meson-ir ff808000.ir: receiver initialized 9199 [ 5.426462] panfrost ffe40000.gpu: clock rate = 24000000 9200 [ 5.426519] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 9201 [ 5.427130] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 9202 [ 5.427137] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 9203 [ 5.427141] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 9204 [ 5.427143] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 9205 [ 5.443774] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 9206 [ 5.445327] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 9207 [ 5.450255] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 9208 [ 5.453183] zram0: detected capacity change from 0 to 1904500736 9209 [ 5.456435] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 9210 [ 5.456891] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 9211 [ 5.490233] em28xx 1-2.4:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 9212 [ 5.490241] em28xx 1-2.4:1.0: DVB interface 0 found: isoc 9213 [ 5.497160] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 9214 [ 5.547567] em28xx 1-2.4:1.0: chip ID is em28178 9215 [ 5.743650] Console: switching to colour frame buffer device 240x67 9216 [ 5.770222] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 9217 [ 5.808399] axg-sound-card sound: ASoC: no DMI vendor name! 9218 [ 6.511515] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 9219 [ 6.578256] zram1: detected capacity change from 0 to 52428800 9220 [ 7.589717] em28xx 1-2.4:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 9221 [ 7.589722] em28xx 1-2.4:1.0: EEPROM info: 9222 [ 7.589724] em28xx 1-2.4:1.0: microcode start address = 0x0004, boot configuration = 0x01 9223 [ 7.595835] em28xx 1-2.4:1.0: AC97 audio (5 sample rates) 9224 [ 7.595838] em28xx 1-2.4:1.0: 500mA max power 9225 [ 7.595841] em28xx 1-2.4:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 9226 [ 7.655495] em28xx 1-2.4:1.0: Identified as PCTV tripleStick (292e) (card=94) 9227 [ 7.655499] em28xx 1-2.4:1.0: dvb set to isoc mode. 9228 [ 7.655664] usbcore: registered new interface driver em28xx 9229 [ 7.681874] em28xx 1-2.4:1.0: Binding DVB extension 9230 [ 7.695226] i2c i2c-4: Added multiplexed i2c bus 5 9231 [ 7.695233] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 9232 [ 7.695236] si2168 4-0064: firmware version: B 4.0.2 9233 [ 7.703753] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 9234 [ 7.703789] dvbdev: DVB: registering new adapter (1-2.4:1.0) 9235 [ 7.703795] em28xx 1-2.4:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 9236 [ 7.703801] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 9237 [ 7.704466] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 9238 [ 7.730694] em28xx 1-2.4:1.0: DVB extension successfully initialized 9239 [ 7.730702] em28xx: Registered (Em28xx dvb Extension) extension 9240 [ 7.737624] em28xx 1-2.4:1.0: Registering input extension 9241 [ 7.771495] Registered IR keymap rc-pinnacle-pctv-hd 9242 [ 7.771668] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.0/rc/rc1 9243 [ 7.771766] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 9244 [ 7.771825] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.0/rc/rc1/input1 9245 [ 7.771911] em28xx 1-2.4:1.0: Input extension successfully initialized 9246 [ 7.771914] em28xx: Registered (Em28xx Input Extension) extension 9247 [ 8.663254] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 9248 [ 8.663274] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 9249 [ 9.704236] systemd[1]: Started Armbian memory supported logging. 9250 [ 9.708388] systemd[1]: Starting Journal Service... 9251 [ 9.774882] systemd[1]: Started Journal Service. 9252 [ 9.802823] systemd-journald[1849]: Received request to flush runtime journal from PID 1 9253 9254 ### armbian-release: 9255 9256 # PLEASE DO NOT EDIT THIS FILE 9257 BOARD=odroidn2 9258 BOARD_NAME="Odroid N2" 9259 BOARDFAMILY=meson-g12b 9260 BUILD_REPOSITORY_URL=https://github.com/armbian/build 9261 BUILD_REPOSITORY_COMMIT=5f03d652 9262 DISTRIBUTION_CODENAME=buster 9263 DISTRIBUTION_STATUS=supported 9264 VERSION=21.02.1 9265 LINUXFAMILY=meson64 9266 BRANCH=current 9267 ARCH=arm64 9268 IMAGE_TYPE=stable 9269 BOARD_TYPE=conf 9270 INITRD_ARCH=arm64 9271 KERNEL_IMAGE_TYPE=Image 9272 9273 ### boot environment: 9274 9275 verbosity=1 9276 console=both 9277 overlay_prefix=meson 9278 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 9279 rootfstype=ext4 9280 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 9281 9282 ### lsusb: 9283 9284 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 9285 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 9286 Bus 001 Device 005: ID 2013:025f PCTV Systems 9287 Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. Hub 9288 Bus 001 Device 003: ID 05e3:0608 Genesys Logic, Inc. Hub 9289 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 9290 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 9291 9292 ### lscpu: 9293 9294 Architecture: aarch64 9295 Byte Order: Little Endian 9296 CPU(s): 6 9297 On-line CPU(s) list: 0-5 9298 Thread(s) per core: 1 9299 Core(s) per socket: 3 9300 Socket(s): 2 9301 NUMA node(s): 1 9302 Vendor ID: ARM 9303 Model: 4 9304 Model name: Cortex-A53 9305 Stepping: r0p4 9306 CPU max MHz: 1992.0000 9307 CPU min MHz: 100.0000 9308 BogoMIPS: 48.00 9309 L1d cache: unknown size 9310 L1i cache: unknown size 9311 L2 cache: unknown size 9312 NUMA node0 CPU(s): 0-5 9313 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 9314 9315 ### cpuinfo: 9316 9317 processor : 0 9318 BogoMIPS : 48.00 9319 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 9320 CPU implementer : 0x41 9321 CPU architecture: 8 9322 CPU variant : 0x0 9323 CPU part : 0xd03 9324 CPU revision : 4 9325 9326 processor : 1 9327 BogoMIPS : 48.00 9328 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 9329 CPU implementer : 0x41 9330 CPU architecture: 8 9331 CPU variant : 0x0 9332 CPU part : 0xd03 9333 CPU revision : 4 9334 9335 processor : 2 9336 BogoMIPS : 48.00 9337 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 9338 CPU implementer : 0x41 9339 CPU architecture: 8 9340 CPU variant : 0x0 9341 CPU part : 0xd09 9342 CPU revision : 2 9343 9344 processor : 3 9345 BogoMIPS : 48.00 9346 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 9347 CPU implementer : 0x41 9348 CPU architecture: 8 9349 CPU variant : 0x0 9350 CPU part : 0xd09 9351 CPU revision : 2 9352 9353 processor : 4 9354 BogoMIPS : 48.00 9355 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 9356 CPU implementer : 0x41 9357 CPU architecture: 8 9358 CPU variant : 0x0 9359 CPU part : 0xd09 9360 CPU revision : 2 9361 9362 processor : 5 9363 BogoMIPS : 48.00 9364 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 9365 CPU implementer : 0x41 9366 CPU architecture: 8 9367 CPU variant : 0x0 9368 CPU part : 0xd09 9369 CPU revision : 2 9370 9371 9372 ### meminfo: 9373 9374 MemTotal: 3719728 kB 9375 MemFree: 3392288 kB 9376 MemAvailable: 3345556 kB 9377 Buffers: 11444 kB 9378 Cached: 43752 kB 9379 SwapCached: 0 kB 9380 Active: 29240 kB 9381 Inactive: 183780 kB 9382 Active(anon): 148 kB 9383 Inactive(anon): 162516 kB 9384 Active(file): 29092 kB 9385 Inactive(file): 21264 kB 9386 Unevictable: 0 kB 9387 Mlocked: 0 kB 9388 SwapTotal: 1859860 kB 9389 SwapFree: 1859860 kB 9390 Dirty: 4076 kB 9391 Writeback: 0 kB 9392 AnonPages: 157808 kB 9393 Mapped: 12932 kB 9394 Shmem: 4992 kB 9395 KReclaimable: 12892 kB 9396 Slab: 40300 kB 9397 SReclaimable: 12892 kB 9398 SUnreclaim: 27408 kB 9399 KernelStack: 2544 kB 9400 PageTables: 5732 kB 9401 NFS_Unstable: 0 kB 9402 Bounce: 0 kB 9403 WritebackTmp: 0 kB 9404 CommitLimit: 3719724 kB 9405 Committed_AS: 4240956 kB 9406 VmallocTotal: 135290159040 kB 9407 VmallocUsed: 33216 kB 9408 VmallocChunk: 0 kB 9409 Percpu: 1368 kB 9410 HardwareCorrupted: 0 kB 9411 AnonHugePages: 0 kB 9412 ShmemHugePages: 0 kB 9413 ShmemPmdMapped: 0 kB 9414 FileHugePages: 0 kB 9415 FilePmdMapped: 0 kB 9416 CmaTotal: 917504 kB 9417 CmaFree: 901724 kB 9418 HugePages_Total: 0 9419 HugePages_Free: 0 9420 HugePages_Rsvd: 0 9421 HugePages_Surp: 0 9422 Hugepagesize: 2048 kB 9423 Hugetlb: 0 kB 9424 9425 ### virtual memory: 9426 9427 vm.admin_reserve_kbytes = 8192 9428 vm.block_dump = 0 9429 vm.compaction_proactiveness = 20 9430 vm.compact_unevictable_allowed = 1 9431 vm.dirty_background_bytes = 0 9432 vm.dirty_background_ratio = 10 9433 vm.dirty_bytes = 0 9434 vm.dirty_expire_centisecs = 3000 9435 vm.dirty_ratio = 20 9436 vm.dirtytime_expire_seconds = 43200 9437 vm.dirty_writeback_centisecs = 500 9438 vm.extfrag_threshold = 500 9439 vm.hugetlb_shm_group = 0 9440 vm.laptop_mode = 0 9441 vm.legacy_va_layout = 0 9442 vm.lowmem_reserve_ratio = 256 256 32 0 9443 vm.max_map_count = 65530 9444 vm.memory_failure_early_kill = 0 9445 vm.memory_failure_recovery = 1 9446 vm.min_free_kbytes = 45056 9447 vm.min_slab_ratio = 5 9448 vm.min_unmapped_ratio = 1 9449 vm.mmap_min_addr = 4096 9450 vm.mmap_rnd_bits = 18 9451 vm.mmap_rnd_compat_bits = 11 9452 vm.nr_hugepages = 0 9453 vm.nr_hugepages_mempolicy = 0 9454 vm.nr_overcommit_hugepages = 0 9455 vm.numa_stat = 1 9456 vm.numa_zonelist_order = Node 9457 vm.oom_dump_tasks = 1 9458 vm.oom_kill_allocating_task = 0 9459 vm.overcommit_kbytes = 0 9460 vm.overcommit_memory = 0 9461 vm.overcommit_ratio = 50 9462 vm.page-cluster = 0 9463 vm.page_lock_unfairness = 5 9464 vm.panic_on_oom = 0 9465 vm.percpu_pagelist_fraction = 0 9466 vm.stat_interval = 1 9467 vm.swappiness = 100 9468 vm.user_reserve_kbytes = 115017 9469 vm.vfs_cache_pressure = 100 9470 vm.watermark_boost_factor = 15000 9471 vm.watermark_scale_factor = 10 9472 vm.zone_reclaim_mode = 0 9473 9474 ### ip addr: 9475 9476 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 9477 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 9478 inet XXX.XXX.0.1/8 scope host lo 9479 valid_lft forever preferred_lft forever 9480 inet6 ::1/128 scope host 9481 valid_lft forever preferred_lft forever 9482 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 9483 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 9484 9485 ### partitions: 9486 9487 major minor #blocks name 9488 9489 179 0 31464960 mmcblk1 9490 179 1 31146208 mmcblk1p1 9491 252 0 1859864 zram0 9492 252 1 51200 zram1 9493 9494 ### df: 9495 9496 udev 1.4G 0 1.4G 0% /dev 9497 tmpfs 364M 4.9M 359M 2% /run 9498 /dev/mmcblk1p1 30G 1.7G 28G 6% / 9499 tmpfs 1.8G 0 1.8G 0% /dev/shm 9500 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 9501 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 9502 tmpfs 1.8G 0 1.8G 0% /tmp 9503 /dev/zram1 49M 4.0M 41M 9% /var/log 9504 9505 ### lsblk: 9506 9507 NAME FSTYPE SIZE MOUNTPOINT UUID 9508 mmcblk1 30G 9509 └─mmcblk1p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 9510 zram1 50M /var/log 9511 9512 ### zramctl: 9513 9514 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 9515 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 9516 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 9517 9518 ### mtab: 9519 9520 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 9521 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 9522 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 9523 9524 ### mmc1:b368 info: 9525 9526 fwrev: 0x0 9527 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 9528 cid: 6f0303434241445310aa002b4d013b00 9529 rca: 0xb368 9530 csd: 400e005a5b590000f00e7f800a404000 9531 manfid: 0x00006f 9532 ocr: 0x00200000 9533 preferred_erase_size: 2097152 9534 type: SD 9535 hwrev: 0x1 9536 date: 11/2019 9537 dsr: 0x404 9538 erase_size: 512 9539 oemid: 0x0303 9540 serial: 0xaa002b4d 9541 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 9542 scr: 02b5800300000000 9543 name: CBADS 9544 9545 ### Boot system health: 9546 9547 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 9548 15:49:20: 1908/1992MHz 2.67 25% 11% 5% 0% 7% 0% 32.9°C 0/11 9549 15:49:21: 1908/ 250MHz 2.67 64% 16% 1% 0% 44% 1% 31.1°C 0/11 9550 15:49:21: 1908/1992MHz 2.67 51% 10% 4% 0% 34% 1% 31.2°C 0/11 9551 15:49:21: 1908/1992MHz 2.67 58% 5% 5% 1% 45% 1% 30.6°C 0/11 9552 15:49:22: 1908/1992MHz 2.67 61% 4% 5% 0% 50% 1% 30.9°C 0/11 9553 9554 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 9555 9556 ### Activated Armbian ramlog partition with zstd compression 9557 9558 Sun 14 Feb 2021 04:00:43 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 9559 9560 ### dmesg: 9561 9562 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 9563 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 9564 [ 0.000000] Machine model: Hardkernel ODROID-N2 9565 [ 0.000000] efi: UEFI not found. 9566 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 9567 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 9568 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 9569 [ 0.000000] NUMA: No NUMA configuration found 9570 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 9571 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 9572 [ 0.000000] Zone ranges: 9573 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 9574 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 9575 [ 0.000000] Normal empty 9576 [ 0.000000] Movable zone start for each node 9577 [ 0.000000] Early memory node ranges 9578 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 9579 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 9580 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 9581 [ 0.000000] On node 0 totalpages: 972032 9582 [ 0.000000] DMA zone: 4096 pages used for memmap 9583 [ 0.000000] DMA zone: 0 pages reserved 9584 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 9585 [ 0.000000] DMA32 zone: 11104 pages used for memmap 9586 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 9587 [ 0.000000] psci: probing for conduit method from DT. 9588 [ 0.000000] psci: PSCIv1.0 detected in firmware. 9589 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 9590 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 9591 [ 0.000000] psci: SMC Calling Convention v1.1 9592 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 9593 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 9594 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 9595 [ 0.000000] Detected VIPT I-cache on CPU0 9596 [ 0.000000] CPU features: detected: ARM erratum 845719 9597 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 9598 [ 0.000000] Policy zone: DMA32 9599 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 9600 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 9601 Please use sysfs to set IO scheduler for individual devices. 9602 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 9603 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 9604 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 9605 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 9606 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 9607 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 9608 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 9609 [ 0.000000] rcu: RCU event tracing is enabled. 9610 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 9611 [ 0.000000] Trampoline variant of Tasks RCU enabled. 9612 [ 0.000000] Rude variant of Tasks RCU enabled. 9613 [ 0.000000] Tracing variant of Tasks RCU enabled. 9614 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 9615 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 9616 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 9617 [ 0.000000] GIC: Using split EOI/Deactivate mode 9618 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 9619 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 9620 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 9621 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 9622 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 9623 [ 0.000241] Console: colour dummy device 80x25 9624 [ 0.000275] printk: console [tty1] enabled 9625 [ 0.000364] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 9626 [ 0.000376] pid_max: default: 32768 minimum: 301 9627 [ 0.000461] LSM: Security Framework initializing 9628 [ 0.000487] Yama: becoming mindful. 9629 [ 0.000578] AppArmor: AppArmor initialized 9630 [ 0.000629] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 9631 [ 0.000647] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 9632 [ 0.002644] rcu: Hierarchical SRCU implementation. 9633 [ 0.005001] EFI services will not be available. 9634 [ 0.005425] smp: Bringing up secondary CPUs ... 9635 [ 0.006093] Detected VIPT I-cache on CPU1 9636 [ 0.006155] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 9637 [ 0.007348] CPU features: detected: ARM erratum 858921 9638 [ 0.007356] CPU features: detected: Spectre-v2 9639 [ 0.007360] CPU features: detected: Spectre-v4 9640 [ 0.007367] Detected VIPT I-cache on CPU2 9641 [ 0.007393] arch_timer: Enabling local workaround for ARM erratum 858921 9642 [ 0.007407] arch_timer: CPU2: Trapping CNTVCT access 9643 [ 0.007420] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 9644 [ 0.008127] Detected VIPT I-cache on CPU3 9645 [ 0.008143] arch_timer: Enabling local workaround for ARM erratum 858921 9646 [ 0.008151] arch_timer: CPU3: Trapping CNTVCT access 9647 [ 0.008159] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 9648 [ 0.008782] Detected VIPT I-cache on CPU4 9649 [ 0.008799] arch_timer: Enabling local workaround for ARM erratum 858921 9650 [ 0.008805] arch_timer: CPU4: Trapping CNTVCT access 9651 [ 0.008814] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 9652 [ 0.009426] Detected VIPT I-cache on CPU5 9653 [ 0.009443] arch_timer: Enabling local workaround for ARM erratum 858921 9654 [ 0.009449] arch_timer: CPU5: Trapping CNTVCT access 9655 [ 0.009457] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 9656 [ 0.009536] smp: Brought up 1 node, 6 CPUs 9657 [ 0.009554] SMP: Total of 6 processors activated. 9658 [ 0.009561] CPU features: detected: 32-bit EL0 Support 9659 [ 0.009567] CPU features: detected: CRC32 instructions 9660 [ 0.009573] CPU features: detected: 32-bit EL1 Support 9661 [ 0.020782] CPU: All CPU(s) started at EL2 9662 [ 0.020832] alternatives: patching kernel code 9663 [ 0.022768] devtmpfs: initialized 9664 [ 0.030429] Registered cp15_barrier emulation handler 9665 [ 0.030443] Registered setend emulation handler 9666 [ 0.030578] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 9667 [ 0.030617] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 9668 [ 0.044519] pinctrl core: initialized pinctrl subsystem 9669 [ 0.045246] DMI not present or invalid. 9670 [ 0.045623] NET: Registered protocol family 16 9671 [ 0.047164] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 9672 [ 0.047436] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 9673 [ 0.047662] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 9674 [ 0.047702] audit: initializing netlink subsys (disabled) 9675 [ 0.047816] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 9676 [ 0.049120] thermal_sys: Registered thermal governor 'fair_share' 9677 [ 0.049127] thermal_sys: Registered thermal governor 'bang_bang' 9678 [ 0.049131] thermal_sys: Registered thermal governor 'step_wise' 9679 [ 0.049134] thermal_sys: Registered thermal governor 'user_space' 9680 [ 0.049550] cpuidle: using governor menu 9681 [ 0.049899] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 9682 [ 0.050022] ASID allocator initialised with 65536 entries 9683 [ 0.050937] Serial: AMBA PL011 UART driver 9684 [ 0.086708] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 9685 [ 0.086717] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 9686 [ 0.086722] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 9687 [ 0.086726] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 9688 [ 0.088126] cryptd: max_cpu_qlen set to 1000 9689 [ 0.156149] raid6: neonx8 gen() 2783 MB/s 9690 [ 0.224213] raid6: neonx8 xor() 2042 MB/s 9691 [ 0.292281] raid6: neonx4 gen() 2999 MB/s 9692 [ 0.360345] raid6: neonx4 xor() 2346 MB/s 9693 [ 0.428416] raid6: neonx2 gen() 2580 MB/s 9694 [ 0.496481] raid6: neonx2 xor() 2131 MB/s 9695 [ 0.564549] raid6: neonx1 gen() 2017 MB/s 9696 [ 0.632614] raid6: neonx1 xor() 1718 MB/s 9697 [ 0.700688] raid6: int64x8 gen() 1377 MB/s 9698 [ 0.768752] raid6: int64x8 xor() 735 MB/s 9699 [ 0.836843] raid6: int64x4 gen() 1463 MB/s 9700 [ 0.904890] raid6: int64x4 xor() 733 MB/s 9701 [ 0.972945] raid6: int64x2 gen() 1362 MB/s 9702 [ 1.041022] raid6: int64x2 xor() 619 MB/s 9703 [ 1.109090] raid6: int64x1 gen() 1120 MB/s 9704 [ 1.177142] raid6: int64x1 xor() 462 MB/s 9705 [ 1.177146] raid6: using algorithm neonx4 gen() 2999 MB/s 9706 [ 1.177149] raid6: .... xor() 2346 MB/s, rmw enabled 9707 [ 1.177153] raid6: using neon recovery algorithm 9708 [ 1.177591] ACPI: Interpreter disabled. 9709 [ 1.178371] 5V: supplied by 12V 9710 [ 1.179274] VDDAO_3V3: supplied by 12V 9711 [ 1.179726] iommu: Default domain type: Translated 9712 [ 1.179852] vgaarb: loaded 9713 [ 1.180790] SCSI subsystem initialized 9714 [ 1.181056] usbcore: registered new interface driver usbfs 9715 [ 1.181112] usbcore: registered new interface driver hub 9716 [ 1.181148] usbcore: registered new device driver usb 9717 [ 1.181449] pps_core: LinuxPPS API ver. 1 registered 9718 [ 1.181455] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 9719 [ 1.181526] PTP clock support registered 9720 [ 1.181708] EDAC MC: Ver: 3.0.0 9721 [ 1.182998] NetLabel: Initializing 9722 [ 1.183005] NetLabel: domain hash size = 128 9723 [ 1.183008] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 9724 [ 1.183049] NetLabel: unlabeled traffic allowed by default 9725 [ 1.183512] clocksource: Switched to clocksource arch_sys_counter 9726 [ 1.183734] VFS: Disk quotas dquot_6.6.0 9727 [ 1.183779] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 9728 [ 1.184128] AppArmor: AppArmor Filesystem Enabled 9729 [ 1.184173] pnp: PnP ACPI: disabled 9730 [ 1.189825] NET: Registered protocol family 2 9731 [ 1.190281] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 9732 [ 1.190385] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 9733 [ 1.190642] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 9734 [ 1.190829] TCP: Hash tables configured (established 32768 bind 32768) 9735 [ 1.190985] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 9736 [ 1.191052] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 9737 [ 1.191098] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 9738 [ 1.191241] NET: Registered protocol family 1 9739 [ 1.191261] PCI: CLS 0 bytes, default 64 9740 [ 1.191381] Trying to unpack rootfs image as initramfs... 9741 [ 1.727304] Freeing initrd memory: 13544K 9742 [ 1.728203] kvm [1]: IPA Size Limit: 40 bits 9743 [ 1.728911] kvm [1]: vgic interrupt IRQ9 9744 [ 1.729044] kvm [1]: Hyp mode initialized successfully 9745 [ 1.734118] Initialise system trusted keyrings 9746 [ 1.734153] Key type blacklist registered 9747 [ 1.734295] workingset: timestamp_bits=44 max_order=20 bucket_order=0 9748 [ 1.737506] zbud: loaded 9749 [ 1.738490] squashfs: version 4.0 (2009/01/31) Phillip Lougher 9750 [ 1.738979] fuse: init (API version 7.32) 9751 [ 1.739780] integrity: Platform Keyring initialized 9752 [ 1.767818] xor: measuring software checksum speed 9753 [ 1.770656] 8regs : 3473 MB/sec 9754 [ 1.773118] 32regs : 4020 MB/sec 9755 [ 1.775774] arm64_neon : 3719 MB/sec 9756 [ 1.775778] xor: using function: 32regs (4020 MB/sec) 9757 [ 1.775784] Key type asymmetric registered 9758 [ 1.775789] Asymmetric key parser 'x509' registered 9759 [ 1.775823] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 9760 [ 1.775929] io scheduler mq-deadline registered 9761 [ 1.775935] io scheduler kyber registered 9762 [ 1.776017] io scheduler bfq registered 9763 [ 1.778474] gpio-447 (usb-hub-reset): hogged as output/high 9764 [ 1.781388] EINJ: ACPI disabled. 9765 [ 1.787579] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 9766 [ 1.788966] VCC_3V3: supplied by VDDAO_3V3 9767 [ 1.789019] FLASH_1V8: supplied by VCC_3V3 9768 [ 1.789050] VCC_1V8: supplied by VCC_3V3 9769 [ 1.789076] VDDAO_1V8: supplied by VDDAO_3V3 9770 [ 1.789104] VDDCPU_A: supplied by regulator-dummy 9771 [ 1.789472] VDDCPU_B: supplied by regulator-dummy 9772 [ 1.790164] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 9773 [ 1.792468] Serial: AMBA driver 9774 [ 1.792754] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 9775 [ 1.792849] printk: console [ttyAML0] enabled 9776 [ 1.793367] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 9777 [ 1.798671] loop: module loaded 9778 [ 1.800452] libphy: Fixed MDIO Bus: probed 9779 [ 1.801383] tun: Universal TUN/TAP device driver, 1.6 9780 [ 1.801980] thunder_xcv, ver 1.0 9781 [ 1.802010] thunder_bgx, ver 1.0 9782 [ 1.802036] nicpf, ver 1.0 9783 [ 1.802452] e1000e: Intel(R) PRO/1000 Network Driver 9784 [ 1.802455] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 9785 [ 1.802488] igb: Intel(R) Gigabit Ethernet Network Driver 9786 [ 1.802492] igb: Copyright (c) 2007-2014 Intel Corporation. 9787 [ 1.802521] igbvf: Intel(R) Gigabit Virtual Function Network Driver 9788 [ 1.802524] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 9789 [ 1.802640] sky2: driver version 1.30 9790 [ 1.802988] VFIO - User Level meta-driver version: 0.3 9791 [ 1.804372] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 9792 [ 1.804389] ehci-pci: EHCI PCI platform driver 9793 [ 1.804418] ehci-platform: EHCI generic platform driver 9794 [ 1.804536] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 9795 [ 1.804546] ohci-pci: OHCI PCI platform driver 9796 [ 1.804581] ohci-platform: OHCI generic platform driver 9797 [ 1.804950] usbcore: registered new interface driver usb-storage 9798 [ 1.806123] mousedev: PS/2 mouse device common for all mice 9799 [ 1.806451] i2c /dev entries driver 9800 [ 1.812170] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 9801 [ 1.812868] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 9802 [ 1.813561] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 9803 [ 1.814155] sdhci: Secure Digital Host Controller Interface driver 9804 [ 1.814160] sdhci: Copyright(c) Pierre Ossman 9805 [ 1.814261] Synopsys Designware Multimedia Card Interface Driver 9806 [ 1.814683] sdhci-pltfm: SDHCI platform and OF driver helper 9807 [ 1.815117] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 9808 [ 1.816325] ledtrig-cpu: registered to indicate activity on CPUs 9809 [ 1.816597] meson-sm: secure-monitor enabled 9810 [ 1.816768] hid: raw HID events driver (C) Jiri Kosina 9811 [ 1.816853] usbcore: registered new interface driver usbhid 9812 [ 1.816856] usbhid: USB HID core driver 9813 [ 1.817820] NET: Registered protocol family 10 9814 [ 1.818282] Segment Routing with IPv6 9815 [ 1.818312] NET: Registered protocol family 17 9816 [ 1.818369] 8021q: 802.1Q VLAN Support v1.8 9817 [ 1.818392] Key type dns_resolver registered 9818 [ 1.818667] registered taskstats version 1 9819 [ 1.818672] Loading compiled-in X.509 certificates 9820 [ 1.820395] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 9821 [ 1.822013] zswap: loaded using pool zstd/z3fold 9822 [ 1.822204] Key type ._fscrypt registered 9823 [ 1.822206] Key type .fscrypt registered 9824 [ 1.822208] Key type fscrypt-provisioning registered 9825 [ 1.823297] Btrfs loaded, crc32c=crc32c-generic 9826 [ 1.829497] Key type encrypted registered 9827 [ 1.829509] AppArmor: AppArmor sha1 policy hashing enabled 9828 [ 1.835832] HUB_5V: supplied by 5V 9829 [ 1.836040] USB_PWR_EN: supplied by 5V 9830 [ 1.837662] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 9831 [ 1.837669] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 9832 [ 1.840386] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 9833 [ 1.840442] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 9834 [ 1.840545] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 9835 [ 1.841131] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 9836 [ 1.841141] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 9837 [ 1.841305] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 9838 [ 1.841324] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 9839 [ 1.841446] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 9840 [ 1.841450] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 9841 [ 1.841453] usb usb1: Product: xHCI Host Controller 9842 [ 1.841455] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 9843 [ 1.841458] usb usb1: SerialNumber: xhci-hcd.0.auto 9844 [ 1.841646] hub 1-0:1.0: USB hub found 9845 [ 1.841659] hub 1-0:1.0: 2 ports detected 9846 [ 1.841794] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 9847 [ 1.841801] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 9848 [ 1.841806] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 9849 [ 1.841826] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 9850 [ 1.841859] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 9851 [ 1.841862] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 9852 [ 1.841865] usb usb2: Product: xHCI Host Controller 9853 [ 1.841867] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 9854 [ 1.841869] usb usb2: SerialNumber: xhci-hcd.0.auto 9855 [ 1.842017] hub 2-0:1.0: USB hub found 9856 [ 1.842028] hub 2-0:1.0: 1 port detected 9857 [ 1.843563] meson-gx-mmc ffe05000.sd: Got CD GPIO 9858 [ 1.868599] Freeing unused kernel memory: 3328K 9859 [ 1.899564] Run /init as init process 9860 [ 1.899568] with arguments: 9861 [ 1.899570] /init 9862 [ 1.899572] with environment: 9863 [ 1.899574] HOME=/ 9864 [ 1.899575] TERM=linux 9865 [ 1.899577] hdmimode=custombuilt 9866 [ 1.899578] cvbsmode=576cvbs 9867 [ 1.899579] max_freq_a53=1896 9868 [ 1.899581] max_freq_a73=1800 9869 [ 1.899582] voutmode=hdmi 9870 [ 1.899584] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 9871 [ 1.899586] disablehpd=false 9872 [ 1.899587] cvbscable= 9873 [ 1.899589] overscan=100 9874 [ 1.920535] mmc0: new high speed SDHC card at address b368 9875 [ 1.921372] mmcblk0: mmc0:b368 CBADS 30.0 GiB 9876 [ 1.923273] mmcblk0: p1 9877 [ 2.047404] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 9878 [ 2.047410] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 9879 [ 2.047494] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 9880 [ 2.048014] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 9881 [ 2.048020] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 9882 [ 2.048024] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 9883 [ 2.048026] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 9884 [ 2.048029] meson8b-dwmac ff3f0000.ethernet: COE Type 2 9885 [ 2.048031] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 9886 [ 2.048033] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 9887 [ 2.048080] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 9888 [ 2.048083] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 9889 [ 2.048086] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 9890 [ 2.048274] libphy: stmmac: probed 9891 [ 2.052323] libphy: mdio_mux: probed 9892 [ 2.066234] meson-vrtc ff8000a8.rtc: registered as rtc1 9893 [ 2.083534] rtc-pcf8563 1-0051: registered as rtc0 9894 [ 2.083544] random: fast init done 9895 [ 2.085364] rtc-pcf8563 1-0051: setting system clock to 2021-02-14T16:00:35 UTC (1613318435) 9896 [ 2.179639] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 9897 [ 2.204249] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 9898 [ 2.204256] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 9899 [ 2.204259] usb 2-1: Product: USB3.1 Hub 9900 [ 2.204261] usb 2-1: Manufacturer: GenesysLogic 9901 [ 2.226019] hub 2-1:1.0: USB hub found 9902 [ 2.226302] hub 2-1:1.0: 4 ports detected 9903 [ 2.255979] libphy: mdio_mux: probed 9904 [ 2.327517] usb 1-1: new high-speed USB device number 2 using xhci-hcd 9905 [ 2.477800] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 9906 [ 2.477804] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 9907 [ 2.477807] usb 1-1: Product: USB2.1 Hub 9908 [ 2.477809] usb 1-1: Manufacturer: GenesysLogic 9909 [ 2.514018] hub 1-1:1.0: USB hub found 9910 [ 2.514256] hub 1-1:1.0: 4 ports detected 9911 [ 2.703508] usb 1-2: new high-speed USB device number 3 using xhci-hcd 9912 [ 2.852536] usb 1-2: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 9913 [ 2.852540] usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0 9914 [ 2.852542] usb 1-2: Product: USB2.0 Hub 9915 [ 2.898054] hub 1-2:1.0: USB hub found 9916 [ 2.898290] hub 1-2:1.0: 4 ports detected 9917 [ 3.142023] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 9918 [ 3.191560] usb 1-2.3: new high-speed USB device number 4 using xhci-hcd 9919 [ 3.296615] usb 1-2.3: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 9920 [ 3.296621] usb 1-2.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0 9921 [ 3.296625] usb 1-2.3: Product: USB2.0 Hub 9922 [ 3.346111] hub 1-2.3:1.0: USB hub found 9923 [ 3.346349] hub 1-2.3:1.0: 4 ports detected 9924 [ 3.427516] usb 1-2.4: new high-speed USB device number 5 using xhci-hcd 9925 [ 3.527987] usb 1-2.4: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 9926 [ 3.527994] usb 1-2.4: New USB device strings: Mfr=3, Product=1, SerialNumber=2 9927 [ 3.527996] usb 1-2.4: Product: PCTV 292e 9928 [ 3.527999] usb 1-2.4: Manufacturer: PCTV 9929 [ 3.528001] usb 1-2.4: SerialNumber: 0011356964 9930 [ 3.952277] systemd[1]: Inserted module 'autofs4' 9931 [ 3.998798] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 9932 [ 3.999011] systemd[1]: Detected architecture arm64. 9933 [ 4.025845] systemd[1]: Set hostname to <odroidn2>. 9934 [ 4.354856] random: systemd: uninitialized urandom read (16 bytes read) 9935 [ 4.358145] random: systemd: uninitialized urandom read (16 bytes read) 9936 [ 4.358448] systemd[1]: Listening on Journal Socket (/dev/log). 9937 [ 4.358643] random: systemd: uninitialized urandom read (16 bytes read) 9938 [ 4.358782] systemd[1]: Listening on fsck to fsckd communication Socket. 9939 [ 4.358869] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 9940 [ 4.359108] systemd[1]: Listening on Journal Audit Socket. 9941 [ 4.360430] systemd[1]: Created slice system-getty.slice. 9942 [ 4.360706] systemd[1]: Listening on udev Kernel Socket. 9943 [ 4.360795] systemd[1]: Reached target Remote File Systems. 9944 [ 4.441033] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 9945 [ 4.992888] zram: Added device: zram0 9946 [ 4.993044] zram: Added device: zram1 9947 [ 4.993196] zram: Added device: zram2 9948 [ 4.993533] pwm-gpio pwmgpio: 1 gpio pwms loaded 9949 [ 5.120423] mc: Linux media interface: v0.10 9950 [ 5.157569] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 9951 [ 5.173444] videodev: Linux video capture interface: v2.00 9952 [ 5.255682] Registered IR keymap rc-odroid 9953 [ 5.279921] IR NEC protocol handler initialized 9954 [ 5.308353] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 9955 [ 5.308627] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 9956 [ 5.308750] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 9957 [ 5.309046] meson-ir ff808000.ir: receiver initialized 9958 [ 5.316451] meson-drm ff900000.vpu: Queued 2 outputs on vpu 9959 [ 5.332468] panfrost ffe40000.gpu: clock rate = 24000000 9960 [ 5.332520] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 9961 [ 5.339054] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 9962 [ 5.339064] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 9963 [ 5.339070] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 9964 [ 5.339074] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 9965 [ 5.353931] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 9966 [ 5.355290] meson-drm ff900000.vpu: CVBS Output connector not available 9967 [ 5.382954] zram0: detected capacity change from 0 to 1904500736 9968 [ 5.386352] em28xx 1-2.4:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 9969 [ 5.386361] em28xx 1-2.4:1.0: DVB interface 0 found: isoc 9970 [ 5.389417] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 9971 [ 5.390301] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 9972 [ 5.401865] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 9973 [ 5.403533] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 9974 [ 5.403849] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 9975 [ 5.443607] em28xx 1-2.4:1.0: chip ID is em28178 9976 [ 5.687672] Console: switching to colour frame buffer device 240x67 9977 [ 5.714184] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 9978 [ 5.750725] axg-sound-card sound: ASoC: no DMI vendor name! 9979 [ 6.423521] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 9980 [ 6.487630] zram1: detected capacity change from 0 to 52428800 9981 [ 7.493702] em28xx 1-2.4:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 9982 [ 7.493705] em28xx 1-2.4:1.0: EEPROM info: 9983 [ 7.493708] em28xx 1-2.4:1.0: microcode start address = 0x0004, boot configuration = 0x01 9984 [ 7.499818] em28xx 1-2.4:1.0: AC97 audio (5 sample rates) 9985 [ 7.499821] em28xx 1-2.4:1.0: 500mA max power 9986 [ 7.499824] em28xx 1-2.4:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 9987 [ 7.559508] em28xx 1-2.4:1.0: Identified as PCTV tripleStick (292e) (card=94) 9988 [ 7.559514] em28xx 1-2.4:1.0: dvb set to isoc mode. 9989 [ 7.559633] usbcore: registered new interface driver em28xx 9990 [ 7.585941] em28xx 1-2.4:1.0: Binding DVB extension 9991 [ 7.599234] i2c i2c-4: Added multiplexed i2c bus 5 9992 [ 7.599243] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 9993 [ 7.599246] si2168 4-0064: firmware version: B 4.0.2 9994 [ 7.607608] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 9995 [ 7.607648] dvbdev: DVB: registering new adapter (1-2.4:1.0) 9996 [ 7.607654] em28xx 1-2.4:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 9997 [ 7.607660] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 9998 [ 7.608316] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 9999 [ 7.633965] em28xx 1-2.4:1.0: DVB extension successfully initialized 10000 [ 7.633973] em28xx: Registered (Em28xx dvb Extension) extension 10001 [ 7.641015] em28xx 1-2.4:1.0: Registering input extension 10002 [ 7.671508] Registered IR keymap rc-pinnacle-pctv-hd 10003 [ 7.671687] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.0/rc/rc1 10004 [ 7.671760] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 10005 [ 7.671820] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.0/rc/rc1/input1 10006 [ 7.671896] em28xx 1-2.4:1.0: Input extension successfully initialized 10007 [ 7.671899] em28xx: Registered (Em28xx Input Extension) extension 10008 [ 8.573726] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 10009 [ 8.573746] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 10010 [ 9.622524] systemd[1]: Started Armbian memory supported logging. 10011 [ 9.626661] systemd[1]: Starting Journal Service... 10012 [ 9.692546] systemd[1]: Started Journal Service. 10013 [ 9.720161] systemd-journald[1847]: Received request to flush runtime journal from PID 1 10014 10015 ### armbian-release: 10016 10017 # PLEASE DO NOT EDIT THIS FILE 10018 BOARD=odroidn2 10019 BOARD_NAME="Odroid N2" 10020 BOARDFAMILY=meson-g12b 10021 BUILD_REPOSITORY_URL=https://github.com/armbian/build 10022 BUILD_REPOSITORY_COMMIT=5f03d652 10023 DISTRIBUTION_CODENAME=buster 10024 DISTRIBUTION_STATUS=supported 10025 VERSION=21.02.1 10026 LINUXFAMILY=meson64 10027 BRANCH=current 10028 ARCH=arm64 10029 IMAGE_TYPE=stable 10030 BOARD_TYPE=conf 10031 INITRD_ARCH=arm64 10032 KERNEL_IMAGE_TYPE=Image 10033 10034 ### boot environment: 10035 10036 verbosity=1 10037 console=both 10038 overlay_prefix=meson 10039 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 10040 rootfstype=ext4 10041 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 10042 10043 ### lsusb: 10044 10045 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 10046 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 10047 Bus 001 Device 005: ID 2013:025f PCTV Systems 10048 Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. Hub 10049 Bus 001 Device 003: ID 05e3:0608 Genesys Logic, Inc. Hub 10050 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 10051 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 10052 10053 ### lscpu: 10054 10055 Architecture: aarch64 10056 Byte Order: Little Endian 10057 CPU(s): 6 10058 On-line CPU(s) list: 0-5 10059 Thread(s) per core: 1 10060 Core(s) per socket: 3 10061 Socket(s): 2 10062 NUMA node(s): 1 10063 Vendor ID: ARM 10064 Model: 4 10065 Model name: Cortex-A53 10066 Stepping: r0p4 10067 CPU max MHz: 1992.0000 10068 CPU min MHz: 100.0000 10069 BogoMIPS: 48.00 10070 L1d cache: unknown size 10071 L1i cache: unknown size 10072 L2 cache: unknown size 10073 NUMA node0 CPU(s): 0-5 10074 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10075 10076 ### cpuinfo: 10077 10078 processor : 0 10079 BogoMIPS : 48.00 10080 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10081 CPU implementer : 0x41 10082 CPU architecture: 8 10083 CPU variant : 0x0 10084 CPU part : 0xd03 10085 CPU revision : 4 10086 10087 processor : 1 10088 BogoMIPS : 48.00 10089 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10090 CPU implementer : 0x41 10091 CPU architecture: 8 10092 CPU variant : 0x0 10093 CPU part : 0xd03 10094 CPU revision : 4 10095 10096 processor : 2 10097 BogoMIPS : 48.00 10098 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10099 CPU implementer : 0x41 10100 CPU architecture: 8 10101 CPU variant : 0x0 10102 CPU part : 0xd09 10103 CPU revision : 2 10104 10105 processor : 3 10106 BogoMIPS : 48.00 10107 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10108 CPU implementer : 0x41 10109 CPU architecture: 8 10110 CPU variant : 0x0 10111 CPU part : 0xd09 10112 CPU revision : 2 10113 10114 processor : 4 10115 BogoMIPS : 48.00 10116 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10117 CPU implementer : 0x41 10118 CPU architecture: 8 10119 CPU variant : 0x0 10120 CPU part : 0xd09 10121 CPU revision : 2 10122 10123 processor : 5 10124 BogoMIPS : 48.00 10125 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10126 CPU implementer : 0x41 10127 CPU architecture: 8 10128 CPU variant : 0x0 10129 CPU part : 0xd09 10130 CPU revision : 2 10131 10132 10133 ### meminfo: 10134 10135 MemTotal: 3719728 kB 10136 MemFree: 3401444 kB 10137 MemAvailable: 3354928 kB 10138 Buffers: 11444 kB 10139 Cached: 44188 kB 10140 SwapCached: 0 kB 10141 Active: 29104 kB 10142 Inactive: 176912 kB 10143 Active(anon): 152 kB 10144 Inactive(anon): 155400 kB 10145 Active(file): 28952 kB 10146 Inactive(file): 21512 kB 10147 Unevictable: 0 kB 10148 Mlocked: 0 kB 10149 SwapTotal: 1859860 kB 10150 SwapFree: 1859860 kB 10151 Dirty: 4348 kB 10152 Writeback: 0 kB 10153 AnonPages: 150672 kB 10154 Mapped: 13388 kB 10155 Shmem: 5008 kB 10156 KReclaimable: 13220 kB 10157 Slab: 40792 kB 10158 SReclaimable: 13220 kB 10159 SUnreclaim: 27572 kB 10160 KernelStack: 2496 kB 10161 PageTables: 5996 kB 10162 NFS_Unstable: 0 kB 10163 Bounce: 0 kB 10164 WritebackTmp: 0 kB 10165 CommitLimit: 3719724 kB 10166 Committed_AS: 4240456 kB 10167 VmallocTotal: 135290159040 kB 10168 VmallocUsed: 33200 kB 10169 VmallocChunk: 0 kB 10170 Percpu: 1368 kB 10171 HardwareCorrupted: 0 kB 10172 AnonHugePages: 0 kB 10173 ShmemHugePages: 0 kB 10174 ShmemPmdMapped: 0 kB 10175 FileHugePages: 0 kB 10176 FilePmdMapped: 0 kB 10177 CmaTotal: 917504 kB 10178 CmaFree: 901724 kB 10179 HugePages_Total: 0 10180 HugePages_Free: 0 10181 HugePages_Rsvd: 0 10182 HugePages_Surp: 0 10183 Hugepagesize: 2048 kB 10184 Hugetlb: 0 kB 10185 10186 ### virtual memory: 10187 10188 vm.admin_reserve_kbytes = 8192 10189 vm.block_dump = 0 10190 vm.compaction_proactiveness = 20 10191 vm.compact_unevictable_allowed = 1 10192 vm.dirty_background_bytes = 0 10193 vm.dirty_background_ratio = 10 10194 vm.dirty_bytes = 0 10195 vm.dirty_expire_centisecs = 3000 10196 vm.dirty_ratio = 20 10197 vm.dirtytime_expire_seconds = 43200 10198 vm.dirty_writeback_centisecs = 500 10199 vm.extfrag_threshold = 500 10200 vm.hugetlb_shm_group = 0 10201 vm.laptop_mode = 0 10202 vm.legacy_va_layout = 0 10203 vm.lowmem_reserve_ratio = 256 256 32 0 10204 vm.max_map_count = 65530 10205 vm.memory_failure_early_kill = 0 10206 vm.memory_failure_recovery = 1 10207 vm.min_free_kbytes = 45056 10208 vm.min_slab_ratio = 5 10209 vm.min_unmapped_ratio = 1 10210 vm.mmap_min_addr = 4096 10211 vm.mmap_rnd_bits = 18 10212 vm.mmap_rnd_compat_bits = 11 10213 vm.nr_hugepages = 0 10214 vm.nr_hugepages_mempolicy = 0 10215 vm.nr_overcommit_hugepages = 0 10216 vm.numa_stat = 1 10217 vm.numa_zonelist_order = Node 10218 vm.oom_dump_tasks = 1 10219 vm.oom_kill_allocating_task = 0 10220 vm.overcommit_kbytes = 0 10221 vm.overcommit_memory = 0 10222 vm.overcommit_ratio = 50 10223 vm.page-cluster = 0 10224 vm.page_lock_unfairness = 5 10225 vm.panic_on_oom = 0 10226 vm.percpu_pagelist_fraction = 0 10227 vm.stat_interval = 1 10228 vm.swappiness = 100 10229 vm.user_reserve_kbytes = 115063 10230 vm.vfs_cache_pressure = 100 10231 vm.watermark_boost_factor = 15000 10232 vm.watermark_scale_factor = 10 10233 vm.zone_reclaim_mode = 0 10234 10235 ### ip addr: 10236 10237 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 10238 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 10239 inet XXX.XXX.0.1/8 scope host lo 10240 valid_lft forever preferred_lft forever 10241 inet6 ::1/128 scope host 10242 valid_lft forever preferred_lft forever 10243 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 10244 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 10245 10246 ### partitions: 10247 10248 major minor #blocks name 10249 10250 179 0 31464960 mmcblk0 10251 179 1 31146208 mmcblk0p1 10252 252 0 1859864 zram0 10253 252 1 51200 zram1 10254 10255 ### df: 10256 10257 udev 1.4G 0 1.4G 0% /dev 10258 tmpfs 364M 4.9M 359M 2% /run 10259 /dev/mmcblk0p1 30G 1.7G 28G 6% / 10260 tmpfs 1.8G 0 1.8G 0% /dev/shm 10261 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 10262 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 10263 tmpfs 1.8G 0 1.8G 0% /tmp 10264 /dev/zram1 49M 4.3M 41M 10% /var/log 10265 10266 ### lsblk: 10267 10268 NAME FSTYPE SIZE MOUNTPOINT UUID 10269 mmcblk0 30G 10270 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 10271 zram1 50M /var/log 10272 10273 ### zramctl: 10274 10275 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 10276 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 10277 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 10278 10279 ### mtab: 10280 10281 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 10282 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 10283 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 10284 10285 ### mmc0:b368 info: 10286 10287 fwrev: 0x0 10288 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 10289 cid: 6f0303434241445310aa002b4d013b00 10290 rca: 0xb368 10291 csd: 400e005a5b590000f00e7f800a404000 10292 manfid: 0x00006f 10293 ocr: 0x00200000 10294 preferred_erase_size: 2097152 10295 type: SD 10296 hwrev: 0x1 10297 date: 11/2019 10298 dsr: 0x404 10299 erase_size: 512 10300 oemid: 0x0303 10301 serial: 0xaa002b4d 10302 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 10303 scr: 02b5800300000000 10304 name: CBADS 10305 10306 ### Boot system health: 10307 10308 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 10309 16:00:44: 1908/1992MHz 2.67 23% 11% 5% 0% 6% 0% 34.7°C 0/11 10310 16:00:44: 1908/1992MHz 2.67 85% 38% 9% 0% 35% 1% 34.8°C 0/11 10311 16:00:44: 1908/1992MHz 2.67 60% 11% 0% 0% 45% 1% 31.1°C 0/11 10312 16:00:45: 1908/ 250MHz 2.67 49% 10% 6% 0% 30% 2% 31.3°C 0/11 10313 16:00:45: 1908/1992MHz 2.67 60% 7% 4% 0% 45% 1% 30.9°C 0/11 10314 10315 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 10316 10317 ### Activated Armbian ramlog partition with zstd compression 10318 10319 Sun 14 Feb 2021 04:01:50 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 10320 10321 ### dmesg: 10322 10323 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 10324 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 10325 [ 0.000000] Machine model: Hardkernel ODROID-N2 10326 [ 0.000000] efi: UEFI not found. 10327 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 10328 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 10329 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 10330 [ 0.000000] NUMA: No NUMA configuration found 10331 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 10332 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 10333 [ 0.000000] Zone ranges: 10334 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 10335 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 10336 [ 0.000000] Normal empty 10337 [ 0.000000] Movable zone start for each node 10338 [ 0.000000] Early memory node ranges 10339 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 10340 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 10341 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 10342 [ 0.000000] On node 0 totalpages: 972032 10343 [ 0.000000] DMA zone: 4096 pages used for memmap 10344 [ 0.000000] DMA zone: 0 pages reserved 10345 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 10346 [ 0.000000] DMA32 zone: 11104 pages used for memmap 10347 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 10348 [ 0.000000] psci: probing for conduit method from DT. 10349 [ 0.000000] psci: PSCIv1.0 detected in firmware. 10350 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 10351 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 10352 [ 0.000000] psci: SMC Calling Convention v1.1 10353 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 10354 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 10355 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 10356 [ 0.000000] Detected VIPT I-cache on CPU0 10357 [ 0.000000] CPU features: detected: ARM erratum 845719 10358 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 10359 [ 0.000000] Policy zone: DMA32 10360 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 10361 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 10362 Please use sysfs to set IO scheduler for individual devices. 10363 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 10364 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 10365 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 10366 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 10367 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 10368 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 10369 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 10370 [ 0.000000] rcu: RCU event tracing is enabled. 10371 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 10372 [ 0.000000] Trampoline variant of Tasks RCU enabled. 10373 [ 0.000000] Rude variant of Tasks RCU enabled. 10374 [ 0.000000] Tracing variant of Tasks RCU enabled. 10375 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 10376 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 10377 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 10378 [ 0.000000] GIC: Using split EOI/Deactivate mode 10379 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 10380 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 10381 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 10382 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 10383 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 10384 [ 0.000242] Console: colour dummy device 80x25 10385 [ 0.000276] printk: console [tty1] enabled 10386 [ 0.000365] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 10387 [ 0.000377] pid_max: default: 32768 minimum: 301 10388 [ 0.000460] LSM: Security Framework initializing 10389 [ 0.000485] Yama: becoming mindful. 10390 [ 0.000572] AppArmor: AppArmor initialized 10391 [ 0.000624] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 10392 [ 0.000643] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 10393 [ 0.002641] rcu: Hierarchical SRCU implementation. 10394 [ 0.005029] EFI services will not be available. 10395 [ 0.005451] smp: Bringing up secondary CPUs ... 10396 [ 0.006126] Detected VIPT I-cache on CPU1 10397 [ 0.006187] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 10398 [ 0.007379] CPU features: detected: ARM erratum 858921 10399 [ 0.007387] CPU features: detected: Spectre-v2 10400 [ 0.007391] CPU features: detected: Spectre-v4 10401 [ 0.007397] Detected VIPT I-cache on CPU2 10402 [ 0.007423] arch_timer: Enabling local workaround for ARM erratum 858921 10403 [ 0.007438] arch_timer: CPU2: Trapping CNTVCT access 10404 [ 0.007451] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 10405 [ 0.008157] Detected VIPT I-cache on CPU3 10406 [ 0.008174] arch_timer: Enabling local workaround for ARM erratum 858921 10407 [ 0.008181] arch_timer: CPU3: Trapping CNTVCT access 10408 [ 0.008188] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 10409 [ 0.008813] Detected VIPT I-cache on CPU4 10410 [ 0.008830] arch_timer: Enabling local workaround for ARM erratum 858921 10411 [ 0.008837] arch_timer: CPU4: Trapping CNTVCT access 10412 [ 0.008845] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 10413 [ 0.009459] Detected VIPT I-cache on CPU5 10414 [ 0.009476] arch_timer: Enabling local workaround for ARM erratum 858921 10415 [ 0.009483] arch_timer: CPU5: Trapping CNTVCT access 10416 [ 0.009491] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 10417 [ 0.009572] smp: Brought up 1 node, 6 CPUs 10418 [ 0.009589] SMP: Total of 6 processors activated. 10419 [ 0.009597] CPU features: detected: 32-bit EL0 Support 10420 [ 0.009603] CPU features: detected: CRC32 instructions 10421 [ 0.009609] CPU features: detected: 32-bit EL1 Support 10422 [ 0.020890] CPU: All CPU(s) started at EL2 10423 [ 0.020939] alternatives: patching kernel code 10424 [ 0.022879] devtmpfs: initialized 10425 [ 0.030560] Registered cp15_barrier emulation handler 10426 [ 0.030573] Registered setend emulation handler 10427 [ 0.030710] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 10428 [ 0.030748] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 10429 [ 0.044687] pinctrl core: initialized pinctrl subsystem 10430 [ 0.045237] DMI not present or invalid. 10431 [ 0.045633] NET: Registered protocol family 16 10432 [ 0.047269] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 10433 [ 0.047542] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 10434 [ 0.047767] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 10435 [ 0.047808] audit: initializing netlink subsys (disabled) 10436 [ 0.047900] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 10437 [ 0.049308] thermal_sys: Registered thermal governor 'fair_share' 10438 [ 0.049316] thermal_sys: Registered thermal governor 'bang_bang' 10439 [ 0.049320] thermal_sys: Registered thermal governor 'step_wise' 10440 [ 0.049323] thermal_sys: Registered thermal governor 'user_space' 10441 [ 0.049742] cpuidle: using governor menu 10442 [ 0.050093] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 10443 [ 0.050213] ASID allocator initialised with 65536 entries 10444 [ 0.051129] Serial: AMBA PL011 UART driver 10445 [ 0.084815] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 10446 [ 0.084824] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 10447 [ 0.084829] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 10448 [ 0.084833] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 10449 [ 0.086783] cryptd: max_cpu_qlen set to 1000 10450 [ 0.156198] raid6: neonx8 gen() 2786 MB/s 10451 [ 0.224256] raid6: neonx8 xor() 2042 MB/s 10452 [ 0.292347] raid6: neonx4 gen() 2994 MB/s 10453 [ 0.360391] raid6: neonx4 xor() 2399 MB/s 10454 [ 0.428455] raid6: neonx2 gen() 2560 MB/s 10455 [ 0.496537] raid6: neonx2 xor() 2200 MB/s 10456 [ 0.564589] raid6: neonx1 gen() 2077 MB/s 10457 [ 0.632659] raid6: neonx1 xor() 1727 MB/s 10458 [ 0.700754] raid6: int64x8 gen() 1375 MB/s 10459 [ 0.768834] raid6: int64x8 xor() 784 MB/s 10460 [ 0.836938] raid6: int64x4 gen() 1657 MB/s 10461 [ 0.904991] raid6: int64x4 xor() 733 MB/s 10462 [ 0.973051] raid6: int64x2 gen() 1362 MB/s 10463 [ 1.041120] raid6: int64x2 xor() 619 MB/s 10464 [ 1.109176] raid6: int64x1 gen() 1120 MB/s 10465 [ 1.177233] raid6: int64x1 xor() 462 MB/s 10466 [ 1.177237] raid6: using algorithm neonx4 gen() 2994 MB/s 10467 [ 1.177240] raid6: .... xor() 2399 MB/s, rmw enabled 10468 [ 1.177244] raid6: using neon recovery algorithm 10469 [ 1.177675] ACPI: Interpreter disabled. 10470 [ 1.178449] 5V: supplied by 12V 10471 [ 1.179353] VDDAO_3V3: supplied by 12V 10472 [ 1.179828] iommu: Default domain type: Translated 10473 [ 1.179953] vgaarb: loaded 10474 [ 1.180875] SCSI subsystem initialized 10475 [ 1.181089] usbcore: registered new interface driver usbfs 10476 [ 1.181132] usbcore: registered new interface driver hub 10477 [ 1.181166] usbcore: registered new device driver usb 10478 [ 1.181441] pps_core: LinuxPPS API ver. 1 registered 10479 [ 1.181446] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 10480 [ 1.181471] PTP clock support registered 10481 [ 1.181665] EDAC MC: Ver: 3.0.0 10482 [ 1.182976] NetLabel: Initializing 10483 [ 1.182983] NetLabel: domain hash size = 128 10484 [ 1.182986] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 10485 [ 1.183028] NetLabel: unlabeled traffic allowed by default 10486 [ 1.183474] clocksource: Switched to clocksource arch_sys_counter 10487 [ 1.183678] VFS: Disk quotas dquot_6.6.0 10488 [ 1.183724] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 10489 [ 1.184088] AppArmor: AppArmor Filesystem Enabled 10490 [ 1.184138] pnp: PnP ACPI: disabled 10491 [ 1.189552] NET: Registered protocol family 2 10492 [ 1.190037] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 10493 [ 1.190141] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 10494 [ 1.190398] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 10495 [ 1.190585] TCP: Hash tables configured (established 32768 bind 32768) 10496 [ 1.190742] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 10497 [ 1.190808] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 10498 [ 1.190859] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 10499 [ 1.191005] NET: Registered protocol family 1 10500 [ 1.191025] PCI: CLS 0 bytes, default 64 10501 [ 1.191147] Trying to unpack rootfs image as initramfs... 10502 [ 1.727039] Freeing initrd memory: 13544K 10503 [ 1.727964] kvm [1]: IPA Size Limit: 40 bits 10504 [ 1.728666] kvm [1]: vgic interrupt IRQ9 10505 [ 1.728797] kvm [1]: Hyp mode initialized successfully 10506 [ 1.732771] Initialise system trusted keyrings 10507 [ 1.732805] Key type blacklist registered 10508 [ 1.732908] workingset: timestamp_bits=44 max_order=20 bucket_order=0 10509 [ 1.736134] zbud: loaded 10510 [ 1.737114] squashfs: version 4.0 (2009/01/31) Phillip Lougher 10511 [ 1.737568] fuse: init (API version 7.32) 10512 [ 1.738338] integrity: Platform Keyring initialized 10513 [ 1.766287] xor: measuring software checksum speed 10514 [ 1.769135] 8regs : 3473 MB/sec 10515 [ 1.771617] 32regs : 4018 MB/sec 10516 [ 1.774267] arm64_neon : 3719 MB/sec 10517 [ 1.774270] xor: using function: 32regs (4018 MB/sec) 10518 [ 1.774276] Key type asymmetric registered 10519 [ 1.774280] Asymmetric key parser 'x509' registered 10520 [ 1.774314] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 10521 [ 1.774391] io scheduler mq-deadline registered 10522 [ 1.774395] io scheduler kyber registered 10523 [ 1.774478] io scheduler bfq registered 10524 [ 1.776967] gpio-447 (usb-hub-reset): hogged as output/high 10525 [ 1.779821] EINJ: ACPI disabled. 10526 [ 1.785965] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 10527 [ 1.787303] VCC_3V3: supplied by VDDAO_3V3 10528 [ 1.787349] FLASH_1V8: supplied by VCC_3V3 10529 [ 1.787381] VCC_1V8: supplied by VCC_3V3 10530 [ 1.787408] VDDAO_1V8: supplied by VDDAO_3V3 10531 [ 1.787439] VDDCPU_A: supplied by regulator-dummy 10532 [ 1.787862] VDDCPU_B: supplied by regulator-dummy 10533 [ 1.788521] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 10534 [ 1.790645] Serial: AMBA driver 10535 [ 1.790917] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 10536 [ 1.791011] printk: console [ttyAML0] enabled 10537 [ 1.791592] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 10538 [ 1.797003] loop: module loaded 10539 [ 1.798965] libphy: Fixed MDIO Bus: probed 10540 [ 1.800209] tun: Universal TUN/TAP device driver, 1.6 10541 [ 1.800815] thunder_xcv, ver 1.0 10542 [ 1.800847] thunder_bgx, ver 1.0 10543 [ 1.800874] nicpf, ver 1.0 10544 [ 1.801299] e1000e: Intel(R) PRO/1000 Network Driver 10545 [ 1.801303] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 10546 [ 1.801344] igb: Intel(R) Gigabit Ethernet Network Driver 10547 [ 1.801347] igb: Copyright (c) 2007-2014 Intel Corporation. 10548 [ 1.801384] igbvf: Intel(R) Gigabit Virtual Function Network Driver 10549 [ 1.801387] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 10550 [ 1.801507] sky2: driver version 1.30 10551 [ 1.801879] VFIO - User Level meta-driver version: 0.3 10552 [ 1.803213] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 10553 [ 1.803235] ehci-pci: EHCI PCI platform driver 10554 [ 1.803267] ehci-platform: EHCI generic platform driver 10555 [ 1.803393] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 10556 [ 1.803403] ohci-pci: OHCI PCI platform driver 10557 [ 1.803436] ohci-platform: OHCI generic platform driver 10558 [ 1.803860] usbcore: registered new interface driver usb-storage 10559 [ 1.805082] mousedev: PS/2 mouse device common for all mice 10560 [ 1.805462] i2c /dev entries driver 10561 [ 1.810585] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 10562 [ 1.811243] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 10563 [ 1.811939] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 10564 [ 1.812511] sdhci: Secure Digital Host Controller Interface driver 10565 [ 1.812517] sdhci: Copyright(c) Pierre Ossman 10566 [ 1.812624] Synopsys Designware Multimedia Card Interface Driver 10567 [ 1.813047] sdhci-pltfm: SDHCI platform and OF driver helper 10568 [ 1.813465] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 10569 [ 1.813806] ledtrig-cpu: registered to indicate activity on CPUs 10570 [ 1.814057] meson-sm: secure-monitor enabled 10571 [ 1.814515] hid: raw HID events driver (C) Jiri Kosina 10572 [ 1.814595] usbcore: registered new interface driver usbhid 10573 [ 1.814597] usbhid: USB HID core driver 10574 [ 1.815678] NET: Registered protocol family 10 10575 [ 1.816130] Segment Routing with IPv6 10576 [ 1.816164] NET: Registered protocol family 17 10577 [ 1.816210] 8021q: 802.1Q VLAN Support v1.8 10578 [ 1.816232] Key type dns_resolver registered 10579 [ 1.816515] registered taskstats version 1 10580 [ 1.816521] Loading compiled-in X.509 certificates 10581 [ 1.818203] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 10582 [ 1.819812] zswap: loaded using pool zstd/z3fold 10583 [ 1.819974] Key type ._fscrypt registered 10584 [ 1.819976] Key type .fscrypt registered 10585 [ 1.819979] Key type fscrypt-provisioning registered 10586 [ 1.821054] Btrfs loaded, crc32c=crc32c-generic 10587 [ 1.826988] Key type encrypted registered 10588 [ 1.827001] AppArmor: AppArmor sha1 policy hashing enabled 10589 [ 1.833424] HUB_5V: supplied by 5V 10590 [ 1.833630] USB_PWR_EN: supplied by 5V 10591 [ 1.835250] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 10592 [ 1.835257] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 10593 [ 1.837966] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 10594 [ 1.838024] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 10595 [ 1.838166] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 10596 [ 1.838760] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 10597 [ 1.838771] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 10598 [ 1.838853] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 10599 [ 1.838877] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 10600 [ 1.838999] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 10601 [ 1.839003] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 10602 [ 1.839006] usb usb1: Product: xHCI Host Controller 10603 [ 1.839008] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 10604 [ 1.839010] usb usb1: SerialNumber: xhci-hcd.0.auto 10605 [ 1.839198] hub 1-0:1.0: USB hub found 10606 [ 1.839213] hub 1-0:1.0: 2 ports detected 10607 [ 1.839341] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 10608 [ 1.839347] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 10609 [ 1.839352] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 10610 [ 1.839372] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 10611 [ 1.839402] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 10612 [ 1.839405] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 10613 [ 1.839407] usb usb2: Product: xHCI Host Controller 10614 [ 1.839409] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 10615 [ 1.839411] usb usb2: SerialNumber: xhci-hcd.0.auto 10616 [ 1.839766] hub 2-0:1.0: USB hub found 10617 [ 1.839778] hub 2-0:1.0: 1 port detected 10618 [ 1.840884] meson-gx-mmc ffe05000.sd: Got CD GPIO 10619 [ 1.868288] Freeing unused kernel memory: 3328K 10620 [ 1.907543] Run /init as init process 10621 [ 1.907547] with arguments: 10622 [ 1.907549] /init 10623 [ 1.907551] with environment: 10624 [ 1.907553] HOME=/ 10625 [ 1.907554] TERM=linux 10626 [ 1.907556] hdmimode=custombuilt 10627 [ 1.907557] cvbsmode=576cvbs 10628 [ 1.907559] max_freq_a53=1896 10629 [ 1.907560] max_freq_a73=1800 10630 [ 1.907562] voutmode=hdmi 10631 [ 1.907563] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 10632 [ 1.907565] disablehpd=false 10633 [ 1.907566] cvbscable= 10634 [ 1.907567] overscan=100 10635 [ 1.934941] mmc0: new ultra high speed SDR25 SDHC card at address b368 10636 [ 1.935791] mmcblk0: mmc0:b368 CBADS 30.0 GiB 10637 [ 1.937783] mmcblk0: p1 10638 [ 2.068508] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 10639 [ 2.068515] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 10640 [ 2.068604] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 10641 [ 2.069223] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 10642 [ 2.069230] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 10643 [ 2.069234] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 10644 [ 2.069236] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 10645 [ 2.069238] meson8b-dwmac ff3f0000.ethernet: COE Type 2 10646 [ 2.069240] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 10647 [ 2.069242] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 10648 [ 2.069285] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 10649 [ 2.069288] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 10650 [ 2.069290] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 10651 [ 2.069505] libphy: stmmac: probed 10652 [ 2.070580] libphy: mdio_mux: probed 10653 [ 2.094253] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 10654 [ 2.094385] rtc-pcf8563 1-0051: registered as rtc0 10655 [ 2.095818] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 10656 [ 2.095827] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 10657 [ 2.097110] meson-vrtc ff8000a8.rtc: registered as rtc1 10658 [ 2.109629] random: fast init done 10659 [ 2.171485] usb 1-1: new high-speed USB device number 2 using xhci-hcd 10660 [ 2.279887] libphy: mdio_mux: probed 10661 [ 2.325839] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 10662 [ 2.325845] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 10663 [ 2.325848] usb 1-1: Product: USB2.1 Hub 10664 [ 2.325850] usb 1-1: Manufacturer: GenesysLogic 10665 [ 2.383566] hub 1-1:1.0: USB hub found 10666 [ 2.383817] hub 1-1:1.0: 4 ports detected 10667 [ 2.451595] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 10668 [ 2.474074] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 10669 [ 2.474079] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 10670 [ 2.474082] usb 2-1: Product: USB3.1 Hub 10671 [ 2.474086] usb 2-1: Manufacturer: GenesysLogic 10672 [ 2.495610] hub 2-1:1.0: USB hub found 10673 [ 2.495902] hub 2-1:1.0: 4 ports detected 10674 [ 2.599477] usb 1-2: new high-speed USB device number 3 using xhci-hcd 10675 [ 2.748503] usb 1-2: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 10676 [ 2.748506] usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0 10677 [ 2.748509] usb 1-2: Product: USB2.0 Hub 10678 [ 2.799612] hub 1-2:1.0: USB hub found 10679 [ 2.799843] hub 1-2:1.0: 4 ports detected 10680 [ 3.087489] usb 1-2.3: new high-speed USB device number 4 using xhci-hcd 10681 [ 3.188569] usb 1-2.3: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 10682 [ 3.188575] usb 1-2.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0 10683 [ 3.188578] usb 1-2.3: Product: USB2.0 Hub 10684 [ 3.202118] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 10685 [ 3.247745] hub 1-2.3:1.0: USB hub found 10686 [ 3.248006] hub 1-2.3:1.0: 4 ports detected 10687 [ 3.539482] usb 1-2.3.4: new high-speed USB device number 5 using xhci-hcd 10688 [ 3.639944] usb 1-2.3.4: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 10689 [ 3.639951] usb 1-2.3.4: New USB device strings: Mfr=3, Product=1, SerialNumber=2 10690 [ 3.639955] usb 1-2.3.4: Product: PCTV 292e 10691 [ 3.639957] usb 1-2.3.4: Manufacturer: PCTV 10692 [ 3.639959] usb 1-2.3.4: SerialNumber: 0011356964 10693 [ 4.007641] systemd[1]: System time before build time, advancing clock. 10694 [ 4.022439] systemd[1]: Inserted module 'autofs4' 10695 [ 4.068937] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 10696 [ 4.069163] systemd[1]: Detected architecture arm64. 10697 [ 4.093832] systemd[1]: Set hostname to <odroidn2>. 10698 [ 4.420756] random: systemd: uninitialized urandom read (16 bytes read) 10699 [ 4.424089] random: systemd: uninitialized urandom read (16 bytes read) 10700 [ 4.424229] systemd[1]: Listening on initctl Compatibility Named Pipe. 10701 [ 4.424465] random: systemd: uninitialized urandom read (16 bytes read) 10702 [ 4.424678] systemd[1]: Listening on Journal Socket (/dev/log). 10703 [ 4.424869] systemd[1]: Listening on Syslog Socket. 10704 [ 4.424944] systemd[1]: Reached target Swap. 10705 [ 4.425131] systemd[1]: Listening on fsck to fsckd communication Socket. 10706 [ 4.425313] systemd[1]: Listening on udev Kernel Socket. 10707 [ 4.425461] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 10708 [ 4.492190] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 10709 [ 5.059293] pwm-gpio pwmgpio: 1 gpio pwms loaded 10710 [ 5.066036] zram: Added device: zram0 10711 [ 5.066815] zram: Added device: zram1 10712 [ 5.067276] zram: Added device: zram2 10713 [ 5.217121] mc: Linux media interface: v0.10 10714 [ 5.228229] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 10715 [ 5.267130] panfrost ffe40000.gpu: clock rate = 24000000 10716 [ 5.267183] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 10717 [ 5.267768] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 10718 [ 5.267773] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 10719 [ 5.267777] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 10720 [ 5.267780] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 10721 [ 5.282362] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 10722 [ 5.282663] videodev: Linux video capture interface: v2.00 10723 [ 5.315540] Registered IR keymap rc-odroid 10724 [ 5.323095] meson-drm ff900000.vpu: Queued 2 outputs on vpu 10725 [ 5.352638] IR NEC protocol handler initialized 10726 [ 5.379611] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 10727 [ 5.379722] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 10728 [ 5.379778] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 10729 [ 5.379935] meson-ir ff808000.ir: receiver initialized 10730 [ 5.398204] meson-drm ff900000.vpu: CVBS Output connector not available 10731 [ 5.423548] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 10732 [ 5.423927] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 10733 [ 5.424133] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 10734 [ 5.424321] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 10735 [ 5.470460] zram0: detected capacity change from 0 to 1904500736 10736 [ 5.494497] em28xx 1-2.3.4:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 10737 [ 5.494504] em28xx 1-2.3.4:1.0: DVB interface 0 found: isoc 10738 [ 5.509011] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 10739 [ 5.551677] em28xx 1-2.3.4:1.0: chip ID is em28178 10740 [ 5.707629] Console: switching to colour frame buffer device 240x67 10741 [ 5.734213] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 10742 [ 5.779503] axg-sound-card sound: ASoC: no DMI vendor name! 10743 [ 6.527494] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 10744 [ 6.593046] zram1: detected capacity change from 0 to 52428800 10745 [ 7.589723] em28xx 1-2.3.4:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 10746 [ 7.589727] em28xx 1-2.3.4:1.0: EEPROM info: 10747 [ 7.589729] em28xx 1-2.3.4:1.0: microcode start address = 0x0004, boot configuration = 0x01 10748 [ 7.595842] em28xx 1-2.3.4:1.0: AC97 audio (5 sample rates) 10749 [ 7.595844] em28xx 1-2.3.4:1.0: 500mA max power 10750 [ 7.595848] em28xx 1-2.3.4:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 10751 [ 7.655472] em28xx 1-2.3.4:1.0: Identified as PCTV tripleStick (292e) (card=94) 10752 [ 7.655476] em28xx 1-2.3.4:1.0: dvb set to isoc mode. 10753 [ 7.655595] usbcore: registered new interface driver em28xx 10754 [ 7.681971] em28xx 1-2.3.4:1.0: Binding DVB extension 10755 [ 7.695223] i2c i2c-4: Added multiplexed i2c bus 5 10756 [ 7.695231] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 10757 [ 7.695234] si2168 4-0064: firmware version: B 4.0.2 10758 [ 7.703736] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 10759 [ 7.703817] dvbdev: DVB: registering new adapter (1-2.3.4:1.0) 10760 [ 7.703829] em28xx 1-2.3.4:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 10761 [ 7.703841] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 10762 [ 7.704915] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 10763 [ 7.727575] em28xx 1-2.3.4:1.0: DVB extension successfully initialized 10764 [ 7.727586] em28xx: Registered (Em28xx dvb Extension) extension 10765 [ 7.734860] em28xx 1-2.3.4:1.0: Registering input extension 10766 [ 7.771469] Registered IR keymap rc-pinnacle-pctv-hd 10767 [ 7.771648] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.3/1-2.3.4/1-2.3.4:1.0/rc/rc1 10768 [ 7.771721] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 10769 [ 7.771783] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.3/1-2.3.4/1-2.3.4:1.0/rc/rc1/input1 10770 [ 7.771863] em28xx 1-2.3.4:1.0: Input extension successfully initialized 10771 [ 7.771866] em28xx: Registered (Em28xx Input Extension) extension 10772 [ 8.676144] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 10773 [ 8.676163] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 10774 [ 9.740233] systemd[1]: Started Armbian memory supported logging. 10775 [ 9.742534] systemd[1]: Starting Journal Service... 10776 [ 9.809869] systemd[1]: Started Journal Service. 10777 [ 9.834959] systemd-journald[1844]: Received request to flush runtime journal from PID 1 10778 10779 ### armbian-release: 10780 10781 # PLEASE DO NOT EDIT THIS FILE 10782 BOARD=odroidn2 10783 BOARD_NAME="Odroid N2" 10784 BOARDFAMILY=meson-g12b 10785 BUILD_REPOSITORY_URL=https://github.com/armbian/build 10786 BUILD_REPOSITORY_COMMIT=5f03d652 10787 DISTRIBUTION_CODENAME=buster 10788 DISTRIBUTION_STATUS=supported 10789 VERSION=21.02.1 10790 LINUXFAMILY=meson64 10791 BRANCH=current 10792 ARCH=arm64 10793 IMAGE_TYPE=stable 10794 BOARD_TYPE=conf 10795 INITRD_ARCH=arm64 10796 KERNEL_IMAGE_TYPE=Image 10797 10798 ### boot environment: 10799 10800 verbosity=1 10801 console=both 10802 overlay_prefix=meson 10803 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 10804 rootfstype=ext4 10805 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 10806 10807 ### lsusb: 10808 10809 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 10810 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 10811 Bus 001 Device 005: ID 2013:025f PCTV Systems 10812 Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. Hub 10813 Bus 001 Device 003: ID 05e3:0608 Genesys Logic, Inc. Hub 10814 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 10815 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 10816 10817 ### lscpu: 10818 10819 Architecture: aarch64 10820 Byte Order: Little Endian 10821 CPU(s): 6 10822 On-line CPU(s) list: 0-5 10823 Thread(s) per core: 1 10824 Core(s) per socket: 3 10825 Socket(s): 2 10826 NUMA node(s): 1 10827 Vendor ID: ARM 10828 Model: 4 10829 Model name: Cortex-A53 10830 Stepping: r0p4 10831 CPU max MHz: 1992.0000 10832 CPU min MHz: 100.0000 10833 BogoMIPS: 48.00 10834 L1d cache: unknown size 10835 L1i cache: unknown size 10836 L2 cache: unknown size 10837 NUMA node0 CPU(s): 0-5 10838 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10839 10840 ### cpuinfo: 10841 10842 processor : 0 10843 BogoMIPS : 48.00 10844 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10845 CPU implementer : 0x41 10846 CPU architecture: 8 10847 CPU variant : 0x0 10848 CPU part : 0xd03 10849 CPU revision : 4 10850 10851 processor : 1 10852 BogoMIPS : 48.00 10853 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10854 CPU implementer : 0x41 10855 CPU architecture: 8 10856 CPU variant : 0x0 10857 CPU part : 0xd03 10858 CPU revision : 4 10859 10860 processor : 2 10861 BogoMIPS : 48.00 10862 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10863 CPU implementer : 0x41 10864 CPU architecture: 8 10865 CPU variant : 0x0 10866 CPU part : 0xd09 10867 CPU revision : 2 10868 10869 processor : 3 10870 BogoMIPS : 48.00 10871 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10872 CPU implementer : 0x41 10873 CPU architecture: 8 10874 CPU variant : 0x0 10875 CPU part : 0xd09 10876 CPU revision : 2 10877 10878 processor : 4 10879 BogoMIPS : 48.00 10880 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10881 CPU implementer : 0x41 10882 CPU architecture: 8 10883 CPU variant : 0x0 10884 CPU part : 0xd09 10885 CPU revision : 2 10886 10887 processor : 5 10888 BogoMIPS : 48.00 10889 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 10890 CPU implementer : 0x41 10891 CPU architecture: 8 10892 CPU variant : 0x0 10893 CPU part : 0xd09 10894 CPU revision : 2 10895 10896 10897 ### meminfo: 10898 10899 MemTotal: 3719728 kB 10900 MemFree: 3388724 kB 10901 MemAvailable: 3342020 kB 10902 Buffers: 11568 kB 10903 Cached: 44372 kB 10904 SwapCached: 0 kB 10905 Active: 29036 kB 10906 Inactive: 188068 kB 10907 Active(anon): 140 kB 10908 Inactive(anon): 166308 kB 10909 Active(file): 28896 kB 10910 Inactive(file): 21760 kB 10911 Unevictable: 0 kB 10912 Mlocked: 0 kB 10913 SwapTotal: 1859860 kB 10914 SwapFree: 1859860 kB 10915 Dirty: 4592 kB 10916 Writeback: 0 kB 10917 AnonPages: 161404 kB 10918 Mapped: 13444 kB 10919 Shmem: 4992 kB 10920 KReclaimable: 13156 kB 10921 Slab: 40544 kB 10922 SReclaimable: 13156 kB 10923 SUnreclaim: 27388 kB 10924 KernelStack: 2608 kB 10925 PageTables: 6068 kB 10926 NFS_Unstable: 0 kB 10927 Bounce: 0 kB 10928 WritebackTmp: 0 kB 10929 CommitLimit: 3719724 kB 10930 Committed_AS: 4240040 kB 10931 VmallocTotal: 135290159040 kB 10932 VmallocUsed: 33200 kB 10933 VmallocChunk: 0 kB 10934 Percpu: 1368 kB 10935 HardwareCorrupted: 0 kB 10936 AnonHugePages: 0 kB 10937 ShmemHugePages: 0 kB 10938 ShmemPmdMapped: 0 kB 10939 FileHugePages: 0 kB 10940 FilePmdMapped: 0 kB 10941 CmaTotal: 917504 kB 10942 CmaFree: 901724 kB 10943 HugePages_Total: 0 10944 HugePages_Free: 0 10945 HugePages_Rsvd: 0 10946 HugePages_Surp: 0 10947 Hugepagesize: 2048 kB 10948 Hugetlb: 0 kB 10949 10950 ### virtual memory: 10951 10952 vm.admin_reserve_kbytes = 8192 10953 vm.block_dump = 0 10954 vm.compaction_proactiveness = 20 10955 vm.compact_unevictable_allowed = 1 10956 vm.dirty_background_bytes = 0 10957 vm.dirty_background_ratio = 10 10958 vm.dirty_bytes = 0 10959 vm.dirty_expire_centisecs = 3000 10960 vm.dirty_ratio = 20 10961 vm.dirtytime_expire_seconds = 43200 10962 vm.dirty_writeback_centisecs = 500 10963 vm.extfrag_threshold = 500 10964 vm.hugetlb_shm_group = 0 10965 vm.laptop_mode = 0 10966 vm.legacy_va_layout = 0 10967 vm.lowmem_reserve_ratio = 256 256 32 0 10968 vm.max_map_count = 65530 10969 vm.memory_failure_early_kill = 0 10970 vm.memory_failure_recovery = 1 10971 vm.min_free_kbytes = 45056 10972 vm.min_slab_ratio = 5 10973 vm.min_unmapped_ratio = 1 10974 vm.mmap_min_addr = 4096 10975 vm.mmap_rnd_bits = 18 10976 vm.mmap_rnd_compat_bits = 11 10977 vm.nr_hugepages = 0 10978 vm.nr_hugepages_mempolicy = 0 10979 vm.nr_overcommit_hugepages = 0 10980 vm.numa_stat = 1 10981 vm.numa_zonelist_order = Node 10982 vm.oom_dump_tasks = 1 10983 vm.oom_kill_allocating_task = 0 10984 vm.overcommit_kbytes = 0 10985 vm.overcommit_memory = 0 10986 vm.overcommit_ratio = 50 10987 vm.page-cluster = 0 10988 vm.page_lock_unfairness = 5 10989 vm.panic_on_oom = 0 10990 vm.percpu_pagelist_fraction = 0 10991 vm.stat_interval = 1 10992 vm.swappiness = 100 10993 vm.user_reserve_kbytes = 115005 10994 vm.vfs_cache_pressure = 100 10995 vm.watermark_boost_factor = 15000 10996 vm.watermark_scale_factor = 10 10997 vm.zone_reclaim_mode = 0 10998 10999 ### ip addr: 11000 11001 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 11002 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 11003 inet XXX.XXX.0.1/8 scope host lo 11004 valid_lft forever preferred_lft forever 11005 inet6 ::1/128 scope host 11006 valid_lft forever preferred_lft forever 11007 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 11008 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 11009 11010 ### partitions: 11011 11012 major minor #blocks name 11013 11014 179 0 31464960 mmcblk0 11015 179 1 31146208 mmcblk0p1 11016 252 0 1859864 zram0 11017 252 1 51200 zram1 11018 11019 ### df: 11020 11021 udev 1.4G 0 1.4G 0% /dev 11022 tmpfs 364M 4.9M 359M 2% /run 11023 /dev/mmcblk0p1 30G 1.7G 28G 6% / 11024 tmpfs 1.8G 0 1.8G 0% /dev/shm 11025 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 11026 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 11027 tmpfs 1.8G 0 1.8G 0% /tmp 11028 /dev/zram1 49M 4.5M 41M 10% /var/log 11029 11030 ### lsblk: 11031 11032 NAME FSTYPE SIZE MOUNTPOINT UUID 11033 mmcblk0 30G 11034 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 11035 zram1 50M /var/log 11036 11037 ### zramctl: 11038 11039 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 11040 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 11041 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 11042 11043 ### mtab: 11044 11045 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 11046 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 11047 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 11048 11049 ### mmc0:b368 info: 11050 11051 fwrev: 0x0 11052 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 11053 cid: 6f0303434241445310aa002b4d013b00 11054 rca: 0xb368 11055 csd: 400e005a5b590000f00e7f800a404000 11056 manfid: 0x00006f 11057 ocr: 0x00200000 11058 preferred_erase_size: 2097152 11059 type: SD 11060 hwrev: 0x1 11061 date: 11/2019 11062 dsr: 0x404 11063 erase_size: 512 11064 oemid: 0x0303 11065 serial: 0xaa002b4d 11066 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 11067 scr: 02b5800300000000 11068 name: CBADS 11069 11070 ### Boot system health: 11071 11072 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 11073 16:01:51: 1908/1992MHz 2.75 23% 10% 5% 0% 6% 0% 34.8°C 0/11 11074 16:01:51: 1908/1992MHz 2.75 84% 32% 7% 0% 42% 1% 34.5°C 0/11 11075 16:01:52: 1908/ 250MHz 2.75 47% 9% 2% 0% 33% 1% 31.5°C 0/11 11076 16:01:52: 1908/1992MHz 2.75 61% 12% 6% 0% 37% 2% 31.5°C 0/11 11077 16:01:52: 1908/1992MHz 2.75 42% 3% 4% 0% 33% 1% 31.1°C 0/11 11078 11079 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 11080 11081 ### Activated Armbian ramlog partition with zstd compression 11082 11083 Sun 14 Feb 2021 04:14:52 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 11084 11085 ### dmesg: 11086 11087 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 11088 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 11089 [ 0.000000] Machine model: Hardkernel ODROID-N2 11090 [ 0.000000] efi: UEFI not found. 11091 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 11092 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 11093 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 11094 [ 0.000000] NUMA: No NUMA configuration found 11095 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 11096 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 11097 [ 0.000000] Zone ranges: 11098 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 11099 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 11100 [ 0.000000] Normal empty 11101 [ 0.000000] Movable zone start for each node 11102 [ 0.000000] Early memory node ranges 11103 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 11104 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 11105 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 11106 [ 0.000000] On node 0 totalpages: 972032 11107 [ 0.000000] DMA zone: 4096 pages used for memmap 11108 [ 0.000000] DMA zone: 0 pages reserved 11109 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 11110 [ 0.000000] DMA32 zone: 11104 pages used for memmap 11111 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 11112 [ 0.000000] psci: probing for conduit method from DT. 11113 [ 0.000000] psci: PSCIv1.0 detected in firmware. 11114 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 11115 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 11116 [ 0.000000] psci: SMC Calling Convention v1.1 11117 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 11118 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 11119 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 11120 [ 0.000000] Detected VIPT I-cache on CPU0 11121 [ 0.000000] CPU features: detected: ARM erratum 845719 11122 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 11123 [ 0.000000] Policy zone: DMA32 11124 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 11125 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 11126 Please use sysfs to set IO scheduler for individual devices. 11127 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 11128 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 11129 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 11130 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 11131 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 11132 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 11133 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 11134 [ 0.000000] rcu: RCU event tracing is enabled. 11135 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 11136 [ 0.000000] Trampoline variant of Tasks RCU enabled. 11137 [ 0.000000] Rude variant of Tasks RCU enabled. 11138 [ 0.000000] Tracing variant of Tasks RCU enabled. 11139 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 11140 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 11141 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 11142 [ 0.000000] GIC: Using split EOI/Deactivate mode 11143 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 11144 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 11145 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 11146 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 11147 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 11148 [ 0.000243] Console: colour dummy device 80x25 11149 [ 0.000277] printk: console [tty1] enabled 11150 [ 0.000365] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 11151 [ 0.000378] pid_max: default: 32768 minimum: 301 11152 [ 0.000462] LSM: Security Framework initializing 11153 [ 0.000487] Yama: becoming mindful. 11154 [ 0.000577] AppArmor: AppArmor initialized 11155 [ 0.000628] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 11156 [ 0.000646] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 11157 [ 0.002640] rcu: Hierarchical SRCU implementation. 11158 [ 0.005061] EFI services will not be available. 11159 [ 0.005478] smp: Bringing up secondary CPUs ... 11160 [ 0.006152] Detected VIPT I-cache on CPU1 11161 [ 0.006214] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 11162 [ 0.007403] CPU features: detected: ARM erratum 858921 11163 [ 0.007412] CPU features: detected: Spectre-v2 11164 [ 0.007416] CPU features: detected: Spectre-v4 11165 [ 0.007422] Detected VIPT I-cache on CPU2 11166 [ 0.007447] arch_timer: Enabling local workaround for ARM erratum 858921 11167 [ 0.007462] arch_timer: CPU2: Trapping CNTVCT access 11168 [ 0.007475] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 11169 [ 0.008177] Detected VIPT I-cache on CPU3 11170 [ 0.008193] arch_timer: Enabling local workaround for ARM erratum 858921 11171 [ 0.008200] arch_timer: CPU3: Trapping CNTVCT access 11172 [ 0.008207] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 11173 [ 0.008832] Detected VIPT I-cache on CPU4 11174 [ 0.008848] arch_timer: Enabling local workaround for ARM erratum 858921 11175 [ 0.008855] arch_timer: CPU4: Trapping CNTVCT access 11176 [ 0.008863] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 11177 [ 0.009474] Detected VIPT I-cache on CPU5 11178 [ 0.009490] arch_timer: Enabling local workaround for ARM erratum 858921 11179 [ 0.009497] arch_timer: CPU5: Trapping CNTVCT access 11180 [ 0.009505] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 11181 [ 0.009586] smp: Brought up 1 node, 6 CPUs 11182 [ 0.009604] SMP: Total of 6 processors activated. 11183 [ 0.009611] CPU features: detected: 32-bit EL0 Support 11184 [ 0.009617] CPU features: detected: CRC32 instructions 11185 [ 0.009622] CPU features: detected: 32-bit EL1 Support 11186 [ 0.020853] CPU: All CPU(s) started at EL2 11187 [ 0.020903] alternatives: patching kernel code 11188 [ 0.022843] devtmpfs: initialized 11189 [ 0.030508] Registered cp15_barrier emulation handler 11190 [ 0.030522] Registered setend emulation handler 11191 [ 0.030656] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 11192 [ 0.030694] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 11193 [ 0.044580] pinctrl core: initialized pinctrl subsystem 11194 [ 0.045324] DMI not present or invalid. 11195 [ 0.045699] NET: Registered protocol family 16 11196 [ 0.047199] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 11197 [ 0.047474] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 11198 [ 0.047700] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 11199 [ 0.047745] audit: initializing netlink subsys (disabled) 11200 [ 0.047864] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 11201 [ 0.049145] thermal_sys: Registered thermal governor 'fair_share' 11202 [ 0.049153] thermal_sys: Registered thermal governor 'bang_bang' 11203 [ 0.049157] thermal_sys: Registered thermal governor 'step_wise' 11204 [ 0.049160] thermal_sys: Registered thermal governor 'user_space' 11205 [ 0.049604] cpuidle: using governor menu 11206 [ 0.049953] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 11207 [ 0.050071] ASID allocator initialised with 65536 entries 11208 [ 0.050992] Serial: AMBA PL011 UART driver 11209 [ 0.085548] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 11210 [ 0.085561] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 11211 [ 0.085567] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 11212 [ 0.085572] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 11213 [ 0.087734] cryptd: max_cpu_qlen set to 1000 11214 [ 0.156263] raid6: neonx8 gen() 2780 MB/s 11215 [ 0.224328] raid6: neonx8 xor() 2042 MB/s 11216 [ 0.292425] raid6: neonx4 gen() 2199 MB/s 11217 [ 0.360467] raid6: neonx4 xor() 2349 MB/s 11218 [ 0.428539] raid6: neonx2 gen() 2579 MB/s 11219 [ 0.496618] raid6: neonx2 xor() 2142 MB/s 11220 [ 0.564675] raid6: neonx1 gen() 2010 MB/s 11221 [ 0.632736] raid6: neonx1 xor() 1723 MB/s 11222 [ 0.700816] raid6: int64x8 gen() 1376 MB/s 11223 [ 0.768867] raid6: int64x8 xor() 735 MB/s 11224 [ 0.836957] raid6: int64x4 gen() 1463 MB/s 11225 [ 0.905010] raid6: int64x4 xor() 733 MB/s 11226 [ 0.973066] raid6: int64x2 gen() 1362 MB/s 11227 [ 1.041145] raid6: int64x2 xor() 619 MB/s 11228 [ 1.109195] raid6: int64x1 gen() 1120 MB/s 11229 [ 1.177273] raid6: int64x1 xor() 462 MB/s 11230 [ 1.177276] raid6: using algorithm neonx8 gen() 2780 MB/s 11231 [ 1.177279] raid6: .... xor() 2042 MB/s, rmw enabled 11232 [ 1.177284] raid6: using neon recovery algorithm 11233 [ 1.177731] ACPI: Interpreter disabled. 11234 [ 1.178497] 5V: supplied by 12V 11235 [ 1.179384] VDDAO_3V3: supplied by 12V 11236 [ 1.179852] iommu: Default domain type: Translated 11237 [ 1.179978] vgaarb: loaded 11238 [ 1.180999] SCSI subsystem initialized 11239 [ 1.181208] usbcore: registered new interface driver usbfs 11240 [ 1.181248] usbcore: registered new interface driver hub 11241 [ 1.181285] usbcore: registered new device driver usb 11242 [ 1.181619] pps_core: LinuxPPS API ver. 1 registered 11243 [ 1.181626] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 11244 [ 1.181645] PTP clock support registered 11245 [ 1.181834] EDAC MC: Ver: 3.0.0 11246 [ 1.183109] NetLabel: Initializing 11247 [ 1.183117] NetLabel: domain hash size = 128 11248 [ 1.183119] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 11249 [ 1.183161] NetLabel: unlabeled traffic allowed by default 11250 [ 1.183598] clocksource: Switched to clocksource arch_sys_counter 11251 [ 1.183796] VFS: Disk quotas dquot_6.6.0 11252 [ 1.183838] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 11253 [ 1.184212] AppArmor: AppArmor Filesystem Enabled 11254 [ 1.184263] pnp: PnP ACPI: disabled 11255 [ 1.190007] NET: Registered protocol family 2 11256 [ 1.190506] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 11257 [ 1.190610] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 11258 [ 1.190868] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 11259 [ 1.191055] TCP: Hash tables configured (established 32768 bind 32768) 11260 [ 1.191211] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 11261 [ 1.191276] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 11262 [ 1.191322] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 11263 [ 1.191466] NET: Registered protocol family 1 11264 [ 1.191490] PCI: CLS 0 bytes, default 64 11265 [ 1.191679] Trying to unpack rootfs image as initramfs... 11266 [ 1.727228] Freeing initrd memory: 13544K 11267 [ 1.728130] kvm [1]: IPA Size Limit: 40 bits 11268 [ 1.728836] kvm [1]: vgic interrupt IRQ9 11269 [ 1.728971] kvm [1]: Hyp mode initialized successfully 11270 [ 1.733976] Initialise system trusted keyrings 11271 [ 1.734005] Key type blacklist registered 11272 [ 1.734136] workingset: timestamp_bits=44 max_order=20 bucket_order=0 11273 [ 1.737339] zbud: loaded 11274 [ 1.738309] squashfs: version 4.0 (2009/01/31) Phillip Lougher 11275 [ 1.738779] fuse: init (API version 7.32) 11276 [ 1.739610] integrity: Platform Keyring initialized 11277 [ 1.768156] xor: measuring software checksum speed 11278 [ 1.770994] 8regs : 3473 MB/sec 11279 [ 1.773573] 32regs : 4023 MB/sec 11280 [ 1.776228] arm64_neon : 3719 MB/sec 11281 [ 1.776231] xor: using function: 32regs (4023 MB/sec) 11282 [ 1.776238] Key type asymmetric registered 11283 [ 1.776242] Asymmetric key parser 'x509' registered 11284 [ 1.776279] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 11285 [ 1.776388] io scheduler mq-deadline registered 11286 [ 1.776391] io scheduler kyber registered 11287 [ 1.776474] io scheduler bfq registered 11288 [ 1.778959] gpio-447 (usb-hub-reset): hogged as output/high 11289 [ 1.781851] EINJ: ACPI disabled. 11290 [ 1.788126] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 11291 [ 1.789487] VCC_3V3: supplied by VDDAO_3V3 11292 [ 1.789536] FLASH_1V8: supplied by VCC_3V3 11293 [ 1.789569] VCC_1V8: supplied by VCC_3V3 11294 [ 1.789595] VDDAO_1V8: supplied by VDDAO_3V3 11295 [ 1.789625] VDDCPU_A: supplied by regulator-dummy 11296 [ 1.789980] VDDCPU_B: supplied by regulator-dummy 11297 [ 1.790644] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 11298 [ 1.792922] Serial: AMBA driver 11299 [ 1.793207] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 11300 [ 1.793301] printk: console [ttyAML0] enabled 11301 [ 1.793814] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 11302 [ 1.799166] loop: module loaded 11303 [ 1.801145] libphy: Fixed MDIO Bus: probed 11304 [ 1.802286] tun: Universal TUN/TAP device driver, 1.6 11305 [ 1.802922] thunder_xcv, ver 1.0 11306 [ 1.802956] thunder_bgx, ver 1.0 11307 [ 1.802987] nicpf, ver 1.0 11308 [ 1.803440] e1000e: Intel(R) PRO/1000 Network Driver 11309 [ 1.803444] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 11310 [ 1.803490] igb: Intel(R) Gigabit Ethernet Network Driver 11311 [ 1.803493] igb: Copyright (c) 2007-2014 Intel Corporation. 11312 [ 1.803525] igbvf: Intel(R) Gigabit Virtual Function Network Driver 11313 [ 1.803528] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 11314 [ 1.803984] sky2: driver version 1.30 11315 [ 1.804406] VFIO - User Level meta-driver version: 0.3 11316 [ 1.805715] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 11317 [ 1.805736] ehci-pci: EHCI PCI platform driver 11318 [ 1.805768] ehci-platform: EHCI generic platform driver 11319 [ 1.805894] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 11320 [ 1.805905] ohci-pci: OHCI PCI platform driver 11321 [ 1.805936] ohci-platform: OHCI generic platform driver 11322 [ 1.806323] usbcore: registered new interface driver usb-storage 11323 [ 1.807625] mousedev: PS/2 mouse device common for all mice 11324 [ 1.808054] i2c /dev entries driver 11325 [ 1.813203] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 11326 [ 1.813869] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 11327 [ 1.814544] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 11328 [ 1.815164] sdhci: Secure Digital Host Controller Interface driver 11329 [ 1.815172] sdhci: Copyright(c) Pierre Ossman 11330 [ 1.815271] Synopsys Designware Multimedia Card Interface Driver 11331 [ 1.815704] sdhci-pltfm: SDHCI platform and OF driver helper 11332 [ 1.816155] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 11333 [ 1.816543] ledtrig-cpu: registered to indicate activity on CPUs 11334 [ 1.817004] meson-sm: secure-monitor enabled 11335 [ 1.817197] hid: raw HID events driver (C) Jiri Kosina 11336 [ 1.817296] usbcore: registered new interface driver usbhid 11337 [ 1.817299] usbhid: USB HID core driver 11338 [ 1.818300] NET: Registered protocol family 10 11339 [ 1.818758] Segment Routing with IPv6 11340 [ 1.818788] NET: Registered protocol family 17 11341 [ 1.818851] 8021q: 802.1Q VLAN Support v1.8 11342 [ 1.818874] Key type dns_resolver registered 11343 [ 1.819149] registered taskstats version 1 11344 [ 1.819155] Loading compiled-in X.509 certificates 11345 [ 1.820921] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 11346 [ 1.822523] zswap: loaded using pool zstd/z3fold 11347 [ 1.822706] Key type ._fscrypt registered 11348 [ 1.822708] Key type .fscrypt registered 11349 [ 1.822710] Key type fscrypt-provisioning registered 11350 [ 1.823845] Btrfs loaded, crc32c=crc32c-generic 11351 [ 1.829735] Key type encrypted registered 11352 [ 1.829746] AppArmor: AppArmor sha1 policy hashing enabled 11353 [ 1.836381] HUB_5V: supplied by 5V 11354 [ 1.836565] USB_PWR_EN: supplied by 5V 11355 [ 1.838164] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 11356 [ 1.838172] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 11357 [ 1.840921] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 11358 [ 1.840977] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 11359 [ 1.841085] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 11360 [ 1.841675] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 11361 [ 1.841687] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 11362 [ 1.841809] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 11363 [ 1.841852] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 11364 [ 1.841983] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 11365 [ 1.841987] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 11366 [ 1.841990] usb usb1: Product: xHCI Host Controller 11367 [ 1.841992] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 11368 [ 1.841995] usb usb1: SerialNumber: xhci-hcd.0.auto 11369 [ 1.842189] hub 1-0:1.0: USB hub found 11370 [ 1.842203] hub 1-0:1.0: 2 ports detected 11371 [ 1.842330] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 11372 [ 1.842337] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 11373 [ 1.842349] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 11374 [ 1.842371] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 11375 [ 1.842402] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 11376 [ 1.842406] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 11377 [ 1.842408] usb usb2: Product: xHCI Host Controller 11378 [ 1.842411] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 11379 [ 1.842413] usb usb2: SerialNumber: xhci-hcd.0.auto 11380 [ 1.842563] hub 2-0:1.0: USB hub found 11381 [ 1.842574] hub 2-0:1.0: 1 port detected 11382 [ 1.844282] meson-gx-mmc ffe05000.sd: Got CD GPIO 11383 [ 1.868678] Freeing unused kernel memory: 3328K 11384 [ 1.915653] Run /init as init process 11385 [ 1.915657] with arguments: 11386 [ 1.915659] /init 11387 [ 1.915661] with environment: 11388 [ 1.915663] HOME=/ 11389 [ 1.915664] TERM=linux 11390 [ 1.915666] hdmimode=custombuilt 11391 [ 1.915667] cvbsmode=576cvbs 11392 [ 1.915668] max_freq_a53=1896 11393 [ 1.915670] max_freq_a73=1800 11394 [ 1.915672] voutmode=hdmi 11395 [ 1.915674] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 11396 [ 1.915675] disablehpd=false 11397 [ 1.915677] cvbscable= 11398 [ 1.915678] overscan=100 11399 [ 1.933801] mmc0: new ultra high speed SDR25 SDHC card at address b368 11400 [ 1.934373] mmcblk0: mmc0:b368 CBADS 30.0 GiB 11401 [ 1.936281] mmcblk0: p1 11402 [ 2.067075] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 11403 [ 2.067083] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 11404 [ 2.067184] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 11405 [ 2.068505] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 11406 [ 2.068517] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 11407 [ 2.068521] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 11408 [ 2.068524] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 11409 [ 2.068527] meson8b-dwmac ff3f0000.ethernet: COE Type 2 11410 [ 2.068529] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 11411 [ 2.068531] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 11412 [ 2.068576] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 11413 [ 2.068578] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 11414 [ 2.068581] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 11415 [ 2.068814] libphy: stmmac: probed 11416 [ 2.069937] libphy: mdio_mux: probed 11417 [ 2.077661] meson-vrtc ff8000a8.rtc: registered as rtc1 11418 [ 2.090849] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 11419 [ 2.091389] rtc-pcf8563 1-0051: registered as rtc0 11420 [ 2.092615] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 11421 [ 2.092624] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 11422 [ 2.101266] random: fast init done 11423 [ 2.175719] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 11424 [ 2.200345] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 11425 [ 2.200351] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 11426 [ 2.200354] usb 2-1: Product: USB3.1 Hub 11427 [ 2.200357] usb 2-1: Manufacturer: GenesysLogic 11428 [ 2.226613] hub 2-1:1.0: USB hub found 11429 [ 2.226901] hub 2-1:1.0: 4 ports detected 11430 [ 2.276066] libphy: mdio_mux: probed 11431 [ 2.323607] usb 1-1: new high-speed USB device number 2 using xhci-hcd 11432 [ 2.473901] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 11433 [ 2.473905] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 11434 [ 2.473908] usb 1-1: Product: USB2.1 Hub 11435 [ 2.473910] usb 1-1: Manufacturer: GenesysLogic 11436 [ 2.514562] hub 1-1:1.0: USB hub found 11437 [ 2.514805] hub 1-1:1.0: 4 ports detected 11438 [ 2.703595] usb 1-2: new high-speed USB device number 3 using xhci-hcd 11439 [ 2.852024] usb 1-2: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 11440 [ 2.852027] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 11441 [ 2.852030] usb 1-2: Product: PCTV 292e 11442 [ 2.852032] usb 1-2: Manufacturer: PCTV 11443 [ 2.852035] usb 1-2: SerialNumber: 0011356964 11444 [ 3.165425] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 11445 [ 3.967889] systemd[1]: System time before build time, advancing clock. 11446 [ 3.982713] systemd[1]: Inserted module 'autofs4' 11447 [ 4.029161] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 11448 [ 4.029377] systemd[1]: Detected architecture arm64. 11449 [ 4.062216] systemd[1]: Set hostname to <odroidn2>. 11450 [ 4.389632] random: systemd: uninitialized urandom read (16 bytes read) 11451 [ 4.392934] random: systemd: uninitialized urandom read (16 bytes read) 11452 [ 4.393251] systemd[1]: Listening on Journal Socket. 11453 [ 4.393470] random: systemd: uninitialized urandom read (16 bytes read) 11454 [ 4.393595] systemd[1]: Listening on udev Kernel Socket. 11455 [ 4.394873] systemd[1]: Created slice system-serial\x2dgetty.slice. 11456 [ 4.395312] systemd[1]: Created slice User and Session Slice. 11457 [ 4.396716] systemd[1]: Starting Nameserver information manager... 11458 [ 4.397068] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 11459 [ 4.397241] systemd[1]: Reached target Swap. 11460 [ 4.493010] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 11461 [ 4.969191] zram: Added device: zram0 11462 [ 4.969717] zram: Added device: zram1 11463 [ 4.970030] zram: Added device: zram2 11464 [ 5.037925] pwm-gpio pwmgpio: 1 gpio pwms loaded 11465 [ 5.202129] mc: Linux media interface: v0.10 11466 [ 5.213531] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 11467 [ 5.289369] videodev: Linux video capture interface: v2.00 11468 [ 5.307981] panfrost ffe40000.gpu: clock rate = 24000000 11469 [ 5.308054] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 11470 [ 5.310701] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 11471 [ 5.310711] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 11472 [ 5.310716] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 11473 [ 5.310719] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 11474 [ 5.326542] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 11475 [ 5.339636] Registered IR keymap rc-odroid 11476 [ 5.356099] zram0: detected capacity change from 0 to 1904500736 11477 [ 5.358453] meson-drm ff900000.vpu: Queued 2 outputs on vpu 11478 [ 5.381076] IR NEC protocol handler initialized 11479 [ 5.403199] meson-drm ff900000.vpu: CVBS Output connector not available 11480 [ 5.409173] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 11481 [ 5.409369] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 11482 [ 5.409444] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 11483 [ 5.413196] meson-ir ff808000.ir: receiver initialized 11484 [ 5.431691] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 11485 [ 5.432139] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 11486 [ 5.432594] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 11487 [ 5.432953] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 11488 [ 5.440656] em28xx 1-2:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 11489 [ 5.440664] em28xx 1-2:1.0: DVB interface 0 found: isoc 11490 [ 5.472251] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 11491 [ 5.499681] em28xx 1-2:1.0: chip ID is em28178 11492 [ 5.735758] Console: switching to colour frame buffer device 240x67 11493 [ 5.762283] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 11494 [ 5.794819] axg-sound-card sound: ASoC: no DMI vendor name! 11495 [ 6.443618] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 11496 [ 6.510476] zram1: detected capacity change from 0 to 52428800 11497 [ 7.525825] em28xx 1-2:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 11498 [ 7.525830] em28xx 1-2:1.0: EEPROM info: 11499 [ 7.525833] em28xx 1-2:1.0: microcode start address = 0x0004, boot configuration = 0x01 11500 [ 7.531939] em28xx 1-2:1.0: AC97 audio (5 sample rates) 11501 [ 7.531941] em28xx 1-2:1.0: 500mA max power 11502 [ 7.531945] em28xx 1-2:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 11503 [ 7.591593] em28xx 1-2:1.0: Identified as PCTV tripleStick (292e) (card=94) 11504 [ 7.591598] em28xx 1-2:1.0: dvb set to isoc mode. 11505 [ 7.591735] usbcore: registered new interface driver em28xx 11506 [ 7.617995] em28xx 1-2:1.0: Binding DVB extension 11507 [ 7.631323] i2c i2c-4: Added multiplexed i2c bus 5 11508 [ 7.631331] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 11509 [ 7.631333] si2168 4-0064: firmware version: B 4.0.2 11510 [ 7.642427] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 11511 [ 7.642464] dvbdev: DVB: registering new adapter (1-2:1.0) 11512 [ 7.642470] em28xx 1-2:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 11513 [ 7.642476] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 11514 [ 7.643120] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 11515 [ 7.644552] em28xx 1-2:1.0: DVB extension successfully initialized 11516 [ 7.644561] em28xx: Registered (Em28xx dvb Extension) extension 11517 [ 7.651675] em28xx 1-2:1.0: Registering input extension 11518 [ 7.683612] Registered IR keymap rc-pinnacle-pctv-hd 11519 [ 7.683795] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1 11520 [ 7.683895] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 11521 [ 7.683957] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1/input1 11522 [ 7.684037] em28xx 1-2:1.0: Input extension successfully initialized 11523 [ 7.684040] em28xx: Registered (Em28xx Input Extension) extension 11524 [ 8.594186] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 11525 [ 8.594206] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 11526 [ 9.669553] systemd[1]: Started Armbian memory supported logging. 11527 [ 9.671912] systemd[1]: Starting Journal Service... 11528 [ 9.734745] systemd[1]: Started Journal Service. 11529 [ 9.759818] systemd-journald[1843]: Received request to flush runtime journal from PID 1 11530 11531 ### armbian-release: 11532 11533 # PLEASE DO NOT EDIT THIS FILE 11534 BOARD=odroidn2 11535 BOARD_NAME="Odroid N2" 11536 BOARDFAMILY=meson-g12b 11537 BUILD_REPOSITORY_URL=https://github.com/armbian/build 11538 BUILD_REPOSITORY_COMMIT=5f03d652 11539 DISTRIBUTION_CODENAME=buster 11540 DISTRIBUTION_STATUS=supported 11541 VERSION=21.02.1 11542 LINUXFAMILY=meson64 11543 BRANCH=current 11544 ARCH=arm64 11545 IMAGE_TYPE=stable 11546 BOARD_TYPE=conf 11547 INITRD_ARCH=arm64 11548 KERNEL_IMAGE_TYPE=Image 11549 11550 ### boot environment: 11551 11552 verbosity=1 11553 console=both 11554 overlay_prefix=meson 11555 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 11556 rootfstype=ext4 11557 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 11558 11559 ### lsusb: 11560 11561 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 11562 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 11563 Bus 001 Device 003: ID 2013:025f PCTV Systems 11564 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 11565 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 11566 11567 ### lscpu: 11568 11569 Architecture: aarch64 11570 Byte Order: Little Endian 11571 CPU(s): 6 11572 On-line CPU(s) list: 0-5 11573 Thread(s) per core: 1 11574 Core(s) per socket: 3 11575 Socket(s): 2 11576 NUMA node(s): 1 11577 Vendor ID: ARM 11578 Model: 4 11579 Model name: Cortex-A53 11580 Stepping: r0p4 11581 CPU max MHz: 1992.0000 11582 CPU min MHz: 100.0000 11583 BogoMIPS: 48.00 11584 L1d cache: unknown size 11585 L1i cache: unknown size 11586 L2 cache: unknown size 11587 NUMA node0 CPU(s): 0-5 11588 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 11589 11590 ### cpuinfo: 11591 11592 processor : 0 11593 BogoMIPS : 48.00 11594 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 11595 CPU implementer : 0x41 11596 CPU architecture: 8 11597 CPU variant : 0x0 11598 CPU part : 0xd03 11599 CPU revision : 4 11600 11601 processor : 1 11602 BogoMIPS : 48.00 11603 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 11604 CPU implementer : 0x41 11605 CPU architecture: 8 11606 CPU variant : 0x0 11607 CPU part : 0xd03 11608 CPU revision : 4 11609 11610 processor : 2 11611 BogoMIPS : 48.00 11612 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 11613 CPU implementer : 0x41 11614 CPU architecture: 8 11615 CPU variant : 0x0 11616 CPU part : 0xd09 11617 CPU revision : 2 11618 11619 processor : 3 11620 BogoMIPS : 48.00 11621 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 11622 CPU implementer : 0x41 11623 CPU architecture: 8 11624 CPU variant : 0x0 11625 CPU part : 0xd09 11626 CPU revision : 2 11627 11628 processor : 4 11629 BogoMIPS : 48.00 11630 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 11631 CPU implementer : 0x41 11632 CPU architecture: 8 11633 CPU variant : 0x0 11634 CPU part : 0xd09 11635 CPU revision : 2 11636 11637 processor : 5 11638 BogoMIPS : 48.00 11639 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 11640 CPU implementer : 0x41 11641 CPU architecture: 8 11642 CPU variant : 0x0 11643 CPU part : 0xd09 11644 CPU revision : 2 11645 11646 11647 ### meminfo: 11648 11649 MemTotal: 3719728 kB 11650 MemFree: 3387708 kB 11651 MemAvailable: 3341416 kB 11652 Buffers: 11444 kB 11653 Cached: 44648 kB 11654 SwapCached: 0 kB 11655 Active: 28856 kB 11656 Inactive: 189808 kB 11657 Active(anon): 132 kB 11658 Inactive(anon): 167428 kB 11659 Active(file): 28724 kB 11660 Inactive(file): 22380 kB 11661 Unevictable: 0 kB 11662 Mlocked: 0 kB 11663 SwapTotal: 1859860 kB 11664 SwapFree: 1859860 kB 11665 Dirty: 4916 kB 11666 Writeback: 0 kB 11667 AnonPages: 162660 kB 11668 Mapped: 13696 kB 11669 Shmem: 4976 kB 11670 KReclaimable: 13028 kB 11671 Slab: 40732 kB 11672 SReclaimable: 13028 kB 11673 SUnreclaim: 27704 kB 11674 KernelStack: 2544 kB 11675 PageTables: 6396 kB 11676 NFS_Unstable: 0 kB 11677 Bounce: 0 kB 11678 WritebackTmp: 0 kB 11679 CommitLimit: 3719724 kB 11680 Committed_AS: 4240552 kB 11681 VmallocTotal: 135290159040 kB 11682 VmallocUsed: 33200 kB 11683 VmallocChunk: 0 kB 11684 Percpu: 1368 kB 11685 HardwareCorrupted: 0 kB 11686 AnonHugePages: 0 kB 11687 ShmemHugePages: 0 kB 11688 ShmemPmdMapped: 0 kB 11689 FileHugePages: 0 kB 11690 FilePmdMapped: 0 kB 11691 CmaTotal: 917504 kB 11692 CmaFree: 901724 kB 11693 HugePages_Total: 0 11694 HugePages_Free: 0 11695 HugePages_Rsvd: 0 11696 HugePages_Surp: 0 11697 Hugepagesize: 2048 kB 11698 Hugetlb: 0 kB 11699 11700 ### virtual memory: 11701 11702 vm.admin_reserve_kbytes = 8192 11703 vm.block_dump = 0 11704 vm.compaction_proactiveness = 20 11705 vm.compact_unevictable_allowed = 1 11706 vm.dirty_background_bytes = 0 11707 vm.dirty_background_ratio = 10 11708 vm.dirty_bytes = 0 11709 vm.dirty_expire_centisecs = 3000 11710 vm.dirty_ratio = 20 11711 vm.dirtytime_expire_seconds = 43200 11712 vm.dirty_writeback_centisecs = 500 11713 vm.extfrag_threshold = 500 11714 vm.hugetlb_shm_group = 0 11715 vm.laptop_mode = 0 11716 vm.legacy_va_layout = 0 11717 vm.lowmem_reserve_ratio = 256 256 32 0 11718 vm.max_map_count = 65530 11719 vm.memory_failure_early_kill = 0 11720 vm.memory_failure_recovery = 1 11721 vm.min_free_kbytes = 45056 11722 vm.min_slab_ratio = 5 11723 vm.min_unmapped_ratio = 1 11724 vm.mmap_min_addr = 4096 11725 vm.mmap_rnd_bits = 18 11726 vm.mmap_rnd_compat_bits = 11 11727 vm.nr_hugepages = 0 11728 vm.nr_hugepages_mempolicy = 0 11729 vm.nr_overcommit_hugepages = 0 11730 vm.numa_stat = 1 11731 vm.numa_zonelist_order = Node 11732 vm.oom_dump_tasks = 1 11733 vm.oom_kill_allocating_task = 0 11734 vm.overcommit_kbytes = 0 11735 vm.overcommit_memory = 0 11736 vm.overcommit_ratio = 50 11737 vm.page-cluster = 0 11738 vm.page_lock_unfairness = 5 11739 vm.panic_on_oom = 0 11740 vm.percpu_pagelist_fraction = 0 11741 vm.stat_interval = 1 11742 vm.swappiness = 100 11743 vm.user_reserve_kbytes = 115049 11744 vm.vfs_cache_pressure = 100 11745 vm.watermark_boost_factor = 15000 11746 vm.watermark_scale_factor = 10 11747 vm.zone_reclaim_mode = 0 11748 11749 ### ip addr: 11750 11751 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 11752 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 11753 inet XXX.XXX.0.1/8 scope host lo 11754 valid_lft forever preferred_lft forever 11755 inet6 ::1/128 scope host 11756 valid_lft forever preferred_lft forever 11757 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 11758 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 11759 11760 ### partitions: 11761 11762 major minor #blocks name 11763 11764 179 0 31464960 mmcblk0 11765 179 1 31146208 mmcblk0p1 11766 252 0 1859864 zram0 11767 252 1 51200 zram1 11768 11769 ### df: 11770 11771 udev 1.4G 0 1.4G 0% /dev 11772 tmpfs 364M 4.9M 359M 2% /run 11773 /dev/mmcblk0p1 30G 1.7G 28G 6% / 11774 tmpfs 1.8G 0 1.8G 0% /dev/shm 11775 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 11776 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 11777 tmpfs 1.8G 0 1.8G 0% /tmp 11778 /dev/zram1 49M 4.8M 41M 11% /var/log 11779 11780 ### lsblk: 11781 11782 NAME FSTYPE SIZE MOUNTPOINT UUID 11783 mmcblk0 30G 11784 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 11785 zram1 50M /var/log 11786 11787 ### zramctl: 11788 11789 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 11790 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 11791 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 11792 11793 ### mtab: 11794 11795 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 11796 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 11797 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 11798 11799 ### mmc0:b368 info: 11800 11801 fwrev: 0x0 11802 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 11803 cid: 6f0303434241445310aa002b4d013b00 11804 rca: 0xb368 11805 csd: 400e005a5b590000f00e7f800a404000 11806 manfid: 0x00006f 11807 ocr: 0x00200000 11808 preferred_erase_size: 2097152 11809 type: SD 11810 hwrev: 0x1 11811 date: 11/2019 11812 dsr: 0x404 11813 erase_size: 512 11814 oemid: 0x0303 11815 serial: 0xaa002b4d 11816 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 11817 scr: 02b5800300000000 11818 name: CBADS 11819 11820 ### Boot system health: 11821 11822 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 11823 16:14:53: 1908/1992MHz 2.01 23% 10% 4% 0% 6% 0% 33.3°C 0/11 11824 16:14:53: 1908/1992MHz 2.01 74% 26% 11% 0% 34% 0% 32.8°C 0/11 11825 16:14:53: 1908/1992MHz 2.01 83% 20% 1% 0% 60% 0% 30.8°C 0/11 11826 16:14:54: 1908/1992MHz 2.01 74% 10% 4% 0% 58% 1% 30.7°C 0/11 11827 16:14:54: 1908/1992MHz 2.01 58% 6% 4% 0% 47% 0% 30.4°C 0/11 11828 11829 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 11830 11831 ### Activated Armbian ramlog partition with zstd compression 11832 11833 Sun 14 Feb 2021 04:19:55 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 11834 11835 ### dmesg: 11836 11837 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 11838 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 11839 [ 0.000000] Machine model: Hardkernel ODROID-N2 11840 [ 0.000000] efi: UEFI not found. 11841 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 11842 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 11843 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 11844 [ 0.000000] NUMA: No NUMA configuration found 11845 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 11846 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 11847 [ 0.000000] Zone ranges: 11848 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 11849 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 11850 [ 0.000000] Normal empty 11851 [ 0.000000] Movable zone start for each node 11852 [ 0.000000] Early memory node ranges 11853 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 11854 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 11855 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 11856 [ 0.000000] On node 0 totalpages: 972032 11857 [ 0.000000] DMA zone: 4096 pages used for memmap 11858 [ 0.000000] DMA zone: 0 pages reserved 11859 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 11860 [ 0.000000] DMA32 zone: 11104 pages used for memmap 11861 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 11862 [ 0.000000] psci: probing for conduit method from DT. 11863 [ 0.000000] psci: PSCIv1.0 detected in firmware. 11864 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 11865 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 11866 [ 0.000000] psci: SMC Calling Convention v1.1 11867 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 11868 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 11869 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 11870 [ 0.000000] Detected VIPT I-cache on CPU0 11871 [ 0.000000] CPU features: detected: ARM erratum 845719 11872 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 11873 [ 0.000000] Policy zone: DMA32 11874 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 11875 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 11876 Please use sysfs to set IO scheduler for individual devices. 11877 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 11878 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 11879 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 11880 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 11881 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 11882 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 11883 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 11884 [ 0.000000] rcu: RCU event tracing is enabled. 11885 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 11886 [ 0.000000] Trampoline variant of Tasks RCU enabled. 11887 [ 0.000000] Rude variant of Tasks RCU enabled. 11888 [ 0.000000] Tracing variant of Tasks RCU enabled. 11889 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 11890 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 11891 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 11892 [ 0.000000] GIC: Using split EOI/Deactivate mode 11893 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 11894 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 11895 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 11896 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 11897 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 11898 [ 0.000238] Console: colour dummy device 80x25 11899 [ 0.000273] printk: console [tty1] enabled 11900 [ 0.000362] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 11901 [ 0.000374] pid_max: default: 32768 minimum: 301 11902 [ 0.000458] LSM: Security Framework initializing 11903 [ 0.000485] Yama: becoming mindful. 11904 [ 0.000574] AppArmor: AppArmor initialized 11905 [ 0.000625] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 11906 [ 0.000644] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 11907 [ 0.002640] rcu: Hierarchical SRCU implementation. 11908 [ 0.005020] EFI services will not be available. 11909 [ 0.005441] smp: Bringing up secondary CPUs ... 11910 [ 0.006106] Detected VIPT I-cache on CPU1 11911 [ 0.006168] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 11912 [ 0.007359] CPU features: detected: ARM erratum 858921 11913 [ 0.007367] CPU features: detected: Spectre-v2 11914 [ 0.007370] CPU features: detected: Spectre-v4 11915 [ 0.007377] Detected VIPT I-cache on CPU2 11916 [ 0.007402] arch_timer: Enabling local workaround for ARM erratum 858921 11917 [ 0.007416] arch_timer: CPU2: Trapping CNTVCT access 11918 [ 0.007430] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 11919 [ 0.008137] Detected VIPT I-cache on CPU3 11920 [ 0.008153] arch_timer: Enabling local workaround for ARM erratum 858921 11921 [ 0.008161] arch_timer: CPU3: Trapping CNTVCT access 11922 [ 0.008168] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 11923 [ 0.008794] Detected VIPT I-cache on CPU4 11924 [ 0.008811] arch_timer: Enabling local workaround for ARM erratum 858921 11925 [ 0.008818] arch_timer: CPU4: Trapping CNTVCT access 11926 [ 0.008825] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 11927 [ 0.009441] Detected VIPT I-cache on CPU5 11928 [ 0.009458] arch_timer: Enabling local workaround for ARM erratum 858921 11929 [ 0.009465] arch_timer: CPU5: Trapping CNTVCT access 11930 [ 0.009473] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 11931 [ 0.009554] smp: Brought up 1 node, 6 CPUs 11932 [ 0.009572] SMP: Total of 6 processors activated. 11933 [ 0.009579] CPU features: detected: 32-bit EL0 Support 11934 [ 0.009585] CPU features: detected: CRC32 instructions 11935 [ 0.009591] CPU features: detected: 32-bit EL1 Support 11936 [ 0.020864] CPU: All CPU(s) started at EL2 11937 [ 0.020912] alternatives: patching kernel code 11938 [ 0.022854] devtmpfs: initialized 11939 [ 0.030542] Registered cp15_barrier emulation handler 11940 [ 0.030556] Registered setend emulation handler 11941 [ 0.030691] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 11942 [ 0.030731] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 11943 [ 0.044674] pinctrl core: initialized pinctrl subsystem 11944 [ 0.045400] DMI not present or invalid. 11945 [ 0.045774] NET: Registered protocol family 16 11946 [ 0.047199] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 11947 [ 0.047471] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 11948 [ 0.047713] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 11949 [ 0.047754] audit: initializing netlink subsys (disabled) 11950 [ 0.047851] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 11951 [ 0.049085] thermal_sys: Registered thermal governor 'fair_share' 11952 [ 0.049092] thermal_sys: Registered thermal governor 'bang_bang' 11953 [ 0.049095] thermal_sys: Registered thermal governor 'step_wise' 11954 [ 0.049099] thermal_sys: Registered thermal governor 'user_space' 11955 [ 0.049502] cpuidle: using governor menu 11956 [ 0.049849] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 11957 [ 0.049974] ASID allocator initialised with 65536 entries 11958 [ 0.050889] Serial: AMBA PL011 UART driver 11959 [ 0.086297] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 11960 [ 0.086306] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 11961 [ 0.086311] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 11962 [ 0.086315] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 11963 [ 0.087746] cryptd: max_cpu_qlen set to 1000 11964 [ 0.156170] raid6: neonx8 gen() 2785 MB/s 11965 [ 0.224232] raid6: neonx8 xor() 2042 MB/s 11966 [ 0.292298] raid6: neonx4 gen() 2976 MB/s 11967 [ 0.360362] raid6: neonx4 xor() 2342 MB/s 11968 [ 0.428428] raid6: neonx2 gen() 2572 MB/s 11969 [ 0.496491] raid6: neonx2 xor() 2139 MB/s 11970 [ 0.564560] raid6: neonx1 gen() 2006 MB/s 11971 [ 0.632626] raid6: neonx1 xor() 1716 MB/s 11972 [ 0.700701] raid6: int64x8 gen() 1363 MB/s 11973 [ 0.768761] raid6: int64x8 xor() 735 MB/s 11974 [ 0.836854] raid6: int64x4 gen() 1462 MB/s 11975 [ 0.904904] raid6: int64x4 xor() 733 MB/s 11976 [ 0.972960] raid6: int64x2 gen() 1362 MB/s 11977 [ 1.041038] raid6: int64x2 xor() 619 MB/s 11978 [ 1.109097] raid6: int64x1 gen() 1120 MB/s 11979 [ 1.177162] raid6: int64x1 xor() 462 MB/s 11980 [ 1.177165] raid6: using algorithm neonx4 gen() 2976 MB/s 11981 [ 1.177168] raid6: .... xor() 2342 MB/s, rmw enabled 11982 [ 1.177172] raid6: using neon recovery algorithm 11983 [ 1.177612] ACPI: Interpreter disabled. 11984 [ 1.178380] 5V: supplied by 12V 11985 [ 1.179280] VDDAO_3V3: supplied by 12V 11986 [ 1.179739] iommu: Default domain type: Translated 11987 [ 1.179865] vgaarb: loaded 11988 [ 1.180797] SCSI subsystem initialized 11989 [ 1.181109] usbcore: registered new interface driver usbfs 11990 [ 1.181146] usbcore: registered new interface driver hub 11991 [ 1.181188] usbcore: registered new device driver usb 11992 [ 1.181521] pps_core: LinuxPPS API ver. 1 registered 11993 [ 1.181527] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 11994 [ 1.181547] PTP clock support registered 11995 [ 1.181736] EDAC MC: Ver: 3.0.0 11996 [ 1.183065] NetLabel: Initializing 11997 [ 1.183073] NetLabel: domain hash size = 128 11998 [ 1.183076] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 11999 [ 1.183117] NetLabel: unlabeled traffic allowed by default 12000 [ 1.183606] clocksource: Switched to clocksource arch_sys_counter 12001 [ 1.183830] VFS: Disk quotas dquot_6.6.0 12002 [ 1.183874] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 12003 [ 1.184218] AppArmor: AppArmor Filesystem Enabled 12004 [ 1.184265] pnp: PnP ACPI: disabled 12005 [ 1.189832] NET: Registered protocol family 2 12006 [ 1.190294] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 12007 [ 1.190398] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 12008 [ 1.190654] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 12009 [ 1.190841] TCP: Hash tables configured (established 32768 bind 32768) 12010 [ 1.190993] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 12011 [ 1.191056] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 12012 [ 1.191104] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 12013 [ 1.191244] NET: Registered protocol family 1 12014 [ 1.191268] PCI: CLS 0 bytes, default 64 12015 [ 1.191393] Trying to unpack rootfs image as initramfs... 12016 [ 1.727778] Freeing initrd memory: 13544K 12017 [ 1.728675] kvm [1]: IPA Size Limit: 40 bits 12018 [ 1.729383] kvm [1]: vgic interrupt IRQ9 12019 [ 1.729528] kvm [1]: Hyp mode initialized successfully 12020 [ 1.734620] Initialise system trusted keyrings 12021 [ 1.734655] Key type blacklist registered 12022 [ 1.734757] workingset: timestamp_bits=44 max_order=20 bucket_order=0 12023 [ 1.737934] zbud: loaded 12024 [ 1.738897] squashfs: version 4.0 (2009/01/31) Phillip Lougher 12025 [ 1.739353] fuse: init (API version 7.32) 12026 [ 1.740149] integrity: Platform Keyring initialized 12027 [ 1.768446] xor: measuring software checksum speed 12028 [ 1.771285] 8regs : 3473 MB/sec 12029 [ 1.773744] 32regs : 4021 MB/sec 12030 [ 1.776395] arm64_neon : 3723 MB/sec 12031 [ 1.776399] xor: using function: 32regs (4021 MB/sec) 12032 [ 1.776405] Key type asymmetric registered 12033 [ 1.776409] Asymmetric key parser 'x509' registered 12034 [ 1.776442] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 12035 [ 1.776527] io scheduler mq-deadline registered 12036 [ 1.776531] io scheduler kyber registered 12037 [ 1.776611] io scheduler bfq registered 12038 [ 1.779103] gpio-447 (usb-hub-reset): hogged as output/high 12039 [ 1.781967] EINJ: ACPI disabled. 12040 [ 1.788280] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 12041 [ 1.789606] VCC_3V3: supplied by VDDAO_3V3 12042 [ 1.789656] FLASH_1V8: supplied by VCC_3V3 12043 [ 1.789686] VCC_1V8: supplied by VCC_3V3 12044 [ 1.789713] VDDAO_1V8: supplied by VDDAO_3V3 12045 [ 1.789742] VDDCPU_A: supplied by regulator-dummy 12046 [ 1.790107] VDDCPU_B: supplied by regulator-dummy 12047 [ 1.790787] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 12048 [ 1.793045] Serial: AMBA driver 12049 [ 1.793328] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 12050 [ 1.793424] printk: console [ttyAML0] enabled 12051 [ 1.793943] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 12052 [ 1.799351] loop: module loaded 12053 [ 1.801224] libphy: Fixed MDIO Bus: probed 12054 [ 1.802175] tun: Universal TUN/TAP device driver, 1.6 12055 [ 1.802798] thunder_xcv, ver 1.0 12056 [ 1.802827] thunder_bgx, ver 1.0 12057 [ 1.802860] nicpf, ver 1.0 12058 [ 1.803295] e1000e: Intel(R) PRO/1000 Network Driver 12059 [ 1.803298] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 12060 [ 1.803342] igb: Intel(R) Gigabit Ethernet Network Driver 12061 [ 1.803346] igb: Copyright (c) 2007-2014 Intel Corporation. 12062 [ 1.803378] igbvf: Intel(R) Gigabit Virtual Function Network Driver 12063 [ 1.803381] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 12064 [ 1.803500] sky2: driver version 1.30 12065 [ 1.803916] VFIO - User Level meta-driver version: 0.3 12066 [ 1.805257] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 12067 [ 1.805274] ehci-pci: EHCI PCI platform driver 12068 [ 1.805303] ehci-platform: EHCI generic platform driver 12069 [ 1.805423] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 12070 [ 1.805433] ohci-pci: OHCI PCI platform driver 12071 [ 1.805462] ohci-platform: OHCI generic platform driver 12072 [ 1.805835] usbcore: registered new interface driver usb-storage 12073 [ 1.807011] mousedev: PS/2 mouse device common for all mice 12074 [ 1.807338] i2c /dev entries driver 12075 [ 1.812503] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 12076 [ 1.813186] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 12077 [ 1.813870] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 12078 [ 1.814454] sdhci: Secure Digital Host Controller Interface driver 12079 [ 1.814458] sdhci: Copyright(c) Pierre Ossman 12080 [ 1.814564] Synopsys Designware Multimedia Card Interface Driver 12081 [ 1.814976] sdhci-pltfm: SDHCI platform and OF driver helper 12082 [ 1.815420] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 12083 [ 1.816529] ledtrig-cpu: registered to indicate activity on CPUs 12084 [ 1.816770] meson-sm: secure-monitor enabled 12085 [ 1.816913] hid: raw HID events driver (C) Jiri Kosina 12086 [ 1.816982] usbcore: registered new interface driver usbhid 12087 [ 1.816984] usbhid: USB HID core driver 12088 [ 1.817878] NET: Registered protocol family 10 12089 [ 1.818270] Segment Routing with IPv6 12090 [ 1.818302] NET: Registered protocol family 17 12091 [ 1.818356] 8021q: 802.1Q VLAN Support v1.8 12092 [ 1.818380] Key type dns_resolver registered 12093 [ 1.818650] registered taskstats version 1 12094 [ 1.818657] Loading compiled-in X.509 certificates 12095 [ 1.820454] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 12096 [ 1.822021] zswap: loaded using pool zstd/z3fold 12097 [ 1.822176] Key type ._fscrypt registered 12098 [ 1.822178] Key type .fscrypt registered 12099 [ 1.822180] Key type fscrypt-provisioning registered 12100 [ 1.823267] Btrfs loaded, crc32c=crc32c-generic 12101 [ 1.829413] Key type encrypted registered 12102 [ 1.829423] AppArmor: AppArmor sha1 policy hashing enabled 12103 [ 1.835671] HUB_5V: supplied by 5V 12104 [ 1.835908] USB_PWR_EN: supplied by 5V 12105 [ 1.837604] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 12106 [ 1.837611] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 12107 [ 1.840316] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 12108 [ 1.840370] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 12109 [ 1.840474] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 12110 [ 1.841047] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 12111 [ 1.841058] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 12112 [ 1.841145] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 12113 [ 1.841166] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 12114 [ 1.841286] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 12115 [ 1.841289] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 12116 [ 1.841293] usb usb1: Product: xHCI Host Controller 12117 [ 1.841295] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 12118 [ 1.841297] usb usb1: SerialNumber: xhci-hcd.0.auto 12119 [ 1.841487] hub 1-0:1.0: USB hub found 12120 [ 1.841503] hub 1-0:1.0: 2 ports detected 12121 [ 1.841633] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 12122 [ 1.841639] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 12123 [ 1.841646] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 12124 [ 1.841667] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 12125 [ 1.841698] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 12126 [ 1.841701] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 12127 [ 1.841703] usb usb2: Product: xHCI Host Controller 12128 [ 1.841705] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 12129 [ 1.841708] usb usb2: SerialNumber: xhci-hcd.0.auto 12130 [ 1.841894] hub 2-0:1.0: USB hub found 12131 [ 1.841904] hub 2-0:1.0: 1 port detected 12132 [ 1.843005] meson-gx-mmc ffe05000.sd: Got CD GPIO 12133 [ 1.868637] Freeing unused kernel memory: 3328K 12134 [ 1.907725] Run /init as init process 12135 [ 1.907729] with arguments: 12136 [ 1.907731] /init 12137 [ 1.907733] with environment: 12138 [ 1.907735] HOME=/ 12139 [ 1.907737] TERM=linux 12140 [ 1.907738] hdmimode=custombuilt 12141 [ 1.907740] cvbsmode=576cvbs 12142 [ 1.907741] max_freq_a53=1896 12143 [ 1.907743] max_freq_a73=1800 12144 [ 1.907744] voutmode=hdmi 12145 [ 1.907746] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 12146 [ 1.907747] disablehpd=false 12147 [ 1.907749] cvbscable= 12148 [ 1.907750] overscan=100 12149 [ 1.933815] mmc0: new ultra high speed SDR25 SDHC card at address b368 12150 [ 1.934392] mmcblk0: mmc0:b368 CBADS 30.0 GiB 12151 [ 1.936413] mmcblk0: p1 12152 [ 2.060593] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 12153 [ 2.060600] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 12154 [ 2.060681] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 12155 [ 2.064811] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 12156 [ 2.064824] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 12157 [ 2.064827] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 12158 [ 2.064831] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 12159 [ 2.064833] meson8b-dwmac ff3f0000.ethernet: COE Type 2 12160 [ 2.064836] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 12161 [ 2.064838] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 12162 [ 2.064903] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 12163 [ 2.064906] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 12164 [ 2.064908] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 12165 [ 2.065130] libphy: stmmac: probed 12166 [ 2.066721] libphy: mdio_mux: probed 12167 [ 2.074428] meson-vrtc ff8000a8.rtc: registered as rtc1 12168 [ 2.092258] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 12169 [ 2.092421] rtc-pcf8563 1-0051: registered as rtc0 12170 [ 2.093806] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 12171 [ 2.093818] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 12172 [ 2.098146] random: fast init done 12173 [ 2.179633] usb 1-1: new high-speed USB device number 2 using xhci-hcd 12174 [ 2.272024] libphy: mdio_mux: probed 12175 [ 2.329981] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 12176 [ 2.329991] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 12177 [ 2.329994] usb 1-1: Product: USB2.1 Hub 12178 [ 2.329998] usb 1-1: Manufacturer: GenesysLogic 12179 [ 2.385947] hub 1-1:1.0: USB hub found 12180 [ 2.386174] hub 1-1:1.0: 4 ports detected 12181 [ 2.455739] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 12182 [ 2.478216] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 12183 [ 2.478222] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 12184 [ 2.478226] usb 2-1: Product: USB3.1 Hub 12185 [ 2.478230] usb 2-1: Manufacturer: GenesysLogic 12186 [ 2.497921] hub 2-1:1.0: USB hub found 12187 [ 2.498215] hub 2-1:1.0: 4 ports detected 12188 [ 2.603616] usb 1-2: new high-speed USB device number 3 using xhci-hcd 12189 [ 2.752647] usb 1-2: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 12190 [ 2.752654] usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0 12191 [ 2.752657] usb 1-2: Product: USB2.0 Hub 12192 [ 2.801982] hub 1-2:1.0: USB hub found 12193 [ 2.802230] hub 1-2:1.0: 4 ports detected 12194 [ 3.095609] usb 1-2.3: new high-speed USB device number 4 using xhci-hcd 12195 [ 3.196700] usb 1-2.3: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 7.02 12196 [ 3.196707] usb 1-2.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0 12197 [ 3.196709] usb 1-2.3: Product: USB2.0 Hub 12198 [ 3.203324] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 12199 [ 3.249979] hub 1-2.3:1.0: USB hub found 12200 [ 3.250216] hub 1-2.3:1.0: 4 ports detected 12201 [ 3.335620] usb 1-2.4: new high-speed USB device number 5 using xhci-hcd 12202 [ 3.436077] usb 1-2.4: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 12203 [ 3.436084] usb 1-2.4: New USB device strings: Mfr=3, Product=1, SerialNumber=2 12204 [ 3.436087] usb 1-2.4: Product: PCTV 292e 12205 [ 3.436090] usb 1-2.4: Manufacturer: PCTV 12206 [ 3.436092] usb 1-2.4: SerialNumber: 0011356964 12207 [ 4.004221] systemd[1]: System time before build time, advancing clock. 12208 [ 4.019041] systemd[1]: Inserted module 'autofs4' 12209 [ 4.065501] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 12210 [ 4.065726] systemd[1]: Detected architecture arm64. 12211 [ 4.086058] systemd[1]: Set hostname to <odroidn2>. 12212 [ 4.413418] random: systemd: uninitialized urandom read (16 bytes read) 12213 [ 4.416745] random: systemd: uninitialized urandom read (16 bytes read) 12214 [ 4.416957] systemd[1]: Listening on udev Kernel Socket. 12215 [ 4.417293] random: systemd: uninitialized urandom read (16 bytes read) 12216 [ 4.417472] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 12217 [ 4.417651] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 12218 [ 4.418904] systemd[1]: Created slice system-serial\x2dgetty.slice. 12219 [ 4.419292] systemd[1]: Listening on Journal Audit Socket. 12220 [ 4.419390] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 12221 [ 4.419424] systemd[1]: Reached target Paths. 12222 [ 4.479439] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 12223 [ 4.994769] zram: Added device: zram0 12224 [ 4.995025] zram: Added device: zram1 12225 [ 4.995257] zram: Added device: zram2 12226 [ 5.065903] pwm-gpio pwmgpio: 1 gpio pwms loaded 12227 [ 5.226140] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 12228 [ 5.234239] mc: Linux media interface: v0.10 12229 [ 5.299629] Registered IR keymap rc-odroid 12230 [ 5.320594] videodev: Linux video capture interface: v2.00 12231 [ 5.341487] meson-drm ff900000.vpu: Queued 2 outputs on vpu 12232 [ 5.348569] IR NEC protocol handler initialized 12233 [ 5.378177] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 12234 [ 5.378382] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 12235 [ 5.378495] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 12236 [ 5.378768] meson-ir ff808000.ir: receiver initialized 12237 [ 5.388218] meson-drm ff900000.vpu: CVBS Output connector not available 12238 [ 5.392800] panfrost ffe40000.gpu: clock rate = 24000000 12239 [ 5.392884] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 12240 [ 5.393804] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 12241 [ 5.393814] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 12242 [ 5.393819] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 12243 [ 5.393823] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 12244 [ 5.412878] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 12245 [ 5.414510] zram0: detected capacity change from 0 to 1904500736 12246 [ 5.415723] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 12247 [ 5.416087] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 12248 [ 5.416291] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 12249 [ 5.416475] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 12250 [ 5.462981] em28xx 1-2.4:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 12251 [ 5.462992] em28xx 1-2.4:1.0: DVB interface 0 found: isoc 12252 [ 5.484786] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 12253 [ 5.519758] em28xx 1-2.4:1.0: chip ID is em28178 12254 [ 5.723766] Console: switching to colour frame buffer device 240x67 12255 [ 5.750297] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 12256 [ 5.783057] axg-sound-card sound: ASoC: no DMI vendor name! 12257 [ 6.475656] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 12258 [ 6.542233] zram1: detected capacity change from 0 to 52428800 12259 [ 7.557822] em28xx 1-2.4:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 12260 [ 7.557826] em28xx 1-2.4:1.0: EEPROM info: 12261 [ 7.557829] em28xx 1-2.4:1.0: microcode start address = 0x0004, boot configuration = 0x01 12262 [ 7.563942] em28xx 1-2.4:1.0: AC97 audio (5 sample rates) 12263 [ 7.563944] em28xx 1-2.4:1.0: 500mA max power 12264 [ 7.563947] em28xx 1-2.4:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 12265 [ 7.623605] em28xx 1-2.4:1.0: Identified as PCTV tripleStick (292e) (card=94) 12266 [ 7.623609] em28xx 1-2.4:1.0: dvb set to isoc mode. 12267 [ 7.623720] usbcore: registered new interface driver em28xx 12268 [ 7.650022] em28xx 1-2.4:1.0: Binding DVB extension 12269 [ 7.663304] i2c i2c-4: Added multiplexed i2c bus 5 12270 [ 7.663313] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 12271 [ 7.663316] si2168 4-0064: firmware version: B 4.0.2 12272 [ 7.671856] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 12273 [ 7.671939] dvbdev: DVB: registering new adapter (1-2.4:1.0) 12274 [ 7.671949] em28xx 1-2.4:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 12275 [ 7.671961] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 12276 [ 7.672994] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 12277 [ 7.697864] em28xx 1-2.4:1.0: DVB extension successfully initialized 12278 [ 7.697875] em28xx: Registered (Em28xx dvb Extension) extension 12279 [ 7.705192] em28xx 1-2.4:1.0: Registering input extension 12280 [ 7.735606] Registered IR keymap rc-pinnacle-pctv-hd 12281 [ 7.735800] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.0/rc/rc1 12282 [ 7.735895] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 12283 [ 7.735958] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.0/rc/rc1/input1 12284 [ 7.736032] em28xx 1-2.4:1.0: Input extension successfully initialized 12285 [ 7.736035] em28xx: Registered (Em28xx Input Extension) extension 12286 [ 8.630269] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 12287 [ 8.630288] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 12288 [ 9.717249] systemd[1]: Started Armbian memory supported logging. 12289 [ 9.719556] systemd[1]: Starting Journal Service... 12290 [ 9.786651] systemd[1]: Started Journal Service. 12291 [ 9.811783] systemd-journald[1847]: Received request to flush runtime journal from PID 1 12292 12293 ### armbian-release: 12294 12295 # PLEASE DO NOT EDIT THIS FILE 12296 BOARD=odroidn2 12297 BOARD_NAME="Odroid N2" 12298 BOARDFAMILY=meson-g12b 12299 BUILD_REPOSITORY_URL=https://github.com/armbian/build 12300 BUILD_REPOSITORY_COMMIT=5f03d652 12301 DISTRIBUTION_CODENAME=buster 12302 DISTRIBUTION_STATUS=supported 12303 VERSION=21.02.1 12304 LINUXFAMILY=meson64 12305 BRANCH=current 12306 ARCH=arm64 12307 IMAGE_TYPE=stable 12308 BOARD_TYPE=conf 12309 INITRD_ARCH=arm64 12310 KERNEL_IMAGE_TYPE=Image 12311 12312 ### boot environment: 12313 12314 verbosity=1 12315 console=both 12316 overlay_prefix=meson 12317 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 12318 rootfstype=ext4 12319 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 12320 12321 ### lsusb: 12322 12323 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 12324 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 12325 Bus 001 Device 005: ID 2013:025f PCTV Systems 12326 Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. Hub 12327 Bus 001 Device 003: ID 05e3:0608 Genesys Logic, Inc. Hub 12328 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 12329 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 12330 12331 ### lscpu: 12332 12333 Architecture: aarch64 12334 Byte Order: Little Endian 12335 CPU(s): 6 12336 On-line CPU(s) list: 0-5 12337 Thread(s) per core: 1 12338 Core(s) per socket: 3 12339 Socket(s): 2 12340 NUMA node(s): 1 12341 Vendor ID: ARM 12342 Model: 4 12343 Model name: Cortex-A53 12344 Stepping: r0p4 12345 CPU max MHz: 1992.0000 12346 CPU min MHz: 100.0000 12347 BogoMIPS: 48.00 12348 L1d cache: unknown size 12349 L1i cache: unknown size 12350 L2 cache: unknown size 12351 NUMA node0 CPU(s): 0-5 12352 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 12353 12354 ### cpuinfo: 12355 12356 processor : 0 12357 BogoMIPS : 48.00 12358 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 12359 CPU implementer : 0x41 12360 CPU architecture: 8 12361 CPU variant : 0x0 12362 CPU part : 0xd03 12363 CPU revision : 4 12364 12365 processor : 1 12366 BogoMIPS : 48.00 12367 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 12368 CPU implementer : 0x41 12369 CPU architecture: 8 12370 CPU variant : 0x0 12371 CPU part : 0xd03 12372 CPU revision : 4 12373 12374 processor : 2 12375 BogoMIPS : 48.00 12376 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 12377 CPU implementer : 0x41 12378 CPU architecture: 8 12379 CPU variant : 0x0 12380 CPU part : 0xd09 12381 CPU revision : 2 12382 12383 processor : 3 12384 BogoMIPS : 48.00 12385 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 12386 CPU implementer : 0x41 12387 CPU architecture: 8 12388 CPU variant : 0x0 12389 CPU part : 0xd09 12390 CPU revision : 2 12391 12392 processor : 4 12393 BogoMIPS : 48.00 12394 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 12395 CPU implementer : 0x41 12396 CPU architecture: 8 12397 CPU variant : 0x0 12398 CPU part : 0xd09 12399 CPU revision : 2 12400 12401 processor : 5 12402 BogoMIPS : 48.00 12403 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 12404 CPU implementer : 0x41 12405 CPU architecture: 8 12406 CPU variant : 0x0 12407 CPU part : 0xd09 12408 CPU revision : 2 12409 12410 12411 ### meminfo: 12412 12413 MemTotal: 3719728 kB 12414 MemFree: 3399136 kB 12415 MemAvailable: 3352944 kB 12416 Buffers: 11444 kB 12417 Cached: 44860 kB 12418 SwapCached: 0 kB 12419 Active: 28272 kB 12420 Inactive: 177540 kB 12421 Active(anon): 144 kB 12422 Inactive(anon): 154352 kB 12423 Active(file): 28128 kB 12424 Inactive(file): 23188 kB 12425 Unevictable: 0 kB 12426 Mlocked: 0 kB 12427 SwapTotal: 1859860 kB 12428 SwapFree: 1859860 kB 12429 Dirty: 5184 kB 12430 Writeback: 0 kB 12431 AnonPages: 149724 kB 12432 Mapped: 13392 kB 12433 Shmem: 4992 kB 12434 KReclaimable: 13016 kB 12435 Slab: 40408 kB 12436 SReclaimable: 13016 kB 12437 SUnreclaim: 27392 kB 12438 KernelStack: 2496 kB 12439 PageTables: 5764 kB 12440 NFS_Unstable: 0 kB 12441 Bounce: 0 kB 12442 WritebackTmp: 0 kB 12443 CommitLimit: 3719724 kB 12444 Committed_AS: 4240132 kB 12445 VmallocTotal: 135290159040 kB 12446 VmallocUsed: 33152 kB 12447 VmallocChunk: 0 kB 12448 Percpu: 1368 kB 12449 HardwareCorrupted: 0 kB 12450 AnonHugePages: 0 kB 12451 ShmemHugePages: 0 kB 12452 ShmemPmdMapped: 0 kB 12453 FileHugePages: 0 kB 12454 FilePmdMapped: 0 kB 12455 CmaTotal: 917504 kB 12456 CmaFree: 901724 kB 12457 HugePages_Total: 0 12458 HugePages_Free: 0 12459 HugePages_Rsvd: 0 12460 HugePages_Surp: 0 12461 Hugepagesize: 2048 kB 12462 Hugetlb: 0 kB 12463 12464 ### virtual memory: 12465 12466 vm.admin_reserve_kbytes = 8192 12467 vm.block_dump = 0 12468 vm.compaction_proactiveness = 20 12469 vm.compact_unevictable_allowed = 1 12470 vm.dirty_background_bytes = 0 12471 vm.dirty_background_ratio = 10 12472 vm.dirty_bytes = 0 12473 vm.dirty_expire_centisecs = 3000 12474 vm.dirty_ratio = 20 12475 vm.dirtytime_expire_seconds = 43200 12476 vm.dirty_writeback_centisecs = 500 12477 vm.extfrag_threshold = 500 12478 vm.hugetlb_shm_group = 0 12479 vm.laptop_mode = 0 12480 vm.legacy_va_layout = 0 12481 vm.lowmem_reserve_ratio = 256 256 32 0 12482 vm.max_map_count = 65530 12483 vm.memory_failure_early_kill = 0 12484 vm.memory_failure_recovery = 1 12485 vm.min_free_kbytes = 45056 12486 vm.min_slab_ratio = 5 12487 vm.min_unmapped_ratio = 1 12488 vm.mmap_min_addr = 4096 12489 vm.mmap_rnd_bits = 18 12490 vm.mmap_rnd_compat_bits = 11 12491 vm.nr_hugepages = 0 12492 vm.nr_hugepages_mempolicy = 0 12493 vm.nr_overcommit_hugepages = 0 12494 vm.numa_stat = 1 12495 vm.numa_zonelist_order = Node 12496 vm.oom_dump_tasks = 1 12497 vm.oom_kill_allocating_task = 0 12498 vm.overcommit_kbytes = 0 12499 vm.overcommit_memory = 0 12500 vm.overcommit_ratio = 50 12501 vm.page-cluster = 0 12502 vm.page_lock_unfairness = 5 12503 vm.panic_on_oom = 0 12504 vm.percpu_pagelist_fraction = 0 12505 vm.stat_interval = 1 12506 vm.swappiness = 100 12507 vm.user_reserve_kbytes = 115067 12508 vm.vfs_cache_pressure = 100 12509 vm.watermark_boost_factor = 15000 12510 vm.watermark_scale_factor = 10 12511 vm.zone_reclaim_mode = 0 12512 12513 ### ip addr: 12514 12515 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 12516 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 12517 inet XXX.XXX.0.1/8 scope host lo 12518 valid_lft forever preferred_lft forever 12519 inet6 ::1/128 scope host 12520 valid_lft forever preferred_lft forever 12521 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 12522 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 12523 12524 ### partitions: 12525 12526 major minor #blocks name 12527 12528 179 0 31464960 mmcblk0 12529 179 1 31146208 mmcblk0p1 12530 252 0 1859864 zram0 12531 252 1 51200 zram1 12532 12533 ### df: 12534 12535 udev 1.4G 0 1.4G 0% /dev 12536 tmpfs 364M 4.9M 359M 2% /run 12537 /dev/mmcblk0p1 30G 1.7G 28G 6% / 12538 tmpfs 1.8G 0 1.8G 0% /dev/shm 12539 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 12540 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 12541 tmpfs 1.8G 0 1.8G 0% /tmp 12542 /dev/zram1 49M 5.1M 40M 12% /var/log 12543 12544 ### lsblk: 12545 12546 NAME FSTYPE SIZE MOUNTPOINT UUID 12547 mmcblk0 30G 12548 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 12549 zram1 50M /var/log 12550 12551 ### zramctl: 12552 12553 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 12554 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 12555 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 12556 12557 ### mtab: 12558 12559 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 12560 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 12561 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 12562 12563 ### mmc0:b368 info: 12564 12565 fwrev: 0x0 12566 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 12567 cid: 6f0303434241445310aa002b4d013b00 12568 rca: 0xb368 12569 csd: 400e005a5b590000f00e7f800a404000 12570 manfid: 0x00006f 12571 ocr: 0x00200000 12572 preferred_erase_size: 2097152 12573 type: SD 12574 hwrev: 0x1 12575 date: 11/2019 12576 dsr: 0x404 12577 erase_size: 512 12578 oemid: 0x0303 12579 serial: 0xaa002b4d 12580 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 12581 scr: 02b5800300000000 12582 name: CBADS 12583 12584 ### Boot system health: 12585 12586 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 12587 16:19:56: 1908/1992MHz 2.83 23% 11% 5% 0% 6% 0% 34.0°C 0/11 12588 16:19:56: 1908/1992MHz 2.83 93% 29% 6% 0% 56% 1% 32.7°C 0/11 12589 16:19:57: 1908/ 500MHz 2.83 63% 9% 5% 0% 45% 0% 31.5°C 0/11 12590 16:19:57: 1908/1992MHz 2.83 55% 10% 6% 0% 36% 1% 30.6°C 0/11 12591 16:19:57: 1908/1992MHz 2.83 38% 2% 4% 0% 30% 0% 30.2°C 0/11 12592 12593 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 12594 12595 ### Activated Armbian ramlog partition with zstd compression 12596 12597 Sun 14 Feb 2021 04:34:48 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 12598 12599 ### dmesg: 12600 12601 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 12602 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 12603 [ 0.000000] Machine model: Hardkernel ODROID-N2 12604 [ 0.000000] efi: UEFI not found. 12605 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 12606 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 12607 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 12608 [ 0.000000] NUMA: No NUMA configuration found 12609 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 12610 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 12611 [ 0.000000] Zone ranges: 12612 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 12613 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 12614 [ 0.000000] Normal empty 12615 [ 0.000000] Movable zone start for each node 12616 [ 0.000000] Early memory node ranges 12617 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 12618 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 12619 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 12620 [ 0.000000] On node 0 totalpages: 972032 12621 [ 0.000000] DMA zone: 4096 pages used for memmap 12622 [ 0.000000] DMA zone: 0 pages reserved 12623 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 12624 [ 0.000000] DMA32 zone: 11104 pages used for memmap 12625 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 12626 [ 0.000000] psci: probing for conduit method from DT. 12627 [ 0.000000] psci: PSCIv1.0 detected in firmware. 12628 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 12629 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 12630 [ 0.000000] psci: SMC Calling Convention v1.1 12631 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 12632 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 12633 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 12634 [ 0.000000] Detected VIPT I-cache on CPU0 12635 [ 0.000000] CPU features: detected: ARM erratum 845719 12636 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 12637 [ 0.000000] Policy zone: DMA32 12638 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 12639 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 12640 Please use sysfs to set IO scheduler for individual devices. 12641 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 12642 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 12643 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 12644 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 12645 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 12646 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 12647 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 12648 [ 0.000000] rcu: RCU event tracing is enabled. 12649 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 12650 [ 0.000000] Trampoline variant of Tasks RCU enabled. 12651 [ 0.000000] Rude variant of Tasks RCU enabled. 12652 [ 0.000000] Tracing variant of Tasks RCU enabled. 12653 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 12654 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 12655 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 12656 [ 0.000000] GIC: Using split EOI/Deactivate mode 12657 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 12658 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 12659 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 12660 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 12661 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 12662 [ 0.000245] Console: colour dummy device 80x25 12663 [ 0.000280] printk: console [tty1] enabled 12664 [ 0.000366] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 12665 [ 0.000378] pid_max: default: 32768 minimum: 301 12666 [ 0.000462] LSM: Security Framework initializing 12667 [ 0.000487] Yama: becoming mindful. 12668 [ 0.000579] AppArmor: AppArmor initialized 12669 [ 0.000630] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 12670 [ 0.000649] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 12671 [ 0.002638] rcu: Hierarchical SRCU implementation. 12672 [ 0.005097] EFI services will not be available. 12673 [ 0.005514] smp: Bringing up secondary CPUs ... 12674 [ 0.006178] Detected VIPT I-cache on CPU1 12675 [ 0.006240] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 12676 [ 0.007433] CPU features: detected: ARM erratum 858921 12677 [ 0.007441] CPU features: detected: Spectre-v2 12678 [ 0.007444] CPU features: detected: Spectre-v4 12679 [ 0.007450] Detected VIPT I-cache on CPU2 12680 [ 0.007478] arch_timer: Enabling local workaround for ARM erratum 858921 12681 [ 0.007492] arch_timer: CPU2: Trapping CNTVCT access 12682 [ 0.007505] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 12683 [ 0.008215] Detected VIPT I-cache on CPU3 12684 [ 0.008231] arch_timer: Enabling local workaround for ARM erratum 858921 12685 [ 0.008238] arch_timer: CPU3: Trapping CNTVCT access 12686 [ 0.008245] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 12687 [ 0.008869] Detected VIPT I-cache on CPU4 12688 [ 0.008886] arch_timer: Enabling local workaround for ARM erratum 858921 12689 [ 0.008892] arch_timer: CPU4: Trapping CNTVCT access 12690 [ 0.008900] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 12691 [ 0.009512] Detected VIPT I-cache on CPU5 12692 [ 0.009529] arch_timer: Enabling local workaround for ARM erratum 858921 12693 [ 0.009535] arch_timer: CPU5: Trapping CNTVCT access 12694 [ 0.009543] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 12695 [ 0.009624] smp: Brought up 1 node, 6 CPUs 12696 [ 0.009640] SMP: Total of 6 processors activated. 12697 [ 0.009648] CPU features: detected: 32-bit EL0 Support 12698 [ 0.009654] CPU features: detected: CRC32 instructions 12699 [ 0.009660] CPU features: detected: 32-bit EL1 Support 12700 [ 0.020858] CPU: All CPU(s) started at EL2 12701 [ 0.020907] alternatives: patching kernel code 12702 [ 0.022827] devtmpfs: initialized 12703 [ 0.030444] Registered cp15_barrier emulation handler 12704 [ 0.030459] Registered setend emulation handler 12705 [ 0.030623] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 12706 [ 0.030666] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 12707 [ 0.044630] pinctrl core: initialized pinctrl subsystem 12708 [ 0.045381] DMI not present or invalid. 12709 [ 0.045748] NET: Registered protocol family 16 12710 [ 0.047277] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 12711 [ 0.047564] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 12712 [ 0.047794] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 12713 [ 0.047831] audit: initializing netlink subsys (disabled) 12714 [ 0.047944] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 12715 [ 0.049132] thermal_sys: Registered thermal governor 'fair_share' 12716 [ 0.049139] thermal_sys: Registered thermal governor 'bang_bang' 12717 [ 0.049143] thermal_sys: Registered thermal governor 'step_wise' 12718 [ 0.049147] thermal_sys: Registered thermal governor 'user_space' 12719 [ 0.049579] cpuidle: using governor menu 12720 [ 0.049921] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 12721 [ 0.050042] ASID allocator initialised with 65536 entries 12722 [ 0.050991] Serial: AMBA PL011 UART driver 12723 [ 0.084775] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 12724 [ 0.084789] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 12725 [ 0.084794] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 12726 [ 0.084800] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 12727 [ 0.087143] cryptd: max_cpu_qlen set to 1000 12728 [ 0.156196] raid6: neonx8 gen() 2781 MB/s 12729 [ 0.224257] raid6: neonx8 xor() 2042 MB/s 12730 [ 0.292350] raid6: neonx4 gen() 3008 MB/s 12731 [ 0.360409] raid6: neonx4 xor() 2399 MB/s 12732 [ 0.428467] raid6: neonx2 gen() 2532 MB/s 12733 [ 0.496529] raid6: neonx2 xor() 2208 MB/s 12734 [ 0.564616] raid6: neonx1 gen() 2082 MB/s 12735 [ 0.632662] raid6: neonx1 xor() 1726 MB/s 12736 [ 0.700741] raid6: int64x8 gen() 1380 MB/s 12737 [ 0.768808] raid6: int64x8 xor() 735 MB/s 12738 [ 0.836882] raid6: int64x4 gen() 1463 MB/s 12739 [ 0.904934] raid6: int64x4 xor() 733 MB/s 12740 [ 0.973005] raid6: int64x2 gen() 1363 MB/s 12741 [ 1.041077] raid6: int64x2 xor() 619 MB/s 12742 [ 1.109144] raid6: int64x1 gen() 1120 MB/s 12743 [ 1.177215] raid6: int64x1 xor() 462 MB/s 12744 [ 1.177218] raid6: using algorithm neonx4 gen() 3008 MB/s 12745 [ 1.177221] raid6: .... xor() 2399 MB/s, rmw enabled 12746 [ 1.177225] raid6: using neon recovery algorithm 12747 [ 1.177685] ACPI: Interpreter disabled. 12748 [ 1.178530] 5V: supplied by 12V 12749 [ 1.179430] VDDAO_3V3: supplied by 12V 12750 [ 1.179903] iommu: Default domain type: Translated 12751 [ 1.180022] vgaarb: loaded 12752 [ 1.181045] SCSI subsystem initialized 12753 [ 1.181333] usbcore: registered new interface driver usbfs 12754 [ 1.181375] usbcore: registered new interface driver hub 12755 [ 1.181414] usbcore: registered new device driver usb 12756 [ 1.181674] pps_core: LinuxPPS API ver. 1 registered 12757 [ 1.181678] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 12758 [ 1.181698] PTP clock support registered 12759 [ 1.181904] EDAC MC: Ver: 3.0.0 12760 [ 1.183304] NetLabel: Initializing 12761 [ 1.183311] NetLabel: domain hash size = 128 12762 [ 1.183314] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 12763 [ 1.183356] NetLabel: unlabeled traffic allowed by default 12764 [ 1.183811] clocksource: Switched to clocksource arch_sys_counter 12765 [ 1.184027] VFS: Disk quotas dquot_6.6.0 12766 [ 1.184072] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 12767 [ 1.184421] AppArmor: AppArmor Filesystem Enabled 12768 [ 1.184479] pnp: PnP ACPI: disabled 12769 [ 1.190259] NET: Registered protocol family 2 12770 [ 1.190719] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 12771 [ 1.190822] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 12772 [ 1.191078] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 12773 [ 1.191265] TCP: Hash tables configured (established 32768 bind 32768) 12774 [ 1.191418] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 12775 [ 1.191482] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 12776 [ 1.191528] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 12777 [ 1.191672] NET: Registered protocol family 1 12778 [ 1.191691] PCI: CLS 0 bytes, default 64 12779 [ 1.191848] Trying to unpack rootfs image as initramfs... 12780 [ 1.728335] Freeing initrd memory: 13544K 12781 [ 1.729251] kvm [1]: IPA Size Limit: 40 bits 12782 [ 1.729957] kvm [1]: vgic interrupt IRQ9 12783 [ 1.730090] kvm [1]: Hyp mode initialized successfully 12784 [ 1.734052] Initialise system trusted keyrings 12785 [ 1.734086] Key type blacklist registered 12786 [ 1.734189] workingset: timestamp_bits=44 max_order=20 bucket_order=0 12787 [ 1.737384] zbud: loaded 12788 [ 1.738359] squashfs: version 4.0 (2009/01/31) Phillip Lougher 12789 [ 1.738797] fuse: init (API version 7.32) 12790 [ 1.739570] integrity: Platform Keyring initialized 12791 [ 1.766674] xor: measuring software checksum speed 12792 [ 1.769524] 8regs : 3473 MB/sec 12793 [ 1.771979] 32regs : 4024 MB/sec 12794 [ 1.774628] arm64_neon : 3719 MB/sec 12795 [ 1.774631] xor: using function: 32regs (4024 MB/sec) 12796 [ 1.774638] Key type asymmetric registered 12797 [ 1.774642] Asymmetric key parser 'x509' registered 12798 [ 1.774679] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 12799 [ 1.774762] io scheduler mq-deadline registered 12800 [ 1.774766] io scheduler kyber registered 12801 [ 1.774849] io scheduler bfq registered 12802 [ 1.777389] gpio-447 (usb-hub-reset): hogged as output/high 12803 [ 1.780383] EINJ: ACPI disabled. 12804 [ 1.786575] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 12805 [ 1.787998] VCC_3V3: supplied by VDDAO_3V3 12806 [ 1.788050] FLASH_1V8: supplied by VCC_3V3 12807 [ 1.788081] VCC_1V8: supplied by VCC_3V3 12808 [ 1.788112] VDDAO_1V8: supplied by VDDAO_3V3 12809 [ 1.788140] VDDCPU_A: supplied by regulator-dummy 12810 [ 1.788513] VDDCPU_B: supplied by regulator-dummy 12811 [ 1.789207] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 12812 [ 1.791364] Serial: AMBA driver 12813 [ 1.791656] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 12814 [ 1.791751] printk: console [ttyAML0] enabled 12815 [ 1.792357] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 12816 [ 1.797736] loop: module loaded 12817 [ 1.799725] libphy: Fixed MDIO Bus: probed 12818 [ 1.800987] tun: Universal TUN/TAP device driver, 1.6 12819 [ 1.801656] thunder_xcv, ver 1.0 12820 [ 1.801684] thunder_bgx, ver 1.0 12821 [ 1.801718] nicpf, ver 1.0 12822 [ 1.802176] e1000e: Intel(R) PRO/1000 Network Driver 12823 [ 1.802180] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 12824 [ 1.802225] igb: Intel(R) Gigabit Ethernet Network Driver 12825 [ 1.802228] igb: Copyright (c) 2007-2014 Intel Corporation. 12826 [ 1.802260] igbvf: Intel(R) Gigabit Virtual Function Network Driver 12827 [ 1.802263] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 12828 [ 1.802389] sky2: driver version 1.30 12829 [ 1.802750] VFIO - User Level meta-driver version: 0.3 12830 [ 1.804209] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 12831 [ 1.804232] ehci-pci: EHCI PCI platform driver 12832 [ 1.804262] ehci-platform: EHCI generic platform driver 12833 [ 1.804405] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 12834 [ 1.804416] ohci-pci: OHCI PCI platform driver 12835 [ 1.804449] ohci-platform: OHCI generic platform driver 12836 [ 1.804879] usbcore: registered new interface driver usb-storage 12837 [ 1.806207] mousedev: PS/2 mouse device common for all mice 12838 [ 1.806605] i2c /dev entries driver 12839 [ 1.811785] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 12840 [ 1.812477] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 12841 [ 1.813167] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 12842 [ 1.813796] sdhci: Secure Digital Host Controller Interface driver 12843 [ 1.813803] sdhci: Copyright(c) Pierre Ossman 12844 [ 1.813928] Synopsys Designware Multimedia Card Interface Driver 12845 [ 1.814457] sdhci-pltfm: SDHCI platform and OF driver helper 12846 [ 1.815382] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 12847 [ 1.815892] ledtrig-cpu: registered to indicate activity on CPUs 12848 [ 1.816229] meson-sm: secure-monitor enabled 12849 [ 1.816435] hid: raw HID events driver (C) Jiri Kosina 12850 [ 1.816528] usbcore: registered new interface driver usbhid 12851 [ 1.816531] usbhid: USB HID core driver 12852 [ 1.817531] NET: Registered protocol family 10 12853 [ 1.818130] Segment Routing with IPv6 12854 [ 1.818167] NET: Registered protocol family 17 12855 [ 1.818236] 8021q: 802.1Q VLAN Support v1.8 12856 [ 1.818263] Key type dns_resolver registered 12857 [ 1.818534] registered taskstats version 1 12858 [ 1.818540] Loading compiled-in X.509 certificates 12859 [ 1.820228] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 12860 [ 1.821815] zswap: loaded using pool zstd/z3fold 12861 [ 1.821988] Key type ._fscrypt registered 12862 [ 1.821990] Key type .fscrypt registered 12863 [ 1.821992] Key type fscrypt-provisioning registered 12864 [ 1.823082] Btrfs loaded, crc32c=crc32c-generic 12865 [ 1.829159] Key type encrypted registered 12866 [ 1.829171] AppArmor: AppArmor sha1 policy hashing enabled 12867 [ 1.835368] HUB_5V: supplied by 5V 12868 [ 1.835583] USB_PWR_EN: supplied by 5V 12869 [ 1.837288] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 12870 [ 1.837295] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 12871 [ 1.839998] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 12872 [ 1.840050] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 12873 [ 1.840155] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 12874 [ 1.840742] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 12875 [ 1.840754] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 12876 [ 1.840840] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 12877 [ 1.840861] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 12878 [ 1.840981] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 12879 [ 1.840985] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 12880 [ 1.840988] usb usb1: Product: xHCI Host Controller 12881 [ 1.840990] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 12882 [ 1.840993] usb usb1: SerialNumber: xhci-hcd.0.auto 12883 [ 1.841181] hub 1-0:1.0: USB hub found 12884 [ 1.841195] hub 1-0:1.0: 2 ports detected 12885 [ 1.841328] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 12886 [ 1.841333] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 12887 [ 1.841340] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 12888 [ 1.841364] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 12889 [ 1.841395] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 12890 [ 1.841398] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 12891 [ 1.841401] usb usb2: Product: xHCI Host Controller 12892 [ 1.841403] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 12893 [ 1.841406] usb usb2: SerialNumber: xhci-hcd.0.auto 12894 [ 1.841544] hub 2-0:1.0: USB hub found 12895 [ 1.841553] hub 2-0:1.0: 1 port detected 12896 [ 1.841819] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 12897 [ 1.842671] meson-gx-mmc ffe05000.sd: Got CD GPIO 12898 [ 1.868897] Freeing unused kernel memory: 3328K 12899 [ 1.907935] Run /init as init process 12900 [ 1.907939] with arguments: 12901 [ 1.907941] /init 12902 [ 1.907943] with environment: 12903 [ 1.907945] HOME=/ 12904 [ 1.907946] TERM=linux 12905 [ 1.907948] hdmimode=1080p60hz 12906 [ 1.907950] cvbsmode=576cvbs 12907 [ 1.907951] max_freq_a53=1896 12908 [ 1.907953] max_freq_a73=1800 12909 [ 1.907954] voutmode=hdmi 12910 [ 1.907956] disablehpd=false 12911 [ 1.907957] cvbscable=0 12912 [ 1.907958] overscan=100 12913 [ 1.934009] mmc1: new ultra high speed SDR25 SDHC card at address b368 12914 [ 1.934527] mmcblk1: mmc1:b368 CBADS 30.0 GiB 12915 [ 1.936611] mmcblk1: p1 12916 [ 2.071318] meson-vrtc ff8000a8.rtc: registered as rtc1 12917 [ 2.074601] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 12918 [ 2.074612] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 12919 [ 2.074826] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 12920 [ 2.077192] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 12921 [ 2.077206] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 12922 [ 2.077211] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 12923 [ 2.077215] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 12924 [ 2.077218] meson8b-dwmac ff3f0000.ethernet: COE Type 2 12925 [ 2.077221] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 12926 [ 2.077224] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 12927 [ 2.077314] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 12928 [ 2.077320] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 12929 [ 2.077324] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 12930 [ 2.077752] libphy: stmmac: probed 12931 [ 2.079649] libphy: mdio_mux: probed 12932 [ 2.081427] random: fast init done 12933 [ 2.086198] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 12934 [ 2.086735] rtc-pcf8563 1-0051: registered as rtc0 12935 [ 2.087989] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 12936 [ 2.087998] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 12937 [ 2.179943] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 12938 [ 2.204545] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 12939 [ 2.204552] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 12940 [ 2.204555] usb 2-1: Product: USB3.1 Hub 12941 [ 2.204557] usb 2-1: Manufacturer: GenesysLogic 12942 [ 2.225550] hub 2-1:1.0: USB hub found 12943 [ 2.225833] hub 2-1:1.0: 4 ports detected 12944 [ 2.284402] libphy: mdio_mux: probed 12945 [ 2.327824] usb 1-1: new high-speed USB device number 2 using xhci-hcd 12946 [ 2.478099] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 12947 [ 2.478103] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 12948 [ 2.478106] usb 1-1: Product: USB2.1 Hub 12949 [ 2.478108] usb 1-1: Manufacturer: GenesysLogic 12950 [ 2.513548] hub 1-1:1.0: USB hub found 12951 [ 2.513788] hub 1-1:1.0: 4 ports detected 12952 [ 2.892644] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 12953 [ 3.696081] systemd[1]: System time before build time, advancing clock. 12954 [ 3.710860] systemd[1]: Inserted module 'autofs4' 12955 [ 3.757337] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 12956 [ 3.757552] systemd[1]: Detected architecture arm64. 12957 [ 3.782455] systemd[1]: Set hostname to <odroidn2>. 12958 [ 4.109591] random: systemd: uninitialized urandom read (16 bytes read) 12959 [ 4.112945] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 12960 [ 4.112976] random: systemd: uninitialized urandom read (16 bytes read) 12961 [ 4.112994] systemd[1]: Reached target Swap. 12962 [ 4.113238] random: systemd: uninitialized urandom read (16 bytes read) 12963 [ 4.113453] systemd[1]: Listening on Syslog Socket. 12964 [ 4.113812] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 12965 [ 4.113990] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 12966 [ 4.114065] systemd[1]: Reached target Paths. 12967 [ 4.114335] systemd[1]: Listening on Journal Socket. 12968 [ 4.205028] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 12969 [ 4.724389] zram: Added device: zram0 12970 [ 4.724804] zram: Added device: zram1 12971 [ 4.725144] zram: Added device: zram2 12972 [ 4.737369] pwm-gpio pwmgpio: 1 gpio pwms loaded 12973 [ 4.931172] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 12974 [ 4.944565] mc: Linux media interface: v0.10 12975 [ 4.953402] panfrost ffe40000.gpu: clock rate = 24000000 12976 [ 4.953476] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 12977 [ 4.954366] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 12978 [ 4.954378] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 12979 [ 4.954383] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 12980 [ 4.954386] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 12981 [ 4.968816] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 12982 [ 5.015930] Registered IR keymap rc-odroid 12983 [ 5.033725] meson-drm ff900000.vpu: Queued 2 outputs on vpu 12984 [ 5.049204] videodev: Linux video capture interface: v2.00 12985 [ 5.068694] IR NEC protocol handler initialized 12986 [ 5.093142] meson-drm ff900000.vpu: CVBS Output connector not available 12987 [ 5.095947] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 12988 [ 5.096099] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 12989 [ 5.096216] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 12990 [ 5.099103] meson-ir ff808000.ir: receiver initialized 12991 [ 5.119392] zram0: detected capacity change from 0 to 1904500736 12992 [ 5.119937] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 12993 [ 5.120490] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 12994 [ 5.120740] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 12995 [ 5.120988] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 12996 [ 5.121048] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 12997 [ 5.162999] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 12998 [ 5.173878] axg-sound-card sound: ASoC: no DMI vendor name! 12999 [ 6.171833] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 13000 [ 6.234652] zram1: detected capacity change from 0 to 52428800 13001 [ 8.318760] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 13002 [ 8.318778] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 13003 [ 9.416233] systemd[1]: Started Armbian memory supported logging. 13004 [ 9.418496] systemd[1]: Starting Journal Service... 13005 [ 9.473559] systemd[1]: Started Journal Service. 13006 [ 9.498344] systemd-journald[1816]: Received request to flush runtime journal from PID 1 13007 13008 ### armbian-release: 13009 13010 # PLEASE DO NOT EDIT THIS FILE 13011 BOARD=odroidn2 13012 BOARD_NAME="Odroid N2" 13013 BOARDFAMILY=meson-g12b 13014 BUILD_REPOSITORY_URL=https://github.com/armbian/build 13015 BUILD_REPOSITORY_COMMIT=5f03d652 13016 DISTRIBUTION_CODENAME=buster 13017 DISTRIBUTION_STATUS=supported 13018 VERSION=21.02.1 13019 LINUXFAMILY=meson64 13020 BRANCH=current 13021 ARCH=arm64 13022 IMAGE_TYPE=stable 13023 BOARD_TYPE=conf 13024 INITRD_ARCH=arm64 13025 KERNEL_IMAGE_TYPE=Image 13026 13027 ### boot environment: 13028 13029 verbosity=1 13030 console=both 13031 overlay_prefix=meson 13032 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 13033 rootfstype=ext4 13034 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 13035 13036 ### lsusb: 13037 13038 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 13039 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 13040 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 13041 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 13042 13043 ### lscpu: 13044 13045 Architecture: aarch64 13046 Byte Order: Little Endian 13047 CPU(s): 6 13048 On-line CPU(s) list: 0-5 13049 Thread(s) per core: 1 13050 Core(s) per socket: 3 13051 Socket(s): 2 13052 NUMA node(s): 1 13053 Vendor ID: ARM 13054 Model: 4 13055 Model name: Cortex-A53 13056 Stepping: r0p4 13057 CPU max MHz: 1992.0000 13058 CPU min MHz: 100.0000 13059 BogoMIPS: 48.00 13060 L1d cache: unknown size 13061 L1i cache: unknown size 13062 L2 cache: unknown size 13063 NUMA node0 CPU(s): 0-5 13064 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13065 13066 ### cpuinfo: 13067 13068 processor : 0 13069 BogoMIPS : 48.00 13070 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13071 CPU implementer : 0x41 13072 CPU architecture: 8 13073 CPU variant : 0x0 13074 CPU part : 0xd03 13075 CPU revision : 4 13076 13077 processor : 1 13078 BogoMIPS : 48.00 13079 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13080 CPU implementer : 0x41 13081 CPU architecture: 8 13082 CPU variant : 0x0 13083 CPU part : 0xd03 13084 CPU revision : 4 13085 13086 processor : 2 13087 BogoMIPS : 48.00 13088 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13089 CPU implementer : 0x41 13090 CPU architecture: 8 13091 CPU variant : 0x0 13092 CPU part : 0xd09 13093 CPU revision : 2 13094 13095 processor : 3 13096 BogoMIPS : 48.00 13097 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13098 CPU implementer : 0x41 13099 CPU architecture: 8 13100 CPU variant : 0x0 13101 CPU part : 0xd09 13102 CPU revision : 2 13103 13104 processor : 4 13105 BogoMIPS : 48.00 13106 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13107 CPU implementer : 0x41 13108 CPU architecture: 8 13109 CPU variant : 0x0 13110 CPU part : 0xd09 13111 CPU revision : 2 13112 13113 processor : 5 13114 BogoMIPS : 48.00 13115 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13116 CPU implementer : 0x41 13117 CPU architecture: 8 13118 CPU variant : 0x0 13119 CPU part : 0xd09 13120 CPU revision : 2 13121 13122 13123 ### meminfo: 13124 13125 MemTotal: 3719728 kB 13126 MemFree: 3414428 kB 13127 MemAvailable: 3368056 kB 13128 Buffers: 11544 kB 13129 Cached: 44552 kB 13130 SwapCached: 0 kB 13131 Active: 30408 kB 13132 Inactive: 176556 kB 13133 Active(anon): 116 kB 13134 Inactive(anon): 155688 kB 13135 Active(file): 30292 kB 13136 Inactive(file): 20868 kB 13137 Unevictable: 0 kB 13138 Mlocked: 0 kB 13139 SwapTotal: 1859860 kB 13140 SwapFree: 1859860 kB 13141 Dirty: 5480 kB 13142 Writeback: 0 kB 13143 AnonPages: 151028 kB 13144 Mapped: 11000 kB 13145 Shmem: 4940 kB 13146 KReclaimable: 12812 kB 13147 Slab: 38720 kB 13148 SReclaimable: 12812 kB 13149 SUnreclaim: 25908 kB 13150 KernelStack: 2096 kB 13151 PageTables: 3784 kB 13152 NFS_Unstable: 0 kB 13153 Bounce: 0 kB 13154 WritebackTmp: 0 kB 13155 CommitLimit: 3719724 kB 13156 Committed_AS: 4210668 kB 13157 VmallocTotal: 135290159040 kB 13158 VmallocUsed: 30928 kB 13159 VmallocChunk: 0 kB 13160 Percpu: 1368 kB 13161 HardwareCorrupted: 0 kB 13162 AnonHugePages: 0 kB 13163 ShmemHugePages: 0 kB 13164 ShmemPmdMapped: 0 kB 13165 FileHugePages: 0 kB 13166 FilePmdMapped: 0 kB 13167 CmaTotal: 917504 kB 13168 CmaFree: 909824 kB 13169 HugePages_Total: 0 13170 HugePages_Free: 0 13171 HugePages_Rsvd: 0 13172 HugePages_Surp: 0 13173 Hugepagesize: 2048 kB 13174 Hugetlb: 0 kB 13175 13176 ### virtual memory: 13177 13178 vm.admin_reserve_kbytes = 8192 13179 vm.block_dump = 0 13180 vm.compaction_proactiveness = 20 13181 vm.compact_unevictable_allowed = 1 13182 vm.dirty_background_bytes = 0 13183 vm.dirty_background_ratio = 10 13184 vm.dirty_bytes = 0 13185 vm.dirty_expire_centisecs = 3000 13186 vm.dirty_ratio = 20 13187 vm.dirtytime_expire_seconds = 43200 13188 vm.dirty_writeback_centisecs = 500 13189 vm.extfrag_threshold = 500 13190 vm.hugetlb_shm_group = 0 13191 vm.laptop_mode = 0 13192 vm.legacy_va_layout = 0 13193 vm.lowmem_reserve_ratio = 256 256 32 0 13194 vm.max_map_count = 65530 13195 vm.memory_failure_early_kill = 0 13196 vm.memory_failure_recovery = 1 13197 vm.min_free_kbytes = 45056 13198 vm.min_slab_ratio = 5 13199 vm.min_unmapped_ratio = 1 13200 vm.mmap_min_addr = 4096 13201 vm.mmap_rnd_bits = 18 13202 vm.mmap_rnd_compat_bits = 11 13203 vm.nr_hugepages = 0 13204 vm.nr_hugepages_mempolicy = 0 13205 vm.nr_overcommit_hugepages = 0 13206 vm.numa_stat = 1 13207 vm.numa_zonelist_order = Node 13208 vm.oom_dump_tasks = 1 13209 vm.oom_kill_allocating_task = 0 13210 vm.overcommit_kbytes = 0 13211 vm.overcommit_memory = 0 13212 vm.overcommit_ratio = 50 13213 vm.page-cluster = 0 13214 vm.page_lock_unfairness = 5 13215 vm.panic_on_oom = 0 13216 vm.percpu_pagelist_fraction = 0 13217 vm.stat_interval = 1 13218 vm.swappiness = 100 13219 vm.user_reserve_kbytes = 115006 13220 vm.vfs_cache_pressure = 100 13221 vm.watermark_boost_factor = 15000 13222 vm.watermark_scale_factor = 10 13223 vm.zone_reclaim_mode = 0 13224 13225 ### ip addr: 13226 13227 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 13228 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 13229 inet XXX.XXX.0.1/8 scope host lo 13230 valid_lft forever preferred_lft forever 13231 inet6 ::1/128 scope host 13232 valid_lft forever preferred_lft forever 13233 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 13234 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 13235 13236 ### partitions: 13237 13238 major minor #blocks name 13239 13240 179 0 31464960 mmcblk1 13241 179 1 31146208 mmcblk1p1 13242 252 0 1859864 zram0 13243 252 1 51200 zram1 13244 13245 ### df: 13246 13247 udev 1.4G 0 1.4G 0% /dev 13248 tmpfs 364M 4.9M 359M 2% /run 13249 /dev/mmcblk1p1 30G 1.7G 28G 6% / 13250 tmpfs 1.8G 0 1.8G 0% /dev/shm 13251 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 13252 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 13253 tmpfs 1.8G 0 1.8G 0% /tmp 13254 /dev/zram1 49M 5.4M 40M 12% /var/log 13255 13256 ### lsblk: 13257 13258 NAME FSTYPE SIZE MOUNTPOINT UUID 13259 mmcblk1 30G 13260 └─mmcblk1p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 13261 zram1 50M /var/log 13262 13263 ### zramctl: 13264 13265 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 13266 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 13267 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 13268 13269 ### mtab: 13270 13271 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 13272 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 13273 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 13274 13275 ### mmc1:b368 info: 13276 13277 fwrev: 0x0 13278 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 13279 cid: 6f0303434241445310aa002b4d013b00 13280 rca: 0xb368 13281 csd: 400e005a5b590000f00e7f800a404000 13282 manfid: 0x00006f 13283 ocr: 0x00200000 13284 preferred_erase_size: 2097152 13285 type: SD 13286 hwrev: 0x1 13287 date: 11/2019 13288 dsr: 0x404 13289 erase_size: 512 13290 oemid: 0x0303 13291 serial: 0xaa002b4d 13292 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 13293 scr: 02b5800300000000 13294 name: CBADS 13295 13296 ### Boot system health: 13297 13298 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 13299 16:34:49: 1908/1992MHz 2.67 23% 10% 5% 0% 6% 0% 21.7°C 0/11 13300 16:34:49: 1908/1992MHz 2.67 63% 32% 8% 0% 21% 0% 21.5°C 0/11 13301 16:34:49: 1908/1992MHz 2.67 68% 21% 1% 0% 43% 0% 19.8°C 0/11 13302 16:34:50: 1908/1992MHz 2.67 61% 11% 7% 0% 41% 1% 19.7°C 0/11 13303 16:34:50: 1908/1992MHz 2.67 50% 3% 2% 0% 45% 0% 18.5°C 0/11 13304 13305 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 13306 13307 ### Activated Armbian ramlog partition with zstd compression 13308 13309 Mon 15 Feb 2021 05:19:39 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 13310 13311 ### dmesg: 13312 13313 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 13314 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 13315 [ 0.000000] Machine model: Hardkernel ODROID-N2 13316 [ 0.000000] efi: UEFI not found. 13317 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 13318 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 13319 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 13320 [ 0.000000] NUMA: No NUMA configuration found 13321 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 13322 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 13323 [ 0.000000] Zone ranges: 13324 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 13325 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 13326 [ 0.000000] Normal empty 13327 [ 0.000000] Movable zone start for each node 13328 [ 0.000000] Early memory node ranges 13329 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 13330 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 13331 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 13332 [ 0.000000] On node 0 totalpages: 972032 13333 [ 0.000000] DMA zone: 4096 pages used for memmap 13334 [ 0.000000] DMA zone: 0 pages reserved 13335 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 13336 [ 0.000000] DMA32 zone: 11104 pages used for memmap 13337 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 13338 [ 0.000000] psci: probing for conduit method from DT. 13339 [ 0.000000] psci: PSCIv1.0 detected in firmware. 13340 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 13341 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 13342 [ 0.000000] psci: SMC Calling Convention v1.1 13343 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 13344 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 13345 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 13346 [ 0.000000] Detected VIPT I-cache on CPU0 13347 [ 0.000000] CPU features: detected: ARM erratum 845719 13348 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 13349 [ 0.000000] Policy zone: DMA32 13350 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 13351 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 13352 Please use sysfs to set IO scheduler for individual devices. 13353 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 13354 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 13355 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 13356 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 13357 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 13358 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 13359 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 13360 [ 0.000000] rcu: RCU event tracing is enabled. 13361 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 13362 [ 0.000000] Trampoline variant of Tasks RCU enabled. 13363 [ 0.000000] Rude variant of Tasks RCU enabled. 13364 [ 0.000000] Tracing variant of Tasks RCU enabled. 13365 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 13366 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 13367 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 13368 [ 0.000000] GIC: Using split EOI/Deactivate mode 13369 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 13370 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 13371 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 13372 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 13373 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 13374 [ 0.000249] Console: colour dummy device 80x25 13375 [ 0.000285] printk: console [tty1] enabled 13376 [ 0.000373] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 13377 [ 0.000385] pid_max: default: 32768 minimum: 301 13378 [ 0.000468] LSM: Security Framework initializing 13379 [ 0.000494] Yama: becoming mindful. 13380 [ 0.000586] AppArmor: AppArmor initialized 13381 [ 0.000637] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 13382 [ 0.000655] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 13383 [ 0.002655] rcu: Hierarchical SRCU implementation. 13384 [ 0.005125] EFI services will not be available. 13385 [ 0.005548] smp: Bringing up secondary CPUs ... 13386 [ 0.006222] Detected VIPT I-cache on CPU1 13387 [ 0.006283] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 13388 [ 0.007476] CPU features: detected: ARM erratum 858921 13389 [ 0.007484] CPU features: detected: Spectre-v2 13390 [ 0.007487] CPU features: detected: Spectre-v4 13391 [ 0.007493] Detected VIPT I-cache on CPU2 13392 [ 0.007518] arch_timer: Enabling local workaround for ARM erratum 858921 13393 [ 0.007532] arch_timer: CPU2: Trapping CNTVCT access 13394 [ 0.007545] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 13395 [ 0.008253] Detected VIPT I-cache on CPU3 13396 [ 0.008269] arch_timer: Enabling local workaround for ARM erratum 858921 13397 [ 0.008276] arch_timer: CPU3: Trapping CNTVCT access 13398 [ 0.008284] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 13399 [ 0.008910] Detected VIPT I-cache on CPU4 13400 [ 0.008927] arch_timer: Enabling local workaround for ARM erratum 858921 13401 [ 0.008934] arch_timer: CPU4: Trapping CNTVCT access 13402 [ 0.008942] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 13403 [ 0.009558] Detected VIPT I-cache on CPU5 13404 [ 0.009574] arch_timer: Enabling local workaround for ARM erratum 858921 13405 [ 0.009581] arch_timer: CPU5: Trapping CNTVCT access 13406 [ 0.009589] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 13407 [ 0.009672] smp: Brought up 1 node, 6 CPUs 13408 [ 0.009689] SMP: Total of 6 processors activated. 13409 [ 0.009697] CPU features: detected: 32-bit EL0 Support 13410 [ 0.009702] CPU features: detected: CRC32 instructions 13411 [ 0.009708] CPU features: detected: 32-bit EL1 Support 13412 [ 0.021002] CPU: All CPU(s) started at EL2 13413 [ 0.021052] alternatives: patching kernel code 13414 [ 0.022994] devtmpfs: initialized 13415 [ 0.030659] Registered cp15_barrier emulation handler 13416 [ 0.030673] Registered setend emulation handler 13417 [ 0.030809] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 13418 [ 0.030848] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 13419 [ 0.044786] pinctrl core: initialized pinctrl subsystem 13420 [ 0.045336] DMI not present or invalid. 13421 [ 0.045737] NET: Registered protocol family 16 13422 [ 0.047358] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 13423 [ 0.047633] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 13424 [ 0.047856] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 13425 [ 0.047901] audit: initializing netlink subsys (disabled) 13426 [ 0.048012] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 13427 [ 0.049374] thermal_sys: Registered thermal governor 'fair_share' 13428 [ 0.049382] thermal_sys: Registered thermal governor 'bang_bang' 13429 [ 0.049387] thermal_sys: Registered thermal governor 'step_wise' 13430 [ 0.049390] thermal_sys: Registered thermal governor 'user_space' 13431 [ 0.049813] cpuidle: using governor menu 13432 [ 0.050154] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 13433 [ 0.050276] ASID allocator initialised with 65536 entries 13434 [ 0.051244] Serial: AMBA PL011 UART driver 13435 [ 0.084952] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 13436 [ 0.084961] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 13437 [ 0.084967] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 13438 [ 0.084971] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 13439 [ 0.087563] cryptd: max_cpu_qlen set to 1000 13440 [ 0.156227] raid6: neonx8 gen() 2785 MB/s 13441 [ 0.224313] raid6: neonx8 xor() 1603 MB/s 13442 [ 0.292346] raid6: neonx4 gen() 3150 MB/s 13443 [ 0.360413] raid6: neonx4 xor() 2399 MB/s 13444 [ 0.428482] raid6: neonx2 gen() 2572 MB/s 13445 [ 0.496550] raid6: neonx2 xor() 2193 MB/s 13446 [ 0.564616] raid6: neonx1 gen() 2064 MB/s 13447 [ 0.632678] raid6: neonx1 xor() 1727 MB/s 13448 [ 0.700756] raid6: int64x8 gen() 1375 MB/s 13449 [ 0.768811] raid6: int64x8 xor() 735 MB/s 13450 [ 0.836892] raid6: int64x4 gen() 1463 MB/s 13451 [ 0.904949] raid6: int64x4 xor() 733 MB/s 13452 [ 0.973009] raid6: int64x2 gen() 1362 MB/s 13453 [ 1.041085] raid6: int64x2 xor() 619 MB/s 13454 [ 1.109136] raid6: int64x1 gen() 1120 MB/s 13455 [ 1.177221] raid6: int64x1 xor() 462 MB/s 13456 [ 1.177224] raid6: using algorithm neonx4 gen() 3150 MB/s 13457 [ 1.177228] raid6: .... xor() 2399 MB/s, rmw enabled 13458 [ 1.177231] raid6: using neon recovery algorithm 13459 [ 1.177698] ACPI: Interpreter disabled. 13460 [ 1.178551] 5V: supplied by 12V 13461 [ 1.179454] VDDAO_3V3: supplied by 12V 13462 [ 1.179950] iommu: Default domain type: Translated 13463 [ 1.180066] vgaarb: loaded 13464 [ 1.180857] SCSI subsystem initialized 13465 [ 1.181200] usbcore: registered new interface driver usbfs 13466 [ 1.181240] usbcore: registered new interface driver hub 13467 [ 1.181279] usbcore: registered new device driver usb 13468 [ 1.181583] pps_core: LinuxPPS API ver. 1 registered 13469 [ 1.181588] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 13470 [ 1.181610] PTP clock support registered 13471 [ 1.181803] EDAC MC: Ver: 3.0.0 13472 [ 1.183104] NetLabel: Initializing 13473 [ 1.183111] NetLabel: domain hash size = 128 13474 [ 1.183113] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 13475 [ 1.183156] NetLabel: unlabeled traffic allowed by default 13476 [ 1.183581] clocksource: Switched to clocksource arch_sys_counter 13477 [ 1.183798] VFS: Disk quotas dquot_6.6.0 13478 [ 1.183841] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 13479 [ 1.184205] AppArmor: AppArmor Filesystem Enabled 13480 [ 1.184253] pnp: PnP ACPI: disabled 13481 [ 1.189971] NET: Registered protocol family 2 13482 [ 1.190433] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 13483 [ 1.190537] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 13484 [ 1.190794] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 13485 [ 1.190982] TCP: Hash tables configured (established 32768 bind 32768) 13486 [ 1.191131] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 13487 [ 1.191199] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 13488 [ 1.191246] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 13489 [ 1.191389] NET: Registered protocol family 1 13490 [ 1.191412] PCI: CLS 0 bytes, default 64 13491 [ 1.191534] Trying to unpack rootfs image as initramfs... 13492 [ 1.728034] Freeing initrd memory: 13544K 13493 [ 1.728949] kvm [1]: IPA Size Limit: 40 bits 13494 [ 1.729658] kvm [1]: vgic interrupt IRQ9 13495 [ 1.729792] kvm [1]: Hyp mode initialized successfully 13496 [ 1.733692] Initialise system trusted keyrings 13497 [ 1.733725] Key type blacklist registered 13498 [ 1.733818] workingset: timestamp_bits=44 max_order=20 bucket_order=0 13499 [ 1.737033] zbud: loaded 13500 [ 1.738015] squashfs: version 4.0 (2009/01/31) Phillip Lougher 13501 [ 1.738469] fuse: init (API version 7.32) 13502 [ 1.739228] integrity: Platform Keyring initialized 13503 [ 1.766787] xor: measuring software checksum speed 13504 [ 1.769636] 8regs : 3473 MB/sec 13505 [ 1.772091] 32regs : 4026 MB/sec 13506 [ 1.774737] arm64_neon : 3723 MB/sec 13507 [ 1.774741] xor: using function: 32regs (4026 MB/sec) 13508 [ 1.774747] Key type asymmetric registered 13509 [ 1.774751] Asymmetric key parser 'x509' registered 13510 [ 1.774783] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 13511 [ 1.774867] io scheduler mq-deadline registered 13512 [ 1.774871] io scheduler kyber registered 13513 [ 1.774952] io scheduler bfq registered 13514 [ 1.777510] gpio-447 (usb-hub-reset): hogged as output/high 13515 [ 1.780478] EINJ: ACPI disabled. 13516 [ 1.786770] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 13517 [ 1.788286] VCC_3V3: supplied by VDDAO_3V3 13518 [ 1.788320] FLASH_1V8: supplied by VCC_3V3 13519 [ 1.788351] VCC_1V8: supplied by VCC_3V3 13520 [ 1.788393] VDDAO_1V8: supplied by VDDAO_3V3 13521 [ 1.788422] VDDCPU_A: supplied by regulator-dummy 13522 [ 1.788783] VDDCPU_B: supplied by regulator-dummy 13523 [ 1.789448] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 13524 [ 1.791733] Serial: AMBA driver 13525 [ 1.792026] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 13526 [ 1.792116] printk: console [ttyAML0] enabled 13527 [ 1.792628] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 13528 [ 1.797862] loop: module loaded 13529 [ 1.799958] libphy: Fixed MDIO Bus: probed 13530 [ 1.801115] tun: Universal TUN/TAP device driver, 1.6 13531 [ 1.801809] thunder_xcv, ver 1.0 13532 [ 1.801837] thunder_bgx, ver 1.0 13533 [ 1.801866] nicpf, ver 1.0 13534 [ 1.802332] e1000e: Intel(R) PRO/1000 Network Driver 13535 [ 1.802337] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 13536 [ 1.802377] igb: Intel(R) Gigabit Ethernet Network Driver 13537 [ 1.802380] igb: Copyright (c) 2007-2014 Intel Corporation. 13538 [ 1.802414] igbvf: Intel(R) Gigabit Virtual Function Network Driver 13539 [ 1.802417] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 13540 [ 1.802545] sky2: driver version 1.30 13541 [ 1.802932] VFIO - User Level meta-driver version: 0.3 13542 [ 1.804401] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 13543 [ 1.804421] ehci-pci: EHCI PCI platform driver 13544 [ 1.804457] ehci-platform: EHCI generic platform driver 13545 [ 1.804604] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 13546 [ 1.804614] ohci-pci: OHCI PCI platform driver 13547 [ 1.804647] ohci-platform: OHCI generic platform driver 13548 [ 1.805067] usbcore: registered new interface driver usb-storage 13549 [ 1.806385] mousedev: PS/2 mouse device common for all mice 13550 [ 1.806761] i2c /dev entries driver 13551 [ 1.811882] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 13552 [ 1.812577] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 13553 [ 1.813568] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 13554 [ 1.814179] sdhci: Secure Digital Host Controller Interface driver 13555 [ 1.814185] sdhci: Copyright(c) Pierre Ossman 13556 [ 1.814287] Synopsys Designware Multimedia Card Interface Driver 13557 [ 1.814726] sdhci-pltfm: SDHCI platform and OF driver helper 13558 [ 1.815139] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 13559 [ 1.815499] ledtrig-cpu: registered to indicate activity on CPUs 13560 [ 1.816018] meson-sm: secure-monitor enabled 13561 [ 1.816183] hid: raw HID events driver (C) Jiri Kosina 13562 [ 1.816255] usbcore: registered new interface driver usbhid 13563 [ 1.816257] usbhid: USB HID core driver 13564 [ 1.817204] NET: Registered protocol family 10 13565 [ 1.817622] Segment Routing with IPv6 13566 [ 1.817649] NET: Registered protocol family 17 13567 [ 1.817704] 8021q: 802.1Q VLAN Support v1.8 13568 [ 1.817728] Key type dns_resolver registered 13569 [ 1.818000] registered taskstats version 1 13570 [ 1.818006] Loading compiled-in X.509 certificates 13571 [ 1.819754] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 13572 [ 1.821387] zswap: loaded using pool zstd/z3fold 13573 [ 1.821586] Key type ._fscrypt registered 13574 [ 1.821588] Key type .fscrypt registered 13575 [ 1.821590] Key type fscrypt-provisioning registered 13576 [ 1.822664] Btrfs loaded, crc32c=crc32c-generic 13577 [ 1.828880] Key type encrypted registered 13578 [ 1.828891] AppArmor: AppArmor sha1 policy hashing enabled 13579 [ 1.835189] HUB_5V: supplied by 5V 13580 [ 1.835375] USB_PWR_EN: supplied by 5V 13581 [ 1.837035] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 13582 [ 1.837043] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 13583 [ 1.839809] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 13584 [ 1.839871] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 13585 [ 1.840010] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 13586 [ 1.840603] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 13587 [ 1.840615] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 13588 [ 1.840698] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 13589 [ 1.840721] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 13590 [ 1.840842] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 13591 [ 1.840845] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 13592 [ 1.840848] usb usb1: Product: xHCI Host Controller 13593 [ 1.840851] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 13594 [ 1.840853] usb usb1: SerialNumber: xhci-hcd.0.auto 13595 [ 1.841088] hub 1-0:1.0: USB hub found 13596 [ 1.841101] hub 1-0:1.0: 2 ports detected 13597 [ 1.841230] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 13598 [ 1.841236] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 13599 [ 1.841241] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 13600 [ 1.841261] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 13601 [ 1.841293] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 13602 [ 1.841296] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 13603 [ 1.841299] usb usb2: Product: xHCI Host Controller 13604 [ 1.841301] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 13605 [ 1.841303] usb usb2: SerialNumber: xhci-hcd.0.auto 13606 [ 1.841455] hub 2-0:1.0: USB hub found 13607 [ 1.841466] hub 2-0:1.0: 1 port detected 13608 [ 1.841755] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 13609 [ 1.842603] meson-gx-mmc ffe05000.sd: Got CD GPIO 13610 [ 1.868613] Freeing unused kernel memory: 3328K 13611 [ 1.903724] Run /init as init process 13612 [ 1.903728] with arguments: 13613 [ 1.903730] /init 13614 [ 1.903732] with environment: 13615 [ 1.903734] HOME=/ 13616 [ 1.903735] TERM=linux 13617 [ 1.903737] hdmimode=1080p60hz 13618 [ 1.903739] cvbsmode=576cvbs 13619 [ 1.903740] max_freq_a53=1896 13620 [ 1.903742] max_freq_a73=1800 13621 [ 1.903743] voutmode=hdmi 13622 [ 1.903745] disablehpd=false 13623 [ 1.903746] cvbscable=0 13624 [ 1.903747] overscan=100 13625 [ 1.933751] mmc0: new ultra high speed SDR25 SDHC card at address b368 13626 [ 1.934349] mmcblk0: mmc0:b368 CBADS 30.0 GiB 13627 [ 1.936171] mmcblk0: p1 13628 [ 2.060404] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 13629 [ 2.060413] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 13630 [ 2.060556] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 13631 [ 2.061088] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 13632 [ 2.061103] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 13633 [ 2.061106] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 13634 [ 2.061110] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 13635 [ 2.061112] meson8b-dwmac ff3f0000.ethernet: COE Type 2 13636 [ 2.061114] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 13637 [ 2.061116] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 13638 [ 2.061170] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 13639 [ 2.061174] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 13640 [ 2.061177] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 13641 [ 2.061400] libphy: stmmac: probed 13642 [ 2.064183] libphy: mdio_mux: probed 13643 [ 2.074270] meson-vrtc ff8000a8.rtc: registered as rtc1 13644 [ 2.094052] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 13645 [ 2.094183] rtc-pcf8563 1-0051: registered as rtc0 13646 [ 2.095354] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 13647 [ 2.095360] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 13648 [ 2.101740] random: fast init done 13649 [ 2.179595] usb 1-1: new high-speed USB device number 2 using xhci-hcd 13650 [ 2.276004] libphy: mdio_mux: probed 13651 [ 2.333935] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 13652 [ 2.333941] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 13653 [ 2.333944] usb 1-1: Product: USB2.1 Hub 13654 [ 2.333947] usb 1-1: Manufacturer: GenesysLogic 13655 [ 2.385448] hub 1-1:1.0: USB hub found 13656 [ 2.385673] hub 1-1:1.0: 4 ports detected 13657 [ 2.459710] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 13658 [ 2.482190] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 13659 [ 2.482193] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 13660 [ 2.482196] usb 2-1: Product: USB3.1 Hub 13661 [ 2.482198] usb 2-1: Manufacturer: GenesysLogic 13662 [ 2.513445] hub 2-1:1.0: USB hub found 13663 [ 2.513726] hub 2-1:1.0: 4 ports detected 13664 [ 2.902644] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 13665 [ 3.711302] systemd[1]: System time before build time, advancing clock. 13666 [ 3.726098] systemd[1]: Inserted module 'autofs4' 13667 [ 3.772590] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 13668 [ 3.772809] systemd[1]: Detected architecture arm64. 13669 [ 3.793881] systemd[1]: Set hostname to <odroidn2>. 13670 [ 4.121031] random: systemd: uninitialized urandom read (16 bytes read) 13671 [ 4.124491] random: systemd: uninitialized urandom read (16 bytes read) 13672 [ 4.124711] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 13673 [ 4.124918] random: systemd: uninitialized urandom read (16 bytes read) 13674 [ 4.126147] systemd[1]: Created slice system-getty.slice. 13675 [ 4.126548] systemd[1]: Listening on Journal Socket. 13676 [ 4.129253] systemd[1]: Starting Load Kernel Modules... 13677 [ 4.131051] systemd[1]: Starting Create list of required static device nodes for the current kernel... 13678 [ 4.131968] systemd[1]: Created slice User and Session Slice. 13679 [ 4.133434] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 13680 [ 4.223668] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 13681 [ 4.728318] zram: Added device: zram0 13682 [ 4.728503] zram: Added device: zram1 13683 [ 4.728914] zram: Added device: zram2 13684 [ 4.766657] pwm-gpio pwmgpio: 1 gpio pwms loaded 13685 [ 4.937470] mc: Linux media interface: v0.10 13686 [ 4.948567] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 13687 [ 4.983632] Registered IR keymap rc-odroid 13688 [ 4.991977] videodev: Linux video capture interface: v2.00 13689 [ 5.024303] IR NEC protocol handler initialized 13690 [ 5.051665] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 13691 [ 5.051755] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 13692 [ 5.051814] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 13693 [ 5.052052] meson-ir ff808000.ir: receiver initialized 13694 [ 5.078215] meson-drm ff900000.vpu: Queued 2 outputs on vpu 13695 [ 5.117060] zram0: detected capacity change from 0 to 1904500736 13696 [ 5.121778] meson-drm ff900000.vpu: CVBS Output connector not available 13697 [ 5.135419] panfrost ffe40000.gpu: clock rate = 24000000 13698 [ 5.135473] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 13699 [ 5.136107] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 13700 [ 5.136116] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 13701 [ 5.136120] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 13702 [ 5.136124] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 13703 [ 5.147756] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 13704 [ 5.152133] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 13705 [ 5.152548] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 13706 [ 5.152949] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 13707 [ 5.153043] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 13708 [ 5.163534] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 13709 [ 5.169725] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 13710 [ 5.220688] axg-sound-card sound: ASoC: no DMI vendor name! 13711 [ 6.175638] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 13712 [ 6.239300] zram1: detected capacity change from 0 to 52428800 13713 [ 8.325717] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 13714 [ 8.325736] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 13715 [ 9.441816] systemd[1]: Started Armbian memory supported logging. 13716 [ 9.445923] systemd[1]: Starting Journal Service... 13717 [ 9.501092] systemd[1]: Started Journal Service. 13718 [ 9.529089] systemd-journald[1815]: Received request to flush runtime journal from PID 1 13719 13720 ### armbian-release: 13721 13722 # PLEASE DO NOT EDIT THIS FILE 13723 BOARD=odroidn2 13724 BOARD_NAME="Odroid N2" 13725 BOARDFAMILY=meson-g12b 13726 BUILD_REPOSITORY_URL=https://github.com/armbian/build 13727 BUILD_REPOSITORY_COMMIT=5f03d652 13728 DISTRIBUTION_CODENAME=buster 13729 DISTRIBUTION_STATUS=supported 13730 VERSION=21.02.1 13731 LINUXFAMILY=meson64 13732 BRANCH=current 13733 ARCH=arm64 13734 IMAGE_TYPE=stable 13735 BOARD_TYPE=conf 13736 INITRD_ARCH=arm64 13737 KERNEL_IMAGE_TYPE=Image 13738 13739 ### boot environment: 13740 13741 verbosity=1 13742 console=both 13743 overlay_prefix=meson 13744 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 13745 rootfstype=ext4 13746 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 13747 13748 ### lsusb: 13749 13750 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 13751 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 13752 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 13753 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 13754 13755 ### lscpu: 13756 13757 Architecture: aarch64 13758 Byte Order: Little Endian 13759 CPU(s): 6 13760 On-line CPU(s) list: 0-5 13761 Thread(s) per core: 1 13762 Core(s) per socket: 3 13763 Socket(s): 2 13764 NUMA node(s): 1 13765 Vendor ID: ARM 13766 Model: 4 13767 Model name: Cortex-A53 13768 Stepping: r0p4 13769 CPU max MHz: 1992.0000 13770 CPU min MHz: 100.0000 13771 BogoMIPS: 48.00 13772 L1d cache: unknown size 13773 L1i cache: unknown size 13774 L2 cache: unknown size 13775 NUMA node0 CPU(s): 0-5 13776 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13777 13778 ### cpuinfo: 13779 13780 processor : 0 13781 BogoMIPS : 48.00 13782 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13783 CPU implementer : 0x41 13784 CPU architecture: 8 13785 CPU variant : 0x0 13786 CPU part : 0xd03 13787 CPU revision : 4 13788 13789 processor : 1 13790 BogoMIPS : 48.00 13791 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13792 CPU implementer : 0x41 13793 CPU architecture: 8 13794 CPU variant : 0x0 13795 CPU part : 0xd03 13796 CPU revision : 4 13797 13798 processor : 2 13799 BogoMIPS : 48.00 13800 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13801 CPU implementer : 0x41 13802 CPU architecture: 8 13803 CPU variant : 0x0 13804 CPU part : 0xd09 13805 CPU revision : 2 13806 13807 processor : 3 13808 BogoMIPS : 48.00 13809 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13810 CPU implementer : 0x41 13811 CPU architecture: 8 13812 CPU variant : 0x0 13813 CPU part : 0xd09 13814 CPU revision : 2 13815 13816 processor : 4 13817 BogoMIPS : 48.00 13818 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13819 CPU implementer : 0x41 13820 CPU architecture: 8 13821 CPU variant : 0x0 13822 CPU part : 0xd09 13823 CPU revision : 2 13824 13825 processor : 5 13826 BogoMIPS : 48.00 13827 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 13828 CPU implementer : 0x41 13829 CPU architecture: 8 13830 CPU variant : 0x0 13831 CPU part : 0xd09 13832 CPU revision : 2 13833 13834 13835 ### meminfo: 13836 13837 MemTotal: 3719728 kB 13838 MemFree: 3408868 kB 13839 MemAvailable: 3362564 kB 13840 Buffers: 11548 kB 13841 Cached: 44680 kB 13842 SwapCached: 0 kB 13843 Active: 30116 kB 13844 Inactive: 182760 kB 13845 Active(anon): 84 kB 13846 Inactive(anon): 161432 kB 13847 Active(file): 30032 kB 13848 Inactive(file): 21328 kB 13849 Unevictable: 0 kB 13850 Mlocked: 0 kB 13851 SwapTotal: 1859860 kB 13852 SwapFree: 1859860 kB 13853 Dirty: 5532 kB 13854 Writeback: 0 kB 13855 AnonPages: 156524 kB 13856 Mapped: 10764 kB 13857 Shmem: 4864 kB 13858 KReclaimable: 12748 kB 13859 Slab: 38048 kB 13860 SReclaimable: 12748 kB 13861 SUnreclaim: 25300 kB 13862 KernelStack: 2096 kB 13863 PageTables: 3992 kB 13864 NFS_Unstable: 0 kB 13865 Bounce: 0 kB 13866 WritebackTmp: 0 kB 13867 CommitLimit: 3719724 kB 13868 Committed_AS: 4210536 kB 13869 VmallocTotal: 135290159040 kB 13870 VmallocUsed: 30896 kB 13871 VmallocChunk: 0 kB 13872 Percpu: 1368 kB 13873 HardwareCorrupted: 0 kB 13874 AnonHugePages: 0 kB 13875 ShmemHugePages: 0 kB 13876 ShmemPmdMapped: 0 kB 13877 FileHugePages: 0 kB 13878 FilePmdMapped: 0 kB 13879 CmaTotal: 917504 kB 13880 CmaFree: 909824 kB 13881 HugePages_Total: 0 13882 HugePages_Free: 0 13883 HugePages_Rsvd: 0 13884 HugePages_Surp: 0 13885 Hugepagesize: 2048 kB 13886 Hugetlb: 0 kB 13887 13888 ### virtual memory: 13889 13890 vm.admin_reserve_kbytes = 8192 13891 vm.block_dump = 0 13892 vm.compaction_proactiveness = 20 13893 vm.compact_unevictable_allowed = 1 13894 vm.dirty_background_bytes = 0 13895 vm.dirty_background_ratio = 10 13896 vm.dirty_bytes = 0 13897 vm.dirty_expire_centisecs = 3000 13898 vm.dirty_ratio = 20 13899 vm.dirtytime_expire_seconds = 43200 13900 vm.dirty_writeback_centisecs = 500 13901 vm.extfrag_threshold = 500 13902 vm.hugetlb_shm_group = 0 13903 vm.laptop_mode = 0 13904 vm.legacy_va_layout = 0 13905 vm.lowmem_reserve_ratio = 256 256 32 0 13906 vm.max_map_count = 65530 13907 vm.memory_failure_early_kill = 0 13908 vm.memory_failure_recovery = 1 13909 vm.min_free_kbytes = 45056 13910 vm.min_slab_ratio = 5 13911 vm.min_unmapped_ratio = 1 13912 vm.mmap_min_addr = 4096 13913 vm.mmap_rnd_bits = 18 13914 vm.mmap_rnd_compat_bits = 11 13915 vm.nr_hugepages = 0 13916 vm.nr_hugepages_mempolicy = 0 13917 vm.nr_overcommit_hugepages = 0 13918 vm.numa_stat = 1 13919 vm.numa_zonelist_order = Node 13920 vm.oom_dump_tasks = 1 13921 vm.oom_kill_allocating_task = 0 13922 vm.overcommit_kbytes = 0 13923 vm.overcommit_memory = 0 13924 vm.overcommit_ratio = 50 13925 vm.page-cluster = 0 13926 vm.page_lock_unfairness = 5 13927 vm.panic_on_oom = 0 13928 vm.percpu_pagelist_fraction = 0 13929 vm.stat_interval = 1 13930 vm.swappiness = 100 13931 vm.user_reserve_kbytes = 115051 13932 vm.vfs_cache_pressure = 100 13933 vm.watermark_boost_factor = 15000 13934 vm.watermark_scale_factor = 10 13935 vm.zone_reclaim_mode = 0 13936 13937 ### ip addr: 13938 13939 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 13940 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 13941 inet XXX.XXX.0.1/8 scope host lo 13942 valid_lft forever preferred_lft forever 13943 inet6 ::1/128 scope host 13944 valid_lft forever preferred_lft forever 13945 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 13946 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 13947 13948 ### partitions: 13949 13950 major minor #blocks name 13951 13952 179 0 31464960 mmcblk0 13953 179 1 31146208 mmcblk0p1 13954 252 0 1859864 zram0 13955 252 1 51200 zram1 13956 13957 ### df: 13958 13959 udev 1.4G 0 1.4G 0% /dev 13960 tmpfs 364M 4.9M 359M 2% /run 13961 /dev/mmcblk0p1 30G 1.7G 28G 6% / 13962 tmpfs 1.8G 0 1.8G 0% /dev/shm 13963 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 13964 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 13965 tmpfs 1.8G 0 1.8G 0% /tmp 13966 /dev/zram1 49M 5.6M 40M 13% /var/log 13967 13968 ### lsblk: 13969 13970 NAME FSTYPE SIZE MOUNTPOINT UUID 13971 mmcblk0 30G 13972 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 13973 zram1 50M /var/log 13974 13975 ### zramctl: 13976 13977 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 13978 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 13979 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 13980 13981 ### mtab: 13982 13983 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 13984 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 13985 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 13986 13987 ### mmc0:b368 info: 13988 13989 fwrev: 0x0 13990 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 13991 cid: 6f0303434241445310aa002b4d013b00 13992 rca: 0xb368 13993 csd: 400e005a5b590000f00e7f800a404000 13994 manfid: 0x00006f 13995 ocr: 0x00200000 13996 preferred_erase_size: 2097152 13997 type: SD 13998 hwrev: 0x1 13999 date: 11/2019 14000 dsr: 0x404 14001 erase_size: 512 14002 oemid: 0x0303 14003 serial: 0xaa002b4d 14004 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 14005 scr: 02b5800300000000 14006 name: CBADS 14007 14008 ### Boot system health: 14009 14010 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 14011 17:19:40: 1908/1992MHz 2.82 23% 11% 5% 0% 7% 0% 23.3°C 0/11 14012 17:19:40: 1908/1992MHz 2.82 71% 35% 7% 0% 26% 1% 23.6°C 0/11 14013 17:19:40: 1908/1992MHz 2.82 70% 20% 4% 0% 44% 0% 20.3°C 0/11 14014 17:19:41: 1908/1992MHz 2.82 47% 5% 3% 0% 37% 1% 20.1°C 0/11 14015 17:19:41: 1908/1992MHz 2.82 60% 8% 5% 0% 45% 0% 19.3°C 0/11 14016 14017 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 14018 14019 ### Activated Armbian ramlog partition with zstd compression 14020 14021 Mon 15 Feb 2021 05:52:50 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 14022 14023 ### dmesg: 14024 14025 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 14026 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 14027 [ 0.000000] Machine model: Hardkernel ODROID-N2 14028 [ 0.000000] efi: UEFI not found. 14029 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 14030 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 14031 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 14032 [ 0.000000] NUMA: No NUMA configuration found 14033 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 14034 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 14035 [ 0.000000] Zone ranges: 14036 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 14037 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 14038 [ 0.000000] Normal empty 14039 [ 0.000000] Movable zone start for each node 14040 [ 0.000000] Early memory node ranges 14041 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 14042 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 14043 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 14044 [ 0.000000] On node 0 totalpages: 972032 14045 [ 0.000000] DMA zone: 4096 pages used for memmap 14046 [ 0.000000] DMA zone: 0 pages reserved 14047 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 14048 [ 0.000000] DMA32 zone: 11104 pages used for memmap 14049 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 14050 [ 0.000000] psci: probing for conduit method from DT. 14051 [ 0.000000] psci: PSCIv1.0 detected in firmware. 14052 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 14053 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 14054 [ 0.000000] psci: SMC Calling Convention v1.1 14055 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 14056 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 14057 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 14058 [ 0.000000] Detected VIPT I-cache on CPU0 14059 [ 0.000000] CPU features: detected: ARM erratum 845719 14060 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 14061 [ 0.000000] Policy zone: DMA32 14062 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 14063 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 14064 Please use sysfs to set IO scheduler for individual devices. 14065 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 14066 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 14067 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 14068 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 14069 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 14070 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 14071 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 14072 [ 0.000000] rcu: RCU event tracing is enabled. 14073 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 14074 [ 0.000000] Trampoline variant of Tasks RCU enabled. 14075 [ 0.000000] Rude variant of Tasks RCU enabled. 14076 [ 0.000000] Tracing variant of Tasks RCU enabled. 14077 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 14078 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 14079 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 14080 [ 0.000000] GIC: Using split EOI/Deactivate mode 14081 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 14082 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 14083 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 14084 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 14085 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 14086 [ 0.000248] Console: colour dummy device 80x25 14087 [ 0.000282] printk: console [tty1] enabled 14088 [ 0.000369] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 14089 [ 0.000380] pid_max: default: 32768 minimum: 301 14090 [ 0.000463] LSM: Security Framework initializing 14091 [ 0.000490] Yama: becoming mindful. 14092 [ 0.000580] AppArmor: AppArmor initialized 14093 [ 0.000631] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 14094 [ 0.000650] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 14095 [ 0.002650] rcu: Hierarchical SRCU implementation. 14096 [ 0.005096] EFI services will not be available. 14097 [ 0.005515] smp: Bringing up secondary CPUs ... 14098 [ 0.006188] Detected VIPT I-cache on CPU1 14099 [ 0.006250] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 14100 [ 0.007443] CPU features: detected: ARM erratum 858921 14101 [ 0.007451] CPU features: detected: Spectre-v2 14102 [ 0.007454] CPU features: detected: Spectre-v4 14103 [ 0.007461] Detected VIPT I-cache on CPU2 14104 [ 0.007486] arch_timer: Enabling local workaround for ARM erratum 858921 14105 [ 0.007500] arch_timer: CPU2: Trapping CNTVCT access 14106 [ 0.007514] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 14107 [ 0.008219] Detected VIPT I-cache on CPU3 14108 [ 0.008235] arch_timer: Enabling local workaround for ARM erratum 858921 14109 [ 0.008243] arch_timer: CPU3: Trapping CNTVCT access 14110 [ 0.008251] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 14111 [ 0.008873] Detected VIPT I-cache on CPU4 14112 [ 0.008890] arch_timer: Enabling local workaround for ARM erratum 858921 14113 [ 0.008896] arch_timer: CPU4: Trapping CNTVCT access 14114 [ 0.008904] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 14115 [ 0.009520] Detected VIPT I-cache on CPU5 14116 [ 0.009537] arch_timer: Enabling local workaround for ARM erratum 858921 14117 [ 0.009544] arch_timer: CPU5: Trapping CNTVCT access 14118 [ 0.009552] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 14119 [ 0.009632] smp: Brought up 1 node, 6 CPUs 14120 [ 0.009650] SMP: Total of 6 processors activated. 14121 [ 0.009658] CPU features: detected: 32-bit EL0 Support 14122 [ 0.009663] CPU features: detected: CRC32 instructions 14123 [ 0.009669] CPU features: detected: 32-bit EL1 Support 14124 [ 0.020876] CPU: All CPU(s) started at EL2 14125 [ 0.020927] alternatives: patching kernel code 14126 [ 0.022868] devtmpfs: initialized 14127 [ 0.030515] Registered cp15_barrier emulation handler 14128 [ 0.030528] Registered setend emulation handler 14129 [ 0.030662] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 14130 [ 0.030702] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 14131 [ 0.044633] pinctrl core: initialized pinctrl subsystem 14132 [ 0.045363] DMI not present or invalid. 14133 [ 0.045730] NET: Registered protocol family 16 14134 [ 0.047231] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 14135 [ 0.047503] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 14136 [ 0.047731] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 14137 [ 0.047771] audit: initializing netlink subsys (disabled) 14138 [ 0.047868] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 14139 [ 0.049267] thermal_sys: Registered thermal governor 'fair_share' 14140 [ 0.049274] thermal_sys: Registered thermal governor 'bang_bang' 14141 [ 0.049278] thermal_sys: Registered thermal governor 'step_wise' 14142 [ 0.049282] thermal_sys: Registered thermal governor 'user_space' 14143 [ 0.049688] cpuidle: using governor menu 14144 [ 0.050024] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 14145 [ 0.050145] ASID allocator initialised with 65536 entries 14146 [ 0.051090] Serial: AMBA PL011 UART driver 14147 [ 0.086064] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 14148 [ 0.086077] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 14149 [ 0.086082] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 14150 [ 0.086087] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 14151 [ 0.087692] cryptd: max_cpu_qlen set to 1000 14152 [ 0.156182] raid6: neonx8 gen() 2785 MB/s 14153 [ 0.224245] raid6: neonx8 xor() 2042 MB/s 14154 [ 0.292295] raid6: neonx4 gen() 3153 MB/s 14155 [ 0.360361] raid6: neonx4 xor() 2399 MB/s 14156 [ 0.428429] raid6: neonx2 gen() 2547 MB/s 14157 [ 0.496492] raid6: neonx2 xor() 2200 MB/s 14158 [ 0.564564] raid6: neonx1 gen() 2059 MB/s 14159 [ 0.632631] raid6: neonx1 xor() 1727 MB/s 14160 [ 0.700693] raid6: int64x8 gen() 1376 MB/s 14161 [ 0.768769] raid6: int64x8 xor() 735 MB/s 14162 [ 0.836853] raid6: int64x4 gen() 1463 MB/s 14163 [ 0.904906] raid6: int64x4 xor() 733 MB/s 14164 [ 0.972967] raid6: int64x2 gen() 1363 MB/s 14165 [ 1.041025] raid6: int64x2 xor() 619 MB/s 14166 [ 1.109109] raid6: int64x1 gen() 1120 MB/s 14167 [ 1.177169] raid6: int64x1 xor() 462 MB/s 14168 [ 1.177172] raid6: using algorithm neonx4 gen() 3153 MB/s 14169 [ 1.177175] raid6: .... xor() 2399 MB/s, rmw enabled 14170 [ 1.177179] raid6: using neon recovery algorithm 14171 [ 1.177635] ACPI: Interpreter disabled. 14172 [ 1.178407] 5V: supplied by 12V 14173 [ 1.179329] VDDAO_3V3: supplied by 12V 14174 [ 1.179840] iommu: Default domain type: Translated 14175 [ 1.179950] vgaarb: loaded 14176 [ 1.180696] SCSI subsystem initialized 14177 [ 1.181106] usbcore: registered new interface driver usbfs 14178 [ 1.181141] usbcore: registered new interface driver hub 14179 [ 1.181179] usbcore: registered new device driver usb 14180 [ 1.181425] pps_core: LinuxPPS API ver. 1 registered 14181 [ 1.181430] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 14182 [ 1.181457] PTP clock support registered 14183 [ 1.181682] EDAC MC: Ver: 3.0.0 14184 [ 1.183054] NetLabel: Initializing 14185 [ 1.183061] NetLabel: domain hash size = 128 14186 [ 1.183064] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 14187 [ 1.183107] NetLabel: unlabeled traffic allowed by default 14188 [ 1.183556] clocksource: Switched to clocksource arch_sys_counter 14189 [ 1.183774] VFS: Disk quotas dquot_6.6.0 14190 [ 1.183819] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 14191 [ 1.184165] AppArmor: AppArmor Filesystem Enabled 14192 [ 1.184220] pnp: PnP ACPI: disabled 14193 [ 1.189905] NET: Registered protocol family 2 14194 [ 1.190401] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 14195 [ 1.190476] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 14196 [ 1.190732] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 14197 [ 1.190919] TCP: Hash tables configured (established 32768 bind 32768) 14198 [ 1.191070] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 14199 [ 1.191135] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 14200 [ 1.191182] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 14201 [ 1.191328] NET: Registered protocol family 1 14202 [ 1.191347] PCI: CLS 0 bytes, default 64 14203 [ 1.191469] Trying to unpack rootfs image as initramfs... 14204 [ 1.727241] Freeing initrd memory: 13544K 14205 [ 1.728191] kvm [1]: IPA Size Limit: 40 bits 14206 [ 1.728901] kvm [1]: vgic interrupt IRQ9 14207 [ 1.729034] kvm [1]: Hyp mode initialized successfully 14208 [ 1.734068] Initialise system trusted keyrings 14209 [ 1.734108] Key type blacklist registered 14210 [ 1.734236] workingset: timestamp_bits=44 max_order=20 bucket_order=0 14211 [ 1.737425] zbud: loaded 14212 [ 1.738398] squashfs: version 4.0 (2009/01/31) Phillip Lougher 14213 [ 1.738880] fuse: init (API version 7.32) 14214 [ 1.739677] integrity: Platform Keyring initialized 14215 [ 1.767413] xor: measuring software checksum speed 14216 [ 1.770262] 8regs : 3473 MB/sec 14217 [ 1.772717] 32regs : 4022 MB/sec 14218 [ 1.775364] arm64_neon : 3722 MB/sec 14219 [ 1.775368] xor: using function: 32regs (4022 MB/sec) 14220 [ 1.775375] Key type asymmetric registered 14221 [ 1.775378] Asymmetric key parser 'x509' registered 14222 [ 1.775413] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 14223 [ 1.775525] io scheduler mq-deadline registered 14224 [ 1.775530] io scheduler kyber registered 14225 [ 1.775616] io scheduler bfq registered 14226 [ 1.778130] gpio-447 (usb-hub-reset): hogged as output/high 14227 [ 1.781111] EINJ: ACPI disabled. 14228 [ 1.787265] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 14229 [ 1.788761] VCC_3V3: supplied by VDDAO_3V3 14230 [ 1.788795] FLASH_1V8: supplied by VCC_3V3 14231 [ 1.788826] VCC_1V8: supplied by VCC_3V3 14232 [ 1.788870] VDDAO_1V8: supplied by VDDAO_3V3 14233 [ 1.788899] VDDCPU_A: supplied by regulator-dummy 14234 [ 1.789244] VDDCPU_B: supplied by regulator-dummy 14235 [ 1.789922] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 14236 [ 1.792271] Serial: AMBA driver 14237 [ 1.792566] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 14238 [ 1.792660] printk: console [ttyAML0] enabled 14239 [ 1.793183] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 14240 [ 1.798732] loop: module loaded 14241 [ 1.800715] libphy: Fixed MDIO Bus: probed 14242 [ 1.801896] tun: Universal TUN/TAP device driver, 1.6 14243 [ 1.802579] thunder_xcv, ver 1.0 14244 [ 1.802609] thunder_bgx, ver 1.0 14245 [ 1.802638] nicpf, ver 1.0 14246 [ 1.803103] e1000e: Intel(R) PRO/1000 Network Driver 14247 [ 1.803106] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 14248 [ 1.803147] igb: Intel(R) Gigabit Ethernet Network Driver 14249 [ 1.803150] igb: Copyright (c) 2007-2014 Intel Corporation. 14250 [ 1.803186] igbvf: Intel(R) Gigabit Virtual Function Network Driver 14251 [ 1.803189] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 14252 [ 1.803317] sky2: driver version 1.30 14253 [ 1.804038] VFIO - User Level meta-driver version: 0.3 14254 [ 1.805510] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 14255 [ 1.805532] ehci-pci: EHCI PCI platform driver 14256 [ 1.805565] ehci-platform: EHCI generic platform driver 14257 [ 1.805701] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 14258 [ 1.805712] ohci-pci: OHCI PCI platform driver 14259 [ 1.805743] ohci-platform: OHCI generic platform driver 14260 [ 1.806172] usbcore: registered new interface driver usb-storage 14261 [ 1.807516] mousedev: PS/2 mouse device common for all mice 14262 [ 1.807987] i2c /dev entries driver 14263 [ 1.813127] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 14264 [ 1.813785] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 14265 [ 1.814465] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 14266 [ 1.815063] sdhci: Secure Digital Host Controller Interface driver 14267 [ 1.815070] sdhci: Copyright(c) Pierre Ossman 14268 [ 1.815197] Synopsys Designware Multimedia Card Interface Driver 14269 [ 1.815717] sdhci-pltfm: SDHCI platform and OF driver helper 14270 [ 1.816694] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 14271 [ 1.817112] ledtrig-cpu: registered to indicate activity on CPUs 14272 [ 1.817362] meson-sm: secure-monitor enabled 14273 [ 1.817548] hid: raw HID events driver (C) Jiri Kosina 14274 [ 1.817650] usbcore: registered new interface driver usbhid 14275 [ 1.817653] usbhid: USB HID core driver 14276 [ 1.818638] NET: Registered protocol family 10 14277 [ 1.819221] Segment Routing with IPv6 14278 [ 1.819251] NET: Registered protocol family 17 14279 [ 1.819343] 8021q: 802.1Q VLAN Support v1.8 14280 [ 1.819386] Key type dns_resolver registered 14281 [ 1.819704] registered taskstats version 1 14282 [ 1.819710] Loading compiled-in X.509 certificates 14283 [ 1.821422] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 14284 [ 1.823051] zswap: loaded using pool zstd/z3fold 14285 [ 1.823226] Key type ._fscrypt registered 14286 [ 1.823228] Key type .fscrypt registered 14287 [ 1.823230] Key type fscrypt-provisioning registered 14288 [ 1.824477] Btrfs loaded, crc32c=crc32c-generic 14289 [ 1.830470] Key type encrypted registered 14290 [ 1.830482] AppArmor: AppArmor sha1 policy hashing enabled 14291 [ 1.836850] HUB_5V: supplied by 5V 14292 [ 1.837078] USB_PWR_EN: supplied by 5V 14293 [ 1.838714] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 14294 [ 1.838720] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 14295 [ 1.841405] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 14296 [ 1.841454] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 14297 [ 1.841564] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 14298 [ 1.842162] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 14299 [ 1.842174] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 14300 [ 1.842262] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 14301 [ 1.842282] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 14302 [ 1.842406] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 14303 [ 1.842409] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 14304 [ 1.842412] usb usb1: Product: xHCI Host Controller 14305 [ 1.842414] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 14306 [ 1.842416] usb usb1: SerialNumber: xhci-hcd.0.auto 14307 [ 1.842634] hub 1-0:1.0: USB hub found 14308 [ 1.842650] hub 1-0:1.0: 2 ports detected 14309 [ 1.842780] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 14310 [ 1.842786] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 14311 [ 1.842791] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 14312 [ 1.842815] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 14313 [ 1.842845] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 14314 [ 1.842848] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 14315 [ 1.842851] usb usb2: Product: xHCI Host Controller 14316 [ 1.842853] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 14317 [ 1.842855] usb usb2: SerialNumber: xhci-hcd.0.auto 14318 [ 1.843017] hub 2-0:1.0: USB hub found 14319 [ 1.843027] hub 2-0:1.0: 1 port detected 14320 [ 1.844295] meson-gx-mmc ffe05000.sd: Got CD GPIO 14321 [ 1.868636] Freeing unused kernel memory: 3328K 14322 [ 1.915606] Run /init as init process 14323 [ 1.915610] with arguments: 14324 [ 1.915612] /init 14325 [ 1.915614] with environment: 14326 [ 1.915616] HOME=/ 14327 [ 1.915617] TERM=linux 14328 [ 1.915619] hdmimode=1080p60hz 14329 [ 1.915620] cvbsmode=576cvbs 14330 [ 1.915622] max_freq_a53=1896 14331 [ 1.915623] max_freq_a73=1800 14332 [ 1.915625] voutmode=hdmi 14333 [ 1.915626] disablehpd=false 14334 [ 1.915627] cvbscable=0 14335 [ 1.915629] overscan=100 14336 [ 1.933702] mmc0: new ultra high speed SDR25 SDHC card at address b368 14337 [ 1.934543] mmcblk0: mmc0:b368 CBADS 30.0 GiB 14338 [ 1.936887] mmcblk0: p1 14339 [ 2.067689] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 14340 [ 2.067700] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 14341 [ 2.067852] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 14342 [ 2.068544] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 14343 [ 2.068557] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 14344 [ 2.068561] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 14345 [ 2.068565] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 14346 [ 2.068568] meson8b-dwmac ff3f0000.ethernet: COE Type 2 14347 [ 2.068571] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 14348 [ 2.068574] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 14349 [ 2.068657] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 14350 [ 2.068661] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 14351 [ 2.068664] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 14352 [ 2.069002] libphy: stmmac: probed 14353 [ 2.072701] libphy: mdio_mux: probed 14354 [ 2.076345] meson-vrtc ff8000a8.rtc: registered as rtc1 14355 [ 2.094389] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 14356 [ 2.094522] rtc-pcf8563 1-0051: registered as rtc0 14357 [ 2.095914] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 14358 [ 2.095923] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 14359 [ 2.100664] random: fast init done 14360 [ 2.175583] usb 1-1: new high-speed USB device number 2 using xhci-hcd 14361 [ 2.276169] libphy: mdio_mux: probed 14362 [ 2.325977] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 14363 [ 2.325987] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 14364 [ 2.325990] usb 1-1: Product: USB2.1 Hub 14365 [ 2.325994] usb 1-1: Manufacturer: GenesysLogic 14366 [ 2.387066] hub 1-1:1.0: USB hub found 14367 [ 2.387294] hub 1-1:1.0: 4 ports detected 14368 [ 2.451695] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 14369 [ 2.474174] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 14370 [ 2.474183] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 14371 [ 2.474187] usb 2-1: Product: USB3.1 Hub 14372 [ 2.474190] usb 2-1: Manufacturer: GenesysLogic 14373 [ 2.499076] hub 2-1:1.0: USB hub found 14374 [ 2.499374] hub 2-1:1.0: 4 ports detected 14375 [ 2.599572] usb 1-2: new high-speed USB device number 3 using xhci-hcd 14376 [ 2.748041] usb 1-2: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 14377 [ 2.748050] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 14378 [ 2.748054] usb 1-2: Product: PCTV 292e 14379 [ 2.748057] usb 1-2: Manufacturer: PCTV 14380 [ 2.748060] usb 1-2: SerialNumber: 0011356964 14381 [ 3.060030] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 14382 [ 3.863723] systemd[1]: System time before build time, advancing clock. 14383 [ 3.878535] systemd[1]: Inserted module 'autofs4' 14384 [ 3.924956] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 14385 [ 3.925184] systemd[1]: Detected architecture arm64. 14386 [ 3.958208] systemd[1]: Set hostname to <odroidn2>. 14387 [ 4.285395] random: systemd: uninitialized urandom read (16 bytes read) 14388 [ 4.288708] random: systemd: uninitialized urandom read (16 bytes read) 14389 [ 4.290029] systemd[1]: Created slice system-serial\x2dgetty.slice. 14390 [ 4.290233] random: systemd: uninitialized urandom read (16 bytes read) 14391 [ 4.290444] systemd[1]: Listening on fsck to fsckd communication Socket. 14392 [ 4.290711] systemd[1]: Listening on Journal Socket. 14393 [ 4.290872] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 14394 [ 4.291366] systemd[1]: Created slice system-getty.slice. 14395 [ 4.291448] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 14396 [ 4.292863] systemd[1]: Starting Remount Root and Kernel File Systems... 14397 [ 4.358991] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 14398 [ 4.862904] zram: Added device: zram0 14399 [ 4.863074] zram: Added device: zram1 14400 [ 4.863243] zram: Added device: zram2 14401 [ 4.978738] pwm-gpio pwmgpio: 1 gpio pwms loaded 14402 [ 5.135835] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 14403 [ 5.138501] zram0: detected capacity change from 0 to 1904500736 14404 [ 5.166839] mc: Linux media interface: v0.10 14405 [ 5.212410] Registered IR keymap rc-odroid 14406 [ 5.232750] videodev: Linux video capture interface: v2.00 14407 [ 5.251317] IR NEC protocol handler initialized 14408 [ 5.261933] meson-drm ff900000.vpu: Queued 2 outputs on vpu 14409 [ 5.288746] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 14410 [ 5.289710] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 14411 [ 5.289832] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 14412 [ 5.290345] meson-ir ff808000.ir: receiver initialized 14413 [ 5.296154] meson-drm ff900000.vpu: CVBS Output connector not available 14414 [ 5.305501] panfrost ffe40000.gpu: clock rate = 24000000 14415 [ 5.305553] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 14416 [ 5.306165] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 14417 [ 5.306170] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 14418 [ 5.306174] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 14419 [ 5.306176] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 14420 [ 5.325156] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 14421 [ 5.331305] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 14422 [ 5.332024] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 14423 [ 5.332728] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 14424 [ 5.333239] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 14425 [ 5.333292] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 14426 [ 5.339480] em28xx 1-2:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 14427 [ 5.339491] em28xx 1-2:1.0: DVB interface 0 found: isoc 14428 [ 5.355159] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 14429 [ 5.403663] em28xx 1-2:1.0: chip ID is em28178 14430 [ 5.409071] axg-sound-card sound: ASoC: no DMI vendor name! 14431 [ 6.211578] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 14432 [ 6.276220] zram1: detected capacity change from 0 to 52428800 14433 [ 7.429817] em28xx 1-2:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 14434 [ 7.429825] em28xx 1-2:1.0: EEPROM info: 14435 [ 7.429829] em28xx 1-2:1.0: microcode start address = 0x0004, boot configuration = 0x01 14436 [ 7.435926] em28xx 1-2:1.0: AC97 audio (5 sample rates) 14437 [ 7.435929] em28xx 1-2:1.0: 500mA max power 14438 [ 7.435934] em28xx 1-2:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 14439 [ 7.495572] em28xx 1-2:1.0: Identified as PCTV tripleStick (292e) (card=94) 14440 [ 7.495580] em28xx 1-2:1.0: dvb set to isoc mode. 14441 [ 7.495786] usbcore: registered new interface driver em28xx 14442 [ 7.521959] em28xx 1-2:1.0: Binding DVB extension 14443 [ 7.535292] i2c i2c-4: Added multiplexed i2c bus 5 14444 [ 7.535300] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 14445 [ 7.535303] si2168 4-0064: firmware version: B 4.0.2 14446 [ 7.543646] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 14447 [ 7.543679] dvbdev: DVB: registering new adapter (1-2:1.0) 14448 [ 7.543685] em28xx 1-2:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 14449 [ 7.543691] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 14450 [ 7.544383] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 14451 [ 7.545777] em28xx 1-2:1.0: DVB extension successfully initialized 14452 [ 7.545786] em28xx: Registered (Em28xx dvb Extension) extension 14453 [ 7.553028] em28xx 1-2:1.0: Registering input extension 14454 [ 7.587562] Registered IR keymap rc-pinnacle-pctv-hd 14455 [ 7.587741] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1 14456 [ 7.587821] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 14457 [ 7.587881] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1/input1 14458 [ 7.587960] em28xx 1-2:1.0: Input extension successfully initialized 14459 [ 7.587963] em28xx: Registered (Em28xx Input Extension) extension 14460 [ 8.359501] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 14461 [ 8.359520] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 14462 [ 9.476426] systemd[1]: Started Armbian memory supported logging. 14463 [ 9.478693] systemd[1]: Starting Journal Service... 14464 [ 9.541660] systemd[1]: Started Journal Service. 14465 [ 9.566543] systemd-journald[1821]: Received request to flush runtime journal from PID 1 14466 14467 ### armbian-release: 14468 14469 # PLEASE DO NOT EDIT THIS FILE 14470 BOARD=odroidn2 14471 BOARD_NAME="Odroid N2" 14472 BOARDFAMILY=meson-g12b 14473 BUILD_REPOSITORY_URL=https://github.com/armbian/build 14474 BUILD_REPOSITORY_COMMIT=5f03d652 14475 DISTRIBUTION_CODENAME=buster 14476 DISTRIBUTION_STATUS=supported 14477 VERSION=21.02.1 14478 LINUXFAMILY=meson64 14479 BRANCH=current 14480 ARCH=arm64 14481 IMAGE_TYPE=stable 14482 BOARD_TYPE=conf 14483 INITRD_ARCH=arm64 14484 KERNEL_IMAGE_TYPE=Image 14485 14486 ### boot environment: 14487 14488 verbosity=1 14489 console=both 14490 overlay_prefix=meson 14491 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 14492 rootfstype=ext4 14493 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 14494 14495 ### lsusb: 14496 14497 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 14498 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 14499 Bus 001 Device 003: ID 2013:025f PCTV Systems 14500 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 14501 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 14502 14503 ### lscpu: 14504 14505 Architecture: aarch64 14506 Byte Order: Little Endian 14507 CPU(s): 6 14508 On-line CPU(s) list: 0-5 14509 Thread(s) per core: 1 14510 Core(s) per socket: 3 14511 Socket(s): 2 14512 NUMA node(s): 1 14513 Vendor ID: ARM 14514 Model: 4 14515 Model name: Cortex-A53 14516 Stepping: r0p4 14517 CPU max MHz: 1992.0000 14518 CPU min MHz: 100.0000 14519 BogoMIPS: 48.00 14520 L1d cache: unknown size 14521 L1i cache: unknown size 14522 L2 cache: unknown size 14523 NUMA node0 CPU(s): 0-5 14524 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 14525 14526 ### cpuinfo: 14527 14528 processor : 0 14529 BogoMIPS : 48.00 14530 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 14531 CPU implementer : 0x41 14532 CPU architecture: 8 14533 CPU variant : 0x0 14534 CPU part : 0xd03 14535 CPU revision : 4 14536 14537 processor : 1 14538 BogoMIPS : 48.00 14539 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 14540 CPU implementer : 0x41 14541 CPU architecture: 8 14542 CPU variant : 0x0 14543 CPU part : 0xd03 14544 CPU revision : 4 14545 14546 processor : 2 14547 BogoMIPS : 48.00 14548 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 14549 CPU implementer : 0x41 14550 CPU architecture: 8 14551 CPU variant : 0x0 14552 CPU part : 0xd09 14553 CPU revision : 2 14554 14555 processor : 3 14556 BogoMIPS : 48.00 14557 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 14558 CPU implementer : 0x41 14559 CPU architecture: 8 14560 CPU variant : 0x0 14561 CPU part : 0xd09 14562 CPU revision : 2 14563 14564 processor : 4 14565 BogoMIPS : 48.00 14566 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 14567 CPU implementer : 0x41 14568 CPU architecture: 8 14569 CPU variant : 0x0 14570 CPU part : 0xd09 14571 CPU revision : 2 14572 14573 processor : 5 14574 BogoMIPS : 48.00 14575 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 14576 CPU implementer : 0x41 14577 CPU architecture: 8 14578 CPU variant : 0x0 14579 CPU part : 0xd09 14580 CPU revision : 2 14581 14582 14583 ### meminfo: 14584 14585 MemTotal: 3719728 kB 14586 MemFree: 3403240 kB 14587 MemAvailable: 3357568 kB 14588 Buffers: 11572 kB 14589 Cached: 45876 kB 14590 SwapCached: 0 kB 14591 Active: 27936 kB 14592 Inactive: 185304 kB 14593 Active(anon): 136 kB 14594 Inactive(anon): 160920 kB 14595 Active(file): 27800 kB 14596 Inactive(file): 24384 kB 14597 Unevictable: 0 kB 14598 Mlocked: 0 kB 14599 SwapTotal: 1859860 kB 14600 SwapFree: 1859860 kB 14601 Dirty: 5980 kB 14602 Writeback: 0 kB 14603 AnonPages: 156172 kB 14604 Mapped: 13548 kB 14605 Shmem: 4972 kB 14606 KReclaimable: 13192 kB 14607 Slab: 40276 kB 14608 SReclaimable: 13192 kB 14609 SUnreclaim: 27084 kB 14610 KernelStack: 2560 kB 14611 PageTables: 5712 kB 14612 NFS_Unstable: 0 kB 14613 Bounce: 0 kB 14614 WritebackTmp: 0 kB 14615 CommitLimit: 3719724 kB 14616 Committed_AS: 4240288 kB 14617 VmallocTotal: 135290159040 kB 14618 VmallocUsed: 33216 kB 14619 VmallocChunk: 0 kB 14620 Percpu: 1368 kB 14621 HardwareCorrupted: 0 kB 14622 AnonHugePages: 0 kB 14623 ShmemHugePages: 0 kB 14624 ShmemPmdMapped: 0 kB 14625 FileHugePages: 0 kB 14626 FilePmdMapped: 0 kB 14627 CmaTotal: 917504 kB 14628 CmaFree: 909824 kB 14629 HugePages_Total: 0 14630 HugePages_Free: 0 14631 HugePages_Rsvd: 0 14632 HugePages_Surp: 0 14633 Hugepagesize: 2048 kB 14634 Hugetlb: 0 kB 14635 14636 ### virtual memory: 14637 14638 vm.admin_reserve_kbytes = 8192 14639 vm.block_dump = 0 14640 vm.compaction_proactiveness = 20 14641 vm.compact_unevictable_allowed = 1 14642 vm.dirty_background_bytes = 0 14643 vm.dirty_background_ratio = 10 14644 vm.dirty_bytes = 0 14645 vm.dirty_expire_centisecs = 3000 14646 vm.dirty_ratio = 20 14647 vm.dirtytime_expire_seconds = 43200 14648 vm.dirty_writeback_centisecs = 500 14649 vm.extfrag_threshold = 500 14650 vm.hugetlb_shm_group = 0 14651 vm.laptop_mode = 0 14652 vm.legacy_va_layout = 0 14653 vm.lowmem_reserve_ratio = 256 256 32 0 14654 vm.max_map_count = 65530 14655 vm.memory_failure_early_kill = 0 14656 vm.memory_failure_recovery = 1 14657 vm.min_free_kbytes = 45056 14658 vm.min_slab_ratio = 5 14659 vm.min_unmapped_ratio = 1 14660 vm.mmap_min_addr = 4096 14661 vm.mmap_rnd_bits = 18 14662 vm.mmap_rnd_compat_bits = 11 14663 vm.nr_hugepages = 0 14664 vm.nr_hugepages_mempolicy = 0 14665 vm.nr_overcommit_hugepages = 0 14666 vm.numa_stat = 1 14667 vm.numa_zonelist_order = Node 14668 vm.oom_dump_tasks = 1 14669 vm.oom_kill_allocating_task = 0 14670 vm.overcommit_kbytes = 0 14671 vm.overcommit_memory = 0 14672 vm.overcommit_ratio = 50 14673 vm.page-cluster = 0 14674 vm.page_lock_unfairness = 5 14675 vm.panic_on_oom = 0 14676 vm.percpu_pagelist_fraction = 0 14677 vm.stat_interval = 1 14678 vm.swappiness = 100 14679 vm.user_reserve_kbytes = 115066 14680 vm.vfs_cache_pressure = 100 14681 vm.watermark_boost_factor = 15000 14682 vm.watermark_scale_factor = 10 14683 vm.zone_reclaim_mode = 0 14684 14685 ### ip addr: 14686 14687 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 14688 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 14689 inet XXX.XXX.0.1/8 scope host lo 14690 valid_lft forever preferred_lft forever 14691 inet6 ::1/128 scope host 14692 valid_lft forever preferred_lft forever 14693 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 14694 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 14695 14696 ### partitions: 14697 14698 major minor #blocks name 14699 14700 179 0 31464960 mmcblk0 14701 179 1 31146208 mmcblk0p1 14702 252 0 1859864 zram0 14703 252 1 51200 zram1 14704 14705 ### df: 14706 14707 udev 1.4G 0 1.4G 0% /dev 14708 tmpfs 364M 4.9M 359M 2% /run 14709 /dev/mmcblk0p1 30G 1.7G 28G 6% / 14710 tmpfs 1.8G 0 1.8G 0% /dev/shm 14711 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 14712 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 14713 tmpfs 1.8G 0 1.8G 0% /tmp 14714 /dev/zram1 49M 5.9M 40M 13% /var/log 14715 14716 ### lsblk: 14717 14718 NAME FSTYPE SIZE MOUNTPOINT UUID 14719 mmcblk0 30G 14720 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 14721 zram1 50M /var/log 14722 14723 ### zramctl: 14724 14725 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 14726 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 14727 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 14728 14729 ### mtab: 14730 14731 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 14732 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 14733 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 14734 14735 ### mmc0:b368 info: 14736 14737 fwrev: 0x0 14738 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 14739 cid: 6f0303434241445310aa002b4d013b00 14740 rca: 0xb368 14741 csd: 400e005a5b590000f00e7f800a404000 14742 manfid: 0x00006f 14743 ocr: 0x00200000 14744 preferred_erase_size: 2097152 14745 type: SD 14746 hwrev: 0x1 14747 date: 11/2019 14748 dsr: 0x404 14749 erase_size: 512 14750 oemid: 0x0303 14751 serial: 0xaa002b4d 14752 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 14753 scr: 02b5800300000000 14754 name: CBADS 14755 14756 ### Boot system health: 14757 14758 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 14759 17:52:51: 1908/1992MHz 2.89 27% 12% 5% 0% 9% 0% 22.1°C 0/11 14760 17:52:52: 1908/1992MHz 2.89 56% 7% 6% 0% 40% 1% 20.3°C 0/11 14761 17:52:52: 1908/1992MHz 2.89 56% 6% 8% 0% 40% 1% 20.3°C 0/11 14762 17:52:52: 1908/1992MHz 2.89 46% 2% 6% 0% 36% 1% 19.8°C 0/11 14763 17:52:53: 1908/1992MHz 2.89 65% 7% 5% 0% 50% 1% 21.6°C 0/11 14764 14765 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 14766 14767 ### Activated Armbian ramlog partition with zstd compression 14768 14769 Mon 15 Feb 2021 06:14:20 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 14770 14771 ### dmesg: 14772 14773 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 14774 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 14775 [ 0.000000] Machine model: Hardkernel ODROID-N2 14776 [ 0.000000] efi: UEFI not found. 14777 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 14778 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 14779 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 14780 [ 0.000000] NUMA: No NUMA configuration found 14781 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 14782 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 14783 [ 0.000000] Zone ranges: 14784 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 14785 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 14786 [ 0.000000] Normal empty 14787 [ 0.000000] Movable zone start for each node 14788 [ 0.000000] Early memory node ranges 14789 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 14790 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 14791 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 14792 [ 0.000000] On node 0 totalpages: 972032 14793 [ 0.000000] DMA zone: 4096 pages used for memmap 14794 [ 0.000000] DMA zone: 0 pages reserved 14795 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 14796 [ 0.000000] DMA32 zone: 11104 pages used for memmap 14797 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 14798 [ 0.000000] psci: probing for conduit method from DT. 14799 [ 0.000000] psci: PSCIv1.0 detected in firmware. 14800 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 14801 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 14802 [ 0.000000] psci: SMC Calling Convention v1.1 14803 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 14804 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 14805 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 14806 [ 0.000000] Detected VIPT I-cache on CPU0 14807 [ 0.000000] CPU features: detected: ARM erratum 845719 14808 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 14809 [ 0.000000] Policy zone: DMA32 14810 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 14811 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 14812 Please use sysfs to set IO scheduler for individual devices. 14813 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 14814 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 14815 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 14816 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 14817 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 14818 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 14819 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 14820 [ 0.000000] rcu: RCU event tracing is enabled. 14821 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 14822 [ 0.000000] Trampoline variant of Tasks RCU enabled. 14823 [ 0.000000] Rude variant of Tasks RCU enabled. 14824 [ 0.000000] Tracing variant of Tasks RCU enabled. 14825 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 14826 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 14827 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 14828 [ 0.000000] GIC: Using split EOI/Deactivate mode 14829 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 14830 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 14831 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 14832 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 14833 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 14834 [ 0.000249] Console: colour dummy device 80x25 14835 [ 0.000283] printk: console [tty1] enabled 14836 [ 0.000368] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 14837 [ 0.000380] pid_max: default: 32768 minimum: 301 14838 [ 0.000464] LSM: Security Framework initializing 14839 [ 0.000489] Yama: becoming mindful. 14840 [ 0.000580] AppArmor: AppArmor initialized 14841 [ 0.000631] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 14842 [ 0.000651] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 14843 [ 0.002642] rcu: Hierarchical SRCU implementation. 14844 [ 0.005072] EFI services will not be available. 14845 [ 0.005495] smp: Bringing up secondary CPUs ... 14846 [ 0.006163] Detected VIPT I-cache on CPU1 14847 [ 0.006222] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 14848 [ 0.007409] CPU features: detected: ARM erratum 858921 14849 [ 0.007417] CPU features: detected: Spectre-v2 14850 [ 0.007421] CPU features: detected: Spectre-v4 14851 [ 0.007428] Detected VIPT I-cache on CPU2 14852 [ 0.007452] arch_timer: Enabling local workaround for ARM erratum 858921 14853 [ 0.007466] arch_timer: CPU2: Trapping CNTVCT access 14854 [ 0.007479] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 14855 [ 0.008189] Detected VIPT I-cache on CPU3 14856 [ 0.008204] arch_timer: Enabling local workaround for ARM erratum 858921 14857 [ 0.008212] arch_timer: CPU3: Trapping CNTVCT access 14858 [ 0.008219] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 14859 [ 0.008845] Detected VIPT I-cache on CPU4 14860 [ 0.008861] arch_timer: Enabling local workaround for ARM erratum 858921 14861 [ 0.008868] arch_timer: CPU4: Trapping CNTVCT access 14862 [ 0.008875] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 14863 [ 0.009490] Detected VIPT I-cache on CPU5 14864 [ 0.009507] arch_timer: Enabling local workaround for ARM erratum 858921 14865 [ 0.009514] arch_timer: CPU5: Trapping CNTVCT access 14866 [ 0.009521] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 14867 [ 0.009603] smp: Brought up 1 node, 6 CPUs 14868 [ 0.009620] SMP: Total of 6 processors activated. 14869 [ 0.009628] CPU features: detected: 32-bit EL0 Support 14870 [ 0.009634] CPU features: detected: CRC32 instructions 14871 [ 0.009639] CPU features: detected: 32-bit EL1 Support 14872 [ 0.020888] CPU: All CPU(s) started at EL2 14873 [ 0.020938] alternatives: patching kernel code 14874 [ 0.022879] devtmpfs: initialized 14875 [ 0.030539] Registered cp15_barrier emulation handler 14876 [ 0.030553] Registered setend emulation handler 14877 [ 0.030689] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 14878 [ 0.030728] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 14879 [ 0.044648] pinctrl core: initialized pinctrl subsystem 14880 [ 0.045189] DMI not present or invalid. 14881 [ 0.045591] NET: Registered protocol family 16 14882 [ 0.047201] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 14883 [ 0.047474] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 14884 [ 0.047700] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 14885 [ 0.047744] audit: initializing netlink subsys (disabled) 14886 [ 0.047853] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 14887 [ 0.049167] thermal_sys: Registered thermal governor 'fair_share' 14888 [ 0.049175] thermal_sys: Registered thermal governor 'bang_bang' 14889 [ 0.049180] thermal_sys: Registered thermal governor 'step_wise' 14890 [ 0.049183] thermal_sys: Registered thermal governor 'user_space' 14891 [ 0.049597] cpuidle: using governor menu 14892 [ 0.049935] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 14893 [ 0.050054] ASID allocator initialised with 65536 entries 14894 [ 0.051012] Serial: AMBA PL011 UART driver 14895 [ 0.085226] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 14896 [ 0.085238] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 14897 [ 0.085244] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 14898 [ 0.085249] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 14899 [ 0.087110] cryptd: max_cpu_qlen set to 1000 14900 [ 0.156147] raid6: neonx8 gen() 2781 MB/s 14901 [ 0.224203] raid6: neonx8 xor() 2042 MB/s 14902 [ 0.292276] raid6: neonx4 gen() 2994 MB/s 14903 [ 0.360334] raid6: neonx4 xor() 2348 MB/s 14904 [ 0.428427] raid6: neonx2 gen() 2578 MB/s 14905 [ 0.496471] raid6: neonx2 xor() 2185 MB/s 14906 [ 0.564541] raid6: neonx1 gen() 2078 MB/s 14907 [ 0.632601] raid6: neonx1 xor() 1726 MB/s 14908 [ 0.700677] raid6: int64x8 gen() 1377 MB/s 14909 [ 0.768740] raid6: int64x8 xor() 735 MB/s 14910 [ 0.836826] raid6: int64x4 gen() 1463 MB/s 14911 [ 0.904870] raid6: int64x4 xor() 733 MB/s 14912 [ 0.972941] raid6: int64x2 gen() 1363 MB/s 14913 [ 1.041014] raid6: int64x2 xor() 619 MB/s 14914 [ 1.109074] raid6: int64x1 gen() 1120 MB/s 14915 [ 1.177138] raid6: int64x1 xor() 462 MB/s 14916 [ 1.177141] raid6: using algorithm neonx4 gen() 2994 MB/s 14917 [ 1.177144] raid6: .... xor() 2348 MB/s, rmw enabled 14918 [ 1.177148] raid6: using neon recovery algorithm 14919 [ 1.177586] ACPI: Interpreter disabled. 14920 [ 1.178384] 5V: supplied by 12V 14921 [ 1.179292] VDDAO_3V3: supplied by 12V 14922 [ 1.179764] iommu: Default domain type: Translated 14923 [ 1.179912] vgaarb: loaded 14924 [ 1.180645] SCSI subsystem initialized 14925 [ 1.181032] usbcore: registered new interface driver usbfs 14926 [ 1.181081] usbcore: registered new interface driver hub 14927 [ 1.181116] usbcore: registered new device driver usb 14928 [ 1.181355] pps_core: LinuxPPS API ver. 1 registered 14929 [ 1.181359] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 14930 [ 1.181377] PTP clock support registered 14931 [ 1.181564] EDAC MC: Ver: 3.0.0 14932 [ 1.182898] NetLabel: Initializing 14933 [ 1.182905] NetLabel: domain hash size = 128 14934 [ 1.182908] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 14935 [ 1.182950] NetLabel: unlabeled traffic allowed by default 14936 [ 1.183401] clocksource: Switched to clocksource arch_sys_counter 14937 [ 1.183604] VFS: Disk quotas dquot_6.6.0 14938 [ 1.183648] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 14939 [ 1.184014] AppArmor: AppArmor Filesystem Enabled 14940 [ 1.184059] pnp: PnP ACPI: disabled 14941 [ 1.189855] NET: Registered protocol family 2 14942 [ 1.190323] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 14943 [ 1.190427] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 14944 [ 1.190683] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 14945 [ 1.190870] TCP: Hash tables configured (established 32768 bind 32768) 14946 [ 1.191018] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 14947 [ 1.191082] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 14948 [ 1.191128] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 14949 [ 1.191270] NET: Registered protocol family 1 14950 [ 1.191293] PCI: CLS 0 bytes, default 64 14951 [ 1.191465] Trying to unpack rootfs image as initramfs... 14952 [ 1.727643] Freeing initrd memory: 13544K 14953 [ 1.728562] kvm [1]: IPA Size Limit: 40 bits 14954 [ 1.729266] kvm [1]: vgic interrupt IRQ9 14955 [ 1.729400] kvm [1]: Hyp mode initialized successfully 14956 [ 1.734504] Initialise system trusted keyrings 14957 [ 1.734540] Key type blacklist registered 14958 [ 1.734648] workingset: timestamp_bits=44 max_order=20 bucket_order=0 14959 [ 1.737847] zbud: loaded 14960 [ 1.738831] squashfs: version 4.0 (2009/01/31) Phillip Lougher 14961 [ 1.739289] fuse: init (API version 7.32) 14962 [ 1.740069] integrity: Platform Keyring initialized 14963 [ 1.767795] xor: measuring software checksum speed 14964 [ 1.770634] 8regs : 3473 MB/sec 14965 [ 1.773129] 32regs : 4021 MB/sec 14966 [ 1.775783] arm64_neon : 3719 MB/sec 14967 [ 1.775787] xor: using function: 32regs (4021 MB/sec) 14968 [ 1.775793] Key type asymmetric registered 14969 [ 1.775797] Asymmetric key parser 'x509' registered 14970 [ 1.775830] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 14971 [ 1.775919] io scheduler mq-deadline registered 14972 [ 1.775923] io scheduler kyber registered 14973 [ 1.776002] io scheduler bfq registered 14974 [ 1.778514] gpio-447 (usb-hub-reset): hogged as output/high 14975 [ 1.781499] EINJ: ACPI disabled. 14976 [ 1.787787] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 14977 [ 1.789187] VCC_3V3: supplied by VDDAO_3V3 14978 [ 1.789235] FLASH_1V8: supplied by VCC_3V3 14979 [ 1.789266] VCC_1V8: supplied by VCC_3V3 14980 [ 1.789296] VDDAO_1V8: supplied by VDDAO_3V3 14981 [ 1.789327] VDDCPU_A: supplied by regulator-dummy 14982 [ 1.789699] VDDCPU_B: supplied by regulator-dummy 14983 [ 1.790377] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 14984 [ 1.792691] Serial: AMBA driver 14985 [ 1.792989] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 14986 [ 1.793083] printk: console [ttyAML0] enabled 14987 [ 1.793605] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 14988 [ 1.798971] loop: module loaded 14989 [ 1.800848] libphy: Fixed MDIO Bus: probed 14990 [ 1.801968] tun: Universal TUN/TAP device driver, 1.6 14991 [ 1.802625] thunder_xcv, ver 1.0 14992 [ 1.802658] thunder_bgx, ver 1.0 14993 [ 1.802684] nicpf, ver 1.0 14994 [ 1.803152] e1000e: Intel(R) PRO/1000 Network Driver 14995 [ 1.803156] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 14996 [ 1.803195] igb: Intel(R) Gigabit Ethernet Network Driver 14997 [ 1.803198] igb: Copyright (c) 2007-2014 Intel Corporation. 14998 [ 1.803228] igbvf: Intel(R) Gigabit Virtual Function Network Driver 14999 [ 1.803232] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 15000 [ 1.803362] sky2: driver version 1.30 15001 [ 1.803813] VFIO - User Level meta-driver version: 0.3 15002 [ 1.805214] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 15003 [ 1.805232] ehci-pci: EHCI PCI platform driver 15004 [ 1.805260] ehci-platform: EHCI generic platform driver 15005 [ 1.805388] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 15006 [ 1.805397] ohci-pci: OHCI PCI platform driver 15007 [ 1.805431] ohci-platform: OHCI generic platform driver 15008 [ 1.805843] usbcore: registered new interface driver usb-storage 15009 [ 1.807096] mousedev: PS/2 mouse device common for all mice 15010 [ 1.807457] i2c /dev entries driver 15011 [ 1.812858] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 15012 [ 1.813525] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 15013 [ 1.814200] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 15014 [ 1.814813] sdhci: Secure Digital Host Controller Interface driver 15015 [ 1.814818] sdhci: Copyright(c) Pierre Ossman 15016 [ 1.814936] Synopsys Designware Multimedia Card Interface Driver 15017 [ 1.815380] sdhci-pltfm: SDHCI platform and OF driver helper 15018 [ 1.815991] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 15019 [ 1.817079] ledtrig-cpu: registered to indicate activity on CPUs 15020 [ 1.817350] meson-sm: secure-monitor enabled 15021 [ 1.817506] hid: raw HID events driver (C) Jiri Kosina 15022 [ 1.817581] usbcore: registered new interface driver usbhid 15023 [ 1.817584] usbhid: USB HID core driver 15024 [ 1.818569] NET: Registered protocol family 10 15025 [ 1.818987] Segment Routing with IPv6 15026 [ 1.819017] NET: Registered protocol family 17 15027 [ 1.819056] 8021q: 802.1Q VLAN Support v1.8 15028 [ 1.819083] Key type dns_resolver registered 15029 [ 1.819372] registered taskstats version 1 15030 [ 1.819377] Loading compiled-in X.509 certificates 15031 [ 1.821065] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 15032 [ 1.822626] zswap: loaded using pool zstd/z3fold 15033 [ 1.822781] Key type ._fscrypt registered 15034 [ 1.822784] Key type .fscrypt registered 15035 [ 1.822785] Key type fscrypt-provisioning registered 15036 [ 1.823921] Btrfs loaded, crc32c=crc32c-generic 15037 [ 1.829981] Key type encrypted registered 15038 [ 1.829992] AppArmor: AppArmor sha1 policy hashing enabled 15039 [ 1.836398] HUB_5V: supplied by 5V 15040 [ 1.836604] USB_PWR_EN: supplied by 5V 15041 [ 1.838234] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 15042 [ 1.838240] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 15043 [ 1.840961] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 15044 [ 1.841015] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 15045 [ 1.841146] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 15046 [ 1.841733] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 15047 [ 1.841746] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 15048 [ 1.841847] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 15049 [ 1.841870] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 15050 [ 1.841994] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 15051 [ 1.841998] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 15052 [ 1.842001] usb usb1: Product: xHCI Host Controller 15053 [ 1.842003] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 15054 [ 1.842005] usb usb1: SerialNumber: xhci-hcd.0.auto 15055 [ 1.842223] hub 1-0:1.0: USB hub found 15056 [ 1.842235] hub 1-0:1.0: 2 ports detected 15057 [ 1.842363] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 15058 [ 1.842369] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 15059 [ 1.842374] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 15060 [ 1.842394] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 15061 [ 1.842426] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 15062 [ 1.842430] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 15063 [ 1.842433] usb usb2: Product: xHCI Host Controller 15064 [ 1.842435] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 15065 [ 1.842438] usb usb2: SerialNumber: xhci-hcd.0.auto 15066 [ 1.842604] hub 2-0:1.0: USB hub found 15067 [ 1.842615] hub 2-0:1.0: 1 port detected 15068 [ 1.842848] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 15069 [ 1.843727] meson-gx-mmc ffe05000.sd: Got CD GPIO 15070 [ 1.868475] Freeing unused kernel memory: 3328K 15071 [ 1.911455] Run /init as init process 15072 [ 1.911459] with arguments: 15073 [ 1.911461] /init 15074 [ 1.911463] with environment: 15075 [ 1.911465] HOME=/ 15076 [ 1.911466] TERM=linux 15077 [ 1.911468] hdmimode=1080p60hz 15078 [ 1.911470] cvbsmode=576cvbs 15079 [ 1.911471] max_freq_a53=1896 15080 [ 1.911473] max_freq_a73=1800 15081 [ 1.911474] voutmode=hdmi 15082 [ 1.911475] disablehpd=false 15083 [ 1.911477] cvbscable=0 15084 [ 1.911478] overscan=100 15085 [ 1.920451] mmc0: new high speed SDHC card at address b368 15086 [ 1.921158] mmcblk0: mmc0:b368 CBADS 30.0 GiB 15087 [ 1.922974] mmcblk0: p1 15088 [ 2.034365] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 15089 [ 2.034373] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 15090 [ 2.035547] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 15091 [ 2.036843] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 15092 [ 2.036853] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 15093 [ 2.036856] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 15094 [ 2.036859] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 15095 [ 2.036861] meson8b-dwmac ff3f0000.ethernet: COE Type 2 15096 [ 2.036863] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 15097 [ 2.036865] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 15098 [ 2.036915] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 15099 [ 2.036918] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 15100 [ 2.036920] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 15101 [ 2.037117] libphy: stmmac: probed 15102 [ 2.038199] libphy: mdio_mux: probed 15103 [ 2.051604] meson-vrtc ff8000a8.rtc: registered as rtc1 15104 [ 2.066843] rtc-pcf8563 1-0051: registered as rtc0 15105 [ 2.068034] rtc-pcf8563 1-0051: setting system clock to 2021-02-15T18:14:12 UTC (1613412852) 15106 [ 2.175550] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 15107 [ 2.200161] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 15108 [ 2.200170] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 15109 [ 2.200174] usb 2-1: Product: USB3.1 Hub 15110 [ 2.200177] usb 2-1: Manufacturer: GenesysLogic 15111 [ 2.226665] hub 2-1:1.0: USB hub found 15112 [ 2.226960] hub 2-1:1.0: 4 ports detected 15113 [ 2.243861] libphy: mdio_mux: probed 15114 [ 2.323423] usb 1-1: new high-speed USB device number 2 using xhci-hcd 15115 [ 2.331917] random: fast init done 15116 [ 2.473777] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 15117 [ 2.473783] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 15118 [ 2.473786] usb 1-1: Product: USB2.1 Hub 15119 [ 2.473789] usb 1-1: Manufacturer: GenesysLogic 15120 [ 2.514676] hub 1-1:1.0: USB hub found 15121 [ 2.514944] hub 1-1:1.0: 4 ports detected 15122 [ 2.817539] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 15123 [ 2.891432] usb 1-1.4: new high-speed USB device number 3 using xhci-hcd 15124 [ 3.015878] usb 1-1.4: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 15125 [ 3.015888] usb 1-1.4: New USB device strings: Mfr=3, Product=1, SerialNumber=2 15126 [ 3.015892] usb 1-1.4: Product: PCTV 292e 15127 [ 3.015895] usb 1-1.4: Manufacturer: PCTV 15128 [ 3.015898] usb 1-1.4: SerialNumber: 0011356964 15129 [ 3.631998] systemd[1]: Inserted module 'autofs4' 15130 [ 3.678627] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 15131 [ 3.678851] systemd[1]: Detected architecture arm64. 15132 [ 3.709612] systemd[1]: Set hostname to <odroidn2>. 15133 [ 4.037574] random: systemd: uninitialized urandom read (16 bytes read) 15134 [ 4.040877] random: systemd: uninitialized urandom read (16 bytes read) 15135 [ 4.041040] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 15136 [ 4.041222] random: systemd: uninitialized urandom read (16 bytes read) 15137 [ 4.041238] systemd[1]: Reached target Swap. 15138 [ 4.041306] systemd[1]: Reached target System Time Synchronized. 15139 [ 4.041487] systemd[1]: Listening on initctl Compatibility Named Pipe. 15140 [ 4.042752] systemd[1]: Created slice system-serial\x2dgetty.slice. 15141 [ 4.043153] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 15142 [ 4.043460] systemd[1]: Listening on Syslog Socket. 15143 [ 4.143869] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 15144 [ 4.632407] zram: Added device: zram0 15145 [ 4.632575] zram: Added device: zram1 15146 [ 4.632723] zram: Added device: zram2 15147 [ 4.668264] pwm-gpio pwmgpio: 1 gpio pwms loaded 15148 [ 4.848314] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 15149 [ 4.851987] mc: Linux media interface: v0.10 15150 [ 4.946211] videodev: Linux video capture interface: v2.00 15151 [ 4.974006] meson-drm ff900000.vpu: Queued 2 outputs on vpu 15152 [ 4.979454] Registered IR keymap rc-odroid 15153 [ 4.997176] IR NEC protocol handler initialized 15154 [ 5.004314] panfrost ffe40000.gpu: clock rate = 24000000 15155 [ 5.004390] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 15156 [ 5.005237] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 15157 [ 5.005247] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 15158 [ 5.005252] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 15159 [ 5.005255] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 15160 [ 5.013957] meson-drm ff900000.vpu: CVBS Output connector not available 15161 [ 5.020006] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 15162 [ 5.023515] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 15163 [ 5.023596] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 15164 [ 5.023656] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 15165 [ 5.023854] meson-ir ff808000.ir: receiver initialized 15166 [ 5.038396] zram0: detected capacity change from 0 to 1904500736 15167 [ 5.047506] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 15168 [ 5.049627] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 15169 [ 5.049881] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 15170 [ 5.050081] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 15171 [ 5.050126] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 15172 [ 5.064045] em28xx 1-1.4:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 15173 [ 5.064053] em28xx 1-1.4:1.0: DVB interface 0 found: isoc 15174 [ 5.093412] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 15175 [ 5.125227] axg-sound-card sound: ASoC: no DMI vendor name! 15176 [ 5.128419] em28xx 1-1.4:1.0: chip ID is em28178 15177 [ 6.079423] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 15178 [ 6.143632] zram1: detected capacity change from 0 to 52428800 15179 [ 7.173620] em28xx 1-1.4:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 15180 [ 7.173626] em28xx 1-1.4:1.0: EEPROM info: 15181 [ 7.173629] em28xx 1-1.4:1.0: microcode start address = 0x0004, boot configuration = 0x01 15182 [ 7.179735] em28xx 1-1.4:1.0: AC97 audio (5 sample rates) 15183 [ 7.179738] em28xx 1-1.4:1.0: 500mA max power 15184 [ 7.179741] em28xx 1-1.4:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 15185 [ 7.239397] em28xx 1-1.4:1.0: Identified as PCTV tripleStick (292e) (card=94) 15186 [ 7.239401] em28xx 1-1.4:1.0: dvb set to isoc mode. 15187 [ 7.239541] usbcore: registered new interface driver em28xx 15188 [ 7.265820] em28xx 1-1.4:1.0: Binding DVB extension 15189 [ 7.279068] i2c i2c-4: Added multiplexed i2c bus 5 15190 [ 7.279077] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 15191 [ 7.279079] si2168 4-0064: firmware version: B 4.0.2 15192 [ 7.290008] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 15193 [ 7.290040] dvbdev: DVB: registering new adapter (1-1.4:1.0) 15194 [ 7.290046] em28xx 1-1.4:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 15195 [ 7.290058] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 15196 [ 7.290733] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 15197 [ 7.314528] em28xx 1-1.4:1.0: DVB extension successfully initialized 15198 [ 7.314536] em28xx: Registered (Em28xx dvb Extension) extension 15199 [ 7.321432] em28xx 1-1.4:1.0: Registering input extension 15200 [ 7.351399] Registered IR keymap rc-pinnacle-pctv-hd 15201 [ 7.351574] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.4/1-1.4:1.0/rc/rc1 15202 [ 7.351680] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 15203 [ 7.351739] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.4/1-1.4:1.0/rc/rc1/input1 15204 [ 7.351824] em28xx 1-1.4:1.0: Input extension successfully initialized 15205 [ 7.351828] em28xx: Registered (Em28xx Input Extension) extension 15206 [ 8.226839] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 15207 [ 8.226859] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 15208 [ 9.359304] systemd[1]: Started Armbian memory supported logging. 15209 [ 9.363279] systemd[1]: Starting Journal Service... 15210 [ 9.426462] systemd[1]: Started Journal Service. 15211 [ 9.454154] systemd-journald[1821]: Received request to flush runtime journal from PID 1 15212 15213 ### armbian-release: 15214 15215 # PLEASE DO NOT EDIT THIS FILE 15216 BOARD=odroidn2 15217 BOARD_NAME="Odroid N2" 15218 BOARDFAMILY=meson-g12b 15219 BUILD_REPOSITORY_URL=https://github.com/armbian/build 15220 BUILD_REPOSITORY_COMMIT=5f03d652 15221 DISTRIBUTION_CODENAME=buster 15222 DISTRIBUTION_STATUS=supported 15223 VERSION=21.02.1 15224 LINUXFAMILY=meson64 15225 BRANCH=current 15226 ARCH=arm64 15227 IMAGE_TYPE=stable 15228 BOARD_TYPE=conf 15229 INITRD_ARCH=arm64 15230 KERNEL_IMAGE_TYPE=Image 15231 15232 ### boot environment: 15233 15234 verbosity=1 15235 console=both 15236 overlay_prefix=meson 15237 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 15238 rootfstype=ext4 15239 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 15240 15241 ### lsusb: 15242 15243 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 15244 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 15245 Bus 001 Device 003: ID 2013:025f PCTV Systems 15246 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 15247 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 15248 15249 ### lscpu: 15250 15251 Architecture: aarch64 15252 Byte Order: Little Endian 15253 CPU(s): 6 15254 On-line CPU(s) list: 0-5 15255 Thread(s) per core: 1 15256 Core(s) per socket: 3 15257 Socket(s): 2 15258 NUMA node(s): 1 15259 Vendor ID: ARM 15260 Model: 4 15261 Model name: Cortex-A53 15262 Stepping: r0p4 15263 CPU max MHz: 1992.0000 15264 CPU min MHz: 100.0000 15265 BogoMIPS: 48.00 15266 L1d cache: unknown size 15267 L1i cache: unknown size 15268 L2 cache: unknown size 15269 NUMA node0 CPU(s): 0-5 15270 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 15271 15272 ### cpuinfo: 15273 15274 processor : 0 15275 BogoMIPS : 48.00 15276 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 15277 CPU implementer : 0x41 15278 CPU architecture: 8 15279 CPU variant : 0x0 15280 CPU part : 0xd03 15281 CPU revision : 4 15282 15283 processor : 1 15284 BogoMIPS : 48.00 15285 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 15286 CPU implementer : 0x41 15287 CPU architecture: 8 15288 CPU variant : 0x0 15289 CPU part : 0xd03 15290 CPU revision : 4 15291 15292 processor : 2 15293 BogoMIPS : 48.00 15294 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 15295 CPU implementer : 0x41 15296 CPU architecture: 8 15297 CPU variant : 0x0 15298 CPU part : 0xd09 15299 CPU revision : 2 15300 15301 processor : 3 15302 BogoMIPS : 48.00 15303 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 15304 CPU implementer : 0x41 15305 CPU architecture: 8 15306 CPU variant : 0x0 15307 CPU part : 0xd09 15308 CPU revision : 2 15309 15310 processor : 4 15311 BogoMIPS : 48.00 15312 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 15313 CPU implementer : 0x41 15314 CPU architecture: 8 15315 CPU variant : 0x0 15316 CPU part : 0xd09 15317 CPU revision : 2 15318 15319 processor : 5 15320 BogoMIPS : 48.00 15321 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 15322 CPU implementer : 0x41 15323 CPU architecture: 8 15324 CPU variant : 0x0 15325 CPU part : 0xd09 15326 CPU revision : 2 15327 15328 15329 ### meminfo: 15330 15331 MemTotal: 3719728 kB 15332 MemFree: 3366400 kB 15333 MemAvailable: 3320852 kB 15334 Buffers: 11572 kB 15335 Cached: 45948 kB 15336 SwapCached: 0 kB 15337 Active: 28244 kB 15338 Inactive: 219324 kB 15339 Active(anon): 100 kB 15340 Inactive(anon): 194856 kB 15341 Active(file): 28144 kB 15342 Inactive(file): 24468 kB 15343 Unevictable: 0 kB 15344 Mlocked: 0 kB 15345 SwapTotal: 1859860 kB 15346 SwapFree: 1859860 kB 15347 Dirty: 6120 kB 15348 Writeback: 0 kB 15349 AnonPages: 190120 kB 15350 Mapped: 13516 kB 15351 Shmem: 4896 kB 15352 KReclaimable: 13004 kB 15353 Slab: 40396 kB 15354 SReclaimable: 13004 kB 15355 SUnreclaim: 27392 kB 15356 KernelStack: 2496 kB 15357 PageTables: 6292 kB 15358 NFS_Unstable: 0 kB 15359 Bounce: 0 kB 15360 WritebackTmp: 0 kB 15361 CommitLimit: 3719724 kB 15362 Committed_AS: 4239092 kB 15363 VmallocTotal: 135290159040 kB 15364 VmallocUsed: 33168 kB 15365 VmallocChunk: 0 kB 15366 Percpu: 1368 kB 15367 HardwareCorrupted: 0 kB 15368 AnonHugePages: 0 kB 15369 ShmemHugePages: 0 kB 15370 ShmemPmdMapped: 0 kB 15371 FileHugePages: 0 kB 15372 FilePmdMapped: 0 kB 15373 CmaTotal: 917504 kB 15374 CmaFree: 909824 kB 15375 HugePages_Total: 0 15376 HugePages_Free: 0 15377 HugePages_Rsvd: 0 15378 HugePages_Surp: 0 15379 Hugepagesize: 2048 kB 15380 Hugetlb: 0 kB 15381 15382 ### virtual memory: 15383 15384 vm.admin_reserve_kbytes = 8192 15385 vm.block_dump = 0 15386 vm.compaction_proactiveness = 20 15387 vm.compact_unevictable_allowed = 1 15388 vm.dirty_background_bytes = 0 15389 vm.dirty_background_ratio = 10 15390 vm.dirty_bytes = 0 15391 vm.dirty_expire_centisecs = 3000 15392 vm.dirty_ratio = 20 15393 vm.dirtytime_expire_seconds = 43200 15394 vm.dirty_writeback_centisecs = 500 15395 vm.extfrag_threshold = 500 15396 vm.hugetlb_shm_group = 0 15397 vm.laptop_mode = 0 15398 vm.legacy_va_layout = 0 15399 vm.lowmem_reserve_ratio = 256 256 32 0 15400 vm.max_map_count = 65530 15401 vm.memory_failure_early_kill = 0 15402 vm.memory_failure_recovery = 1 15403 vm.min_free_kbytes = 45056 15404 vm.min_slab_ratio = 5 15405 vm.min_unmapped_ratio = 1 15406 vm.mmap_min_addr = 4096 15407 vm.mmap_rnd_bits = 18 15408 vm.mmap_rnd_compat_bits = 11 15409 vm.nr_hugepages = 0 15410 vm.nr_hugepages_mempolicy = 0 15411 vm.nr_overcommit_hugepages = 0 15412 vm.numa_stat = 1 15413 vm.numa_zonelist_order = Node 15414 vm.oom_dump_tasks = 1 15415 vm.oom_kill_allocating_task = 0 15416 vm.overcommit_kbytes = 0 15417 vm.overcommit_memory = 0 15418 vm.overcommit_ratio = 50 15419 vm.page-cluster = 0 15420 vm.page_lock_unfairness = 5 15421 vm.panic_on_oom = 0 15422 vm.percpu_pagelist_fraction = 0 15423 vm.stat_interval = 1 15424 vm.swappiness = 100 15425 vm.user_reserve_kbytes = 115024 15426 vm.vfs_cache_pressure = 100 15427 vm.watermark_boost_factor = 15000 15428 vm.watermark_scale_factor = 10 15429 vm.zone_reclaim_mode = 0 15430 15431 ### ip addr: 15432 15433 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 15434 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 15435 inet XXX.XXX.0.1/8 scope host lo 15436 valid_lft forever preferred_lft forever 15437 inet6 ::1/128 scope host 15438 valid_lft forever preferred_lft forever 15439 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 15440 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 15441 15442 ### partitions: 15443 15444 major minor #blocks name 15445 15446 179 0 31464960 mmcblk0 15447 179 1 31146208 mmcblk0p1 15448 252 0 1859864 zram0 15449 252 1 51200 zram1 15450 15451 ### df: 15452 15453 udev 1.4G 0 1.4G 0% /dev 15454 tmpfs 364M 4.9M 359M 2% /run 15455 /dev/mmcblk0p1 30G 1.7G 28G 6% / 15456 tmpfs 1.8G 0 1.8G 0% /dev/shm 15457 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 15458 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 15459 tmpfs 1.8G 0 1.8G 0% /tmp 15460 /dev/zram1 49M 6.2M 39M 14% /var/log 15461 15462 ### lsblk: 15463 15464 NAME FSTYPE SIZE MOUNTPOINT UUID 15465 mmcblk0 30G 15466 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 15467 zram1 50M /var/log 15468 15469 ### zramctl: 15470 15471 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 15472 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 15473 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 15474 15475 ### mtab: 15476 15477 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 15478 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 15479 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 15480 15481 ### mmc0:b368 info: 15482 15483 fwrev: 0x0 15484 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 15485 cid: 6f0303434241445310aa002b4d013b00 15486 rca: 0xb368 15487 csd: 400e005a5b590000f00e7f800a404000 15488 manfid: 0x00006f 15489 ocr: 0x00200000 15490 preferred_erase_size: 2097152 15491 type: SD 15492 hwrev: 0x1 15493 date: 11/2019 15494 dsr: 0x404 15495 erase_size: 512 15496 oemid: 0x0303 15497 serial: 0xaa002b4d 15498 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 15499 scr: 02b5800300000000 15500 name: CBADS 15501 15502 ### Boot system health: 15503 15504 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 15505 18:14:21: 1908/1992MHz 2.52 25% 12% 5% 0% 7% 0% 25.9°C 0/11 15506 18:14:21: 1908/1992MHz 2.52 70% 13% 4% 0% 50% 1% 25.0°C 0/11 15507 18:14:22: 1908/1992MHz 2.52 42% 2% 2% 0% 35% 1% 23.3°C 0/11 15508 18:14:22: 1908/1992MHz 2.52 52% 2% 3% 0% 44% 1% 23.5°C 0/11 15509 18:14:22: 1908/1992MHz 2.52 68% 10% 10% 0% 45% 1% 24.4°C 0/11 15510 15511 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 15512 15513 ### Activated Armbian ramlog partition with zstd compression 15514 15515 Mon 15 Feb 2021 06:28:43 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 15516 15517 ### dmesg: 15518 15519 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 15520 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 15521 [ 0.000000] Machine model: Hardkernel ODROID-N2 15522 [ 0.000000] efi: UEFI not found. 15523 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 15524 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 15525 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 15526 [ 0.000000] NUMA: No NUMA configuration found 15527 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 15528 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 15529 [ 0.000000] Zone ranges: 15530 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 15531 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 15532 [ 0.000000] Normal empty 15533 [ 0.000000] Movable zone start for each node 15534 [ 0.000000] Early memory node ranges 15535 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 15536 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 15537 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 15538 [ 0.000000] On node 0 totalpages: 972032 15539 [ 0.000000] DMA zone: 4096 pages used for memmap 15540 [ 0.000000] DMA zone: 0 pages reserved 15541 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 15542 [ 0.000000] DMA32 zone: 11104 pages used for memmap 15543 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 15544 [ 0.000000] psci: probing for conduit method from DT. 15545 [ 0.000000] psci: PSCIv1.0 detected in firmware. 15546 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 15547 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 15548 [ 0.000000] psci: SMC Calling Convention v1.1 15549 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 15550 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 15551 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 15552 [ 0.000000] Detected VIPT I-cache on CPU0 15553 [ 0.000000] CPU features: detected: ARM erratum 845719 15554 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 15555 [ 0.000000] Policy zone: DMA32 15556 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 15557 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 15558 Please use sysfs to set IO scheduler for individual devices. 15559 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 15560 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 15561 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 15562 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 15563 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 15564 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 15565 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 15566 [ 0.000000] rcu: RCU event tracing is enabled. 15567 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 15568 [ 0.000000] Trampoline variant of Tasks RCU enabled. 15569 [ 0.000000] Rude variant of Tasks RCU enabled. 15570 [ 0.000000] Tracing variant of Tasks RCU enabled. 15571 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 15572 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 15573 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 15574 [ 0.000000] GIC: Using split EOI/Deactivate mode 15575 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 15576 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 15577 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 15578 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 15579 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 15580 [ 0.000238] Console: colour dummy device 80x25 15581 [ 0.000272] printk: console [tty1] enabled 15582 [ 0.000357] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 15583 [ 0.000369] pid_max: default: 32768 minimum: 301 15584 [ 0.000453] LSM: Security Framework initializing 15585 [ 0.000479] Yama: becoming mindful. 15586 [ 0.000571] AppArmor: AppArmor initialized 15587 [ 0.000620] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 15588 [ 0.000639] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 15589 [ 0.002629] rcu: Hierarchical SRCU implementation. 15590 [ 0.004995] EFI services will not be available. 15591 [ 0.005416] smp: Bringing up secondary CPUs ... 15592 [ 0.006088] Detected VIPT I-cache on CPU1 15593 [ 0.006149] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 15594 [ 0.007344] CPU features: detected: ARM erratum 858921 15595 [ 0.007352] CPU features: detected: Spectre-v2 15596 [ 0.007356] CPU features: detected: Spectre-v4 15597 [ 0.007363] Detected VIPT I-cache on CPU2 15598 [ 0.007387] arch_timer: Enabling local workaround for ARM erratum 858921 15599 [ 0.007401] arch_timer: CPU2: Trapping CNTVCT access 15600 [ 0.007414] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 15601 [ 0.008122] Detected VIPT I-cache on CPU3 15602 [ 0.008138] arch_timer: Enabling local workaround for ARM erratum 858921 15603 [ 0.008145] arch_timer: CPU3: Trapping CNTVCT access 15604 [ 0.008153] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 15605 [ 0.008780] Detected VIPT I-cache on CPU4 15606 [ 0.008796] arch_timer: Enabling local workaround for ARM erratum 858921 15607 [ 0.008803] arch_timer: CPU4: Trapping CNTVCT access 15608 [ 0.008811] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 15609 [ 0.009427] Detected VIPT I-cache on CPU5 15610 [ 0.009443] arch_timer: Enabling local workaround for ARM erratum 858921 15611 [ 0.009450] arch_timer: CPU5: Trapping CNTVCT access 15612 [ 0.009457] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 15613 [ 0.009538] smp: Brought up 1 node, 6 CPUs 15614 [ 0.009556] SMP: Total of 6 processors activated. 15615 [ 0.009563] CPU features: detected: 32-bit EL0 Support 15616 [ 0.009569] CPU features: detected: CRC32 instructions 15617 [ 0.009575] CPU features: detected: 32-bit EL1 Support 15618 [ 0.020848] CPU: All CPU(s) started at EL2 15619 [ 0.020899] alternatives: patching kernel code 15620 [ 0.022843] devtmpfs: initialized 15621 [ 0.030521] Registered cp15_barrier emulation handler 15622 [ 0.030535] Registered setend emulation handler 15623 [ 0.030669] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 15624 [ 0.030707] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 15625 [ 0.044621] pinctrl core: initialized pinctrl subsystem 15626 [ 0.045355] DMI not present or invalid. 15627 [ 0.045719] NET: Registered protocol family 16 15628 [ 0.047265] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 15629 [ 0.047555] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 15630 [ 0.047781] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 15631 [ 0.047827] audit: initializing netlink subsys (disabled) 15632 [ 0.047951] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 15633 [ 0.049252] thermal_sys: Registered thermal governor 'fair_share' 15634 [ 0.049260] thermal_sys: Registered thermal governor 'bang_bang' 15635 [ 0.049264] thermal_sys: Registered thermal governor 'step_wise' 15636 [ 0.049268] thermal_sys: Registered thermal governor 'user_space' 15637 [ 0.049702] cpuidle: using governor menu 15638 [ 0.050050] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 15639 [ 0.050168] ASID allocator initialised with 65536 entries 15640 [ 0.051090] Serial: AMBA PL011 UART driver 15641 [ 0.085483] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 15642 [ 0.085492] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 15643 [ 0.085497] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 15644 [ 0.085501] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 15645 [ 0.087257] cryptd: max_cpu_qlen set to 1000 15646 [ 0.156138] raid6: neonx8 gen() 2781 MB/s 15647 [ 0.224208] raid6: neonx8 xor() 2041 MB/s 15648 [ 0.292263] raid6: neonx4 gen() 3153 MB/s 15649 [ 0.360327] raid6: neonx4 xor() 2399 MB/s 15650 [ 0.428396] raid6: neonx2 gen() 2564 MB/s 15651 [ 0.496463] raid6: neonx2 xor() 2194 MB/s 15652 [ 0.564531] raid6: neonx1 gen() 2074 MB/s 15653 [ 0.632601] raid6: neonx1 xor() 1727 MB/s 15654 [ 0.700662] raid6: int64x8 gen() 1374 MB/s 15655 [ 0.768728] raid6: int64x8 xor() 735 MB/s 15656 [ 0.836816] raid6: int64x4 gen() 1463 MB/s 15657 [ 0.904872] raid6: int64x4 xor() 733 MB/s 15658 [ 0.972942] raid6: int64x2 gen() 1363 MB/s 15659 [ 1.041009] raid6: int64x2 xor() 619 MB/s 15660 [ 1.109064] raid6: int64x1 gen() 1120 MB/s 15661 [ 1.177134] raid6: int64x1 xor() 462 MB/s 15662 [ 1.177138] raid6: using algorithm neonx4 gen() 3153 MB/s 15663 [ 1.177141] raid6: .... xor() 2399 MB/s, rmw enabled 15664 [ 1.177144] raid6: using neon recovery algorithm 15665 [ 1.177603] ACPI: Interpreter disabled. 15666 [ 1.178381] 5V: supplied by 12V 15667 [ 1.179279] VDDAO_3V3: supplied by 12V 15668 [ 1.179798] iommu: Default domain type: Translated 15669 [ 1.179911] vgaarb: loaded 15670 [ 1.180624] SCSI subsystem initialized 15671 [ 1.180869] usbcore: registered new interface driver usbfs 15672 [ 1.180913] usbcore: registered new interface driver hub 15673 [ 1.180955] usbcore: registered new device driver usb 15674 [ 1.181222] pps_core: LinuxPPS API ver. 1 registered 15675 [ 1.181226] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 15676 [ 1.181245] PTP clock support registered 15677 [ 1.181444] EDAC MC: Ver: 3.0.0 15678 [ 1.182839] NetLabel: Initializing 15679 [ 1.182846] NetLabel: domain hash size = 128 15680 [ 1.182848] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 15681 [ 1.182890] NetLabel: unlabeled traffic allowed by default 15682 [ 1.183354] clocksource: Switched to clocksource arch_sys_counter 15683 [ 1.183562] VFS: Disk quotas dquot_6.6.0 15684 [ 1.183606] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 15685 [ 1.183968] AppArmor: AppArmor Filesystem Enabled 15686 [ 1.184017] pnp: PnP ACPI: disabled 15687 [ 1.189459] NET: Registered protocol family 2 15688 [ 1.189906] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 15689 [ 1.190012] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 15690 [ 1.190269] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 15691 [ 1.190455] TCP: Hash tables configured (established 32768 bind 32768) 15692 [ 1.190605] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 15693 [ 1.190668] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 15694 [ 1.190715] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 15695 [ 1.190864] NET: Registered protocol family 1 15696 [ 1.190884] PCI: CLS 0 bytes, default 64 15697 [ 1.191011] Trying to unpack rootfs image as initramfs... 15698 [ 1.727995] Freeing initrd memory: 13544K 15699 [ 1.728903] kvm [1]: IPA Size Limit: 40 bits 15700 [ 1.729608] kvm [1]: vgic interrupt IRQ9 15701 [ 1.729742] kvm [1]: Hyp mode initialized successfully 15702 [ 1.734671] Initialise system trusted keyrings 15703 [ 1.734703] Key type blacklist registered 15704 [ 1.734814] workingset: timestamp_bits=44 max_order=20 bucket_order=0 15705 [ 1.737995] zbud: loaded 15706 [ 1.738958] squashfs: version 4.0 (2009/01/31) Phillip Lougher 15707 [ 1.739419] fuse: init (API version 7.32) 15708 [ 1.740189] integrity: Platform Keyring initialized 15709 [ 1.768142] xor: measuring software checksum speed 15710 [ 1.770982] 8regs : 3473 MB/sec 15711 [ 1.773442] 32regs : 4021 MB/sec 15712 [ 1.776096] arm64_neon : 3719 MB/sec 15713 [ 1.776099] xor: using function: 32regs (4021 MB/sec) 15714 [ 1.776107] Key type asymmetric registered 15715 [ 1.776110] Asymmetric key parser 'x509' registered 15716 [ 1.776144] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 15717 [ 1.776232] io scheduler mq-deadline registered 15718 [ 1.776236] io scheduler kyber registered 15719 [ 1.776328] io scheduler bfq registered 15720 [ 1.778803] gpio-447 (usb-hub-reset): hogged as output/high 15721 [ 1.781707] EINJ: ACPI disabled. 15722 [ 1.787875] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 15723 [ 1.789315] VCC_3V3: supplied by VDDAO_3V3 15724 [ 1.789362] FLASH_1V8: supplied by VCC_3V3 15725 [ 1.789395] VCC_1V8: supplied by VCC_3V3 15726 [ 1.789422] VDDAO_1V8: supplied by VDDAO_3V3 15727 [ 1.789449] VDDCPU_A: supplied by regulator-dummy 15728 [ 1.789808] VDDCPU_B: supplied by regulator-dummy 15729 [ 1.790473] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 15730 [ 1.792729] Serial: AMBA driver 15731 [ 1.793014] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 15732 [ 1.793109] printk: console [ttyAML0] enabled 15733 [ 1.793632] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 15734 [ 1.799028] loop: module loaded 15735 [ 1.801107] libphy: Fixed MDIO Bus: probed 15736 [ 1.802095] tun: Universal TUN/TAP device driver, 1.6 15737 [ 1.802733] thunder_xcv, ver 1.0 15738 [ 1.802768] thunder_bgx, ver 1.0 15739 [ 1.802796] nicpf, ver 1.0 15740 [ 1.803235] e1000e: Intel(R) PRO/1000 Network Driver 15741 [ 1.803239] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 15742 [ 1.803278] igb: Intel(R) Gigabit Ethernet Network Driver 15743 [ 1.803281] igb: Copyright (c) 2007-2014 Intel Corporation. 15744 [ 1.803312] igbvf: Intel(R) Gigabit Virtual Function Network Driver 15745 [ 1.803315] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 15746 [ 1.803531] sky2: driver version 1.30 15747 [ 1.803898] VFIO - User Level meta-driver version: 0.3 15748 [ 1.805206] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 15749 [ 1.805224] ehci-pci: EHCI PCI platform driver 15750 [ 1.805253] ehci-platform: EHCI generic platform driver 15751 [ 1.805372] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 15752 [ 1.805382] ohci-pci: OHCI PCI platform driver 15753 [ 1.805415] ohci-platform: OHCI generic platform driver 15754 [ 1.805785] usbcore: registered new interface driver usb-storage 15755 [ 1.806964] mousedev: PS/2 mouse device common for all mice 15756 [ 1.807287] i2c /dev entries driver 15757 [ 1.812336] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 15758 [ 1.813009] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 15759 [ 1.813688] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 15760 [ 1.814271] sdhci: Secure Digital Host Controller Interface driver 15761 [ 1.814277] sdhci: Copyright(c) Pierre Ossman 15762 [ 1.814376] Synopsys Designware Multimedia Card Interface Driver 15763 [ 1.814789] sdhci-pltfm: SDHCI platform and OF driver helper 15764 [ 1.815227] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 15765 [ 1.815748] ledtrig-cpu: registered to indicate activity on CPUs 15766 [ 1.816312] meson-sm: secure-monitor enabled 15767 [ 1.816508] hid: raw HID events driver (C) Jiri Kosina 15768 [ 1.816584] usbcore: registered new interface driver usbhid 15769 [ 1.816587] usbhid: USB HID core driver 15770 [ 1.817569] NET: Registered protocol family 10 15771 [ 1.818027] Segment Routing with IPv6 15772 [ 1.818057] NET: Registered protocol family 17 15773 [ 1.818096] 8021q: 802.1Q VLAN Support v1.8 15774 [ 1.818118] Key type dns_resolver registered 15775 [ 1.818415] registered taskstats version 1 15776 [ 1.818422] Loading compiled-in X.509 certificates 15777 [ 1.820113] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 15778 [ 1.821675] zswap: loaded using pool zstd/z3fold 15779 [ 1.821835] Key type ._fscrypt registered 15780 [ 1.821838] Key type .fscrypt registered 15781 [ 1.821840] Key type fscrypt-provisioning registered 15782 [ 1.822928] Btrfs loaded, crc32c=crc32c-generic 15783 [ 1.829154] Key type encrypted registered 15784 [ 1.829164] AppArmor: AppArmor sha1 policy hashing enabled 15785 [ 1.835486] HUB_5V: supplied by 5V 15786 [ 1.835693] USB_PWR_EN: supplied by 5V 15787 [ 1.837313] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 15788 [ 1.837320] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 15789 [ 1.840014] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 15790 [ 1.840067] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 15791 [ 1.840450] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 15792 [ 1.841022] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 15793 [ 1.841033] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 15794 [ 1.841121] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 15795 [ 1.841143] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 15796 [ 1.841270] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 15797 [ 1.841273] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 15798 [ 1.841276] usb usb1: Product: xHCI Host Controller 15799 [ 1.841278] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 15800 [ 1.841281] usb usb1: SerialNumber: xhci-hcd.0.auto 15801 [ 1.841550] hub 1-0:1.0: USB hub found 15802 [ 1.841564] hub 1-0:1.0: 2 ports detected 15803 [ 1.841696] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 15804 [ 1.841703] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 15805 [ 1.841708] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 15806 [ 1.841728] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 15807 [ 1.841761] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 15808 [ 1.841764] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 15809 [ 1.841767] usb usb2: Product: xHCI Host Controller 15810 [ 1.841769] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 15811 [ 1.841771] usb usb2: SerialNumber: xhci-hcd.0.auto 15812 [ 1.841918] hub 2-0:1.0: USB hub found 15813 [ 1.841930] hub 2-0:1.0: 1 port detected 15814 [ 1.842180] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 15815 [ 1.843042] meson-gx-mmc ffe05000.sd: Got CD GPIO 15816 [ 1.868403] Freeing unused kernel memory: 3328K 15817 [ 1.907466] Run /init as init process 15818 [ 1.907471] with arguments: 15819 [ 1.907473] /init 15820 [ 1.907475] with environment: 15821 [ 1.907477] HOME=/ 15822 [ 1.907479] TERM=linux 15823 [ 1.907481] hdmimode=custombuilt 15824 [ 1.907482] cvbsmode=576cvbs 15825 [ 1.907484] max_freq_a53=1896 15826 [ 1.907485] max_freq_a73=1800 15827 [ 1.907487] voutmode=hdmi 15828 [ 1.907488] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 15829 [ 1.907490] disablehpd=false 15830 [ 1.907492] cvbscable= 15831 [ 1.907493] overscan=100 15832 [ 1.933495] mmc0: new ultra high speed SDR25 SDHC card at address b368 15833 [ 1.934370] mmcblk0: mmc0:b368 CBADS 30.0 GiB 15834 [ 1.936322] mmcblk0: p1 15835 [ 2.060909] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 15836 [ 2.060916] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 15837 [ 2.061004] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 15838 [ 2.061407] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 15839 [ 2.061415] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 15840 [ 2.061418] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 15841 [ 2.061420] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 15842 [ 2.061422] meson8b-dwmac ff3f0000.ethernet: COE Type 2 15843 [ 2.061424] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 15844 [ 2.061426] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 15845 [ 2.061466] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 15846 [ 2.061469] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 15847 [ 2.061471] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 15848 [ 2.061649] libphy: stmmac: probed 15849 [ 2.065961] libphy: mdio_mux: probed 15850 [ 2.080648] meson-vrtc ff8000a8.rtc: registered as rtc1 15851 [ 2.098210] random: fast init done 15852 [ 2.098626] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 15853 [ 2.098755] rtc-pcf8563 1-0051: registered as rtc0 15854 [ 2.099965] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 15855 [ 2.099972] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 15856 [ 2.175494] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 15857 [ 2.200099] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 15858 [ 2.200106] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 15859 [ 2.200110] usb 2-1: Product: USB3.1 Hub 15860 [ 2.200113] usb 2-1: Manufacturer: GenesysLogic 15861 [ 2.226026] hub 2-1:1.0: USB hub found 15862 [ 2.226324] hub 2-1:1.0: 4 ports detected 15863 [ 2.271815] libphy: mdio_mux: probed 15864 [ 2.323360] usb 1-1: new high-speed USB device number 2 using xhci-hcd 15865 [ 2.473652] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 15866 [ 2.473656] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 15867 [ 2.473659] usb 1-1: Product: USB2.1 Hub 15868 [ 2.473661] usb 1-1: Manufacturer: GenesysLogic 15869 [ 2.513933] hub 1-1:1.0: USB hub found 15870 [ 2.514176] hub 1-1:1.0: 4 ports detected 15871 [ 2.987877] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 15872 [ 3.796408] systemd[1]: System time before build time, advancing clock. 15873 [ 3.811226] systemd[1]: Inserted module 'autofs4' 15874 [ 3.857755] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 15875 [ 3.857970] systemd[1]: Detected architecture arm64. 15876 [ 3.885724] systemd[1]: Set hostname to <odroidn2>. 15877 [ 4.213145] random: systemd: uninitialized urandom read (16 bytes read) 15878 [ 4.216463] random: systemd: uninitialized urandom read (16 bytes read) 15879 [ 4.216694] systemd[1]: Listening on Syslog Socket. 15880 [ 4.217040] random: systemd: uninitialized urandom read (16 bytes read) 15881 [ 4.217225] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 15882 [ 4.217424] systemd[1]: Listening on initctl Compatibility Named Pipe. 15883 [ 4.217567] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 15884 [ 4.218458] systemd[1]: Created slice User and Session Slice. 15885 [ 4.218565] systemd[1]: Reached target Remote File Systems. 15886 [ 4.218863] systemd[1]: Listening on udev Control Socket. 15887 [ 4.312924] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 15888 [ 4.848369] pwm-gpio pwmgpio: 1 gpio pwms loaded 15889 [ 4.853178] zram: Added device: zram0 15890 [ 4.853487] zram: Added device: zram1 15891 [ 4.853717] zram: Added device: zram2 15892 [ 4.988860] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 15893 [ 5.007185] mc: Linux media interface: v0.10 15894 [ 5.032661] panfrost ffe40000.gpu: clock rate = 24000000 15895 [ 5.032718] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 15896 [ 5.033280] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 15897 [ 5.033285] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 15898 [ 5.033289] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 15899 [ 5.033292] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 15900 [ 5.058400] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 15901 [ 5.063408] Registered IR keymap rc-odroid 15902 [ 5.084643] videodev: Linux video capture interface: v2.00 15903 [ 5.098240] IR NEC protocol handler initialized 15904 [ 5.123429] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 15905 [ 5.123552] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 15906 [ 5.123609] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 15907 [ 5.124681] meson-ir ff808000.ir: receiver initialized 15908 [ 5.142709] meson-drm ff900000.vpu: Queued 2 outputs on vpu 15909 [ 5.205599] meson-drm ff900000.vpu: CVBS Output connector not available 15910 [ 5.231683] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 15911 [ 5.235577] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 15912 [ 5.236150] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 15913 [ 5.237224] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 15914 [ 5.254280] zram0: detected capacity change from 0 to 1904500736 15915 [ 5.280006] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 15916 [ 5.519513] Console: switching to colour frame buffer device 240x67 15917 [ 5.546051] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 15918 [ 5.596715] axg-sound-card sound: ASoC: no DMI vendor name! 15919 [ 6.303376] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 15920 [ 6.368364] zram1: detected capacity change from 0 to 52428800 15921 [ 8.453358] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 15922 [ 8.453378] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 15923 [ 9.613763] systemd[1]: Started Armbian memory supported logging. 15924 [ 9.616134] systemd[1]: Starting Journal Service... 15925 [ 9.677638] systemd[1]: Started Journal Service. 15926 [ 9.702801] systemd-journald[1837]: Received request to flush runtime journal from PID 1 15927 15928 ### armbian-release: 15929 15930 # PLEASE DO NOT EDIT THIS FILE 15931 BOARD=odroidn2 15932 BOARD_NAME="Odroid N2" 15933 BOARDFAMILY=meson-g12b 15934 BUILD_REPOSITORY_URL=https://github.com/armbian/build 15935 BUILD_REPOSITORY_COMMIT=5f03d652 15936 DISTRIBUTION_CODENAME=buster 15937 DISTRIBUTION_STATUS=supported 15938 VERSION=21.02.1 15939 LINUXFAMILY=meson64 15940 BRANCH=current 15941 ARCH=arm64 15942 IMAGE_TYPE=stable 15943 BOARD_TYPE=conf 15944 INITRD_ARCH=arm64 15945 KERNEL_IMAGE_TYPE=Image 15946 15947 ### boot environment: 15948 15949 verbosity=1 15950 console=both 15951 overlay_prefix=meson 15952 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 15953 rootfstype=ext4 15954 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 15955 15956 ### lsusb: 15957 15958 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 15959 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 15960 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 15961 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 15962 15963 ### lscpu: 15964 15965 Architecture: aarch64 15966 Byte Order: Little Endian 15967 CPU(s): 6 15968 On-line CPU(s) list: 0-5 15969 Thread(s) per core: 1 15970 Core(s) per socket: 3 15971 Socket(s): 2 15972 NUMA node(s): 1 15973 Vendor ID: ARM 15974 Model: 4 15975 Model name: Cortex-A53 15976 Stepping: r0p4 15977 CPU max MHz: 1992.0000 15978 CPU min MHz: 100.0000 15979 BogoMIPS: 48.00 15980 L1d cache: unknown size 15981 L1i cache: unknown size 15982 L2 cache: unknown size 15983 NUMA node0 CPU(s): 0-5 15984 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 15985 15986 ### cpuinfo: 15987 15988 processor : 0 15989 BogoMIPS : 48.00 15990 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 15991 CPU implementer : 0x41 15992 CPU architecture: 8 15993 CPU variant : 0x0 15994 CPU part : 0xd03 15995 CPU revision : 4 15996 15997 processor : 1 15998 BogoMIPS : 48.00 15999 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16000 CPU implementer : 0x41 16001 CPU architecture: 8 16002 CPU variant : 0x0 16003 CPU part : 0xd03 16004 CPU revision : 4 16005 16006 processor : 2 16007 BogoMIPS : 48.00 16008 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16009 CPU implementer : 0x41 16010 CPU architecture: 8 16011 CPU variant : 0x0 16012 CPU part : 0xd09 16013 CPU revision : 2 16014 16015 processor : 3 16016 BogoMIPS : 48.00 16017 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16018 CPU implementer : 0x41 16019 CPU architecture: 8 16020 CPU variant : 0x0 16021 CPU part : 0xd09 16022 CPU revision : 2 16023 16024 processor : 4 16025 BogoMIPS : 48.00 16026 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16027 CPU implementer : 0x41 16028 CPU architecture: 8 16029 CPU variant : 0x0 16030 CPU part : 0xd09 16031 CPU revision : 2 16032 16033 processor : 5 16034 BogoMIPS : 48.00 16035 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16036 CPU implementer : 0x41 16037 CPU architecture: 8 16038 CPU variant : 0x0 16039 CPU part : 0xd09 16040 CPU revision : 2 16041 16042 16043 ### meminfo: 16044 16045 MemTotal: 3719728 kB 16046 MemFree: 3427184 kB 16047 MemAvailable: 3381812 kB 16048 Buffers: 11548 kB 16049 Cached: 45852 kB 16050 SwapCached: 0 kB 16051 Active: 30948 kB 16052 Inactive: 154300 kB 16053 Active(anon): 136 kB 16054 Inactive(anon): 132528 kB 16055 Active(file): 30812 kB 16056 Inactive(file): 21772 kB 16057 Unevictable: 0 kB 16058 Mlocked: 0 kB 16059 SwapTotal: 1859860 kB 16060 SwapFree: 1859860 kB 16061 Dirty: 6652 kB 16062 Writeback: 0 kB 16063 AnonPages: 128000 kB 16064 Mapped: 10932 kB 16065 Shmem: 4964 kB 16066 KReclaimable: 13388 kB 16067 Slab: 39348 kB 16068 SReclaimable: 13388 kB 16069 SUnreclaim: 25960 kB 16070 KernelStack: 2016 kB 16071 PageTables: 4032 kB 16072 NFS_Unstable: 0 kB 16073 Bounce: 0 kB 16074 WritebackTmp: 0 kB 16075 CommitLimit: 3719724 kB 16076 Committed_AS: 4210540 kB 16077 VmallocTotal: 135290159040 kB 16078 VmallocUsed: 30864 kB 16079 VmallocChunk: 0 kB 16080 Percpu: 1368 kB 16081 HardwareCorrupted: 0 kB 16082 AnonHugePages: 0 kB 16083 ShmemHugePages: 0 kB 16084 ShmemPmdMapped: 0 kB 16085 FileHugePages: 0 kB 16086 FilePmdMapped: 0 kB 16087 CmaTotal: 917504 kB 16088 CmaFree: 901724 kB 16089 HugePages_Total: 0 16090 HugePages_Free: 0 16091 HugePages_Rsvd: 0 16092 HugePages_Surp: 0 16093 Hugepagesize: 2048 kB 16094 Hugetlb: 0 kB 16095 16096 ### virtual memory: 16097 16098 vm.admin_reserve_kbytes = 8192 16099 vm.block_dump = 0 16100 vm.compaction_proactiveness = 20 16101 vm.compact_unevictable_allowed = 1 16102 vm.dirty_background_bytes = 0 16103 vm.dirty_background_ratio = 10 16104 vm.dirty_bytes = 0 16105 vm.dirty_expire_centisecs = 3000 16106 vm.dirty_ratio = 20 16107 vm.dirtytime_expire_seconds = 43200 16108 vm.dirty_writeback_centisecs = 500 16109 vm.extfrag_threshold = 500 16110 vm.hugetlb_shm_group = 0 16111 vm.laptop_mode = 0 16112 vm.legacy_va_layout = 0 16113 vm.lowmem_reserve_ratio = 256 256 32 0 16114 vm.max_map_count = 65530 16115 vm.memory_failure_early_kill = 0 16116 vm.memory_failure_recovery = 1 16117 vm.min_free_kbytes = 45056 16118 vm.min_slab_ratio = 5 16119 vm.min_unmapped_ratio = 1 16120 vm.mmap_min_addr = 4096 16121 vm.mmap_rnd_bits = 18 16122 vm.mmap_rnd_compat_bits = 11 16123 vm.nr_hugepages = 0 16124 vm.nr_hugepages_mempolicy = 0 16125 vm.nr_overcommit_hugepages = 0 16126 vm.numa_stat = 1 16127 vm.numa_zonelist_order = Node 16128 vm.oom_dump_tasks = 1 16129 vm.oom_kill_allocating_task = 0 16130 vm.overcommit_kbytes = 0 16131 vm.overcommit_memory = 0 16132 vm.overcommit_ratio = 50 16133 vm.page-cluster = 0 16134 vm.page_lock_unfairness = 5 16135 vm.panic_on_oom = 0 16136 vm.percpu_pagelist_fraction = 0 16137 vm.stat_interval = 1 16138 vm.swappiness = 100 16139 vm.user_reserve_kbytes = 115005 16140 vm.vfs_cache_pressure = 100 16141 vm.watermark_boost_factor = 15000 16142 vm.watermark_scale_factor = 10 16143 vm.zone_reclaim_mode = 0 16144 16145 ### ip addr: 16146 16147 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 16148 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 16149 inet XXX.XXX.0.1/8 scope host lo 16150 valid_lft forever preferred_lft forever 16151 inet6 ::1/128 scope host 16152 valid_lft forever preferred_lft forever 16153 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 16154 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 16155 16156 ### partitions: 16157 16158 major minor #blocks name 16159 16160 179 0 31464960 mmcblk0 16161 179 1 31146208 mmcblk0p1 16162 252 0 1859864 zram0 16163 252 1 51200 zram1 16164 16165 ### df: 16166 16167 udev 1.4G 0 1.4G 0% /dev 16168 tmpfs 364M 4.9M 359M 2% /run 16169 /dev/mmcblk0p1 30G 1.7G 28G 6% / 16170 tmpfs 1.8G 0 1.8G 0% /dev/shm 16171 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 16172 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 16173 tmpfs 1.8G 0 1.8G 0% /tmp 16174 /dev/zram1 49M 6.5M 39M 15% /var/log 16175 16176 ### lsblk: 16177 16178 NAME FSTYPE SIZE MOUNTPOINT UUID 16179 mmcblk0 30G 16180 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 16181 zram1 50M /var/log 16182 16183 ### zramctl: 16184 16185 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 16186 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 16187 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 16188 16189 ### mtab: 16190 16191 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 16192 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 16193 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 16194 16195 ### mmc0:b368 info: 16196 16197 fwrev: 0x0 16198 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 16199 cid: 6f0303434241445310aa002b4d013b00 16200 rca: 0xb368 16201 csd: 400e005a5b590000f00e7f800a404000 16202 manfid: 0x00006f 16203 ocr: 0x00200000 16204 preferred_erase_size: 2097152 16205 type: SD 16206 hwrev: 0x1 16207 date: 11/2019 16208 dsr: 0x404 16209 erase_size: 512 16210 oemid: 0x0303 16211 serial: 0xaa002b4d 16212 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 16213 scr: 02b5800300000000 16214 name: CBADS 16215 16216 ### Boot system health: 16217 16218 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 16219 18:28:44: 1908/1992MHz 2.75 23% 10% 5% 0% 6% 0% 25.7°C 0/11 16220 18:28:44: 1908/1992MHz 2.75 61% 36% 8% 0% 14% 0% 25.6°C 0/11 16221 18:28:44: 1908/1992MHz 2.75 84% 31% 2% 0% 47% 1% 23.4°C 0/11 16222 18:28:45: 1908/1992MHz 2.75 38% 5% 4% 0% 25% 1% 23.2°C 0/11 16223 18:28:45: 1908/1992MHz 2.75 57% 7% 5% 0% 41% 1% 22.1°C 0/11 16224 16225 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 16226 16227 ### Activated Armbian ramlog partition with zstd compression 16228 16229 Sun 21 Feb 2021 02:44:20 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 16230 16231 ### dmesg: 16232 16233 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 16234 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 16235 [ 0.000000] Machine model: Hardkernel ODROID-N2 16236 [ 0.000000] efi: UEFI not found. 16237 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 16238 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 16239 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 16240 [ 0.000000] NUMA: No NUMA configuration found 16241 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 16242 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 16243 [ 0.000000] Zone ranges: 16244 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 16245 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 16246 [ 0.000000] Normal empty 16247 [ 0.000000] Movable zone start for each node 16248 [ 0.000000] Early memory node ranges 16249 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 16250 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 16251 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 16252 [ 0.000000] On node 0 totalpages: 972032 16253 [ 0.000000] DMA zone: 4096 pages used for memmap 16254 [ 0.000000] DMA zone: 0 pages reserved 16255 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 16256 [ 0.000000] DMA32 zone: 11104 pages used for memmap 16257 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 16258 [ 0.000000] psci: probing for conduit method from DT. 16259 [ 0.000000] psci: PSCIv1.0 detected in firmware. 16260 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 16261 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 16262 [ 0.000000] psci: SMC Calling Convention v1.1 16263 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 16264 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 16265 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 16266 [ 0.000000] Detected VIPT I-cache on CPU0 16267 [ 0.000000] CPU features: detected: ARM erratum 845719 16268 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 16269 [ 0.000000] Policy zone: DMA32 16270 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 16271 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 16272 Please use sysfs to set IO scheduler for individual devices. 16273 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 16274 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 16275 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 16276 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 16277 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 16278 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 16279 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 16280 [ 0.000000] rcu: RCU event tracing is enabled. 16281 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 16282 [ 0.000000] Trampoline variant of Tasks RCU enabled. 16283 [ 0.000000] Rude variant of Tasks RCU enabled. 16284 [ 0.000000] Tracing variant of Tasks RCU enabled. 16285 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 16286 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 16287 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 16288 [ 0.000000] GIC: Using split EOI/Deactivate mode 16289 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 16290 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 16291 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 16292 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 16293 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 16294 [ 0.000241] Console: colour dummy device 80x25 16295 [ 0.000275] printk: console [tty1] enabled 16296 [ 0.000363] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 16297 [ 0.000374] pid_max: default: 32768 minimum: 301 16298 [ 0.000457] LSM: Security Framework initializing 16299 [ 0.000484] Yama: becoming mindful. 16300 [ 0.000575] AppArmor: AppArmor initialized 16301 [ 0.000625] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 16302 [ 0.000644] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 16303 [ 0.002641] rcu: Hierarchical SRCU implementation. 16304 [ 0.005014] EFI services will not be available. 16305 [ 0.005436] smp: Bringing up secondary CPUs ... 16306 [ 0.006103] Detected VIPT I-cache on CPU1 16307 [ 0.006164] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 16308 [ 0.007356] CPU features: detected: ARM erratum 858921 16309 [ 0.007364] CPU features: detected: Spectre-v2 16310 [ 0.007368] CPU features: detected: Spectre-v4 16311 [ 0.007375] Detected VIPT I-cache on CPU2 16312 [ 0.007401] arch_timer: Enabling local workaround for ARM erratum 858921 16313 [ 0.007414] arch_timer: CPU2: Trapping CNTVCT access 16314 [ 0.007427] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 16315 [ 0.008136] Detected VIPT I-cache on CPU3 16316 [ 0.008152] arch_timer: Enabling local workaround for ARM erratum 858921 16317 [ 0.008160] arch_timer: CPU3: Trapping CNTVCT access 16318 [ 0.008168] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 16319 [ 0.008794] Detected VIPT I-cache on CPU4 16320 [ 0.008811] arch_timer: Enabling local workaround for ARM erratum 858921 16321 [ 0.008817] arch_timer: CPU4: Trapping CNTVCT access 16322 [ 0.008825] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 16323 [ 0.009441] Detected VIPT I-cache on CPU5 16324 [ 0.009458] arch_timer: Enabling local workaround for ARM erratum 858921 16325 [ 0.009464] arch_timer: CPU5: Trapping CNTVCT access 16326 [ 0.009472] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 16327 [ 0.009553] smp: Brought up 1 node, 6 CPUs 16328 [ 0.009570] SMP: Total of 6 processors activated. 16329 [ 0.009578] CPU features: detected: 32-bit EL0 Support 16330 [ 0.009583] CPU features: detected: CRC32 instructions 16331 [ 0.009589] CPU features: detected: 32-bit EL1 Support 16332 [ 0.020876] CPU: All CPU(s) started at EL2 16333 [ 0.020925] alternatives: patching kernel code 16334 [ 0.022870] devtmpfs: initialized 16335 [ 0.030536] Registered cp15_barrier emulation handler 16336 [ 0.030550] Registered setend emulation handler 16337 [ 0.030687] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 16338 [ 0.030727] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 16339 [ 0.044673] pinctrl core: initialized pinctrl subsystem 16340 [ 0.045225] DMI not present or invalid. 16341 [ 0.045624] NET: Registered protocol family 16 16342 [ 0.047221] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 16343 [ 0.047495] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 16344 [ 0.047723] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 16345 [ 0.047768] audit: initializing netlink subsys (disabled) 16346 [ 0.047871] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 16347 [ 0.049157] thermal_sys: Registered thermal governor 'fair_share' 16348 [ 0.049164] thermal_sys: Registered thermal governor 'bang_bang' 16349 [ 0.049168] thermal_sys: Registered thermal governor 'step_wise' 16350 [ 0.049171] thermal_sys: Registered thermal governor 'user_space' 16351 [ 0.049583] cpuidle: using governor menu 16352 [ 0.049932] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 16353 [ 0.050055] ASID allocator initialised with 65536 entries 16354 [ 0.050979] Serial: AMBA PL011 UART driver 16355 [ 0.085445] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 16356 [ 0.085456] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 16357 [ 0.085460] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 16358 [ 0.085464] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 16359 [ 0.087000] cryptd: max_cpu_qlen set to 1000 16360 [ 0.156188] raid6: neonx8 gen() 2780 MB/s 16361 [ 0.224240] raid6: neonx8 xor() 2041 MB/s 16362 [ 0.292289] raid6: neonx4 gen() 3153 MB/s 16363 [ 0.360356] raid6: neonx4 xor() 2399 MB/s 16364 [ 0.428433] raid6: neonx2 gen() 2530 MB/s 16365 [ 0.496488] raid6: neonx2 xor() 2205 MB/s 16366 [ 0.564561] raid6: neonx1 gen() 2015 MB/s 16367 [ 0.632622] raid6: neonx1 xor() 1721 MB/s 16368 [ 0.700691] raid6: int64x8 gen() 1376 MB/s 16369 [ 0.768759] raid6: int64x8 xor() 735 MB/s 16370 [ 0.836837] raid6: int64x4 gen() 1463 MB/s 16371 [ 0.904897] raid6: int64x4 xor() 733 MB/s 16372 [ 0.972956] raid6: int64x2 gen() 1362 MB/s 16373 [ 1.041014] raid6: int64x2 xor() 619 MB/s 16374 [ 1.109096] raid6: int64x1 gen() 1120 MB/s 16375 [ 1.177156] raid6: int64x1 xor() 462 MB/s 16376 [ 1.177160] raid6: using algorithm neonx4 gen() 3153 MB/s 16377 [ 1.177163] raid6: .... xor() 2399 MB/s, rmw enabled 16378 [ 1.177167] raid6: using neon recovery algorithm 16379 [ 1.177614] ACPI: Interpreter disabled. 16380 [ 1.178405] 5V: supplied by 12V 16381 [ 1.179303] VDDAO_3V3: supplied by 12V 16382 [ 1.179751] iommu: Default domain type: Translated 16383 [ 1.179872] vgaarb: loaded 16384 [ 1.180565] SCSI subsystem initialized 16385 [ 1.180971] usbcore: registered new interface driver usbfs 16386 [ 1.181012] usbcore: registered new interface driver hub 16387 [ 1.181050] usbcore: registered new device driver usb 16388 [ 1.181370] pps_core: LinuxPPS API ver. 1 registered 16389 [ 1.181376] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 16390 [ 1.181402] PTP clock support registered 16391 [ 1.181590] EDAC MC: Ver: 3.0.0 16392 [ 1.182954] NetLabel: Initializing 16393 [ 1.182961] NetLabel: domain hash size = 128 16394 [ 1.182964] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 16395 [ 1.183004] NetLabel: unlabeled traffic allowed by default 16396 [ 1.183496] clocksource: Switched to clocksource arch_sys_counter 16397 [ 1.183712] VFS: Disk quotas dquot_6.6.0 16398 [ 1.183755] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 16399 [ 1.184162] AppArmor: AppArmor Filesystem Enabled 16400 [ 1.184208] pnp: PnP ACPI: disabled 16401 [ 1.189842] NET: Registered protocol family 2 16402 [ 1.190307] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 16403 [ 1.190412] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 16404 [ 1.190669] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 16405 [ 1.190857] TCP: Hash tables configured (established 32768 bind 32768) 16406 [ 1.191010] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 16407 [ 1.191074] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 16408 [ 1.191120] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 16409 [ 1.191258] NET: Registered protocol family 1 16410 [ 1.191277] PCI: CLS 0 bytes, default 64 16411 [ 1.191404] Trying to unpack rootfs image as initramfs... 16412 [ 1.727843] Freeing initrd memory: 13544K 16413 [ 1.728748] kvm [1]: IPA Size Limit: 40 bits 16414 [ 1.729456] kvm [1]: vgic interrupt IRQ9 16415 [ 1.729592] kvm [1]: Hyp mode initialized successfully 16416 [ 1.734582] Initialise system trusted keyrings 16417 [ 1.734615] Key type blacklist registered 16418 [ 1.734720] workingset: timestamp_bits=44 max_order=20 bucket_order=0 16419 [ 1.737911] zbud: loaded 16420 [ 1.738879] squashfs: version 4.0 (2009/01/31) Phillip Lougher 16421 [ 1.739344] fuse: init (API version 7.32) 16422 [ 1.740140] integrity: Platform Keyring initialized 16423 [ 1.768179] xor: measuring software checksum speed 16424 [ 1.771018] 8regs : 3473 MB/sec 16425 [ 1.773475] 32regs : 4020 MB/sec 16426 [ 1.776130] arm64_neon : 3719 MB/sec 16427 [ 1.776133] xor: using function: 32regs (4020 MB/sec) 16428 [ 1.776140] Key type asymmetric registered 16429 [ 1.776145] Asymmetric key parser 'x509' registered 16430 [ 1.776178] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 16431 [ 1.776272] io scheduler mq-deadline registered 16432 [ 1.776276] io scheduler kyber registered 16433 [ 1.776358] io scheduler bfq registered 16434 [ 1.778815] gpio-447 (usb-hub-reset): hogged as output/high 16435 [ 1.781698] EINJ: ACPI disabled. 16436 [ 1.787836] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 16437 [ 1.789214] VCC_3V3: supplied by VDDAO_3V3 16438 [ 1.789249] FLASH_1V8: supplied by VCC_3V3 16439 [ 1.789281] VCC_1V8: supplied by VCC_3V3 16440 [ 1.789314] VDDAO_1V8: supplied by VDDAO_3V3 16441 [ 1.789355] VDDCPU_A: supplied by regulator-dummy 16442 [ 1.789713] VDDCPU_B: supplied by regulator-dummy 16443 [ 1.790383] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 16444 [ 1.792777] Serial: AMBA driver 16445 [ 1.793063] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 16446 [ 1.793159] printk: console [ttyAML0] enabled 16447 [ 1.793667] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 16448 [ 1.799423] loop: module loaded 16449 [ 1.801380] libphy: Fixed MDIO Bus: probed 16450 [ 1.802435] tun: Universal TUN/TAP device driver, 1.6 16451 [ 1.803053] thunder_xcv, ver 1.0 16452 [ 1.803082] thunder_bgx, ver 1.0 16453 [ 1.803109] nicpf, ver 1.0 16454 [ 1.803593] e1000e: Intel(R) PRO/1000 Network Driver 16455 [ 1.803597] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 16456 [ 1.803641] igb: Intel(R) Gigabit Ethernet Network Driver 16457 [ 1.803644] igb: Copyright (c) 2007-2014 Intel Corporation. 16458 [ 1.803680] igbvf: Intel(R) Gigabit Virtual Function Network Driver 16459 [ 1.803683] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 16460 [ 1.803809] sky2: driver version 1.30 16461 [ 1.804194] VFIO - User Level meta-driver version: 0.3 16462 [ 1.805514] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 16463 [ 1.805535] ehci-pci: EHCI PCI platform driver 16464 [ 1.805565] ehci-platform: EHCI generic platform driver 16465 [ 1.805687] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 16466 [ 1.805699] ohci-pci: OHCI PCI platform driver 16467 [ 1.805734] ohci-platform: OHCI generic platform driver 16468 [ 1.806106] usbcore: registered new interface driver usb-storage 16469 [ 1.807366] mousedev: PS/2 mouse device common for all mice 16470 [ 1.807814] i2c /dev entries driver 16471 [ 1.813291] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 16472 [ 1.813967] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 16473 [ 1.814647] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 16474 [ 1.815255] sdhci: Secure Digital Host Controller Interface driver 16475 [ 1.815261] sdhci: Copyright(c) Pierre Ossman 16476 [ 1.815373] Synopsys Designware Multimedia Card Interface Driver 16477 [ 1.815894] sdhci-pltfm: SDHCI platform and OF driver helper 16478 [ 1.816805] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 16479 [ 1.817279] ledtrig-cpu: registered to indicate activity on CPUs 16480 [ 1.817563] meson-sm: secure-monitor enabled 16481 [ 1.817739] hid: raw HID events driver (C) Jiri Kosina 16482 [ 1.817812] usbcore: registered new interface driver usbhid 16483 [ 1.817815] usbhid: USB HID core driver 16484 [ 1.818776] NET: Registered protocol family 10 16485 [ 1.819326] Segment Routing with IPv6 16486 [ 1.819353] NET: Registered protocol family 17 16487 [ 1.819428] 8021q: 802.1Q VLAN Support v1.8 16488 [ 1.819465] Key type dns_resolver registered 16489 [ 1.819803] registered taskstats version 1 16490 [ 1.819809] Loading compiled-in X.509 certificates 16491 [ 1.821565] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 16492 [ 1.823162] zswap: loaded using pool zstd/z3fold 16493 [ 1.823336] Key type ._fscrypt registered 16494 [ 1.823338] Key type .fscrypt registered 16495 [ 1.823340] Key type fscrypt-provisioning registered 16496 [ 1.824580] Btrfs loaded, crc32c=crc32c-generic 16497 [ 1.830488] Key type encrypted registered 16498 [ 1.830501] AppArmor: AppArmor sha1 policy hashing enabled 16499 [ 1.836717] HUB_5V: supplied by 5V 16500 [ 1.836954] USB_PWR_EN: supplied by 5V 16501 [ 1.838585] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 16502 [ 1.838592] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 16503 [ 1.841584] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 16504 [ 1.841639] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 16505 [ 1.841750] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 16506 [ 1.842339] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 16507 [ 1.842352] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 16508 [ 1.842437] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 16509 [ 1.842457] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 16510 [ 1.842586] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 16511 [ 1.842589] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 16512 [ 1.842593] usb usb1: Product: xHCI Host Controller 16513 [ 1.842595] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 16514 [ 1.842597] usb usb1: SerialNumber: xhci-hcd.0.auto 16515 [ 1.842788] hub 1-0:1.0: USB hub found 16516 [ 1.842802] hub 1-0:1.0: 2 ports detected 16517 [ 1.842937] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 16518 [ 1.842943] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 16519 [ 1.842948] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 16520 [ 1.842971] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 16521 [ 1.843005] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 16522 [ 1.843008] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 16523 [ 1.843010] usb usb2: Product: xHCI Host Controller 16524 [ 1.843012] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 16525 [ 1.843014] usb usb2: SerialNumber: xhci-hcd.0.auto 16526 [ 1.843159] hub 2-0:1.0: USB hub found 16527 [ 1.843169] hub 2-0:1.0: 1 port detected 16528 [ 1.844803] meson-gx-mmc ffe05000.sd: Got CD GPIO 16529 [ 1.872382] Freeing unused kernel memory: 3328K 16530 [ 1.899626] Run /init as init process 16531 [ 1.899630] with arguments: 16532 [ 1.899632] /init 16533 [ 1.899634] with environment: 16534 [ 1.899636] HOME=/ 16535 [ 1.899637] TERM=linux 16536 [ 1.899639] hdmimode=custombuilt 16537 [ 1.899641] cvbsmode=576cvbs 16538 [ 1.899642] max_freq_a53=1896 16539 [ 1.899645] max_freq_a73=1800 16540 [ 1.899646] voutmode=hdmi 16541 [ 1.899648] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 16542 [ 1.899649] disablehpd=false 16543 [ 1.899650] cvbscable= 16544 [ 1.899652] overscan=100 16545 [ 1.923542] mmc1: new high speed SDHC card at address b368 16546 [ 1.924420] mmcblk1: mmc1:b368 CBADS 30.0 GiB 16547 [ 1.926398] mmcblk1: p1 16548 [ 2.050780] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 16549 [ 2.050787] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 16550 [ 2.050865] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 16551 [ 2.052650] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 16552 [ 2.052659] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 16553 [ 2.052664] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 16554 [ 2.052666] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 16555 [ 2.052669] meson8b-dwmac ff3f0000.ethernet: COE Type 2 16556 [ 2.052671] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 16557 [ 2.052673] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 16558 [ 2.052729] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 16559 [ 2.052732] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 16560 [ 2.052735] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 16561 [ 2.052947] libphy: stmmac: probed 16562 [ 2.060446] libphy: mdio_mux: probed 16563 [ 2.062542] meson-vrtc ff8000a8.rtc: registered as rtc1 16564 [ 2.084853] rtc-pcf8563 1-0051: registered as rtc0 16565 [ 2.085913] random: fast init done 16566 [ 2.086045] rtc-pcf8563 1-0051: setting system clock to 2021-02-21T14:44:10 UTC (1613918650) 16567 [ 2.179507] usb 1-1: new high-speed USB device number 2 using xhci-hcd 16568 [ 2.263964] libphy: mdio_mux: probed 16569 [ 2.333853] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 16570 [ 2.333861] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 16571 [ 2.333863] usb 1-1: Product: USB2.1 Hub 16572 [ 2.333865] usb 1-1: Manufacturer: GenesysLogic 16573 [ 2.387156] hub 1-1:1.0: USB hub found 16574 [ 2.387375] hub 1-1:1.0: 4 ports detected 16575 [ 2.459600] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 16576 [ 2.482078] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 16577 [ 2.482082] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 16578 [ 2.482085] usb 2-1: Product: USB3.1 Hub 16579 [ 2.482087] usb 2-1: Manufacturer: GenesysLogic 16580 [ 2.499144] hub 2-1:1.0: USB hub found 16581 [ 2.499427] hub 2-1:1.0: 4 ports detected 16582 [ 2.607495] usb 1-2: new high-speed USB device number 3 using xhci-hcd 16583 [ 2.735504] usb 1-2: device descriptor read/64, error -71 16584 [ 2.971504] usb 1-2: device descriptor read/64, error -71 16585 [ 3.207491] usb 1-2: new high-speed USB device number 4 using xhci-hcd 16586 [ 3.335501] usb 1-2: device descriptor read/64, error -71 16587 [ 3.571500] usb 1-2: device descriptor read/64, error -71 16588 [ 3.679517] usb usb1-port2: attempt power cycle 16589 [ 4.331488] usb 1-2: new high-speed USB device number 5 using xhci-hcd 16590 [ 4.331515] usb 1-2: Device not responding to setup address. 16591 [ 4.539512] usb 1-2: Device not responding to setup address. 16592 [ 4.747489] usb 1-2: device not accepting address 5, error -71 16593 [ 4.875491] usb 1-2: new high-speed USB device number 6 using xhci-hcd 16594 [ 4.875519] usb 1-2: Device not responding to setup address. 16595 [ 5.083514] usb 1-2: Device not responding to setup address. 16596 [ 5.291490] usb 1-2: device not accepting address 6, error -71 16597 [ 5.291521] usb usb1-port2: unable to enumerate USB device 16598 [ 5.595212] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 16599 [ 6.389237] systemd[1]: Inserted module 'autofs4' 16600 [ 6.435919] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 16601 [ 6.436132] systemd[1]: Detected architecture arm64. 16602 [ 6.465504] systemd[1]: Set hostname to <odroidn2>. 16603 [ 6.796257] random: systemd: uninitialized urandom read (16 bytes read) 16604 [ 6.799574] random: systemd: uninitialized urandom read (16 bytes read) 16605 [ 6.800904] systemd[1]: Created slice system-serial\x2dgetty.slice. 16606 [ 6.801120] random: systemd: uninitialized urandom read (16 bytes read) 16607 [ 6.801468] systemd[1]: Created slice User and Session Slice. 16608 [ 6.801625] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 16609 [ 6.801935] systemd[1]: Listening on udev Kernel Socket. 16610 [ 6.802290] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 16611 [ 6.802455] systemd[1]: Listening on initctl Compatibility Named Pipe. 16612 [ 6.802696] systemd[1]: Listening on Journal Socket (/dev/log). 16613 [ 6.883128] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 16614 [ 7.416831] pwm-gpio pwmgpio: 1 gpio pwms loaded 16615 [ 7.419751] zram: Added device: zram0 16616 [ 7.419929] zram: Added device: zram1 16617 [ 7.420093] zram: Added device: zram2 16618 [ 7.586758] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 16619 [ 7.595957] mc: Linux media interface: v0.10 16620 [ 7.683965] videodev: Linux video capture interface: v2.00 16621 [ 7.708910] meson-drm ff900000.vpu: Queued 2 outputs on vpu 16622 [ 7.744843] meson-drm ff900000.vpu: CVBS Output connector not available 16623 [ 7.747559] Registered IR keymap rc-odroid 16624 [ 7.767470] IR NEC protocol handler initialized 16625 [ 7.777488] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 16626 [ 7.778769] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 16627 [ 7.778972] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 16628 [ 7.779180] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 16629 [ 7.780874] panfrost ffe40000.gpu: clock rate = 24000000 16630 [ 7.780925] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 16631 [ 7.783795] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 16632 [ 7.783801] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 16633 [ 7.783805] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 16634 [ 7.783808] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 16635 [ 7.799635] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 16636 [ 7.799773] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 16637 [ 7.799874] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 16638 [ 7.800040] meson-ir ff808000.ir: receiver initialized 16639 [ 7.800084] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 16640 [ 7.810773] zram0: detected capacity change from 0 to 1904500736 16641 [ 7.901972] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 16642 [ 8.087691] Console: switching to colour frame buffer device 240x67 16643 [ 8.122401] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 16644 [ 8.164026] axg-sound-card sound: ASoC: no DMI vendor name! 16645 [ 8.843545] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 16646 [ 8.907361] zram1: detected capacity change from 0 to 52428800 16647 [ 10.993743] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 16648 [ 10.993762] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 16649 [ 12.171627] systemd[1]: Started Armbian memory supported logging. 16650 [ 12.175803] systemd[1]: Starting Journal Service... 16651 [ 12.232832] systemd[1]: Started Journal Service. 16652 [ 12.260842] systemd-journald[1842]: Received request to flush runtime journal from PID 1 16653 16654 ### armbian-release: 16655 16656 # PLEASE DO NOT EDIT THIS FILE 16657 BOARD=odroidn2 16658 BOARD_NAME="Odroid N2" 16659 BOARDFAMILY=meson-g12b 16660 BUILD_REPOSITORY_URL=https://github.com/armbian/build 16661 BUILD_REPOSITORY_COMMIT=5f03d652 16662 DISTRIBUTION_CODENAME=buster 16663 DISTRIBUTION_STATUS=supported 16664 VERSION=21.02.1 16665 LINUXFAMILY=meson64 16666 BRANCH=current 16667 ARCH=arm64 16668 IMAGE_TYPE=stable 16669 BOARD_TYPE=conf 16670 INITRD_ARCH=arm64 16671 KERNEL_IMAGE_TYPE=Image 16672 16673 ### boot environment: 16674 16675 verbosity=1 16676 console=both 16677 overlay_prefix=meson 16678 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 16679 rootfstype=ext4 16680 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 16681 16682 ### lsusb: 16683 16684 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 16685 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 16686 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 16687 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 16688 16689 ### lscpu: 16690 16691 Architecture: aarch64 16692 Byte Order: Little Endian 16693 CPU(s): 6 16694 On-line CPU(s) list: 0-5 16695 Thread(s) per core: 1 16696 Core(s) per socket: 3 16697 Socket(s): 2 16698 NUMA node(s): 1 16699 Vendor ID: ARM 16700 Model: 4 16701 Model name: Cortex-A53 16702 Stepping: r0p4 16703 CPU max MHz: 1992.0000 16704 CPU min MHz: 100.0000 16705 BogoMIPS: 48.00 16706 L1d cache: unknown size 16707 L1i cache: unknown size 16708 L2 cache: unknown size 16709 NUMA node0 CPU(s): 0-5 16710 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16711 16712 ### cpuinfo: 16713 16714 processor : 0 16715 BogoMIPS : 48.00 16716 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16717 CPU implementer : 0x41 16718 CPU architecture: 8 16719 CPU variant : 0x0 16720 CPU part : 0xd03 16721 CPU revision : 4 16722 16723 processor : 1 16724 BogoMIPS : 48.00 16725 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16726 CPU implementer : 0x41 16727 CPU architecture: 8 16728 CPU variant : 0x0 16729 CPU part : 0xd03 16730 CPU revision : 4 16731 16732 processor : 2 16733 BogoMIPS : 48.00 16734 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16735 CPU implementer : 0x41 16736 CPU architecture: 8 16737 CPU variant : 0x0 16738 CPU part : 0xd09 16739 CPU revision : 2 16740 16741 processor : 3 16742 BogoMIPS : 48.00 16743 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16744 CPU implementer : 0x41 16745 CPU architecture: 8 16746 CPU variant : 0x0 16747 CPU part : 0xd09 16748 CPU revision : 2 16749 16750 processor : 4 16751 BogoMIPS : 48.00 16752 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16753 CPU implementer : 0x41 16754 CPU architecture: 8 16755 CPU variant : 0x0 16756 CPU part : 0xd09 16757 CPU revision : 2 16758 16759 processor : 5 16760 BogoMIPS : 48.00 16761 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 16762 CPU implementer : 0x41 16763 CPU architecture: 8 16764 CPU variant : 0x0 16765 CPU part : 0xd09 16766 CPU revision : 2 16767 16768 16769 ### meminfo: 16770 16771 MemTotal: 3719728 kB 16772 MemFree: 3407628 kB 16773 MemAvailable: 3362020 kB 16774 Buffers: 11676 kB 16775 Cached: 45972 kB 16776 SwapCached: 0 kB 16777 Active: 29500 kB 16778 Inactive: 174156 kB 16779 Active(anon): 92 kB 16780 Inactive(anon): 150928 kB 16781 Active(file): 29408 kB 16782 Inactive(file): 23228 kB 16783 Unevictable: 0 kB 16784 Mlocked: 0 kB 16785 SwapTotal: 1859860 kB 16786 SwapFree: 1859860 kB 16787 Dirty: 6864 kB 16788 Writeback: 0 kB 16789 AnonPages: 146304 kB 16790 Mapped: 10904 kB 16791 Shmem: 4868 kB 16792 KReclaimable: 12860 kB 16793 Slab: 38528 kB 16794 SReclaimable: 12860 kB 16795 SUnreclaim: 25668 kB 16796 KernelStack: 2112 kB 16797 PageTables: 5196 kB 16798 NFS_Unstable: 0 kB 16799 Bounce: 0 kB 16800 WritebackTmp: 0 kB 16801 CommitLimit: 3719724 kB 16802 Committed_AS: 4210540 kB 16803 VmallocTotal: 135290159040 kB 16804 VmallocUsed: 30944 kB 16805 VmallocChunk: 0 kB 16806 Percpu: 1368 kB 16807 HardwareCorrupted: 0 kB 16808 AnonHugePages: 40960 kB 16809 ShmemHugePages: 0 kB 16810 ShmemPmdMapped: 0 kB 16811 FileHugePages: 0 kB 16812 FilePmdMapped: 0 kB 16813 CmaTotal: 917504 kB 16814 CmaFree: 901724 kB 16815 HugePages_Total: 0 16816 HugePages_Free: 0 16817 HugePages_Rsvd: 0 16818 HugePages_Surp: 0 16819 Hugepagesize: 2048 kB 16820 Hugetlb: 0 kB 16821 16822 ### virtual memory: 16823 16824 vm.admin_reserve_kbytes = 8192 16825 vm.block_dump = 0 16826 vm.compaction_proactiveness = 20 16827 vm.compact_unevictable_allowed = 1 16828 vm.dirty_background_bytes = 0 16829 vm.dirty_background_ratio = 10 16830 vm.dirty_bytes = 0 16831 vm.dirty_expire_centisecs = 3000 16832 vm.dirty_ratio = 20 16833 vm.dirtytime_expire_seconds = 43200 16834 vm.dirty_writeback_centisecs = 500 16835 vm.extfrag_threshold = 500 16836 vm.hugetlb_shm_group = 0 16837 vm.laptop_mode = 0 16838 vm.legacy_va_layout = 0 16839 vm.lowmem_reserve_ratio = 256 256 32 0 16840 vm.max_map_count = 65530 16841 vm.memory_failure_early_kill = 0 16842 vm.memory_failure_recovery = 1 16843 vm.min_free_kbytes = 45056 16844 vm.min_slab_ratio = 5 16845 vm.min_unmapped_ratio = 1 16846 vm.mmap_min_addr = 4096 16847 vm.mmap_rnd_bits = 18 16848 vm.mmap_rnd_compat_bits = 11 16849 vm.nr_hugepages = 0 16850 vm.nr_hugepages_mempolicy = 0 16851 vm.nr_overcommit_hugepages = 0 16852 vm.numa_stat = 1 16853 vm.numa_zonelist_order = Node 16854 vm.oom_dump_tasks = 1 16855 vm.oom_kill_allocating_task = 0 16856 vm.overcommit_kbytes = 0 16857 vm.overcommit_memory = 0 16858 vm.overcommit_ratio = 50 16859 vm.page-cluster = 0 16860 vm.page_lock_unfairness = 5 16861 vm.panic_on_oom = 0 16862 vm.percpu_pagelist_fraction = 0 16863 vm.stat_interval = 1 16864 vm.swappiness = 100 16865 vm.user_reserve_kbytes = 115058 16866 vm.vfs_cache_pressure = 100 16867 vm.watermark_boost_factor = 15000 16868 vm.watermark_scale_factor = 10 16869 vm.zone_reclaim_mode = 0 16870 16871 ### ip addr: 16872 16873 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 16874 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 16875 inet XXX.XXX.0.1/8 scope host lo 16876 valid_lft forever preferred_lft forever 16877 inet6 ::1/128 scope host 16878 valid_lft forever preferred_lft forever 16879 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 16880 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 16881 16882 ### partitions: 16883 16884 major minor #blocks name 16885 16886 179 0 31464960 mmcblk1 16887 179 1 31146208 mmcblk1p1 16888 252 0 1859864 zram0 16889 252 1 51200 zram1 16890 16891 ### df: 16892 16893 udev 1.4G 0 1.4G 0% /dev 16894 tmpfs 364M 4.9M 359M 2% /run 16895 /dev/mmcblk1p1 30G 1.7G 28G 6% / 16896 tmpfs 1.8G 0 1.8G 0% /dev/shm 16897 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 16898 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 16899 tmpfs 1.8G 0 1.8G 0% /tmp 16900 /dev/zram1 49M 6.8M 39M 15% /var/log 16901 16902 ### lsblk: 16903 16904 NAME FSTYPE SIZE MOUNTPOINT UUID 16905 mmcblk1 30G 16906 └─mmcblk1p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 16907 zram1 50M /var/log 16908 16909 ### zramctl: 16910 16911 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 16912 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 16913 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 16914 16915 ### mtab: 16916 16917 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 16918 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 16919 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 16920 16921 ### mmc1:b368 info: 16922 16923 fwrev: 0x0 16924 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 16925 cid: 6f0303434241445310aa002b4d013b00 16926 rca: 0xb368 16927 csd: 400e005a5b590000f00e7f800a404000 16928 manfid: 0x00006f 16929 ocr: 0x00200000 16930 preferred_erase_size: 2097152 16931 type: SD 16932 hwrev: 0x1 16933 date: 11/2019 16934 dsr: 0x404 16935 erase_size: 512 16936 oemid: 0x0303 16937 serial: 0xaa002b4d 16938 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 16939 scr: 02b5800300000000 16940 name: CBADS 16941 16942 ### Boot system health: 16943 16944 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 16945 14:44:22: 1908/1992MHz 0.07 20% 9% 4% 0% 6% 0% 31.7°C 0/11 16946 14:44:22: 1908/1992MHz 0.07 64% 21% 2% 0% 39% 0% 29.1°C 0/11 16947 14:44:22: 1908/1992MHz 0.07 57% 11% 5% 0% 39% 0% 29.3°C 0/11 16948 14:44:23: 1908/1992MHz 0.07 46% 3% 2% 0% 39% 1% 28.7°C 0/11 16949 14:44:23: 1908/1992MHz 0.07 61% 2% 6% 0% 52% 0% 28.3°C 0/11 16950 16951 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 16952 16953 ### Activated Armbian ramlog partition with zstd compression 16954 16955 Sun 21 Feb 2021 02:45:41 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 16956 16957 ### dmesg: 16958 16959 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 16960 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 16961 [ 0.000000] Machine model: Hardkernel ODROID-N2 16962 [ 0.000000] efi: UEFI not found. 16963 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 16964 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 16965 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 16966 [ 0.000000] NUMA: No NUMA configuration found 16967 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 16968 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 16969 [ 0.000000] Zone ranges: 16970 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 16971 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 16972 [ 0.000000] Normal empty 16973 [ 0.000000] Movable zone start for each node 16974 [ 0.000000] Early memory node ranges 16975 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 16976 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 16977 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 16978 [ 0.000000] On node 0 totalpages: 972032 16979 [ 0.000000] DMA zone: 4096 pages used for memmap 16980 [ 0.000000] DMA zone: 0 pages reserved 16981 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 16982 [ 0.000000] DMA32 zone: 11104 pages used for memmap 16983 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 16984 [ 0.000000] psci: probing for conduit method from DT. 16985 [ 0.000000] psci: PSCIv1.0 detected in firmware. 16986 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 16987 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 16988 [ 0.000000] psci: SMC Calling Convention v1.1 16989 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 16990 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 16991 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 16992 [ 0.000000] Detected VIPT I-cache on CPU0 16993 [ 0.000000] CPU features: detected: ARM erratum 845719 16994 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 16995 [ 0.000000] Policy zone: DMA32 16996 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 16997 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 16998 Please use sysfs to set IO scheduler for individual devices. 16999 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 17000 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 17001 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 17002 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 17003 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 17004 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 17005 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 17006 [ 0.000000] rcu: RCU event tracing is enabled. 17007 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 17008 [ 0.000000] Trampoline variant of Tasks RCU enabled. 17009 [ 0.000000] Rude variant of Tasks RCU enabled. 17010 [ 0.000000] Tracing variant of Tasks RCU enabled. 17011 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 17012 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 17013 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 17014 [ 0.000000] GIC: Using split EOI/Deactivate mode 17015 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 17016 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 17017 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 17018 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 17019 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 17020 [ 0.000242] Console: colour dummy device 80x25 17021 [ 0.000277] printk: console [tty1] enabled 17022 [ 0.000367] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 17023 [ 0.000378] pid_max: default: 32768 minimum: 301 17024 [ 0.000462] LSM: Security Framework initializing 17025 [ 0.000488] Yama: becoming mindful. 17026 [ 0.000579] AppArmor: AppArmor initialized 17027 [ 0.000630] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 17028 [ 0.000649] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 17029 [ 0.002644] rcu: Hierarchical SRCU implementation. 17030 [ 0.004998] EFI services will not be available. 17031 [ 0.005422] smp: Bringing up secondary CPUs ... 17032 [ 0.006096] Detected VIPT I-cache on CPU1 17033 [ 0.006157] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 17034 [ 0.007350] CPU features: detected: ARM erratum 858921 17035 [ 0.007358] CPU features: detected: Spectre-v2 17036 [ 0.007362] CPU features: detected: Spectre-v4 17037 [ 0.007369] Detected VIPT I-cache on CPU2 17038 [ 0.007394] arch_timer: Enabling local workaround for ARM erratum 858921 17039 [ 0.007408] arch_timer: CPU2: Trapping CNTVCT access 17040 [ 0.007421] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 17041 [ 0.008125] Detected VIPT I-cache on CPU3 17042 [ 0.008141] arch_timer: Enabling local workaround for ARM erratum 858921 17043 [ 0.008149] arch_timer: CPU3: Trapping CNTVCT access 17044 [ 0.008157] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 17045 [ 0.008784] Detected VIPT I-cache on CPU4 17046 [ 0.008801] arch_timer: Enabling local workaround for ARM erratum 858921 17047 [ 0.008808] arch_timer: CPU4: Trapping CNTVCT access 17048 [ 0.008815] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 17049 [ 0.009431] Detected VIPT I-cache on CPU5 17050 [ 0.009447] arch_timer: Enabling local workaround for ARM erratum 858921 17051 [ 0.009454] arch_timer: CPU5: Trapping CNTVCT access 17052 [ 0.009462] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 17053 [ 0.009544] smp: Brought up 1 node, 6 CPUs 17054 [ 0.009561] SMP: Total of 6 processors activated. 17055 [ 0.009569] CPU features: detected: 32-bit EL0 Support 17056 [ 0.009575] CPU features: detected: CRC32 instructions 17057 [ 0.009580] CPU features: detected: 32-bit EL1 Support 17058 [ 0.020867] CPU: All CPU(s) started at EL2 17059 [ 0.020917] alternatives: patching kernel code 17060 [ 0.022859] devtmpfs: initialized 17061 [ 0.030530] Registered cp15_barrier emulation handler 17062 [ 0.030544] Registered setend emulation handler 17063 [ 0.030679] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 17064 [ 0.030718] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 17065 [ 0.044640] pinctrl core: initialized pinctrl subsystem 17066 [ 0.045374] DMI not present or invalid. 17067 [ 0.045748] NET: Registered protocol family 16 17068 [ 0.047219] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 17069 [ 0.047507] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 17070 [ 0.047734] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 17071 [ 0.047776] audit: initializing netlink subsys (disabled) 17072 [ 0.047871] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 17073 [ 0.049065] thermal_sys: Registered thermal governor 'fair_share' 17074 [ 0.049072] thermal_sys: Registered thermal governor 'bang_bang' 17075 [ 0.049076] thermal_sys: Registered thermal governor 'step_wise' 17076 [ 0.049079] thermal_sys: Registered thermal governor 'user_space' 17077 [ 0.049490] cpuidle: using governor menu 17078 [ 0.049838] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 17079 [ 0.049959] ASID allocator initialised with 65536 entries 17080 [ 0.050861] Serial: AMBA PL011 UART driver 17081 [ 0.084434] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 17082 [ 0.084445] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 17083 [ 0.084451] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 17084 [ 0.084455] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 17085 [ 0.086607] cryptd: max_cpu_qlen set to 1000 17086 [ 0.156149] raid6: neonx8 gen() 2787 MB/s 17087 [ 0.224210] raid6: neonx8 xor() 2041 MB/s 17088 [ 0.292321] raid6: neonx4 gen() 2998 MB/s 17089 [ 0.360356] raid6: neonx4 xor() 2396 MB/s 17090 [ 0.428424] raid6: neonx2 gen() 2541 MB/s 17091 [ 0.496487] raid6: neonx2 xor() 2197 MB/s 17092 [ 0.564558] raid6: neonx1 gen() 2060 MB/s 17093 [ 0.632617] raid6: neonx1 xor() 1725 MB/s 17094 [ 0.700684] raid6: int64x8 gen() 1376 MB/s 17095 [ 0.768756] raid6: int64x8 xor() 735 MB/s 17096 [ 0.836845] raid6: int64x4 gen() 1463 MB/s 17097 [ 0.904890] raid6: int64x4 xor() 733 MB/s 17098 [ 0.972949] raid6: int64x2 gen() 1362 MB/s 17099 [ 1.041031] raid6: int64x2 xor() 619 MB/s 17100 [ 1.109094] raid6: int64x1 gen() 1120 MB/s 17101 [ 1.177165] raid6: int64x1 xor() 462 MB/s 17102 [ 1.177169] raid6: using algorithm neonx4 gen() 2998 MB/s 17103 [ 1.177172] raid6: .... xor() 2396 MB/s, rmw enabled 17104 [ 1.177176] raid6: using neon recovery algorithm 17105 [ 1.177645] ACPI: Interpreter disabled. 17106 [ 1.178433] 5V: supplied by 12V 17107 [ 1.179343] VDDAO_3V3: supplied by 12V 17108 [ 1.179833] iommu: Default domain type: Translated 17109 [ 1.179959] vgaarb: loaded 17110 [ 1.180844] SCSI subsystem initialized 17111 [ 1.181175] usbcore: registered new interface driver usbfs 17112 [ 1.181219] usbcore: registered new interface driver hub 17113 [ 1.181258] usbcore: registered new device driver usb 17114 [ 1.181609] pps_core: LinuxPPS API ver. 1 registered 17115 [ 1.181613] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 17116 [ 1.181629] PTP clock support registered 17117 [ 1.181809] EDAC MC: Ver: 3.0.0 17118 [ 1.183176] NetLabel: Initializing 17119 [ 1.183184] NetLabel: domain hash size = 128 17120 [ 1.183187] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 17121 [ 1.183230] NetLabel: unlabeled traffic allowed by default 17122 [ 1.183694] clocksource: Switched to clocksource arch_sys_counter 17123 [ 1.183903] VFS: Disk quotas dquot_6.6.0 17124 [ 1.183947] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 17125 [ 1.184370] AppArmor: AppArmor Filesystem Enabled 17126 [ 1.184416] pnp: PnP ACPI: disabled 17127 [ 1.189912] NET: Registered protocol family 2 17128 [ 1.190379] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 17129 [ 1.190483] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 17130 [ 1.190739] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 17131 [ 1.190927] TCP: Hash tables configured (established 32768 bind 32768) 17132 [ 1.191078] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 17133 [ 1.191144] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 17134 [ 1.191190] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 17135 [ 1.191334] NET: Registered protocol family 1 17136 [ 1.191353] PCI: CLS 0 bytes, default 64 17137 [ 1.191480] Trying to unpack rootfs image as initramfs... 17138 [ 1.727038] Freeing initrd memory: 13544K 17139 [ 1.727985] kvm [1]: IPA Size Limit: 40 bits 17140 [ 1.728686] kvm [1]: vgic interrupt IRQ9 17141 [ 1.728822] kvm [1]: Hyp mode initialized successfully 17142 [ 1.733807] Initialise system trusted keyrings 17143 [ 1.733842] Key type blacklist registered 17144 [ 1.733943] workingset: timestamp_bits=44 max_order=20 bucket_order=0 17145 [ 1.737180] zbud: loaded 17146 [ 1.738144] squashfs: version 4.0 (2009/01/31) Phillip Lougher 17147 [ 1.738604] fuse: init (API version 7.32) 17148 [ 1.739395] integrity: Platform Keyring initialized 17149 [ 1.767080] xor: measuring software checksum speed 17150 [ 1.769927] 8regs : 3473 MB/sec 17151 [ 1.772382] 32regs : 4024 MB/sec 17152 [ 1.775025] arm64_neon : 3727 MB/sec 17153 [ 1.775028] xor: using function: 32regs (4024 MB/sec) 17154 [ 1.775036] Key type asymmetric registered 17155 [ 1.775040] Asymmetric key parser 'x509' registered 17156 [ 1.775073] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 17157 [ 1.775157] io scheduler mq-deadline registered 17158 [ 1.775162] io scheduler kyber registered 17159 [ 1.775243] io scheduler bfq registered 17160 [ 1.777743] gpio-447 (usb-hub-reset): hogged as output/high 17161 [ 1.780644] EINJ: ACPI disabled. 17162 [ 1.786823] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 17163 [ 1.788258] VCC_3V3: supplied by VDDAO_3V3 17164 [ 1.788295] FLASH_1V8: supplied by VCC_3V3 17165 [ 1.788325] VCC_1V8: supplied by VCC_3V3 17166 [ 1.788355] VDDAO_1V8: supplied by VDDAO_3V3 17167 [ 1.788395] VDDCPU_A: supplied by regulator-dummy 17168 [ 1.788756] VDDCPU_B: supplied by regulator-dummy 17169 [ 1.789456] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 17170 [ 1.791764] Serial: AMBA driver 17171 [ 1.792061] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 17172 [ 1.792152] printk: console [ttyAML0] enabled 17173 [ 1.792678] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 17174 [ 1.798107] loop: module loaded 17175 [ 1.799949] libphy: Fixed MDIO Bus: probed 17176 [ 1.801132] tun: Universal TUN/TAP device driver, 1.6 17177 [ 1.801772] thunder_xcv, ver 1.0 17178 [ 1.801805] thunder_bgx, ver 1.0 17179 [ 1.801833] nicpf, ver 1.0 17180 [ 1.802280] e1000e: Intel(R) PRO/1000 Network Driver 17181 [ 1.802283] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 17182 [ 1.802322] igb: Intel(R) Gigabit Ethernet Network Driver 17183 [ 1.802325] igb: Copyright (c) 2007-2014 Intel Corporation. 17184 [ 1.802356] igbvf: Intel(R) Gigabit Virtual Function Network Driver 17185 [ 1.802359] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 17186 [ 1.802494] sky2: driver version 1.30 17187 [ 1.802887] VFIO - User Level meta-driver version: 0.3 17188 [ 1.804500] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 17189 [ 1.804537] ehci-pci: EHCI PCI platform driver 17190 [ 1.804572] ehci-platform: EHCI generic platform driver 17191 [ 1.804697] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 17192 [ 1.804713] ohci-pci: OHCI PCI platform driver 17193 [ 1.804748] ohci-platform: OHCI generic platform driver 17194 [ 1.805128] usbcore: registered new interface driver usb-storage 17195 [ 1.806389] mousedev: PS/2 mouse device common for all mice 17196 [ 1.806753] i2c /dev entries driver 17197 [ 1.811832] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 17198 [ 1.812513] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 17199 [ 1.813283] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 17200 [ 1.813944] sdhci: Secure Digital Host Controller Interface driver 17201 [ 1.813951] sdhci: Copyright(c) Pierre Ossman 17202 [ 1.814076] Synopsys Designware Multimedia Card Interface Driver 17203 [ 1.814581] sdhci-pltfm: SDHCI platform and OF driver helper 17204 [ 1.815366] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 17205 [ 1.816006] ledtrig-cpu: registered to indicate activity on CPUs 17206 [ 1.816257] meson-sm: secure-monitor enabled 17207 [ 1.816448] hid: raw HID events driver (C) Jiri Kosina 17208 [ 1.816521] usbcore: registered new interface driver usbhid 17209 [ 1.816523] usbhid: USB HID core driver 17210 [ 1.817530] NET: Registered protocol family 10 17211 [ 1.818041] Segment Routing with IPv6 17212 [ 1.818072] NET: Registered protocol family 17 17213 [ 1.818116] 8021q: 802.1Q VLAN Support v1.8 17214 [ 1.818140] Key type dns_resolver registered 17215 [ 1.818417] registered taskstats version 1 17216 [ 1.818422] Loading compiled-in X.509 certificates 17217 [ 1.820118] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 17218 [ 1.821699] zswap: loaded using pool zstd/z3fold 17219 [ 1.821865] Key type ._fscrypt registered 17220 [ 1.821868] Key type .fscrypt registered 17221 [ 1.821870] Key type fscrypt-provisioning registered 17222 [ 1.822955] Btrfs loaded, crc32c=crc32c-generic 17223 [ 1.828954] Key type encrypted registered 17224 [ 1.828966] AppArmor: AppArmor sha1 policy hashing enabled 17225 [ 1.835234] HUB_5V: supplied by 5V 17226 [ 1.835435] USB_PWR_EN: supplied by 5V 17227 [ 1.837087] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 17228 [ 1.837094] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 17229 [ 1.839907] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 17230 [ 1.839964] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 17231 [ 1.840073] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 17232 [ 1.840675] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 17233 [ 1.840687] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 17234 [ 1.840772] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 17235 [ 1.840793] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 17236 [ 1.840922] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 17237 [ 1.840926] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 17238 [ 1.840929] usb usb1: Product: xHCI Host Controller 17239 [ 1.840932] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 17240 [ 1.840934] usb usb1: SerialNumber: xhci-hcd.0.auto 17241 [ 1.841127] hub 1-0:1.0: USB hub found 17242 [ 1.841140] hub 1-0:1.0: 2 ports detected 17243 [ 1.841271] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 17244 [ 1.841281] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 17245 [ 1.841286] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 17246 [ 1.841310] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 17247 [ 1.841340] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 17248 [ 1.841344] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 17249 [ 1.841347] usb usb2: Product: xHCI Host Controller 17250 [ 1.841349] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 17251 [ 1.841351] usb usb2: SerialNumber: xhci-hcd.0.auto 17252 [ 1.841491] hub 2-0:1.0: USB hub found 17253 [ 1.841501] hub 2-0:1.0: 1 port detected 17254 [ 1.842952] meson-gx-mmc ffe05000.sd: Got CD GPIO 17255 [ 1.868815] Freeing unused kernel memory: 3328K 17256 [ 1.903752] Run /init as init process 17257 [ 1.903755] with arguments: 17258 [ 1.903757] /init 17259 [ 1.903759] with environment: 17260 [ 1.903761] HOME=/ 17261 [ 1.903763] TERM=linux 17262 [ 1.903764] hdmimode=custombuilt 17263 [ 1.903766] cvbsmode=576cvbs 17264 [ 1.903767] max_freq_a53=1896 17265 [ 1.903769] max_freq_a73=1800 17266 [ 1.903770] voutmode=hdmi 17267 [ 1.903772] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 17268 [ 1.903773] disablehpd=false 17269 [ 1.903775] cvbscable= 17270 [ 1.903776] overscan=100 17271 [ 1.935142] mmc1: new ultra high speed SDR25 SDHC card at address b368 17272 [ 1.936051] mmcblk1: mmc1:b368 CBADS 30.0 GiB 17273 [ 1.938045] mmcblk1: p1 17274 [ 2.065228] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 17275 [ 2.065235] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 17276 [ 2.065315] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 17277 [ 2.065713] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 17278 [ 2.065719] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 17279 [ 2.065723] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 17280 [ 2.065725] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 17281 [ 2.065727] meson8b-dwmac ff3f0000.ethernet: COE Type 2 17282 [ 2.065729] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 17283 [ 2.065732] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 17284 [ 2.065774] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 17285 [ 2.065777] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 17286 [ 2.065780] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 17287 [ 2.065990] libphy: stmmac: probed 17288 [ 2.067276] libphy: mdio_mux: probed 17289 [ 2.072856] meson-vrtc ff8000a8.rtc: registered as rtc1 17290 [ 2.094196] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 17291 [ 2.094395] rtc-pcf8563 1-0051: registered as rtc0 17292 [ 2.095564] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 17293 [ 2.095573] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 17294 [ 2.099172] random: fast init done 17295 [ 2.183821] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 17296 [ 2.208455] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 17297 [ 2.208461] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 17298 [ 2.208464] usb 2-1: Product: USB3.1 Hub 17299 [ 2.208466] usb 2-1: Manufacturer: GenesysLogic 17300 [ 2.225502] hub 2-1:1.0: USB hub found 17301 [ 2.225786] hub 2-1:1.0: 4 ports detected 17302 [ 2.272124] libphy: mdio_mux: probed 17303 [ 2.331722] usb 1-1: new high-speed USB device number 2 using xhci-hcd 17304 [ 2.481992] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 17305 [ 2.481999] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 17306 [ 2.482002] usb 1-1: Product: USB2.1 Hub 17307 [ 2.482006] usb 1-1: Manufacturer: GenesysLogic 17308 [ 2.545579] hub 1-1:1.0: USB hub found 17309 [ 2.545845] hub 1-1:1.0: 4 ports detected 17310 [ 2.735706] usb 1-2: new high-speed USB device number 3 using xhci-hcd 17311 [ 3.475713] usb 1-2: device descriptor read/64, error -71 17312 [ 14.687711] usb 1-2: device descriptor read/64, error -110 17313 [ 14.923698] usb 1-2: new high-speed USB device number 4 using xhci-hcd 17314 [ 20.063712] usb 1-2: device descriptor read/64, error -110 17315 [ 26.931708] usb 1-2: device descriptor read/64, error -71 17316 [ 27.039788] usb usb1-port2: attempt power cycle 17317 [ 27.691695] usb 1-2: new high-speed USB device number 5 using xhci-hcd 17318 [ 27.691813] usb 1-2: Device not responding to setup address. 17319 [ 27.900536] usb 1-2: Device not responding to setup address. 17320 [ 28.107694] usb 1-2: device not accepting address 5, error -71 17321 [ 28.235694] usb 1-2: new high-speed USB device number 6 using xhci-hcd 17322 [ 28.236145] usb 1-2: Device not responding to setup address. 17323 [ 28.444222] usb 1-2: Device not responding to setup address. 17324 [ 28.651692] usb 1-2: device not accepting address 6, error -71 17325 [ 28.651764] usb usb1-port2: unable to enumerate USB device 17326 [ 28.970397] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 17327 [ 29.773035] systemd[1]: System time before build time, advancing clock. 17328 [ 29.787881] systemd[1]: Inserted module 'autofs4' 17329 [ 29.834346] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 17330 [ 29.834562] systemd[1]: Detected architecture arm64. 17331 [ 29.869289] systemd[1]: Set hostname to <odroidn2>. 17332 [ 30.197441] random: systemd: uninitialized urandom read (16 bytes read) 17333 [ 30.200788] random: systemd: uninitialized urandom read (16 bytes read) 17334 [ 30.201067] systemd[1]: Listening on udev Control Socket. 17335 [ 30.201265] random: systemd: uninitialized urandom read (16 bytes read) 17336 [ 30.202498] systemd[1]: Created slice system-getty.slice. 17337 [ 30.202714] systemd[1]: Listening on initctl Compatibility Named Pipe. 17338 [ 30.202868] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 17339 [ 30.202970] systemd[1]: Reached target Swap. 17340 [ 30.203339] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 17341 [ 30.203615] systemd[1]: Listening on Journal Socket (/dev/log). 17342 [ 30.277300] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 17343 [ 30.749324] zram: Added device: zram0 17344 [ 30.749817] zram: Added device: zram1 17345 [ 30.750217] zram: Added device: zram2 17346 [ 30.857440] pwm-gpio pwmgpio: 1 gpio pwms loaded 17347 [ 31.012409] panfrost ffe40000.gpu: clock rate = 24000000 17348 [ 31.012463] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 17349 [ 31.013050] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 17350 [ 31.013056] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 17351 [ 31.013061] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 17352 [ 31.013064] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 17353 [ 31.031671] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 17354 [ 31.033255] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 17355 [ 31.037498] mc: Linux media interface: v0.10 17356 [ 31.039988] zram0: detected capacity change from 0 to 1904500736 17357 [ 31.105298] videodev: Linux video capture interface: v2.00 17358 [ 31.120344] meson-drm ff900000.vpu: Queued 2 outputs on vpu 17359 [ 31.167719] Registered IR keymap rc-odroid 17360 [ 31.180880] meson-drm ff900000.vpu: CVBS Output connector not available 17361 [ 31.188871] IR NEC protocol handler initialized 17362 [ 31.207879] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 17363 [ 31.209867] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 17364 [ 31.210197] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 17365 [ 31.210786] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 17366 [ 31.223122] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 17367 [ 31.223262] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 17368 [ 31.223328] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 17369 [ 31.223576] meson-ir ff808000.ir: receiver initialized 17370 [ 31.250270] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 17371 [ 31.495850] Console: switching to colour frame buffer device 240x67 17372 [ 31.522379] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 17373 [ 31.563138] axg-sound-card sound: ASoC: no DMI vendor name! 17374 [ 32.139707] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 17375 [ 32.202958] zram1: detected capacity change from 0 to 52428800 17376 [ 34.289902] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 17377 [ 34.289923] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 17378 [ 35.488954] systemd[1]: Started Armbian memory supported logging. 17379 [ 35.493072] systemd[1]: Starting Journal Service... 17380 [ 35.549201] systemd[1]: Started Journal Service. 17381 [ 35.578504] systemd-journald[1839]: Received request to flush runtime journal from PID 1 17382 17383 ### armbian-release: 17384 17385 # PLEASE DO NOT EDIT THIS FILE 17386 BOARD=odroidn2 17387 BOARD_NAME="Odroid N2" 17388 BOARDFAMILY=meson-g12b 17389 BUILD_REPOSITORY_URL=https://github.com/armbian/build 17390 BUILD_REPOSITORY_COMMIT=5f03d652 17391 DISTRIBUTION_CODENAME=buster 17392 DISTRIBUTION_STATUS=supported 17393 VERSION=21.02.1 17394 LINUXFAMILY=meson64 17395 BRANCH=current 17396 ARCH=arm64 17397 IMAGE_TYPE=stable 17398 BOARD_TYPE=conf 17399 INITRD_ARCH=arm64 17400 KERNEL_IMAGE_TYPE=Image 17401 17402 ### boot environment: 17403 17404 verbosity=1 17405 console=both 17406 overlay_prefix=meson 17407 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 17408 rootfstype=ext4 17409 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 17410 17411 ### lsusb: 17412 17413 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 17414 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 17415 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 17416 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 17417 17418 ### lscpu: 17419 17420 Architecture: aarch64 17421 Byte Order: Little Endian 17422 CPU(s): 6 17423 On-line CPU(s) list: 0-5 17424 Thread(s) per core: 1 17425 Core(s) per socket: 3 17426 Socket(s): 2 17427 NUMA node(s): 1 17428 Vendor ID: ARM 17429 Model: 4 17430 Model name: Cortex-A53 17431 Stepping: r0p4 17432 CPU max MHz: 1992.0000 17433 CPU min MHz: 100.0000 17434 BogoMIPS: 48.00 17435 L1d cache: unknown size 17436 L1i cache: unknown size 17437 L2 cache: unknown size 17438 NUMA node0 CPU(s): 0-5 17439 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 17440 17441 ### cpuinfo: 17442 17443 processor : 0 17444 BogoMIPS : 48.00 17445 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 17446 CPU implementer : 0x41 17447 CPU architecture: 8 17448 CPU variant : 0x0 17449 CPU part : 0xd03 17450 CPU revision : 4 17451 17452 processor : 1 17453 BogoMIPS : 48.00 17454 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 17455 CPU implementer : 0x41 17456 CPU architecture: 8 17457 CPU variant : 0x0 17458 CPU part : 0xd03 17459 CPU revision : 4 17460 17461 processor : 2 17462 BogoMIPS : 48.00 17463 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 17464 CPU implementer : 0x41 17465 CPU architecture: 8 17466 CPU variant : 0x0 17467 CPU part : 0xd09 17468 CPU revision : 2 17469 17470 processor : 3 17471 BogoMIPS : 48.00 17472 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 17473 CPU implementer : 0x41 17474 CPU architecture: 8 17475 CPU variant : 0x0 17476 CPU part : 0xd09 17477 CPU revision : 2 17478 17479 processor : 4 17480 BogoMIPS : 48.00 17481 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 17482 CPU implementer : 0x41 17483 CPU architecture: 8 17484 CPU variant : 0x0 17485 CPU part : 0xd09 17486 CPU revision : 2 17487 17488 processor : 5 17489 BogoMIPS : 48.00 17490 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 17491 CPU implementer : 0x41 17492 CPU architecture: 8 17493 CPU variant : 0x0 17494 CPU part : 0xd09 17495 CPU revision : 2 17496 17497 17498 ### meminfo: 17499 17500 MemTotal: 3719728 kB 17501 MemFree: 3388276 kB 17502 MemAvailable: 3342788 kB 17503 Buffers: 11548 kB 17504 Cached: 46240 kB 17505 SwapCached: 0 kB 17506 Active: 30256 kB 17507 Inactive: 192588 kB 17508 Active(anon): 100 kB 17509 Inactive(anon): 170264 kB 17510 Active(file): 30156 kB 17511 Inactive(file): 22324 kB 17512 Unevictable: 0 kB 17513 Mlocked: 0 kB 17514 SwapTotal: 1859860 kB 17515 SwapFree: 1859860 kB 17516 Dirty: 7152 kB 17517 Writeback: 0 kB 17518 AnonPages: 165380 kB 17519 Mapped: 10952 kB 17520 Shmem: 4868 kB 17521 KReclaimable: 13264 kB 17522 Slab: 39112 kB 17523 SReclaimable: 13264 kB 17524 SUnreclaim: 25848 kB 17525 KernelStack: 2064 kB 17526 PageTables: 4740 kB 17527 NFS_Unstable: 0 kB 17528 Bounce: 0 kB 17529 WritebackTmp: 0 kB 17530 CommitLimit: 3719724 kB 17531 Committed_AS: 4210508 kB 17532 VmallocTotal: 135290159040 kB 17533 VmallocUsed: 30896 kB 17534 VmallocChunk: 0 kB 17535 Percpu: 1368 kB 17536 HardwareCorrupted: 0 kB 17537 AnonHugePages: 0 kB 17538 ShmemHugePages: 0 kB 17539 ShmemPmdMapped: 0 kB 17540 FileHugePages: 0 kB 17541 FilePmdMapped: 0 kB 17542 CmaTotal: 917504 kB 17543 CmaFree: 901724 kB 17544 HugePages_Total: 0 17545 HugePages_Free: 0 17546 HugePages_Rsvd: 0 17547 HugePages_Surp: 0 17548 Hugepagesize: 2048 kB 17549 Hugetlb: 0 kB 17550 17551 ### virtual memory: 17552 17553 vm.admin_reserve_kbytes = 8192 17554 vm.block_dump = 0 17555 vm.compaction_proactiveness = 20 17556 vm.compact_unevictable_allowed = 1 17557 vm.dirty_background_bytes = 0 17558 vm.dirty_background_ratio = 10 17559 vm.dirty_bytes = 0 17560 vm.dirty_expire_centisecs = 3000 17561 vm.dirty_ratio = 20 17562 vm.dirtytime_expire_seconds = 43200 17563 vm.dirty_writeback_centisecs = 500 17564 vm.extfrag_threshold = 500 17565 vm.hugetlb_shm_group = 0 17566 vm.laptop_mode = 0 17567 vm.legacy_va_layout = 0 17568 vm.lowmem_reserve_ratio = 256 256 32 0 17569 vm.max_map_count = 65530 17570 vm.memory_failure_early_kill = 0 17571 vm.memory_failure_recovery = 1 17572 vm.min_free_kbytes = 45056 17573 vm.min_slab_ratio = 5 17574 vm.min_unmapped_ratio = 1 17575 vm.mmap_min_addr = 4096 17576 vm.mmap_rnd_bits = 18 17577 vm.mmap_rnd_compat_bits = 11 17578 vm.nr_hugepages = 0 17579 vm.nr_hugepages_mempolicy = 0 17580 vm.nr_overcommit_hugepages = 0 17581 vm.numa_stat = 1 17582 vm.numa_zonelist_order = Node 17583 vm.oom_dump_tasks = 1 17584 vm.oom_kill_allocating_task = 0 17585 vm.overcommit_kbytes = 0 17586 vm.overcommit_memory = 0 17587 vm.overcommit_ratio = 50 17588 vm.page-cluster = 0 17589 vm.page_lock_unfairness = 5 17590 vm.panic_on_oom = 0 17591 vm.percpu_pagelist_fraction = 0 17592 vm.stat_interval = 1 17593 vm.swappiness = 100 17594 vm.user_reserve_kbytes = 115003 17595 vm.vfs_cache_pressure = 100 17596 vm.watermark_boost_factor = 15000 17597 vm.watermark_scale_factor = 10 17598 vm.zone_reclaim_mode = 0 17599 17600 ### ip addr: 17601 17602 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 17603 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 17604 inet XXX.XXX.0.1/8 scope host lo 17605 valid_lft forever preferred_lft forever 17606 inet6 ::1/128 scope host 17607 valid_lft forever preferred_lft forever 17608 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 17609 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 17610 17611 ### partitions: 17612 17613 major minor #blocks name 17614 17615 179 0 31464960 mmcblk1 17616 179 1 31146208 mmcblk1p1 17617 252 0 1859864 zram0 17618 252 1 51200 zram1 17619 17620 ### df: 17621 17622 udev 1.4G 0 1.4G 0% /dev 17623 tmpfs 364M 4.9M 359M 2% /run 17624 /dev/mmcblk1p1 30G 1.8G 28G 6% / 17625 tmpfs 1.8G 0 1.8G 0% /dev/shm 17626 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 17627 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 17628 tmpfs 1.8G 0 1.8G 0% /tmp 17629 /dev/zram1 49M 7.0M 38M 16% /var/log 17630 17631 ### lsblk: 17632 17633 NAME FSTYPE SIZE MOUNTPOINT UUID 17634 mmcblk1 30G 17635 └─mmcblk1p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 17636 zram1 50M /var/log 17637 17638 ### zramctl: 17639 17640 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 17641 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 17642 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 17643 17644 ### mtab: 17645 17646 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 17647 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 17648 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 17649 17650 ### mmc1:b368 info: 17651 17652 fwrev: 0x0 17653 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 17654 cid: 6f0303434241445310aa002b4d013b00 17655 rca: 0xb368 17656 csd: 400e005a5b590000f00e7f800a404000 17657 manfid: 0x00006f 17658 ocr: 0x00200000 17659 preferred_erase_size: 2097152 17660 type: SD 17661 hwrev: 0x1 17662 date: 11/2019 17663 dsr: 0x404 17664 erase_size: 512 17665 oemid: 0x0303 17666 serial: 0xaa002b4d 17667 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 17668 scr: 02b5800300000000 17669 name: CBADS 17670 17671 ### Boot system health: 17672 17673 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 17674 14:45:42: 1908/1992MHz 0.59 7% 3% 1% 0% 1% 0% 32.5°C 0/11 17675 14:45:42: 1908/1992MHz 0.59 87% 33% 3% 0% 49% 0% 31.6°C 0/11 17676 14:45:43: 1908/1992MHz 0.59 55% 5% 3% 0% 44% 1% 29.3°C 0/11 17677 14:45:43: 1908/1992MHz 0.59 56% 6% 5% 0% 43% 0% 28.8°C 0/11 17678 14:45:43: 1908/1000MHz 0.59 41% 3% 5% 0% 32% 0% 28.7°C 0/11 17679 17680 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 17681 17682 ### Activated Armbian ramlog partition with zstd compression 17683 17684 Sun 21 Feb 2021 02:49:11 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 17685 17686 ### dmesg: 17687 17688 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 17689 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 17690 [ 0.000000] Machine model: Hardkernel ODROID-N2 17691 [ 0.000000] efi: UEFI not found. 17692 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 17693 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 17694 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 17695 [ 0.000000] NUMA: No NUMA configuration found 17696 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 17697 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 17698 [ 0.000000] Zone ranges: 17699 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 17700 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 17701 [ 0.000000] Normal empty 17702 [ 0.000000] Movable zone start for each node 17703 [ 0.000000] Early memory node ranges 17704 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 17705 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 17706 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 17707 [ 0.000000] On node 0 totalpages: 972032 17708 [ 0.000000] DMA zone: 4096 pages used for memmap 17709 [ 0.000000] DMA zone: 0 pages reserved 17710 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 17711 [ 0.000000] DMA32 zone: 11104 pages used for memmap 17712 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 17713 [ 0.000000] psci: probing for conduit method from DT. 17714 [ 0.000000] psci: PSCIv1.0 detected in firmware. 17715 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 17716 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 17717 [ 0.000000] psci: SMC Calling Convention v1.1 17718 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 17719 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 17720 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 17721 [ 0.000000] Detected VIPT I-cache on CPU0 17722 [ 0.000000] CPU features: detected: ARM erratum 845719 17723 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 17724 [ 0.000000] Policy zone: DMA32 17725 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 17726 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 17727 Please use sysfs to set IO scheduler for individual devices. 17728 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 17729 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 17730 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 17731 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 17732 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 17733 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 17734 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 17735 [ 0.000000] rcu: RCU event tracing is enabled. 17736 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 17737 [ 0.000000] Trampoline variant of Tasks RCU enabled. 17738 [ 0.000000] Rude variant of Tasks RCU enabled. 17739 [ 0.000000] Tracing variant of Tasks RCU enabled. 17740 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 17741 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 17742 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 17743 [ 0.000000] GIC: Using split EOI/Deactivate mode 17744 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 17745 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 17746 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 17747 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 17748 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 17749 [ 0.000243] Console: colour dummy device 80x25 17750 [ 0.000278] printk: console [tty1] enabled 17751 [ 0.000365] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 17752 [ 0.000377] pid_max: default: 32768 minimum: 301 17753 [ 0.000462] LSM: Security Framework initializing 17754 [ 0.000488] Yama: becoming mindful. 17755 [ 0.000579] AppArmor: AppArmor initialized 17756 [ 0.000630] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 17757 [ 0.000649] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 17758 [ 0.002642] rcu: Hierarchical SRCU implementation. 17759 [ 0.004997] EFI services will not be available. 17760 [ 0.005421] smp: Bringing up secondary CPUs ... 17761 [ 0.006092] Detected VIPT I-cache on CPU1 17762 [ 0.006153] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 17763 [ 0.007344] CPU features: detected: ARM erratum 858921 17764 [ 0.007352] CPU features: detected: Spectre-v2 17765 [ 0.007355] CPU features: detected: Spectre-v4 17766 [ 0.007362] Detected VIPT I-cache on CPU2 17767 [ 0.007388] arch_timer: Enabling local workaround for ARM erratum 858921 17768 [ 0.007402] arch_timer: CPU2: Trapping CNTVCT access 17769 [ 0.007415] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 17770 [ 0.008123] Detected VIPT I-cache on CPU3 17771 [ 0.008139] arch_timer: Enabling local workaround for ARM erratum 858921 17772 [ 0.008146] arch_timer: CPU3: Trapping CNTVCT access 17773 [ 0.008154] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 17774 [ 0.008780] Detected VIPT I-cache on CPU4 17775 [ 0.008797] arch_timer: Enabling local workaround for ARM erratum 858921 17776 [ 0.008804] arch_timer: CPU4: Trapping CNTVCT access 17777 [ 0.008812] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 17778 [ 0.009428] Detected VIPT I-cache on CPU5 17779 [ 0.009444] arch_timer: Enabling local workaround for ARM erratum 858921 17780 [ 0.009451] arch_timer: CPU5: Trapping CNTVCT access 17781 [ 0.009458] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 17782 [ 0.009537] smp: Brought up 1 node, 6 CPUs 17783 [ 0.009555] SMP: Total of 6 processors activated. 17784 [ 0.009563] CPU features: detected: 32-bit EL0 Support 17785 [ 0.009569] CPU features: detected: CRC32 instructions 17786 [ 0.009575] CPU features: detected: 32-bit EL1 Support 17787 [ 0.020867] CPU: All CPU(s) started at EL2 17788 [ 0.020916] alternatives: patching kernel code 17789 [ 0.022868] devtmpfs: initialized 17790 [ 0.030538] Registered cp15_barrier emulation handler 17791 [ 0.030552] Registered setend emulation handler 17792 [ 0.030688] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 17793 [ 0.030728] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 17794 [ 0.044671] pinctrl core: initialized pinctrl subsystem 17795 [ 0.045218] DMI not present or invalid. 17796 [ 0.045620] NET: Registered protocol family 16 17797 [ 0.047147] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 17798 [ 0.047420] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 17799 [ 0.047645] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 17800 [ 0.047690] audit: initializing netlink subsys (disabled) 17801 [ 0.047799] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 17802 [ 0.049031] thermal_sys: Registered thermal governor 'fair_share' 17803 [ 0.049039] thermal_sys: Registered thermal governor 'bang_bang' 17804 [ 0.049044] thermal_sys: Registered thermal governor 'step_wise' 17805 [ 0.049047] thermal_sys: Registered thermal governor 'user_space' 17806 [ 0.049476] cpuidle: using governor menu 17807 [ 0.049845] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 17808 [ 0.049968] ASID allocator initialised with 65536 entries 17809 [ 0.050925] Serial: AMBA PL011 UART driver 17810 [ 0.084631] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 17811 [ 0.084640] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 17812 [ 0.084645] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 17813 [ 0.084649] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 17814 [ 0.087404] cryptd: max_cpu_qlen set to 1000 17815 [ 0.156149] raid6: neonx8 gen() 2786 MB/s 17816 [ 0.224208] raid6: neonx8 xor() 2042 MB/s 17817 [ 0.292310] raid6: neonx4 gen() 2999 MB/s 17818 [ 0.360361] raid6: neonx4 xor() 2395 MB/s 17819 [ 0.428409] raid6: neonx2 gen() 2529 MB/s 17820 [ 0.496476] raid6: neonx2 xor() 2208 MB/s 17821 [ 0.564541] raid6: neonx1 gen() 2080 MB/s 17822 [ 0.632613] raid6: neonx1 xor() 1727 MB/s 17823 [ 0.700691] raid6: int64x8 gen() 1373 MB/s 17824 [ 0.768742] raid6: int64x8 xor() 735 MB/s 17825 [ 0.836827] raid6: int64x4 gen() 1463 MB/s 17826 [ 0.904878] raid6: int64x4 xor() 733 MB/s 17827 [ 0.972940] raid6: int64x2 gen() 1362 MB/s 17828 [ 1.041019] raid6: int64x2 xor() 619 MB/s 17829 [ 1.109077] raid6: int64x1 gen() 1120 MB/s 17830 [ 1.177140] raid6: int64x1 xor() 462 MB/s 17831 [ 1.177144] raid6: using algorithm neonx4 gen() 2999 MB/s 17832 [ 1.177147] raid6: .... xor() 2395 MB/s, rmw enabled 17833 [ 1.177151] raid6: using neon recovery algorithm 17834 [ 1.177582] ACPI: Interpreter disabled. 17835 [ 1.178355] 5V: supplied by 12V 17836 [ 1.179240] VDDAO_3V3: supplied by 12V 17837 [ 1.179744] iommu: Default domain type: Translated 17838 [ 1.179857] vgaarb: loaded 17839 [ 1.180498] SCSI subsystem initialized 17840 [ 1.180699] usbcore: registered new interface driver usbfs 17841 [ 1.180737] usbcore: registered new interface driver hub 17842 [ 1.180772] usbcore: registered new device driver usb 17843 [ 1.181043] pps_core: LinuxPPS API ver. 1 registered 17844 [ 1.181048] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 17845 [ 1.181059] PTP clock support registered 17846 [ 1.181213] EDAC MC: Ver: 3.0.0 17847 [ 1.182550] NetLabel: Initializing 17848 [ 1.182558] NetLabel: domain hash size = 128 17849 [ 1.182561] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 17850 [ 1.182606] NetLabel: unlabeled traffic allowed by default 17851 [ 1.183164] clocksource: Switched to clocksource arch_sys_counter 17852 [ 1.183379] VFS: Disk quotas dquot_6.6.0 17853 [ 1.183426] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 17854 [ 1.183791] AppArmor: AppArmor Filesystem Enabled 17855 [ 1.183837] pnp: PnP ACPI: disabled 17856 [ 1.189604] NET: Registered protocol family 2 17857 [ 1.190057] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 17858 [ 1.190163] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 17859 [ 1.190420] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 17860 [ 1.190606] TCP: Hash tables configured (established 32768 bind 32768) 17861 [ 1.190758] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 17862 [ 1.190824] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 17863 [ 1.190871] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 17864 [ 1.191009] NET: Registered protocol family 1 17865 [ 1.191030] PCI: CLS 0 bytes, default 64 17866 [ 1.191248] Trying to unpack rootfs image as initramfs... 17867 [ 1.727520] Freeing initrd memory: 13544K 17868 [ 1.728419] kvm [1]: IPA Size Limit: 40 bits 17869 [ 1.729127] kvm [1]: vgic interrupt IRQ9 17870 [ 1.729260] kvm [1]: Hyp mode initialized successfully 17871 [ 1.734257] Initialise system trusted keyrings 17872 [ 1.734290] Key type blacklist registered 17873 [ 1.734395] workingset: timestamp_bits=44 max_order=20 bucket_order=0 17874 [ 1.737585] zbud: loaded 17875 [ 1.738564] squashfs: version 4.0 (2009/01/31) Phillip Lougher 17876 [ 1.739020] fuse: init (API version 7.32) 17877 [ 1.739802] integrity: Platform Keyring initialized 17878 [ 1.767588] xor: measuring software checksum speed 17879 [ 1.770426] 8regs : 3473 MB/sec 17880 [ 1.772884] 32regs : 4025 MB/sec 17881 [ 1.775537] arm64_neon : 3719 MB/sec 17882 [ 1.775540] xor: using function: 32regs (4025 MB/sec) 17883 [ 1.775547] Key type asymmetric registered 17884 [ 1.775551] Asymmetric key parser 'x509' registered 17885 [ 1.775582] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 17886 [ 1.775711] io scheduler mq-deadline registered 17887 [ 1.775716] io scheduler kyber registered 17888 [ 1.775796] io scheduler bfq registered 17889 [ 1.778267] gpio-447 (usb-hub-reset): hogged as output/high 17890 [ 1.781153] EINJ: ACPI disabled. 17891 [ 1.787328] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 17892 [ 1.788679] VCC_3V3: supplied by VDDAO_3V3 17893 [ 1.788712] FLASH_1V8: supplied by VCC_3V3 17894 [ 1.788744] VCC_1V8: supplied by VCC_3V3 17895 [ 1.788784] VDDAO_1V8: supplied by VDDAO_3V3 17896 [ 1.788814] VDDCPU_A: supplied by regulator-dummy 17897 [ 1.789159] VDDCPU_B: supplied by regulator-dummy 17898 [ 1.789802] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 17899 [ 1.792176] Serial: AMBA driver 17900 [ 1.792437] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 17901 [ 1.792528] printk: console [ttyAML0] enabled 17902 [ 1.793001] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 17903 [ 1.798206] loop: module loaded 17904 [ 1.800029] libphy: Fixed MDIO Bus: probed 17905 [ 1.801139] tun: Universal TUN/TAP device driver, 1.6 17906 [ 1.801749] thunder_xcv, ver 1.0 17907 [ 1.801777] thunder_bgx, ver 1.0 17908 [ 1.801810] nicpf, ver 1.0 17909 [ 1.802253] e1000e: Intel(R) PRO/1000 Network Driver 17910 [ 1.802256] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 17911 [ 1.802297] igb: Intel(R) Gigabit Ethernet Network Driver 17912 [ 1.802300] igb: Copyright (c) 2007-2014 Intel Corporation. 17913 [ 1.802332] igbvf: Intel(R) Gigabit Virtual Function Network Driver 17914 [ 1.802335] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 17915 [ 1.802456] sky2: driver version 1.30 17916 [ 1.802821] VFIO - User Level meta-driver version: 0.3 17917 [ 1.804253] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 17918 [ 1.804274] ehci-pci: EHCI PCI platform driver 17919 [ 1.804303] ehci-platform: EHCI generic platform driver 17920 [ 1.804422] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 17921 [ 1.804432] ohci-pci: OHCI PCI platform driver 17922 [ 1.804461] ohci-platform: OHCI generic platform driver 17923 [ 1.804834] usbcore: registered new interface driver usb-storage 17924 [ 1.806026] mousedev: PS/2 mouse device common for all mice 17925 [ 1.806357] i2c /dev entries driver 17926 [ 1.811578] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 17927 [ 1.812241] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 17928 [ 1.812925] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 17929 [ 1.813538] sdhci: Secure Digital Host Controller Interface driver 17930 [ 1.813545] sdhci: Copyright(c) Pierre Ossman 17931 [ 1.813664] Synopsys Designware Multimedia Card Interface Driver 17932 [ 1.814080] sdhci-pltfm: SDHCI platform and OF driver helper 17933 [ 1.814495] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 17934 [ 1.814922] ledtrig-cpu: registered to indicate activity on CPUs 17935 [ 1.815345] meson-sm: secure-monitor enabled 17936 [ 1.815575] hid: raw HID events driver (C) Jiri Kosina 17937 [ 1.815655] usbcore: registered new interface driver usbhid 17938 [ 1.815657] usbhid: USB HID core driver 17939 [ 1.816739] NET: Registered protocol family 10 17940 [ 1.817167] Segment Routing with IPv6 17941 [ 1.817198] NET: Registered protocol family 17 17942 [ 1.817251] 8021q: 802.1Q VLAN Support v1.8 17943 [ 1.817283] Key type dns_resolver registered 17944 [ 1.817574] registered taskstats version 1 17945 [ 1.817579] Loading compiled-in X.509 certificates 17946 [ 1.819337] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 17947 [ 1.821084] zswap: loaded using pool zstd/z3fold 17948 [ 1.821259] Key type ._fscrypt registered 17949 [ 1.821262] Key type .fscrypt registered 17950 [ 1.821263] Key type fscrypt-provisioning registered 17951 [ 1.822345] Btrfs loaded, crc32c=crc32c-generic 17952 [ 1.828438] Key type encrypted registered 17953 [ 1.828450] AppArmor: AppArmor sha1 policy hashing enabled 17954 [ 1.834702] HUB_5V: supplied by 5V 17955 [ 1.834897] USB_PWR_EN: supplied by 5V 17956 [ 1.836651] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 17957 [ 1.836658] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 17958 [ 1.839566] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 17959 [ 1.839631] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 17960 [ 1.839766] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 17961 [ 1.840358] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 17962 [ 1.840370] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 17963 [ 1.840527] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 17964 [ 1.840557] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 17965 [ 1.840690] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 17966 [ 1.840693] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 17967 [ 1.840696] usb usb1: Product: xHCI Host Controller 17968 [ 1.840699] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 17969 [ 1.840701] usb usb1: SerialNumber: xhci-hcd.0.auto 17970 [ 1.840916] hub 1-0:1.0: USB hub found 17971 [ 1.840929] hub 1-0:1.0: 2 ports detected 17972 [ 1.841054] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 17973 [ 1.841061] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 17974 [ 1.841066] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 17975 [ 1.841089] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 17976 [ 1.841119] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 17977 [ 1.841122] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 17978 [ 1.841125] usb usb2: Product: xHCI Host Controller 17979 [ 1.841128] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 17980 [ 1.841130] usb usb2: SerialNumber: xhci-hcd.0.auto 17981 [ 1.841306] hub 2-0:1.0: USB hub found 17982 [ 1.841316] hub 2-0:1.0: 1 port detected 17983 [ 1.842390] meson-gx-mmc ffe05000.sd: Got CD GPIO 17984 [ 1.868154] Freeing unused kernel memory: 3328K 17985 [ 1.903186] Run /init as init process 17986 [ 1.903190] with arguments: 17987 [ 1.903193] /init 17988 [ 1.903195] with environment: 17989 [ 1.903197] HOME=/ 17990 [ 1.903198] TERM=linux 17991 [ 1.903200] hdmimode=custombuilt 17992 [ 1.903201] cvbsmode=576cvbs 17993 [ 1.903203] max_freq_a53=1896 17994 [ 1.903204] max_freq_a73=1800 17995 [ 1.903205] voutmode=hdmi 17996 [ 1.903208] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 17997 [ 1.903209] disablehpd=false 17998 [ 1.903210] cvbscable= 17999 [ 1.903212] overscan=100 18000 [ 1.933316] mmc0: new ultra high speed SDR25 SDHC card at address b368 18001 [ 1.933892] mmcblk0: mmc0:b368 CBADS 30.0 GiB 18002 [ 1.936394] mmcblk0: p1 18003 [ 2.065641] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 18004 [ 2.065651] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 18005 [ 2.065823] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 18006 [ 2.067576] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 18007 [ 2.067591] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 18008 [ 2.067595] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 18009 [ 2.067598] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 18010 [ 2.067600] meson8b-dwmac ff3f0000.ethernet: COE Type 2 18011 [ 2.067603] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 18012 [ 2.067605] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 18013 [ 2.067686] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 18014 [ 2.067690] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 18015 [ 2.067693] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 18016 [ 2.068068] libphy: stmmac: probed 18017 [ 2.071970] libphy: mdio_mux: probed 18018 [ 2.081972] meson-vrtc ff8000a8.rtc: registered as rtc1 18019 [ 2.096238] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 18020 [ 2.096623] rtc-pcf8563 1-0051: registered as rtc0 18021 [ 2.097810] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 18022 [ 2.097816] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 18023 [ 2.099920] random: fast init done 18024 [ 2.183147] usb 1-1: new high-speed USB device number 2 using xhci-hcd 18025 [ 2.275561] libphy: mdio_mux: probed 18026 [ 2.337483] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 18027 [ 2.337490] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 18028 [ 2.337493] usb 1-1: Product: USB2.1 Hub 18029 [ 2.337495] usb 1-1: Manufacturer: GenesysLogic 18030 [ 2.385271] hub 1-1:1.0: USB hub found 18031 [ 2.385521] hub 1-1:1.0: 4 ports detected 18032 [ 2.463241] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 18033 [ 2.485718] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 18034 [ 2.485721] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 18035 [ 2.485724] usb 2-1: Product: USB3.1 Hub 18036 [ 2.485726] usb 2-1: Manufacturer: GenesysLogic 18037 [ 2.513264] hub 2-1:1.0: USB hub found 18038 [ 2.513546] hub 2-1:1.0: 4 ports detected 18039 [ 2.611136] usb 1-2: new high-speed USB device number 3 using xhci-hcd 18040 [ 2.759576] usb 1-2: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 18041 [ 2.759579] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 18042 [ 2.759582] usb 1-2: Product: PCTV 292e 18043 [ 2.759584] usb 1-2: Manufacturer: PCTV 18044 [ 2.759586] usb 1-2: SerialNumber: 0011356964 18045 [ 3.155694] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 18046 [ 3.958874] systemd[1]: System time before build time, advancing clock. 18047 [ 3.973697] systemd[1]: Inserted module 'autofs4' 18048 [ 4.020247] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 18049 [ 4.020461] systemd[1]: Detected architecture arm64. 18050 [ 4.053149] systemd[1]: Set hostname to <odroidn2>. 18051 [ 4.379877] random: systemd: uninitialized urandom read (16 bytes read) 18052 [ 4.383164] random: systemd: uninitialized urandom read (16 bytes read) 18053 [ 4.383333] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 18054 [ 4.383526] random: systemd: uninitialized urandom read (16 bytes read) 18055 [ 4.383795] systemd[1]: Listening on Journal Socket. 18056 [ 4.386190] systemd[1]: Starting Create list of required static device nodes for the current kernel... 18057 [ 4.386391] systemd[1]: Reached target System Time Synchronized. 18058 [ 4.386758] systemd[1]: Listening on Syslog Socket. 18059 [ 4.387164] systemd[1]: Listening on Journal Audit Socket. 18060 [ 4.388890] systemd[1]: Starting Nameserver information manager... 18061 [ 4.438413] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 18062 [ 4.999893] zram: Added device: zram0 18063 [ 5.000133] zram: Added device: zram1 18064 [ 5.000309] zram: Added device: zram2 18065 [ 5.010518] pwm-gpio pwmgpio: 1 gpio pwms loaded 18066 [ 5.195777] mc: Linux media interface: v0.10 18067 [ 5.221997] panfrost ffe40000.gpu: clock rate = 24000000 18068 [ 5.222071] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 18069 [ 5.222886] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 18070 [ 5.222899] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 18071 [ 5.222904] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 18072 [ 5.222908] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 18073 [ 5.237482] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 18074 [ 5.274596] videodev: Linux video capture interface: v2.00 18075 [ 5.280308] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 18076 [ 5.298544] meson-drm ff900000.vpu: Queued 2 outputs on vpu 18077 [ 5.352888] meson-drm ff900000.vpu: CVBS Output connector not available 18078 [ 5.369381] Registered IR keymap rc-odroid 18079 [ 5.383525] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 18080 [ 5.384179] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 18081 [ 5.384736] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 18082 [ 5.385227] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 18083 [ 5.392303] IR NEC protocol handler initialized 18084 [ 5.393784] zram0: detected capacity change from 0 to 1904500736 18085 [ 5.419258] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 18086 [ 5.419414] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 18087 [ 5.419579] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 18088 [ 5.419872] meson-ir ff808000.ir: receiver initialized 18089 [ 5.452234] em28xx 1-2:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 18090 [ 5.452244] em28xx 1-2:1.0: DVB interface 0 found: isoc 18091 [ 5.466145] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 18092 [ 5.515212] em28xx 1-2:1.0: chip ID is em28178 18093 [ 5.667320] Console: switching to colour frame buffer device 240x67 18094 [ 5.702033] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 18095 [ 5.738689] axg-sound-card sound: ASoC: no DMI vendor name! 18096 [ 6.463143] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 18097 [ 6.529008] zram1: detected capacity change from 0 to 52428800 18098 [ 7.557497] em28xx 1-2:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 18099 [ 7.557503] em28xx 1-2:1.0: EEPROM info: 18100 [ 7.557507] em28xx 1-2:1.0: microcode start address = 0x0004, boot configuration = 0x01 18101 [ 7.563611] em28xx 1-2:1.0: AC97 audio (5 sample rates) 18102 [ 7.563615] em28xx 1-2:1.0: 500mA max power 18103 [ 7.563620] em28xx 1-2:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 18104 [ 7.623146] em28xx 1-2:1.0: Identified as PCTV tripleStick (292e) (card=94) 18105 [ 7.623153] em28xx 1-2:1.0: dvb set to isoc mode. 18106 [ 7.623374] usbcore: registered new interface driver em28xx 18107 [ 7.649510] em28xx 1-2:1.0: Binding DVB extension 18108 [ 7.662797] i2c i2c-4: Added multiplexed i2c bus 5 18109 [ 7.662806] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 18110 [ 7.662808] si2168 4-0064: firmware version: B 4.0.2 18111 [ 7.673803] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 18112 [ 7.673842] dvbdev: DVB: registering new adapter (1-2:1.0) 18113 [ 7.673848] em28xx 1-2:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 18114 [ 7.673854] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 18115 [ 7.674508] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 18116 [ 7.675900] em28xx 1-2:1.0: DVB extension successfully initialized 18117 [ 7.675909] em28xx: Registered (Em28xx dvb Extension) extension 18118 [ 7.683843] em28xx 1-2:1.0: Registering input extension 18119 [ 7.719130] Registered IR keymap rc-pinnacle-pctv-hd 18120 [ 7.719386] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1 18121 [ 7.719492] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 18122 [ 7.719552] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1/input1 18123 [ 7.719632] em28xx 1-2:1.0: Input extension successfully initialized 18124 [ 7.719636] em28xx: Registered (Em28xx Input Extension) extension 18125 [ 8.613898] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 18126 [ 8.613917] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 18127 [ 9.805086] systemd[1]: Started Armbian memory supported logging. 18128 [ 9.807474] systemd[1]: Starting Journal Service... 18129 [ 9.870548] systemd[1]: Started Journal Service. 18130 [ 9.895588] systemd-journald[1846]: Received request to flush runtime journal from PID 1 18131 18132 ### armbian-release: 18133 18134 # PLEASE DO NOT EDIT THIS FILE 18135 BOARD=odroidn2 18136 BOARD_NAME="Odroid N2" 18137 BOARDFAMILY=meson-g12b 18138 BUILD_REPOSITORY_URL=https://github.com/armbian/build 18139 BUILD_REPOSITORY_COMMIT=5f03d652 18140 DISTRIBUTION_CODENAME=buster 18141 DISTRIBUTION_STATUS=supported 18142 VERSION=21.02.1 18143 LINUXFAMILY=meson64 18144 BRANCH=current 18145 ARCH=arm64 18146 IMAGE_TYPE=stable 18147 BOARD_TYPE=conf 18148 INITRD_ARCH=arm64 18149 KERNEL_IMAGE_TYPE=Image 18150 18151 ### boot environment: 18152 18153 verbosity=1 18154 console=both 18155 overlay_prefix=meson 18156 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 18157 rootfstype=ext4 18158 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 18159 18160 ### lsusb: 18161 18162 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 18163 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 18164 Bus 001 Device 003: ID 2013:025f PCTV Systems 18165 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 18166 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 18167 18168 ### lscpu: 18169 18170 Architecture: aarch64 18171 Byte Order: Little Endian 18172 CPU(s): 6 18173 On-line CPU(s) list: 0-5 18174 Thread(s) per core: 1 18175 Core(s) per socket: 3 18176 Socket(s): 2 18177 NUMA node(s): 1 18178 Vendor ID: ARM 18179 Model: 4 18180 Model name: Cortex-A53 18181 Stepping: r0p4 18182 CPU max MHz: 1992.0000 18183 CPU min MHz: 100.0000 18184 BogoMIPS: 48.00 18185 L1d cache: unknown size 18186 L1i cache: unknown size 18187 L2 cache: unknown size 18188 NUMA node0 CPU(s): 0-5 18189 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18190 18191 ### cpuinfo: 18192 18193 processor : 0 18194 BogoMIPS : 48.00 18195 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18196 CPU implementer : 0x41 18197 CPU architecture: 8 18198 CPU variant : 0x0 18199 CPU part : 0xd03 18200 CPU revision : 4 18201 18202 processor : 1 18203 BogoMIPS : 48.00 18204 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18205 CPU implementer : 0x41 18206 CPU architecture: 8 18207 CPU variant : 0x0 18208 CPU part : 0xd03 18209 CPU revision : 4 18210 18211 processor : 2 18212 BogoMIPS : 48.00 18213 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18214 CPU implementer : 0x41 18215 CPU architecture: 8 18216 CPU variant : 0x0 18217 CPU part : 0xd09 18218 CPU revision : 2 18219 18220 processor : 3 18221 BogoMIPS : 48.00 18222 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18223 CPU implementer : 0x41 18224 CPU architecture: 8 18225 CPU variant : 0x0 18226 CPU part : 0xd09 18227 CPU revision : 2 18228 18229 processor : 4 18230 BogoMIPS : 48.00 18231 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18232 CPU implementer : 0x41 18233 CPU architecture: 8 18234 CPU variant : 0x0 18235 CPU part : 0xd09 18236 CPU revision : 2 18237 18238 processor : 5 18239 BogoMIPS : 48.00 18240 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18241 CPU implementer : 0x41 18242 CPU architecture: 8 18243 CPU variant : 0x0 18244 CPU part : 0xd09 18245 CPU revision : 2 18246 18247 18248 ### meminfo: 18249 18250 MemTotal: 3719728 kB 18251 MemFree: 3397544 kB 18252 MemAvailable: 3352492 kB 18253 Buffers: 11700 kB 18254 Cached: 47116 kB 18255 SwapCached: 0 kB 18256 Active: 29092 kB 18257 Inactive: 180244 kB 18258 Active(anon): 128 kB 18259 Inactive(anon): 155668 kB 18260 Active(file): 28964 kB 18261 Inactive(file): 24576 kB 18262 Unevictable: 0 kB 18263 Mlocked: 0 kB 18264 SwapTotal: 1859860 kB 18265 SwapFree: 1859860 kB 18266 Dirty: 7404 kB 18267 Writeback: 0 kB 18268 AnonPages: 150772 kB 18269 Mapped: 12940 kB 18270 Shmem: 4984 kB 18271 KReclaimable: 13072 kB 18272 Slab: 40464 kB 18273 SReclaimable: 13072 kB 18274 SUnreclaim: 27392 kB 18275 KernelStack: 2592 kB 18276 PageTables: 6048 kB 18277 NFS_Unstable: 0 kB 18278 Bounce: 0 kB 18279 WritebackTmp: 0 kB 18280 CommitLimit: 3719724 kB 18281 Committed_AS: 4240264 kB 18282 VmallocTotal: 135290159040 kB 18283 VmallocUsed: 33248 kB 18284 VmallocChunk: 0 kB 18285 Percpu: 1368 kB 18286 HardwareCorrupted: 0 kB 18287 AnonHugePages: 0 kB 18288 ShmemHugePages: 0 kB 18289 ShmemPmdMapped: 0 kB 18290 FileHugePages: 0 kB 18291 FilePmdMapped: 0 kB 18292 CmaTotal: 917504 kB 18293 CmaFree: 901724 kB 18294 HugePages_Total: 0 18295 HugePages_Free: 0 18296 HugePages_Rsvd: 0 18297 HugePages_Surp: 0 18298 Hugepagesize: 2048 kB 18299 Hugetlb: 0 kB 18300 18301 ### virtual memory: 18302 18303 vm.admin_reserve_kbytes = 8192 18304 vm.block_dump = 0 18305 vm.compaction_proactiveness = 20 18306 vm.compact_unevictable_allowed = 1 18307 vm.dirty_background_bytes = 0 18308 vm.dirty_background_ratio = 10 18309 vm.dirty_bytes = 0 18310 vm.dirty_expire_centisecs = 3000 18311 vm.dirty_ratio = 20 18312 vm.dirtytime_expire_seconds = 43200 18313 vm.dirty_writeback_centisecs = 500 18314 vm.extfrag_threshold = 500 18315 vm.hugetlb_shm_group = 0 18316 vm.laptop_mode = 0 18317 vm.legacy_va_layout = 0 18318 vm.lowmem_reserve_ratio = 256 256 32 0 18319 vm.max_map_count = 65530 18320 vm.memory_failure_early_kill = 0 18321 vm.memory_failure_recovery = 1 18322 vm.min_free_kbytes = 45056 18323 vm.min_slab_ratio = 5 18324 vm.min_unmapped_ratio = 1 18325 vm.mmap_min_addr = 4096 18326 vm.mmap_rnd_bits = 18 18327 vm.mmap_rnd_compat_bits = 11 18328 vm.nr_hugepages = 0 18329 vm.nr_hugepages_mempolicy = 0 18330 vm.nr_overcommit_hugepages = 0 18331 vm.numa_stat = 1 18332 vm.numa_zonelist_order = Node 18333 vm.oom_dump_tasks = 1 18334 vm.oom_kill_allocating_task = 0 18335 vm.overcommit_kbytes = 0 18336 vm.overcommit_memory = 0 18337 vm.overcommit_ratio = 50 18338 vm.page-cluster = 0 18339 vm.page_lock_unfairness = 5 18340 vm.panic_on_oom = 0 18341 vm.percpu_pagelist_fraction = 0 18342 vm.stat_interval = 1 18343 vm.swappiness = 100 18344 vm.user_reserve_kbytes = 115026 18345 vm.vfs_cache_pressure = 100 18346 vm.watermark_boost_factor = 15000 18347 vm.watermark_scale_factor = 10 18348 vm.zone_reclaim_mode = 0 18349 18350 ### ip addr: 18351 18352 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 18353 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 18354 inet XXX.XXX.0.1/8 scope host lo 18355 valid_lft forever preferred_lft forever 18356 inet6 ::1/128 scope host 18357 valid_lft forever preferred_lft forever 18358 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 18359 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 18360 18361 ### partitions: 18362 18363 major minor #blocks name 18364 18365 179 0 31464960 mmcblk0 18366 179 1 31146208 mmcblk0p1 18367 252 0 1859864 zram0 18368 252 1 51200 zram1 18369 18370 ### df: 18371 18372 udev 1.4G 0 1.4G 0% /dev 18373 tmpfs 364M 4.9M 359M 2% /run 18374 /dev/mmcblk0p1 30G 1.8G 28G 6% / 18375 tmpfs 1.8G 0 1.8G 0% /dev/shm 18376 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 18377 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 18378 tmpfs 1.8G 0 1.8G 0% /tmp 18379 /dev/zram1 49M 7.3M 38M 17% /var/log 18380 18381 ### lsblk: 18382 18383 NAME FSTYPE SIZE MOUNTPOINT UUID 18384 mmcblk0 30G 18385 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 18386 zram1 50M /var/log 18387 18388 ### zramctl: 18389 18390 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 18391 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 18392 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 18393 18394 ### mtab: 18395 18396 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 18397 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 18398 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 18399 18400 ### mmc0:b368 info: 18401 18402 fwrev: 0x0 18403 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 18404 cid: 6f0303434241445310aa002b4d013b00 18405 rca: 0xb368 18406 csd: 400e005a5b590000f00e7f800a404000 18407 manfid: 0x00006f 18408 ocr: 0x00200000 18409 preferred_erase_size: 2097152 18410 type: SD 18411 hwrev: 0x1 18412 date: 11/2019 18413 dsr: 0x404 18414 erase_size: 512 18415 oemid: 0x0303 18416 serial: 0xaa002b4d 18417 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 18418 scr: 02b5800300000000 18419 name: CBADS 18420 18421 ### Boot system health: 18422 18423 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 18424 14:49:12: 1908/1992MHz 2.90 25% 11% 5% 0% 8% 0% 26.3°C 0/11 18425 14:49:13: 1908/1992MHz 2.90 75% 21% 1% 0% 51% 0% 22.3°C 0/11 18426 14:49:13: 1908/1992MHz 2.90 64% 10% 8% 1% 43% 1% 22.6°C 0/11 18427 14:49:13: 1908/1992MHz 2.90 50% 5% 3% 0% 41% 0% 21.8°C 0/11 18428 14:49:14: 1908/1992MHz 2.90 53% 2% 4% 0% 46% 0% 21.6°C 0/11 18429 18430 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 18431 18432 ### Activated Armbian ramlog partition with zstd compression 18433 18434 Wed 24 Feb 2021 04:03:32 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 18435 18436 ### dmesg: 18437 18438 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 18439 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 18440 [ 0.000000] Machine model: Hardkernel ODROID-N2 18441 [ 0.000000] efi: UEFI not found. 18442 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 18443 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 18444 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 18445 [ 0.000000] NUMA: No NUMA configuration found 18446 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 18447 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 18448 [ 0.000000] Zone ranges: 18449 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 18450 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 18451 [ 0.000000] Normal empty 18452 [ 0.000000] Movable zone start for each node 18453 [ 0.000000] Early memory node ranges 18454 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 18455 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 18456 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 18457 [ 0.000000] On node 0 totalpages: 972032 18458 [ 0.000000] DMA zone: 4096 pages used for memmap 18459 [ 0.000000] DMA zone: 0 pages reserved 18460 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 18461 [ 0.000000] DMA32 zone: 11104 pages used for memmap 18462 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 18463 [ 0.000000] psci: probing for conduit method from DT. 18464 [ 0.000000] psci: PSCIv1.0 detected in firmware. 18465 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 18466 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 18467 [ 0.000000] psci: SMC Calling Convention v1.1 18468 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 18469 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 18470 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 18471 [ 0.000000] Detected VIPT I-cache on CPU0 18472 [ 0.000000] CPU features: detected: ARM erratum 845719 18473 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 18474 [ 0.000000] Policy zone: DMA32 18475 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 18476 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 18477 Please use sysfs to set IO scheduler for individual devices. 18478 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 18479 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 18480 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 18481 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 18482 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 18483 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 18484 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 18485 [ 0.000000] rcu: RCU event tracing is enabled. 18486 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 18487 [ 0.000000] Trampoline variant of Tasks RCU enabled. 18488 [ 0.000000] Rude variant of Tasks RCU enabled. 18489 [ 0.000000] Tracing variant of Tasks RCU enabled. 18490 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 18491 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 18492 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 18493 [ 0.000000] GIC: Using split EOI/Deactivate mode 18494 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 18495 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 18496 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 18497 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 18498 [ 0.000003] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 18499 [ 0.000241] Console: colour dummy device 80x25 18500 [ 0.000275] printk: console [tty1] enabled 18501 [ 0.000362] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 18502 [ 0.000374] pid_max: default: 32768 minimum: 301 18503 [ 0.000459] LSM: Security Framework initializing 18504 [ 0.000485] Yama: becoming mindful. 18505 [ 0.000576] AppArmor: AppArmor initialized 18506 [ 0.000626] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 18507 [ 0.000645] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 18508 [ 0.002639] rcu: Hierarchical SRCU implementation. 18509 [ 0.004987] EFI services will not be available. 18510 [ 0.005410] smp: Bringing up secondary CPUs ... 18511 [ 0.006077] Detected VIPT I-cache on CPU1 18512 [ 0.006139] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 18513 [ 0.007330] CPU features: detected: ARM erratum 858921 18514 [ 0.007338] CPU features: detected: Spectre-v2 18515 [ 0.007341] CPU features: detected: Spectre-v4 18516 [ 0.007347] Detected VIPT I-cache on CPU2 18517 [ 0.007375] arch_timer: Enabling local workaround for ARM erratum 858921 18518 [ 0.007388] arch_timer: CPU2: Trapping CNTVCT access 18519 [ 0.007401] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 18520 [ 0.008107] Detected VIPT I-cache on CPU3 18521 [ 0.008123] arch_timer: Enabling local workaround for ARM erratum 858921 18522 [ 0.008130] arch_timer: CPU3: Trapping CNTVCT access 18523 [ 0.008138] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 18524 [ 0.008767] Detected VIPT I-cache on CPU4 18525 [ 0.008783] arch_timer: Enabling local workaround for ARM erratum 858921 18526 [ 0.008790] arch_timer: CPU4: Trapping CNTVCT access 18527 [ 0.008798] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 18528 [ 0.009413] Detected VIPT I-cache on CPU5 18529 [ 0.009429] arch_timer: Enabling local workaround for ARM erratum 858921 18530 [ 0.009436] arch_timer: CPU5: Trapping CNTVCT access 18531 [ 0.009444] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 18532 [ 0.009523] smp: Brought up 1 node, 6 CPUs 18533 [ 0.009541] SMP: Total of 6 processors activated. 18534 [ 0.009548] CPU features: detected: 32-bit EL0 Support 18535 [ 0.009555] CPU features: detected: CRC32 instructions 18536 [ 0.009560] CPU features: detected: 32-bit EL1 Support 18537 [ 0.020808] CPU: All CPU(s) started at EL2 18538 [ 0.020857] alternatives: patching kernel code 18539 [ 0.022803] devtmpfs: initialized 18540 [ 0.030468] Registered cp15_barrier emulation handler 18541 [ 0.030482] Registered setend emulation handler 18542 [ 0.030619] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 18543 [ 0.030657] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 18544 [ 0.044531] pinctrl core: initialized pinctrl subsystem 18545 [ 0.045110] DMI not present or invalid. 18546 [ 0.045484] NET: Registered protocol family 16 18547 [ 0.047013] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 18548 [ 0.047285] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 18549 [ 0.047522] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 18550 [ 0.047564] audit: initializing netlink subsys (disabled) 18551 [ 0.047663] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 18552 [ 0.048976] thermal_sys: Registered thermal governor 'fair_share' 18553 [ 0.048983] thermal_sys: Registered thermal governor 'bang_bang' 18554 [ 0.048987] thermal_sys: Registered thermal governor 'step_wise' 18555 [ 0.048990] thermal_sys: Registered thermal governor 'user_space' 18556 [ 0.049409] cpuidle: using governor menu 18557 [ 0.049757] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 18558 [ 0.049876] ASID allocator initialised with 65536 entries 18559 [ 0.050789] Serial: AMBA PL011 UART driver 18560 [ 0.084583] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 18561 [ 0.084594] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 18562 [ 0.084598] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 18563 [ 0.084603] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 18564 [ 0.086860] cryptd: max_cpu_qlen set to 1000 18565 [ 0.156169] raid6: neonx8 gen() 2786 MB/s 18566 [ 0.224228] raid6: neonx8 xor() 2042 MB/s 18567 [ 0.292336] raid6: neonx4 gen() 3001 MB/s 18568 [ 0.360440] raid6: neonx4 xor() 1589 MB/s 18569 [ 0.428486] raid6: neonx2 gen() 2080 MB/s 18570 [ 0.496538] raid6: neonx2 xor() 2211 MB/s 18571 [ 0.564613] raid6: neonx1 gen() 2014 MB/s 18572 [ 0.632677] raid6: neonx1 xor() 1718 MB/s 18573 [ 0.700749] raid6: int64x8 gen() 1374 MB/s 18574 [ 0.768805] raid6: int64x8 xor() 735 MB/s 18575 [ 0.836888] raid6: int64x4 gen() 1463 MB/s 18576 [ 0.904948] raid6: int64x4 xor() 733 MB/s 18577 [ 0.973000] raid6: int64x2 gen() 1362 MB/s 18578 [ 1.041075] raid6: int64x2 xor() 619 MB/s 18579 [ 1.109144] raid6: int64x1 gen() 1120 MB/s 18580 [ 1.177198] raid6: int64x1 xor() 462 MB/s 18581 [ 1.177202] raid6: using algorithm neonx4 gen() 3001 MB/s 18582 [ 1.177205] raid6: .... xor() 1589 MB/s, rmw enabled 18583 [ 1.177209] raid6: using neon recovery algorithm 18584 [ 1.177647] ACPI: Interpreter disabled. 18585 [ 1.178470] 5V: supplied by 12V 18586 [ 1.179377] VDDAO_3V3: supplied by 12V 18587 [ 1.179842] iommu: Default domain type: Translated 18588 [ 1.179972] vgaarb: loaded 18589 [ 1.180982] SCSI subsystem initialized 18590 [ 1.181280] usbcore: registered new interface driver usbfs 18591 [ 1.181317] usbcore: registered new interface driver hub 18592 [ 1.181355] usbcore: registered new device driver usb 18593 [ 1.181598] pps_core: LinuxPPS API ver. 1 registered 18594 [ 1.181602] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 18595 [ 1.181622] PTP clock support registered 18596 [ 1.181811] EDAC MC: Ver: 3.0.0 18597 [ 1.183176] NetLabel: Initializing 18598 [ 1.183183] NetLabel: domain hash size = 128 18599 [ 1.183186] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 18600 [ 1.183229] NetLabel: unlabeled traffic allowed by default 18601 [ 1.183660] clocksource: Switched to clocksource arch_sys_counter 18602 [ 1.183874] VFS: Disk quotas dquot_6.6.0 18603 [ 1.183920] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 18604 [ 1.184280] AppArmor: AppArmor Filesystem Enabled 18605 [ 1.184387] pnp: PnP ACPI: disabled 18606 [ 1.189958] NET: Registered protocol family 2 18607 [ 1.190460] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 18608 [ 1.190535] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 18609 [ 1.190792] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 18610 [ 1.190980] TCP: Hash tables configured (established 32768 bind 32768) 18611 [ 1.191128] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 18612 [ 1.191193] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 18613 [ 1.191239] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 18614 [ 1.191382] NET: Registered protocol family 1 18615 [ 1.191405] PCI: CLS 0 bytes, default 64 18616 [ 1.191537] Trying to unpack rootfs image as initramfs... 18617 [ 1.727339] Freeing initrd memory: 13544K 18618 [ 1.728257] kvm [1]: IPA Size Limit: 40 bits 18619 [ 1.728968] kvm [1]: vgic interrupt IRQ9 18620 [ 1.729100] kvm [1]: Hyp mode initialized successfully 18621 [ 1.732918] Initialise system trusted keyrings 18622 [ 1.732950] Key type blacklist registered 18623 [ 1.733046] workingset: timestamp_bits=44 max_order=20 bucket_order=0 18624 [ 1.736271] zbud: loaded 18625 [ 1.737229] squashfs: version 4.0 (2009/01/31) Phillip Lougher 18626 [ 1.737680] fuse: init (API version 7.32) 18627 [ 1.738453] integrity: Platform Keyring initialized 18628 [ 1.765902] xor: measuring software checksum speed 18629 [ 1.768752] 8regs : 3473 MB/sec 18630 [ 1.771201] 32regs : 4022 MB/sec 18631 [ 1.773849] arm64_neon : 3727 MB/sec 18632 [ 1.773852] xor: using function: 32regs (4022 MB/sec) 18633 [ 1.773858] Key type asymmetric registered 18634 [ 1.773862] Asymmetric key parser 'x509' registered 18635 [ 1.773895] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 18636 [ 1.773981] io scheduler mq-deadline registered 18637 [ 1.773985] io scheduler kyber registered 18638 [ 1.774067] io scheduler bfq registered 18639 [ 1.776571] gpio-447 (usb-hub-reset): hogged as output/high 18640 [ 1.779397] EINJ: ACPI disabled. 18641 [ 1.785456] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 18642 [ 1.786810] VCC_3V3: supplied by VDDAO_3V3 18643 [ 1.786858] FLASH_1V8: supplied by VCC_3V3 18644 [ 1.786889] VCC_1V8: supplied by VCC_3V3 18645 [ 1.786915] VDDAO_1V8: supplied by VDDAO_3V3 18646 [ 1.786944] VDDCPU_A: supplied by regulator-dummy 18647 [ 1.787297] VDDCPU_B: supplied by regulator-dummy 18648 [ 1.788007] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 18649 [ 1.790143] Serial: AMBA driver 18650 [ 1.790419] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 18651 [ 1.790514] printk: console [ttyAML0] enabled 18652 [ 1.791036] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 18653 [ 1.796341] loop: module loaded 18654 [ 1.798280] libphy: Fixed MDIO Bus: probed 18655 [ 1.799399] tun: Universal TUN/TAP device driver, 1.6 18656 [ 1.800074] thunder_xcv, ver 1.0 18657 [ 1.800106] thunder_bgx, ver 1.0 18658 [ 1.800132] nicpf, ver 1.0 18659 [ 1.800573] e1000e: Intel(R) PRO/1000 Network Driver 18660 [ 1.800577] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 18661 [ 1.800616] igb: Intel(R) Gigabit Ethernet Network Driver 18662 [ 1.800620] igb: Copyright (c) 2007-2014 Intel Corporation. 18663 [ 1.800650] igbvf: Intel(R) Gigabit Virtual Function Network Driver 18664 [ 1.800654] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 18665 [ 1.800778] sky2: driver version 1.30 18666 [ 1.801134] VFIO - User Level meta-driver version: 0.3 18667 [ 1.802447] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 18668 [ 1.802468] ehci-pci: EHCI PCI platform driver 18669 [ 1.802502] ehci-platform: EHCI generic platform driver 18670 [ 1.802630] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 18671 [ 1.802640] ohci-pci: OHCI PCI platform driver 18672 [ 1.802671] ohci-platform: OHCI generic platform driver 18673 [ 1.803045] usbcore: registered new interface driver usb-storage 18674 [ 1.804352] mousedev: PS/2 mouse device common for all mice 18675 [ 1.804719] i2c /dev entries driver 18676 [ 1.809752] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 18677 [ 1.810407] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 18678 [ 1.811091] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 18679 [ 1.811713] sdhci: Secure Digital Host Controller Interface driver 18680 [ 1.811723] sdhci: Copyright(c) Pierre Ossman 18681 [ 1.811855] Synopsys Designware Multimedia Card Interface Driver 18682 [ 1.812358] sdhci-pltfm: SDHCI platform and OF driver helper 18683 [ 1.813200] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 18684 [ 1.813608] ledtrig-cpu: registered to indicate activity on CPUs 18685 [ 1.813871] meson-sm: secure-monitor enabled 18686 [ 1.814027] hid: raw HID events driver (C) Jiri Kosina 18687 [ 1.814109] usbcore: registered new interface driver usbhid 18688 [ 1.814112] usbhid: USB HID core driver 18689 [ 1.815045] NET: Registered protocol family 10 18690 [ 1.815562] Segment Routing with IPv6 18691 [ 1.815590] NET: Registered protocol family 17 18692 [ 1.815676] 8021q: 802.1Q VLAN Support v1.8 18693 [ 1.815703] Key type dns_resolver registered 18694 [ 1.816051] registered taskstats version 1 18695 [ 1.816057] Loading compiled-in X.509 certificates 18696 [ 1.817786] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 18697 [ 1.819392] zswap: loaded using pool zstd/z3fold 18698 [ 1.819576] Key type ._fscrypt registered 18699 [ 1.819578] Key type .fscrypt registered 18700 [ 1.819580] Key type fscrypt-provisioning registered 18701 [ 1.820871] Btrfs loaded, crc32c=crc32c-generic 18702 [ 1.826839] Key type encrypted registered 18703 [ 1.826850] AppArmor: AppArmor sha1 policy hashing enabled 18704 [ 1.833147] HUB_5V: supplied by 5V 18705 [ 1.833351] USB_PWR_EN: supplied by 5V 18706 [ 1.834967] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 18707 [ 1.834973] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 18708 [ 1.837685] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 18709 [ 1.837741] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 18710 [ 1.837848] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 18711 [ 1.838405] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 18712 [ 1.838417] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 18713 [ 1.838504] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 18714 [ 1.838520] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 18715 [ 1.838640] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 18716 [ 1.838643] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 18717 [ 1.838646] usb usb1: Product: xHCI Host Controller 18718 [ 1.838648] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 18719 [ 1.838651] usb usb1: SerialNumber: xhci-hcd.0.auto 18720 [ 1.838838] hub 1-0:1.0: USB hub found 18721 [ 1.838853] hub 1-0:1.0: 2 ports detected 18722 [ 1.838984] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 18723 [ 1.838989] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 18724 [ 1.838995] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 18725 [ 1.839016] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 18726 [ 1.839051] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 18727 [ 1.839054] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 18728 [ 1.839057] usb usb2: Product: xHCI Host Controller 18729 [ 1.839059] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 18730 [ 1.839061] usb usb2: SerialNumber: xhci-hcd.0.auto 18731 [ 1.839207] hub 2-0:1.0: USB hub found 18732 [ 1.839218] hub 2-0:1.0: 1 port detected 18733 [ 1.840821] meson-gx-mmc ffe05000.sd: Got CD GPIO 18734 [ 1.868762] Freeing unused kernel memory: 3328K 18735 [ 1.891747] Run /init as init process 18736 [ 1.891751] with arguments: 18737 [ 1.891753] /init 18738 [ 1.891755] with environment: 18739 [ 1.891757] HOME=/ 18740 [ 1.891758] TERM=linux 18741 [ 1.891760] hdmimode=custombuilt 18742 [ 1.891761] cvbsmode=576cvbs 18743 [ 1.891763] max_freq_a53=1896 18744 [ 1.891764] max_freq_a73=1800 18745 [ 1.891766] voutmode=hdmi 18746 [ 1.891767] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 18747 [ 1.891769] disablehpd=false 18748 [ 1.891770] cvbscable= 18749 [ 1.891772] overscan=100 18750 [ 1.934719] mmc0: new ultra high speed SDR25 SDHC card at address b368 18751 [ 1.935311] mmcblk0: mmc0:b368 CBADS 30.0 GiB 18752 [ 1.937050] mmcblk0: p1 18753 [ 2.064803] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 18754 [ 2.064810] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 18755 [ 2.064893] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 18756 [ 2.065363] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 18757 [ 2.065375] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 18758 [ 2.065379] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 18759 [ 2.065383] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 18760 [ 2.065386] meson8b-dwmac ff3f0000.ethernet: COE Type 2 18761 [ 2.065389] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 18762 [ 2.065392] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 18763 [ 2.065478] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 18764 [ 2.065483] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 18765 [ 2.065486] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 18766 [ 2.065829] libphy: stmmac: probed 18767 [ 2.069971] libphy: mdio_mux: probed 18768 [ 2.074523] meson-vrtc ff8000a8.rtc: registered as rtc1 18769 [ 2.095413] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 18770 [ 2.095591] rtc-pcf8563 1-0051: registered as rtc0 18771 [ 2.096779] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 18772 [ 2.096790] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 18773 [ 2.103208] random: fast init done 18774 [ 2.171781] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 18775 [ 2.196412] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 18776 [ 2.196419] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 18777 [ 2.196422] usb 2-1: Product: USB3.1 Hub 18778 [ 2.196424] usb 2-1: Manufacturer: GenesysLogic 18779 [ 2.223254] hub 2-1:1.0: USB hub found 18780 [ 2.223544] hub 2-1:1.0: 4 ports detected 18781 [ 2.276268] libphy: mdio_mux: probed 18782 [ 2.319685] usb 1-1: new high-speed USB device number 2 using xhci-hcd 18783 [ 2.469962] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 18784 [ 2.469969] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 18785 [ 2.469973] usb 1-1: Product: USB2.1 Hub 18786 [ 2.469976] usb 1-1: Manufacturer: GenesysLogic 18787 [ 2.511291] hub 1-1:1.0: USB hub found 18788 [ 2.511554] hub 1-1:1.0: 4 ports detected 18789 [ 2.703673] usb 1-2: new high-speed USB device number 3 using xhci-hcd 18790 [ 2.852120] usb 1-2: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 18791 [ 2.852126] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 18792 [ 2.852130] usb 1-2: Product: PCTV 292e 18793 [ 2.852133] usb 1-2: Manufacturer: PCTV 18794 [ 2.852136] usb 1-2: SerialNumber: 0011356964 18795 [ 3.160638] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 18796 [ 3.959680] systemd[1]: System time before build time, advancing clock. 18797 [ 3.974510] systemd[1]: Inserted module 'autofs4' 18798 [ 4.021103] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 18799 [ 4.021336] systemd[1]: Detected architecture arm64. 18800 [ 4.053428] systemd[1]: Set hostname to <odroidn2>. 18801 [ 4.381161] random: systemd: uninitialized urandom read (16 bytes read) 18802 [ 4.384670] random: systemd: uninitialized urandom read (16 bytes read) 18803 [ 4.384885] systemd[1]: Listening on Journal Audit Socket. 18804 [ 4.385097] random: systemd: uninitialized urandom read (16 bytes read) 18805 [ 4.385263] systemd[1]: Listening on Journal Socket (/dev/log). 18806 [ 4.385452] systemd[1]: Listening on udev Kernel Socket. 18807 [ 4.385529] systemd[1]: Reached target Swap. 18808 [ 4.385668] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 18809 [ 4.385899] systemd[1]: Listening on Journal Socket. 18810 [ 4.388075] systemd[1]: Starting Nameserver information manager... 18811 [ 4.438579] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 18812 [ 5.005406] pwm-gpio pwmgpio: 1 gpio pwms loaded 18813 [ 5.012697] zram: Added device: zram0 18814 [ 5.013094] zram: Added device: zram1 18815 [ 5.013431] zram: Added device: zram2 18816 [ 5.158381] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 18817 [ 5.178336] mc: Linux media interface: v0.10 18818 [ 5.228065] panfrost ffe40000.gpu: clock rate = 24000000 18819 [ 5.228138] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 18820 [ 5.228938] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 18821 [ 5.228947] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 18822 [ 5.228952] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 18823 [ 5.228956] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 18824 [ 5.243429] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 18825 [ 5.254526] videodev: Linux video capture interface: v2.00 18826 [ 5.263703] Registered IR keymap rc-odroid 18827 [ 5.279348] meson-drm ff900000.vpu: Queued 2 outputs on vpu 18828 [ 5.280487] IR NEC protocol handler initialized 18829 [ 5.311759] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 18830 [ 5.311867] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 18831 [ 5.311923] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 18832 [ 5.312096] meson-ir ff808000.ir: receiver initialized 18833 [ 5.361024] meson-drm ff900000.vpu: CVBS Output connector not available 18834 [ 5.387722] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 18835 [ 5.389716] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 18836 [ 5.389963] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 18837 [ 5.390171] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 18838 [ 5.422839] zram0: detected capacity change from 0 to 1904500736 18839 [ 5.431025] em28xx 1-2:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 18840 [ 5.431032] em28xx 1-2:1.0: DVB interface 0 found: isoc 18841 [ 5.456934] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 18842 [ 5.675844] Console: switching to colour frame buffer device 240x67 18843 [ 5.710619] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 18844 [ 5.753124] axg-sound-card sound: ASoC: no DMI vendor name! 18845 [ 6.267700] em28xx 1-2:1.0: unknown em28xx chip ID (0) 18846 [ 6.463708] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 18847 [ 6.530360] zram1: detected capacity change from 0 to 52428800 18848 [ 7.355711] em28xx 1-2:1.0: reading from i2c device at 0xa0 failed (error=-5) 18849 [ 7.355717] em28xx 1-2:1.0: board has no eeprom 18850 [ 7.927657] em28xx 1-2:1.0: Identified as PCTV tripleStick (292e) (card=94) 18851 [ 7.927661] em28xx 1-2:1.0: dvb set to isoc mode. 18852 [ 7.927785] usbcore: registered new interface driver em28xx 18853 [ 7.954136] em28xx 1-2:1.0: Binding DVB extension 18854 [ 8.614445] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 18855 [ 8.614465] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 18856 [ 8.767747] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 18857 [ 8.767759] si2168 4-0064: probe failed = -5 18858 [ 8.767775] si2168: probe of 4-0064 failed with error -5 18859 [ 8.767790] em28xx: Registered (Em28xx dvb Extension) extension 18860 [ 8.779819] em28xx 1-2:1.0: Registering input extension 18861 [ 8.779837] em28xx: Registered (Em28xx Input Extension) extension 18862 [ 9.824728] systemd[1]: Started Armbian memory supported logging. 18863 [ 9.827039] systemd[1]: Starting Journal Service... 18864 [ 9.887227] systemd[1]: Started Journal Service. 18865 [ 9.912422] systemd-journald[1843]: Received request to flush runtime journal from PID 1 18866 18867 ### armbian-release: 18868 18869 # PLEASE DO NOT EDIT THIS FILE 18870 BOARD=odroidn2 18871 BOARD_NAME="Odroid N2" 18872 BOARDFAMILY=meson-g12b 18873 BUILD_REPOSITORY_URL=https://github.com/armbian/build 18874 BUILD_REPOSITORY_COMMIT=5f03d652 18875 DISTRIBUTION_CODENAME=buster 18876 DISTRIBUTION_STATUS=supported 18877 VERSION=21.02.1 18878 LINUXFAMILY=meson64 18879 BRANCH=current 18880 ARCH=arm64 18881 IMAGE_TYPE=stable 18882 BOARD_TYPE=conf 18883 INITRD_ARCH=arm64 18884 KERNEL_IMAGE_TYPE=Image 18885 18886 ### boot environment: 18887 18888 verbosity=1 18889 console=both 18890 overlay_prefix=meson 18891 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 18892 rootfstype=ext4 18893 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 18894 18895 ### lsusb: 18896 18897 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 18898 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 18899 Bus 001 Device 003: ID 2013:025f PCTV Systems 18900 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 18901 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 18902 18903 ### lscpu: 18904 18905 Architecture: aarch64 18906 Byte Order: Little Endian 18907 CPU(s): 6 18908 On-line CPU(s) list: 0-5 18909 Thread(s) per core: 1 18910 Core(s) per socket: 3 18911 Socket(s): 2 18912 NUMA node(s): 1 18913 Vendor ID: ARM 18914 Model: 4 18915 Model name: Cortex-A53 18916 Stepping: r0p4 18917 CPU max MHz: 1992.0000 18918 CPU min MHz: 100.0000 18919 BogoMIPS: 48.00 18920 L1d cache: unknown size 18921 L1i cache: unknown size 18922 L2 cache: unknown size 18923 NUMA node0 CPU(s): 0-5 18924 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18925 18926 ### cpuinfo: 18927 18928 processor : 0 18929 BogoMIPS : 48.00 18930 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18931 CPU implementer : 0x41 18932 CPU architecture: 8 18933 CPU variant : 0x0 18934 CPU part : 0xd03 18935 CPU revision : 4 18936 18937 processor : 1 18938 BogoMIPS : 48.00 18939 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18940 CPU implementer : 0x41 18941 CPU architecture: 8 18942 CPU variant : 0x0 18943 CPU part : 0xd03 18944 CPU revision : 4 18945 18946 processor : 2 18947 BogoMIPS : 48.00 18948 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18949 CPU implementer : 0x41 18950 CPU architecture: 8 18951 CPU variant : 0x0 18952 CPU part : 0xd09 18953 CPU revision : 2 18954 18955 processor : 3 18956 BogoMIPS : 48.00 18957 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18958 CPU implementer : 0x41 18959 CPU architecture: 8 18960 CPU variant : 0x0 18961 CPU part : 0xd09 18962 CPU revision : 2 18963 18964 processor : 4 18965 BogoMIPS : 48.00 18966 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18967 CPU implementer : 0x41 18968 CPU architecture: 8 18969 CPU variant : 0x0 18970 CPU part : 0xd09 18971 CPU revision : 2 18972 18973 processor : 5 18974 BogoMIPS : 48.00 18975 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 18976 CPU implementer : 0x41 18977 CPU architecture: 8 18978 CPU variant : 0x0 18979 CPU part : 0xd09 18980 CPU revision : 2 18981 18982 18983 ### meminfo: 18984 18985 MemTotal: 3719728 kB 18986 MemFree: 3380644 kB 18987 MemAvailable: 3336096 kB 18988 Buffers: 11700 kB 18989 Cached: 47552 kB 18990 SwapCached: 0 kB 18991 Active: 29376 kB 18992 Inactive: 198616 kB 18993 Active(anon): 104 kB 18994 Inactive(anon): 173516 kB 18995 Active(file): 29272 kB 18996 Inactive(file): 25100 kB 18997 Unevictable: 0 kB 18998 Mlocked: 0 kB 18999 SwapTotal: 1859860 kB 19000 SwapFree: 1859860 kB 19001 Dirty: 7760 kB 19002 Writeback: 0 kB 19003 AnonPages: 168920 kB 19004 Mapped: 12916 kB 19005 Shmem: 4876 kB 19006 KReclaimable: 13248 kB 19007 Slab: 40696 kB 19008 SReclaimable: 13248 kB 19009 SUnreclaim: 27448 kB 19010 KernelStack: 2544 kB 19011 PageTables: 5660 kB 19012 NFS_Unstable: 0 kB 19013 Bounce: 0 kB 19014 WritebackTmp: 0 kB 19015 CommitLimit: 3719724 kB 19016 Committed_AS: 4240176 kB 19017 VmallocTotal: 135290159040 kB 19018 VmallocUsed: 31752 kB 19019 VmallocChunk: 0 kB 19020 Percpu: 1368 kB 19021 HardwareCorrupted: 0 kB 19022 AnonHugePages: 0 kB 19023 ShmemHugePages: 0 kB 19024 ShmemPmdMapped: 0 kB 19025 FileHugePages: 0 kB 19026 FilePmdMapped: 0 kB 19027 CmaTotal: 917504 kB 19028 CmaFree: 901724 kB 19029 HugePages_Total: 0 19030 HugePages_Free: 0 19031 HugePages_Rsvd: 0 19032 HugePages_Surp: 0 19033 Hugepagesize: 2048 kB 19034 Hugetlb: 0 kB 19035 19036 ### virtual memory: 19037 19038 vm.admin_reserve_kbytes = 8192 19039 vm.block_dump = 0 19040 vm.compaction_proactiveness = 20 19041 vm.compact_unevictable_allowed = 1 19042 vm.dirty_background_bytes = 0 19043 vm.dirty_background_ratio = 10 19044 vm.dirty_bytes = 0 19045 vm.dirty_expire_centisecs = 3000 19046 vm.dirty_ratio = 20 19047 vm.dirtytime_expire_seconds = 43200 19048 vm.dirty_writeback_centisecs = 500 19049 vm.extfrag_threshold = 500 19050 vm.hugetlb_shm_group = 0 19051 vm.laptop_mode = 0 19052 vm.legacy_va_layout = 0 19053 vm.lowmem_reserve_ratio = 256 256 32 0 19054 vm.max_map_count = 65530 19055 vm.memory_failure_early_kill = 0 19056 vm.memory_failure_recovery = 1 19057 vm.min_free_kbytes = 45056 19058 vm.min_slab_ratio = 5 19059 vm.min_unmapped_ratio = 1 19060 vm.mmap_min_addr = 4096 19061 vm.mmap_rnd_bits = 18 19062 vm.mmap_rnd_compat_bits = 11 19063 vm.nr_hugepages = 0 19064 vm.nr_hugepages_mempolicy = 0 19065 vm.nr_overcommit_hugepages = 0 19066 vm.numa_stat = 1 19067 vm.numa_zonelist_order = Node 19068 vm.oom_dump_tasks = 1 19069 vm.oom_kill_allocating_task = 0 19070 vm.overcommit_kbytes = 0 19071 vm.overcommit_memory = 0 19072 vm.overcommit_ratio = 50 19073 vm.page-cluster = 0 19074 vm.page_lock_unfairness = 5 19075 vm.panic_on_oom = 0 19076 vm.percpu_pagelist_fraction = 0 19077 vm.stat_interval = 1 19078 vm.swappiness = 100 19079 vm.user_reserve_kbytes = 115028 19080 vm.vfs_cache_pressure = 100 19081 vm.watermark_boost_factor = 15000 19082 vm.watermark_scale_factor = 10 19083 vm.zone_reclaim_mode = 0 19084 19085 ### ip addr: 19086 19087 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 19088 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 19089 inet XXX.XXX.0.1/8 scope host lo 19090 valid_lft forever preferred_lft forever 19091 inet6 ::1/128 scope host 19092 valid_lft forever preferred_lft forever 19093 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 19094 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 19095 19096 ### partitions: 19097 19098 major minor #blocks name 19099 19100 179 0 31464960 mmcblk0 19101 179 1 31146208 mmcblk0p1 19102 252 0 1859864 zram0 19103 252 1 51200 zram1 19104 19105 ### df: 19106 19107 udev 1.4G 0 1.4G 0% /dev 19108 tmpfs 364M 4.9M 359M 2% /run 19109 /dev/mmcblk0p1 30G 1.8G 28G 6% / 19110 tmpfs 1.8G 0 1.8G 0% /dev/shm 19111 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 19112 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 19113 tmpfs 1.8G 0 1.8G 0% /tmp 19114 /dev/zram1 49M 7.6M 38M 17% /var/log 19115 19116 ### lsblk: 19117 19118 NAME FSTYPE SIZE MOUNTPOINT UUID 19119 mmcblk0 30G 19120 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 19121 zram1 50M /var/log 19122 19123 ### zramctl: 19124 19125 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 19126 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 19127 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 19128 19129 ### mtab: 19130 19131 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 19132 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 19133 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 19134 19135 ### mmc0:b368 info: 19136 19137 fwrev: 0x0 19138 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 19139 cid: 6f0303434241445310aa002b4d013b00 19140 rca: 0xb368 19141 csd: 400e005a5b590000f00e7f800a404000 19142 manfid: 0x00006f 19143 ocr: 0x00200000 19144 preferred_erase_size: 2097152 19145 type: SD 19146 hwrev: 0x1 19147 date: 11/2019 19148 dsr: 0x404 19149 erase_size: 512 19150 oemid: 0x0303 19151 serial: 0xaa002b4d 19152 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 19153 scr: 02b5800300000000 19154 name: CBADS 19155 19156 ### Boot system health: 19157 19158 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 19159 16:03:33: 1908/1992MHz 2.90 22% 10% 5% 0% 6% 0% 31.4°C 0/11 19160 16:03:33: 1908/1992MHz 2.90 69% 30% 8% 0% 29% 1% 31.7°C 0/11 19161 16:03:34: 1908/1992MHz 2.90 84% 24% 2% 0% 56% 0% 29.8°C 0/11 19162 16:03:34: 1908/1992MHz 2.90 62% 3% 1% 0% 56% 0% 29.1°C 0/11 19163 16:03:34: 1908/1992MHz 2.90 48% 10% 6% 0% 28% 1% 28.7°C 0/11 19164 19165 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 19166 19167 ### Activated Armbian ramlog partition with zstd compression 19168 19169 Wed 24 Feb 2021 04:23:02 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 19170 19171 ### dmesg: 19172 19173 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 19174 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 19175 [ 0.000000] Machine model: Hardkernel ODROID-N2 19176 [ 0.000000] efi: UEFI not found. 19177 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 19178 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 19179 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 19180 [ 0.000000] NUMA: No NUMA configuration found 19181 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 19182 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 19183 [ 0.000000] Zone ranges: 19184 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 19185 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 19186 [ 0.000000] Normal empty 19187 [ 0.000000] Movable zone start for each node 19188 [ 0.000000] Early memory node ranges 19189 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 19190 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 19191 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 19192 [ 0.000000] On node 0 totalpages: 972032 19193 [ 0.000000] DMA zone: 4096 pages used for memmap 19194 [ 0.000000] DMA zone: 0 pages reserved 19195 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 19196 [ 0.000000] DMA32 zone: 11104 pages used for memmap 19197 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 19198 [ 0.000000] psci: probing for conduit method from DT. 19199 [ 0.000000] psci: PSCIv1.0 detected in firmware. 19200 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 19201 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 19202 [ 0.000000] psci: SMC Calling Convention v1.1 19203 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 19204 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 19205 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 19206 [ 0.000000] Detected VIPT I-cache on CPU0 19207 [ 0.000000] CPU features: detected: ARM erratum 845719 19208 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 19209 [ 0.000000] Policy zone: DMA32 19210 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 19211 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 19212 Please use sysfs to set IO scheduler for individual devices. 19213 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 19214 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 19215 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 19216 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 19217 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 19218 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 19219 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 19220 [ 0.000000] rcu: RCU event tracing is enabled. 19221 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 19222 [ 0.000000] Trampoline variant of Tasks RCU enabled. 19223 [ 0.000000] Rude variant of Tasks RCU enabled. 19224 [ 0.000000] Tracing variant of Tasks RCU enabled. 19225 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 19226 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 19227 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 19228 [ 0.000000] GIC: Using split EOI/Deactivate mode 19229 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 19230 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 19231 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 19232 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 19233 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 19234 [ 0.000250] Console: colour dummy device 80x25 19235 [ 0.000284] printk: console [tty1] enabled 19236 [ 0.000370] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 19237 [ 0.000382] pid_max: default: 32768 minimum: 301 19238 [ 0.000465] LSM: Security Framework initializing 19239 [ 0.000491] Yama: becoming mindful. 19240 [ 0.000583] AppArmor: AppArmor initialized 19241 [ 0.000633] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 19242 [ 0.000652] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 19243 [ 0.002645] rcu: Hierarchical SRCU implementation. 19244 [ 0.005082] EFI services will not be available. 19245 [ 0.005505] smp: Bringing up secondary CPUs ... 19246 [ 0.006177] Detected VIPT I-cache on CPU1 19247 [ 0.006238] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 19248 [ 0.007430] CPU features: detected: ARM erratum 858921 19249 [ 0.007438] CPU features: detected: Spectre-v2 19250 [ 0.007442] CPU features: detected: Spectre-v4 19251 [ 0.007448] Detected VIPT I-cache on CPU2 19252 [ 0.007476] arch_timer: Enabling local workaround for ARM erratum 858921 19253 [ 0.007489] arch_timer: CPU2: Trapping CNTVCT access 19254 [ 0.007502] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 19255 [ 0.008211] Detected VIPT I-cache on CPU3 19256 [ 0.008227] arch_timer: Enabling local workaround for ARM erratum 858921 19257 [ 0.008234] arch_timer: CPU3: Trapping CNTVCT access 19258 [ 0.008242] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 19259 [ 0.008864] Detected VIPT I-cache on CPU4 19260 [ 0.008881] arch_timer: Enabling local workaround for ARM erratum 858921 19261 [ 0.008888] arch_timer: CPU4: Trapping CNTVCT access 19262 [ 0.008896] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 19263 [ 0.009512] Detected VIPT I-cache on CPU5 19264 [ 0.009528] arch_timer: Enabling local workaround for ARM erratum 858921 19265 [ 0.009535] arch_timer: CPU5: Trapping CNTVCT access 19266 [ 0.009543] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 19267 [ 0.009624] smp: Brought up 1 node, 6 CPUs 19268 [ 0.009641] SMP: Total of 6 processors activated. 19269 [ 0.009649] CPU features: detected: 32-bit EL0 Support 19270 [ 0.009654] CPU features: detected: CRC32 instructions 19271 [ 0.009660] CPU features: detected: 32-bit EL1 Support 19272 [ 0.020903] CPU: All CPU(s) started at EL2 19273 [ 0.020952] alternatives: patching kernel code 19274 [ 0.022892] devtmpfs: initialized 19275 [ 0.030550] Registered cp15_barrier emulation handler 19276 [ 0.030563] Registered setend emulation handler 19277 [ 0.030698] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 19278 [ 0.030736] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 19279 [ 0.044634] pinctrl core: initialized pinctrl subsystem 19280 [ 0.045194] DMI not present or invalid. 19281 [ 0.045603] NET: Registered protocol family 16 19282 [ 0.047177] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 19283 [ 0.047449] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 19284 [ 0.047675] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 19285 [ 0.047719] audit: initializing netlink subsys (disabled) 19286 [ 0.047849] audit: type=2000 audit(0.044:1): state=initialized audit_enabled=0 res=1 19287 [ 0.049234] thermal_sys: Registered thermal governor 'fair_share' 19288 [ 0.049241] thermal_sys: Registered thermal governor 'bang_bang' 19289 [ 0.049245] thermal_sys: Registered thermal governor 'step_wise' 19290 [ 0.049249] thermal_sys: Registered thermal governor 'user_space' 19291 [ 0.049663] cpuidle: using governor menu 19292 [ 0.049997] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 19293 [ 0.050117] ASID allocator initialised with 65536 entries 19294 [ 0.051074] Serial: AMBA PL011 UART driver 19295 [ 0.085075] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 19296 [ 0.085087] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 19297 [ 0.085093] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 19298 [ 0.085098] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 19299 [ 0.087855] cryptd: max_cpu_qlen set to 1000 19300 [ 0.156194] raid6: neonx8 gen() 2785 MB/s 19301 [ 0.224246] raid6: neonx8 xor() 2042 MB/s 19302 [ 0.292309] raid6: neonx4 gen() 3000 MB/s 19303 [ 0.360396] raid6: neonx4 xor() 2346 MB/s 19304 [ 0.428443] raid6: neonx2 gen() 2530 MB/s 19305 [ 0.496506] raid6: neonx2 xor() 2208 MB/s 19306 [ 0.564577] raid6: neonx1 gen() 2072 MB/s 19307 [ 0.632641] raid6: neonx1 xor() 1727 MB/s 19308 [ 0.700718] raid6: int64x8 gen() 1377 MB/s 19309 [ 0.768776] raid6: int64x8 xor() 735 MB/s 19310 [ 0.836868] raid6: int64x4 gen() 1463 MB/s 19311 [ 0.904943] raid6: int64x4 xor() 842 MB/s 19312 [ 0.973000] raid6: int64x2 gen() 1362 MB/s 19313 [ 1.041055] raid6: int64x2 xor() 619 MB/s 19314 [ 1.109122] raid6: int64x1 gen() 1120 MB/s 19315 [ 1.177205] raid6: int64x1 xor() 462 MB/s 19316 [ 1.177208] raid6: using algorithm neonx4 gen() 3000 MB/s 19317 [ 1.177211] raid6: .... xor() 2346 MB/s, rmw enabled 19318 [ 1.177215] raid6: using neon recovery algorithm 19319 [ 1.177669] ACPI: Interpreter disabled. 19320 [ 1.178453] 5V: supplied by 12V 19321 [ 1.179368] VDDAO_3V3: supplied by 12V 19322 [ 1.179842] iommu: Default domain type: Translated 19323 [ 1.180019] vgaarb: loaded 19324 [ 1.180903] SCSI subsystem initialized 19325 [ 1.181244] usbcore: registered new interface driver usbfs 19326 [ 1.181289] usbcore: registered new interface driver hub 19327 [ 1.181326] usbcore: registered new device driver usb 19328 [ 1.181576] pps_core: LinuxPPS API ver. 1 registered 19329 [ 1.181581] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 19330 [ 1.181597] PTP clock support registered 19331 [ 1.181783] EDAC MC: Ver: 3.0.0 19332 [ 1.183072] NetLabel: Initializing 19333 [ 1.183079] NetLabel: domain hash size = 128 19334 [ 1.183082] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 19335 [ 1.183123] NetLabel: unlabeled traffic allowed by default 19336 [ 1.183551] clocksource: Switched to clocksource arch_sys_counter 19337 [ 1.183763] VFS: Disk quotas dquot_6.6.0 19338 [ 1.183807] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 19339 [ 1.184167] AppArmor: AppArmor Filesystem Enabled 19340 [ 1.184270] pnp: PnP ACPI: disabled 19341 [ 1.189969] NET: Registered protocol family 2 19342 [ 1.190426] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 19343 [ 1.190531] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 19344 [ 1.190787] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 19345 [ 1.190975] TCP: Hash tables configured (established 32768 bind 32768) 19346 [ 1.191126] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 19347 [ 1.191192] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 19348 [ 1.191238] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 19349 [ 1.191380] NET: Registered protocol family 1 19350 [ 1.191402] PCI: CLS 0 bytes, default 64 19351 [ 1.191534] Trying to unpack rootfs image as initramfs... 19352 [ 1.727512] Freeing initrd memory: 13544K 19353 [ 1.728472] kvm [1]: IPA Size Limit: 40 bits 19354 [ 1.729176] kvm [1]: vgic interrupt IRQ9 19355 [ 1.729306] kvm [1]: Hyp mode initialized successfully 19356 [ 1.734363] Initialise system trusted keyrings 19357 [ 1.734395] Key type blacklist registered 19358 [ 1.734487] workingset: timestamp_bits=44 max_order=20 bucket_order=0 19359 [ 1.737729] zbud: loaded 19360 [ 1.738701] squashfs: version 4.0 (2009/01/31) Phillip Lougher 19361 [ 1.739163] fuse: init (API version 7.32) 19362 [ 1.739945] integrity: Platform Keyring initialized 19363 [ 1.768096] xor: measuring software checksum speed 19364 [ 1.770934] 8regs : 3473 MB/sec 19365 [ 1.773394] 32regs : 4021 MB/sec 19366 [ 1.776047] arm64_neon : 3718 MB/sec 19367 [ 1.776050] xor: using function: 32regs (4021 MB/sec) 19368 [ 1.776056] Key type asymmetric registered 19369 [ 1.776060] Asymmetric key parser 'x509' registered 19370 [ 1.776093] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 19371 [ 1.776176] io scheduler mq-deadline registered 19372 [ 1.776181] io scheduler kyber registered 19373 [ 1.776259] io scheduler bfq registered 19374 [ 1.778801] gpio-447 (usb-hub-reset): hogged as output/high 19375 [ 1.781791] EINJ: ACPI disabled. 19376 [ 1.787877] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 19377 [ 1.789315] VCC_3V3: supplied by VDDAO_3V3 19378 [ 1.789349] FLASH_1V8: supplied by VCC_3V3 19379 [ 1.789394] VCC_1V8: supplied by VCC_3V3 19380 [ 1.789421] VDDAO_1V8: supplied by VDDAO_3V3 19381 [ 1.789451] VDDCPU_A: supplied by regulator-dummy 19382 [ 1.789801] VDDCPU_B: supplied by regulator-dummy 19383 [ 1.790486] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 19384 [ 1.792862] Serial: AMBA driver 19385 [ 1.793152] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 19386 [ 1.793245] printk: console [ttyAML0] enabled 19387 [ 1.793778] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 19388 [ 1.799144] loop: module loaded 19389 [ 1.801238] libphy: Fixed MDIO Bus: probed 19390 [ 1.802408] tun: Universal TUN/TAP device driver, 1.6 19391 [ 1.803071] thunder_xcv, ver 1.0 19392 [ 1.803099] thunder_bgx, ver 1.0 19393 [ 1.803128] nicpf, ver 1.0 19394 [ 1.803651] e1000e: Intel(R) PRO/1000 Network Driver 19395 [ 1.803655] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 19396 [ 1.803700] igb: Intel(R) Gigabit Ethernet Network Driver 19397 [ 1.803703] igb: Copyright (c) 2007-2014 Intel Corporation. 19398 [ 1.803739] igbvf: Intel(R) Gigabit Virtual Function Network Driver 19399 [ 1.803742] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 19400 [ 1.803874] sky2: driver version 1.30 19401 [ 1.804236] VFIO - User Level meta-driver version: 0.3 19402 [ 1.805640] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 19403 [ 1.805656] ehci-pci: EHCI PCI platform driver 19404 [ 1.805688] ehci-platform: EHCI generic platform driver 19405 [ 1.805818] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 19406 [ 1.805827] ohci-pci: OHCI PCI platform driver 19407 [ 1.805856] ohci-platform: OHCI generic platform driver 19408 [ 1.806267] usbcore: registered new interface driver usb-storage 19409 [ 1.807523] mousedev: PS/2 mouse device common for all mice 19410 [ 1.807924] i2c /dev entries driver 19411 [ 1.813265] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 19412 [ 1.813934] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 19413 [ 1.814615] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 19414 [ 1.815228] sdhci: Secure Digital Host Controller Interface driver 19415 [ 1.815235] sdhci: Copyright(c) Pierre Ossman 19416 [ 1.815357] Synopsys Designware Multimedia Card Interface Driver 19417 [ 1.815898] sdhci-pltfm: SDHCI platform and OF driver helper 19418 [ 1.816831] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 19419 [ 1.817242] ledtrig-cpu: registered to indicate activity on CPUs 19420 [ 1.817613] meson-sm: secure-monitor enabled 19421 [ 1.817815] hid: raw HID events driver (C) Jiri Kosina 19422 [ 1.817922] usbcore: registered new interface driver usbhid 19423 [ 1.817925] usbhid: USB HID core driver 19424 [ 1.818934] NET: Registered protocol family 10 19425 [ 1.819388] Segment Routing with IPv6 19426 [ 1.819416] NET: Registered protocol family 17 19427 [ 1.819482] 8021q: 802.1Q VLAN Support v1.8 19428 [ 1.819504] Key type dns_resolver registered 19429 [ 1.819800] registered taskstats version 1 19430 [ 1.819806] Loading compiled-in X.509 certificates 19431 [ 1.821616] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 19432 [ 1.823220] zswap: loaded using pool zstd/z3fold 19433 [ 1.823405] Key type ._fscrypt registered 19434 [ 1.823408] Key type .fscrypt registered 19435 [ 1.823409] Key type fscrypt-provisioning registered 19436 [ 1.824609] Btrfs loaded, crc32c=crc32c-generic 19437 [ 1.832716] Key type encrypted registered 19438 [ 1.832729] AppArmor: AppArmor sha1 policy hashing enabled 19439 [ 1.838969] HUB_5V: supplied by 5V 19440 [ 1.839210] USB_PWR_EN: supplied by 5V 19441 [ 1.840885] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 19442 [ 1.840892] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 19443 [ 1.843643] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 19444 [ 1.843701] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 19445 [ 1.843818] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 19446 [ 1.844507] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 19447 [ 1.844520] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 19448 [ 1.844604] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 19449 [ 1.844627] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 19450 [ 1.844749] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 19451 [ 1.844752] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 19452 [ 1.844756] usb usb1: Product: xHCI Host Controller 19453 [ 1.844758] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 19454 [ 1.844760] usb usb1: SerialNumber: xhci-hcd.0.auto 19455 [ 1.844949] hub 1-0:1.0: USB hub found 19456 [ 1.844962] hub 1-0:1.0: 2 ports detected 19457 [ 1.845090] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 19458 [ 1.845096] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 19459 [ 1.845101] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 19460 [ 1.845123] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 19461 [ 1.845156] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 19462 [ 1.845159] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 19463 [ 1.845161] usb usb2: Product: xHCI Host Controller 19464 [ 1.845163] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 19465 [ 1.845166] usb usb2: SerialNumber: xhci-hcd.0.auto 19466 [ 1.845306] hub 2-0:1.0: USB hub found 19467 [ 1.845316] hub 2-0:1.0: 1 port detected 19468 [ 1.846396] meson-gx-mmc ffe05000.sd: Got CD GPIO 19469 [ 1.872671] Freeing unused kernel memory: 3328K 19470 [ 1.911682] Run /init as init process 19471 [ 1.911686] with arguments: 19472 [ 1.911688] /init 19473 [ 1.911689] with environment: 19474 [ 1.911692] HOME=/ 19475 [ 1.911693] TERM=linux 19476 [ 1.911695] hdmimode=1080p60hz 19477 [ 1.911696] cvbsmode=576cvbs 19478 [ 1.911697] max_freq_a53=1896 19479 [ 1.911699] max_freq_a73=1800 19480 [ 1.911700] voutmode=hdmi 19481 [ 1.911702] disablehpd=false 19482 [ 1.911703] cvbscable=0 19483 [ 1.911705] overscan=100 19484 [ 1.937739] mmc1: new ultra high speed SDR25 SDHC card at address b368 19485 [ 1.938331] mmcblk1: mmc1:b368 CBADS 30.0 GiB 19486 [ 1.940150] mmcblk1: p1 19487 [ 2.062327] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 19488 [ 2.062333] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 19489 [ 2.062418] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 19490 [ 2.062853] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 19491 [ 2.062862] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 19492 [ 2.062866] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 19493 [ 2.062870] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 19494 [ 2.062873] meson8b-dwmac ff3f0000.ethernet: COE Type 2 19495 [ 2.062876] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 19496 [ 2.062879] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 19497 [ 2.062951] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 19498 [ 2.062955] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 19499 [ 2.062958] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 19500 [ 2.063364] libphy: stmmac: probed 19501 [ 2.065582] libphy: mdio_mux: probed 19502 [ 2.091123] meson-vrtc ff8000a8.rtc: registered as rtc1 19503 [ 2.101509] random: fast init done 19504 [ 2.102994] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 19505 [ 2.103104] rtc-pcf8563 1-0051: registered as rtc0 19506 [ 2.104259] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 19507 [ 2.104264] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 19508 [ 2.187570] usb 1-1: new high-speed USB device number 2 using xhci-hcd 19509 [ 2.272157] libphy: mdio_mux: probed 19510 [ 2.337889] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 19511 [ 2.337896] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 19512 [ 2.337898] usb 1-1: Product: USB2.1 Hub 19513 [ 2.337900] usb 1-1: Manufacturer: GenesysLogic 19514 [ 2.389308] hub 1-1:1.0: USB hub found 19515 [ 2.389528] hub 1-1:1.0: 4 ports detected 19516 [ 2.463702] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 19517 [ 2.486175] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 19518 [ 2.486180] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 19519 [ 2.486184] usb 2-1: Product: USB3.1 Hub 19520 [ 2.486187] usb 2-1: Manufacturer: GenesysLogic 19521 [ 2.517381] hub 2-1:1.0: USB hub found 19522 [ 2.517675] hub 2-1:1.0: 4 ports detected 19523 [ 2.932646] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 19524 [ 3.736668] systemd[1]: System time before build time, advancing clock. 19525 [ 3.751505] systemd[1]: Inserted module 'autofs4' 19526 [ 3.797968] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 19527 [ 3.798182] systemd[1]: Detected architecture arm64. 19528 [ 3.826133] systemd[1]: Set hostname to <odroidn2>. 19529 [ 4.153613] random: systemd: uninitialized urandom read (16 bytes read) 19530 [ 4.156946] random: systemd: uninitialized urandom read (16 bytes read) 19531 [ 4.157226] systemd[1]: Listening on udev Control Socket. 19532 [ 4.157428] random: systemd: uninitialized urandom read (16 bytes read) 19533 [ 4.157580] systemd[1]: Listening on Syslog Socket. 19534 [ 4.157660] systemd[1]: Reached target System Time Synchronized. 19535 [ 4.157858] systemd[1]: Listening on Journal Socket (/dev/log). 19536 [ 4.158117] systemd[1]: Listening on Journal Audit Socket. 19537 [ 4.158196] systemd[1]: Reached target Swap. 19538 [ 4.158270] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 19539 [ 4.217738] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 19540 [ 4.749681] zram: Added device: zram0 19541 [ 4.749927] zram: Added device: zram1 19542 [ 4.751792] zram: Added device: zram2 19543 [ 4.787419] pwm-gpio pwmgpio: 1 gpio pwms loaded 19544 [ 4.974340] mc: Linux media interface: v0.10 19545 [ 4.984389] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 19546 [ 4.996470] panfrost ffe40000.gpu: clock rate = 24000000 19547 [ 4.996555] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 19548 [ 4.997411] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 19549 [ 4.997421] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 19550 [ 4.997426] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 19551 [ 4.997429] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 19552 [ 5.016736] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 19553 [ 5.035988] videodev: Linux video capture interface: v2.00 19554 [ 5.087586] Registered IR keymap rc-odroid 19555 [ 5.098914] meson-drm ff900000.vpu: Queued 2 outputs on vpu 19556 [ 5.107969] IR NEC protocol handler initialized 19557 [ 5.135623] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 19558 [ 5.135722] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 19559 [ 5.135779] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 19560 [ 5.135994] meson-ir ff808000.ir: receiver initialized 19561 [ 5.167424] meson-drm ff900000.vpu: CVBS Output connector not available 19562 [ 5.169317] zram0: detected capacity change from 0 to 1904500736 19563 [ 5.195806] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 19564 [ 5.196171] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 19565 [ 5.196496] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 19566 [ 5.196779] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 19567 [ 5.196848] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 19568 [ 5.210132] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 19569 [ 5.233182] axg-sound-card sound: ASoC: no DMI vendor name! 19570 [ 5.563732] Console: switching to colour frame buffer device 240x67 19571 [ 5.598458] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 19572 [ 6.215568] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 19573 [ 6.281536] zram1: detected capacity change from 0 to 52428800 19574 [ 8.367588] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 19575 [ 8.367607] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 19576 [ 9.594661] systemd[1]: Started Armbian memory supported logging. 19577 [ 9.597056] systemd[1]: Starting Journal Service... 19578 [ 9.658544] systemd[1]: Started Journal Service. 19579 [ 9.684525] systemd-journald[1847]: Received request to flush runtime journal from PID 1 19580 19581 ### armbian-release: 19582 19583 # PLEASE DO NOT EDIT THIS FILE 19584 BOARD=odroidn2 19585 BOARD_NAME="Odroid N2" 19586 BOARDFAMILY=meson-g12b 19587 BUILD_REPOSITORY_URL=https://github.com/armbian/build 19588 BUILD_REPOSITORY_COMMIT=5f03d652 19589 DISTRIBUTION_CODENAME=buster 19590 DISTRIBUTION_STATUS=supported 19591 VERSION=21.02.1 19592 LINUXFAMILY=meson64 19593 BRANCH=current 19594 ARCH=arm64 19595 IMAGE_TYPE=stable 19596 BOARD_TYPE=conf 19597 INITRD_ARCH=arm64 19598 KERNEL_IMAGE_TYPE=Image 19599 19600 ### boot environment: 19601 19602 verbosity=1 19603 console=both 19604 overlay_prefix=meson 19605 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 19606 rootfstype=ext4 19607 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 19608 19609 ### lsusb: 19610 19611 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 19612 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 19613 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 19614 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 19615 19616 ### lscpu: 19617 19618 Architecture: aarch64 19619 Byte Order: Little Endian 19620 CPU(s): 6 19621 On-line CPU(s) list: 0-5 19622 Thread(s) per core: 1 19623 Core(s) per socket: 3 19624 Socket(s): 2 19625 NUMA node(s): 1 19626 Vendor ID: ARM 19627 Model: 4 19628 Model name: Cortex-A53 19629 Stepping: r0p4 19630 CPU max MHz: 1992.0000 19631 CPU min MHz: 100.0000 19632 BogoMIPS: 48.00 19633 L1d cache: unknown size 19634 L1i cache: unknown size 19635 L2 cache: unknown size 19636 NUMA node0 CPU(s): 0-5 19637 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 19638 19639 ### cpuinfo: 19640 19641 processor : 0 19642 BogoMIPS : 48.00 19643 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 19644 CPU implementer : 0x41 19645 CPU architecture: 8 19646 CPU variant : 0x0 19647 CPU part : 0xd03 19648 CPU revision : 4 19649 19650 processor : 1 19651 BogoMIPS : 48.00 19652 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 19653 CPU implementer : 0x41 19654 CPU architecture: 8 19655 CPU variant : 0x0 19656 CPU part : 0xd03 19657 CPU revision : 4 19658 19659 processor : 2 19660 BogoMIPS : 48.00 19661 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 19662 CPU implementer : 0x41 19663 CPU architecture: 8 19664 CPU variant : 0x0 19665 CPU part : 0xd09 19666 CPU revision : 2 19667 19668 processor : 3 19669 BogoMIPS : 48.00 19670 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 19671 CPU implementer : 0x41 19672 CPU architecture: 8 19673 CPU variant : 0x0 19674 CPU part : 0xd09 19675 CPU revision : 2 19676 19677 processor : 4 19678 BogoMIPS : 48.00 19679 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 19680 CPU implementer : 0x41 19681 CPU architecture: 8 19682 CPU variant : 0x0 19683 CPU part : 0xd09 19684 CPU revision : 2 19685 19686 processor : 5 19687 BogoMIPS : 48.00 19688 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 19689 CPU implementer : 0x41 19690 CPU architecture: 8 19691 CPU variant : 0x0 19692 CPU part : 0xd09 19693 CPU revision : 2 19694 19695 19696 ### meminfo: 19697 19698 MemTotal: 3719728 kB 19699 MemFree: 3370988 kB 19700 MemAvailable: 3326420 kB 19701 Buffers: 11816 kB 19702 Cached: 47176 kB 19703 SwapCached: 0 kB 19704 Active: 30888 kB 19705 Inactive: 209212 kB 19706 Active(anon): 112 kB 19707 Inactive(anon): 185600 kB 19708 Active(file): 30776 kB 19709 Inactive(file): 23612 kB 19710 Unevictable: 0 kB 19711 Mlocked: 0 kB 19712 SwapTotal: 1859860 kB 19713 SwapFree: 1859860 kB 19714 Dirty: 8076 kB 19715 Writeback: 0 kB 19716 AnonPages: 180612 kB 19717 Mapped: 10456 kB 19718 Shmem: 4880 kB 19719 KReclaimable: 13188 kB 19720 Slab: 39136 kB 19721 SReclaimable: 13188 kB 19722 SUnreclaim: 25948 kB 19723 KernelStack: 2080 kB 19724 PageTables: 5336 kB 19725 NFS_Unstable: 0 kB 19726 Bounce: 0 kB 19727 WritebackTmp: 0 kB 19728 CommitLimit: 3719724 kB 19729 Committed_AS: 4210660 kB 19730 VmallocTotal: 135290159040 kB 19731 VmallocUsed: 30928 kB 19732 VmallocChunk: 0 kB 19733 Percpu: 1368 kB 19734 HardwareCorrupted: 0 kB 19735 AnonHugePages: 0 kB 19736 ShmemHugePages: 0 kB 19737 ShmemPmdMapped: 0 kB 19738 FileHugePages: 0 kB 19739 FilePmdMapped: 0 kB 19740 CmaTotal: 917504 kB 19741 CmaFree: 901724 kB 19742 HugePages_Total: 0 19743 HugePages_Free: 0 19744 HugePages_Rsvd: 0 19745 HugePages_Surp: 0 19746 Hugepagesize: 2048 kB 19747 Hugetlb: 0 kB 19748 19749 ### virtual memory: 19750 19751 vm.admin_reserve_kbytes = 8192 19752 vm.block_dump = 0 19753 vm.compaction_proactiveness = 20 19754 vm.compact_unevictable_allowed = 1 19755 vm.dirty_background_bytes = 0 19756 vm.dirty_background_ratio = 10 19757 vm.dirty_bytes = 0 19758 vm.dirty_expire_centisecs = 3000 19759 vm.dirty_ratio = 20 19760 vm.dirtytime_expire_seconds = 43200 19761 vm.dirty_writeback_centisecs = 500 19762 vm.extfrag_threshold = 500 19763 vm.hugetlb_shm_group = 0 19764 vm.laptop_mode = 0 19765 vm.legacy_va_layout = 0 19766 vm.lowmem_reserve_ratio = 256 256 32 0 19767 vm.max_map_count = 65530 19768 vm.memory_failure_early_kill = 0 19769 vm.memory_failure_recovery = 1 19770 vm.min_free_kbytes = 45056 19771 vm.min_slab_ratio = 5 19772 vm.min_unmapped_ratio = 1 19773 vm.mmap_min_addr = 4096 19774 vm.mmap_rnd_bits = 18 19775 vm.mmap_rnd_compat_bits = 11 19776 vm.nr_hugepages = 0 19777 vm.nr_hugepages_mempolicy = 0 19778 vm.nr_overcommit_hugepages = 0 19779 vm.numa_stat = 1 19780 vm.numa_zonelist_order = Node 19781 vm.oom_dump_tasks = 1 19782 vm.oom_kill_allocating_task = 0 19783 vm.overcommit_kbytes = 0 19784 vm.overcommit_memory = 0 19785 vm.overcommit_ratio = 50 19786 vm.page-cluster = 0 19787 vm.page_lock_unfairness = 5 19788 vm.panic_on_oom = 0 19789 vm.percpu_pagelist_fraction = 0 19790 vm.stat_interval = 1 19791 vm.swappiness = 100 19792 vm.user_reserve_kbytes = 115049 19793 vm.vfs_cache_pressure = 100 19794 vm.watermark_boost_factor = 15000 19795 vm.watermark_scale_factor = 10 19796 vm.zone_reclaim_mode = 0 19797 19798 ### ip addr: 19799 19800 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 19801 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 19802 inet XXX.XXX.0.1/8 scope host lo 19803 valid_lft forever preferred_lft forever 19804 inet6 ::1/128 scope host 19805 valid_lft forever preferred_lft forever 19806 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 19807 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 19808 19809 ### partitions: 19810 19811 major minor #blocks name 19812 19813 179 0 31464960 mmcblk1 19814 179 1 31146208 mmcblk1p1 19815 252 0 1859864 zram0 19816 252 1 51200 zram1 19817 19818 ### df: 19819 19820 udev 1.4G 0 1.4G 0% /dev 19821 tmpfs 364M 4.9M 359M 2% /run 19822 /dev/mmcblk1p1 30G 1.8G 28G 6% / 19823 tmpfs 1.8G 0 1.8G 0% /dev/shm 19824 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 19825 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 19826 tmpfs 1.8G 0 1.8G 0% /tmp 19827 /dev/zram1 49M 7.9M 38M 18% /var/log 19828 19829 ### lsblk: 19830 19831 NAME FSTYPE SIZE MOUNTPOINT UUID 19832 mmcblk1 30G 19833 └─mmcblk1p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 19834 zram1 50M /var/log 19835 19836 ### zramctl: 19837 19838 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 19839 /dev/zram1 zstd 50M 132K 697B 36K 6 /var/log 19840 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 19841 19842 ### mtab: 19843 19844 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 19845 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 19846 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 19847 19848 ### mmc1:b368 info: 19849 19850 fwrev: 0x0 19851 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 19852 cid: 6f0303434241445310aa002b4d013b00 19853 rca: 0xb368 19854 csd: 400e005a5b590000f00e7f800a404000 19855 manfid: 0x00006f 19856 ocr: 0x00200000 19857 preferred_erase_size: 2097152 19858 type: SD 19859 hwrev: 0x1 19860 date: 11/2019 19861 dsr: 0x404 19862 erase_size: 512 19863 oemid: 0x0303 19864 serial: 0xaa002b4d 19865 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 19866 scr: 02b5800300000000 19867 name: CBADS 19868 19869 ### Boot system health: 19870 19871 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 19872 16:23:03: 1908/1992MHz 2.68 23% 10% 5% 0% 7% 0% 27.4°C 0/11 19873 16:23:03: 1908/1992MHz 2.68 76% 39% 9% 0% 26% 0% 27.0°C 0/11 19874 16:23:04: 1908/1992MHz 2.68 81% 25% 1% 0% 53% 0% 24.4°C 0/11 19875 16:23:04: 1908/ 500MHz 2.68 62% 7% 5% 0% 48% 1% 24.2°C 0/11 19876 16:23:04: 1908/1992MHz 2.68 57% 9% 6% 0% 39% 0% 24.0°C 0/11 19877 19878 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 19879 19880 ### Activated Armbian ramlog partition with zstd compression 19881 19882 Wed 24 Feb 2021 04:23:02 PM GMT | Odroid N2 | 21.02.1 | arm64 | aarch64 | 5.10.12-meson64 19883 19884 ### dmesg: 19885 19886 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 19887 [ 0.000000] Linux version 5.10.12-meson64 (root@beast) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.1 SMP PREEMPT Wed Feb 3 21:06:36 CET 2021 19888 [ 0.000000] Machine model: Hardkernel ODROID-N2 19889 [ 0.000000] efi: UEFI not found. 19890 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 19891 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 19892 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 19893 [ 0.000000] NUMA: No NUMA configuration found 19894 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 19895 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 19896 [ 0.000000] Zone ranges: 19897 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 19898 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 19899 [ 0.000000] Normal empty 19900 [ 0.000000] Movable zone start for each node 19901 [ 0.000000] Early memory node ranges 19902 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 19903 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 19904 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 19905 [ 0.000000] On node 0 totalpages: 972032 19906 [ 0.000000] DMA zone: 4096 pages used for memmap 19907 [ 0.000000] DMA zone: 0 pages reserved 19908 [ 0.000000] DMA zone: 261376 pages, LIFO batch:63 19909 [ 0.000000] DMA32 zone: 11104 pages used for memmap 19910 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 19911 [ 0.000000] psci: probing for conduit method from DT. 19912 [ 0.000000] psci: PSCIv1.0 detected in firmware. 19913 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 19914 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 19915 [ 0.000000] psci: SMC Calling Convention v1.1 19916 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 19917 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 19918 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 19919 [ 0.000000] Detected VIPT I-cache on CPU0 19920 [ 0.000000] CPU features: detected: ARM erratum 845719 19921 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 956832 19922 [ 0.000000] Policy zone: DMA32 19923 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 19924 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 19925 Please use sysfs to set IO scheduler for individual devices. 19926 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 19927 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 19928 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 19929 [ 0.000000] software IO TLB: mapped [mem 0x0000000038ac5000-0x000000003cac5000] (64MB) 19930 [ 0.000000] Memory: 2785352K/3888128K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 185272K reserved, 917504K cma-reserved) 19931 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 19932 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 19933 [ 0.000000] rcu: RCU event tracing is enabled. 19934 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 19935 [ 0.000000] Trampoline variant of Tasks RCU enabled. 19936 [ 0.000000] Rude variant of Tasks RCU enabled. 19937 [ 0.000000] Tracing variant of Tasks RCU enabled. 19938 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 19939 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 19940 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 19941 [ 0.000000] GIC: Using split EOI/Deactivate mode 19942 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 19943 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 19944 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 19945 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 19946 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 19947 [ 0.000248] Console: colour dummy device 80x25 19948 [ 0.000284] printk: console [tty1] enabled 19949 [ 0.000373] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 19950 [ 0.000384] pid_max: default: 32768 minimum: 301 19951 [ 0.000467] LSM: Security Framework initializing 19952 [ 0.000493] Yama: becoming mindful. 19953 [ 0.000586] AppArmor: AppArmor initialized 19954 [ 0.000638] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 19955 [ 0.000657] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 19956 [ 0.002654] rcu: Hierarchical SRCU implementation. 19957 [ 0.005080] EFI services will not be available. 19958 [ 0.005499] smp: Bringing up secondary CPUs ... 19959 [ 0.006172] Detected VIPT I-cache on CPU1 19960 [ 0.006233] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 19961 [ 0.007424] CPU features: detected: ARM erratum 858921 19962 [ 0.007432] CPU features: detected: Spectre-v2 19963 [ 0.007436] CPU features: detected: Spectre-v4 19964 [ 0.007443] Detected VIPT I-cache on CPU2 19965 [ 0.007468] arch_timer: Enabling local workaround for ARM erratum 858921 19966 [ 0.007482] arch_timer: CPU2: Trapping CNTVCT access 19967 [ 0.007495] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 19968 [ 0.008203] Detected VIPT I-cache on CPU3 19969 [ 0.008219] arch_timer: Enabling local workaround for ARM erratum 858921 19970 [ 0.008226] arch_timer: CPU3: Trapping CNTVCT access 19971 [ 0.008234] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 19972 [ 0.008857] Detected VIPT I-cache on CPU4 19973 [ 0.008873] arch_timer: Enabling local workaround for ARM erratum 858921 19974 [ 0.008880] arch_timer: CPU4: Trapping CNTVCT access 19975 [ 0.008888] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 19976 [ 0.009503] Detected VIPT I-cache on CPU5 19977 [ 0.009520] arch_timer: Enabling local workaround for ARM erratum 858921 19978 [ 0.009527] arch_timer: CPU5: Trapping CNTVCT access 19979 [ 0.009535] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 19980 [ 0.009617] smp: Brought up 1 node, 6 CPUs 19981 [ 0.009634] SMP: Total of 6 processors activated. 19982 [ 0.009641] CPU features: detected: 32-bit EL0 Support 19983 [ 0.009647] CPU features: detected: CRC32 instructions 19984 [ 0.009653] CPU features: detected: 32-bit EL1 Support 19985 [ 0.020903] CPU: All CPU(s) started at EL2 19986 [ 0.020952] alternatives: patching kernel code 19987 [ 0.022895] devtmpfs: initialized 19988 [ 0.030532] Registered cp15_barrier emulation handler 19989 [ 0.030546] Registered setend emulation handler 19990 [ 0.030681] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 19991 [ 0.030718] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 19992 [ 0.044642] pinctrl core: initialized pinctrl subsystem 19993 [ 0.045414] DMI not present or invalid. 19994 [ 0.045777] NET: Registered protocol family 16 19995 [ 0.047360] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 19996 [ 0.047633] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 19997 [ 0.047857] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 19998 [ 0.047901] audit: initializing netlink subsys (disabled) 19999 [ 0.048064] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 20000 [ 0.049338] thermal_sys: Registered thermal governor 'fair_share' 20001 [ 0.049347] thermal_sys: Registered thermal governor 'bang_bang' 20002 [ 0.049351] thermal_sys: Registered thermal governor 'step_wise' 20003 [ 0.049353] thermal_sys: Registered thermal governor 'user_space' 20004 [ 0.049797] cpuidle: using governor menu 20005 [ 0.050136] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 20006 [ 0.050261] ASID allocator initialised with 65536 entries 20007 [ 0.051227] Serial: AMBA PL011 UART driver 20008 [ 0.084683] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 20009 [ 0.084694] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 20010 [ 0.084700] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 20011 [ 0.084704] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 20012 [ 0.087143] cryptd: max_cpu_qlen set to 1000 20013 [ 0.156173] raid6: neonx8 gen() 2781 MB/s 20014 [ 0.224237] raid6: neonx8 xor() 2044 MB/s 20015 [ 0.292309] raid6: neonx4 gen() 3005 MB/s 20016 [ 0.360370] raid6: neonx4 xor() 2248 MB/s 20017 [ 0.428435] raid6: neonx2 gen() 2581 MB/s 20018 [ 0.496501] raid6: neonx2 xor() 2211 MB/s 20019 [ 0.564576] raid6: neonx1 gen() 2012 MB/s 20020 [ 0.632637] raid6: neonx1 xor() 1720 MB/s 20021 [ 0.700711] raid6: int64x8 gen() 1374 MB/s 20022 [ 0.768770] raid6: int64x8 xor() 735 MB/s 20023 [ 0.836864] raid6: int64x4 gen() 1463 MB/s 20024 [ 0.904912] raid6: int64x4 xor() 733 MB/s 20025 [ 0.972969] raid6: int64x2 gen() 1362 MB/s 20026 [ 1.041052] raid6: int64x2 xor() 619 MB/s 20027 [ 1.109113] raid6: int64x1 gen() 1120 MB/s 20028 [ 1.177177] raid6: int64x1 xor() 462 MB/s 20029 [ 1.177181] raid6: using algorithm neonx4 gen() 3005 MB/s 20030 [ 1.177185] raid6: .... xor() 2248 MB/s, rmw enabled 20031 [ 1.177189] raid6: using neon recovery algorithm 20032 [ 1.177631] ACPI: Interpreter disabled. 20033 [ 1.178399] 5V: supplied by 12V 20034 [ 1.179311] VDDAO_3V3: supplied by 12V 20035 [ 1.179768] iommu: Default domain type: Translated 20036 [ 1.179893] vgaarb: loaded 20037 [ 1.180631] SCSI subsystem initialized 20038 [ 1.180880] usbcore: registered new interface driver usbfs 20039 [ 1.180926] usbcore: registered new interface driver hub 20040 [ 1.180962] usbcore: registered new device driver usb 20041 [ 1.181236] pps_core: LinuxPPS API ver. 1 registered 20042 [ 1.181241] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 20043 [ 1.181262] PTP clock support registered 20044 [ 1.181464] EDAC MC: Ver: 3.0.0 20045 [ 1.182822] NetLabel: Initializing 20046 [ 1.182829] NetLabel: domain hash size = 128 20047 [ 1.182832] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 20048 [ 1.182874] NetLabel: unlabeled traffic allowed by default 20049 [ 1.183325] clocksource: Switched to clocksource arch_sys_counter 20050 [ 1.183537] VFS: Disk quotas dquot_6.6.0 20051 [ 1.183581] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 20052 [ 1.183946] AppArmor: AppArmor Filesystem Enabled 20053 [ 1.183993] pnp: PnP ACPI: disabled 20054 [ 1.189672] NET: Registered protocol family 2 20055 [ 1.190141] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 20056 [ 1.190246] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 20057 [ 1.190507] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 20058 [ 1.190694] TCP: Hash tables configured (established 32768 bind 32768) 20059 [ 1.190859] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 20060 [ 1.190925] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 20061 [ 1.190972] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 20062 [ 1.191121] NET: Registered protocol family 1 20063 [ 1.191141] PCI: CLS 0 bytes, default 64 20064 [ 1.191267] Trying to unpack rootfs image as initramfs... 20065 [ 1.727347] Freeing initrd memory: 13544K 20066 [ 1.728273] kvm [1]: IPA Size Limit: 40 bits 20067 [ 1.728970] kvm [1]: vgic interrupt IRQ9 20068 [ 1.729114] kvm [1]: Hyp mode initialized successfully 20069 [ 1.734181] Initialise system trusted keyrings 20070 [ 1.734214] Key type blacklist registered 20071 [ 1.734317] workingset: timestamp_bits=44 max_order=20 bucket_order=0 20072 [ 1.737522] zbud: loaded 20073 [ 1.738511] squashfs: version 4.0 (2009/01/31) Phillip Lougher 20074 [ 1.738946] fuse: init (API version 7.32) 20075 [ 1.739743] integrity: Platform Keyring initialized 20076 [ 1.768334] xor: measuring software checksum speed 20077 [ 1.771172] 8regs : 3473 MB/sec 20078 [ 1.773632] 32regs : 4020 MB/sec 20079 [ 1.776290] arm64_neon : 3719 MB/sec 20080 [ 1.776294] xor: using function: 32regs (4020 MB/sec) 20081 [ 1.776300] Key type asymmetric registered 20082 [ 1.776304] Asymmetric key parser 'x509' registered 20083 [ 1.776336] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 20084 [ 1.776415] io scheduler mq-deadline registered 20085 [ 1.776420] io scheduler kyber registered 20086 [ 1.776496] io scheduler bfq registered 20087 [ 1.779029] gpio-447 (usb-hub-reset): hogged as output/high 20088 [ 1.782004] EINJ: ACPI disabled. 20089 [ 1.788228] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 20090 [ 1.789638] VCC_3V3: supplied by VDDAO_3V3 20091 [ 1.789673] FLASH_1V8: supplied by VCC_3V3 20092 [ 1.789705] VCC_1V8: supplied by VCC_3V3 20093 [ 1.789746] VDDAO_1V8: supplied by VDDAO_3V3 20094 [ 1.789774] VDDCPU_A: supplied by regulator-dummy 20095 [ 1.790135] VDDCPU_B: supplied by regulator-dummy 20096 [ 1.790823] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 20097 [ 1.793217] Serial: AMBA driver 20098 [ 1.793499] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 20099 [ 1.793593] printk: console [ttyAML0] enabled 20100 [ 1.794120] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 20101 [ 1.799602] loop: module loaded 20102 [ 1.801440] libphy: Fixed MDIO Bus: probed 20103 [ 1.802551] tun: Universal TUN/TAP device driver, 1.6 20104 [ 1.803202] thunder_xcv, ver 1.0 20105 [ 1.803234] thunder_bgx, ver 1.0 20106 [ 1.803264] nicpf, ver 1.0 20107 [ 1.803777] e1000e: Intel(R) PRO/1000 Network Driver 20108 [ 1.803781] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 20109 [ 1.803824] igb: Intel(R) Gigabit Ethernet Network Driver 20110 [ 1.803828] igb: Copyright (c) 2007-2014 Intel Corporation. 20111 [ 1.803860] igbvf: Intel(R) Gigabit Virtual Function Network Driver 20112 [ 1.803863] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 20113 [ 1.803996] sky2: driver version 1.30 20114 [ 1.804358] VFIO - User Level meta-driver version: 0.3 20115 [ 1.805752] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 20116 [ 1.805773] ehci-pci: EHCI PCI platform driver 20117 [ 1.805810] ehci-platform: EHCI generic platform driver 20118 [ 1.805949] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 20119 [ 1.805959] ohci-pci: OHCI PCI platform driver 20120 [ 1.805990] ohci-platform: OHCI generic platform driver 20121 [ 1.806410] usbcore: registered new interface driver usb-storage 20122 [ 1.807836] mousedev: PS/2 mouse device common for all mice 20123 [ 1.808242] i2c /dev entries driver 20124 [ 1.813340] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 20125 [ 1.813998] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 20126 [ 1.814692] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 20127 [ 1.815349] sdhci: Secure Digital Host Controller Interface driver 20128 [ 1.815355] sdhci: Copyright(c) Pierre Ossman 20129 [ 1.815892] Synopsys Designware Multimedia Card Interface Driver 20130 [ 1.816391] sdhci-pltfm: SDHCI platform and OF driver helper 20131 [ 1.816813] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 20132 [ 1.817306] ledtrig-cpu: registered to indicate activity on CPUs 20133 [ 1.817584] meson-sm: secure-monitor enabled 20134 [ 1.817772] hid: raw HID events driver (C) Jiri Kosina 20135 [ 1.817857] usbcore: registered new interface driver usbhid 20136 [ 1.817860] usbhid: USB HID core driver 20137 [ 1.818851] NET: Registered protocol family 10 20138 [ 1.819240] Segment Routing with IPv6 20139 [ 1.819273] NET: Registered protocol family 17 20140 [ 1.819338] 8021q: 802.1Q VLAN Support v1.8 20141 [ 1.819362] Key type dns_resolver registered 20142 [ 1.819663] registered taskstats version 1 20143 [ 1.819669] Loading compiled-in X.509 certificates 20144 [ 1.821350] Loaded X.509 cert 'Build time autogenerated kernel key: f47c178852ca39740c3546b008122b65f5ed9bce' 20145 [ 1.822908] zswap: loaded using pool zstd/z3fold 20146 [ 1.823070] Key type ._fscrypt registered 20147 [ 1.823072] Key type .fscrypt registered 20148 [ 1.823074] Key type fscrypt-provisioning registered 20149 [ 1.824695] Btrfs loaded, crc32c=crc32c-generic 20150 [ 1.831022] Key type encrypted registered 20151 [ 1.831039] AppArmor: AppArmor sha1 policy hashing enabled 20152 [ 1.837255] HUB_5V: supplied by 5V 20153 [ 1.837480] USB_PWR_EN: supplied by 5V 20154 [ 1.839128] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 20155 [ 1.839136] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 20156 [ 1.841826] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 20157 [ 1.841879] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 20158 [ 1.841983] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 20159 [ 1.842552] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 20160 [ 1.842568] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 20161 [ 1.842654] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 20162 [ 1.842677] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 20163 [ 1.842800] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 20164 [ 1.842803] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 20165 [ 1.842807] usb usb1: Product: xHCI Host Controller 20166 [ 1.842809] usb usb1: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 20167 [ 1.842811] usb usb1: SerialNumber: xhci-hcd.0.auto 20168 [ 1.843162] hub 1-0:1.0: USB hub found 20169 [ 1.843181] hub 1-0:1.0: 2 ports detected 20170 [ 1.843389] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 20171 [ 1.843397] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 20172 [ 1.843404] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 20173 [ 1.843435] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 20174 [ 1.843469] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 20175 [ 1.843472] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 20176 [ 1.843475] usb usb2: Product: xHCI Host Controller 20177 [ 1.843477] usb usb2: Manufacturer: Linux 5.10.12-meson64 xhci-hcd 20178 [ 1.843479] usb usb2: SerialNumber: xhci-hcd.0.auto 20179 [ 1.843725] hub 2-0:1.0: USB hub found 20180 [ 1.843736] hub 2-0:1.0: 1 port detected 20181 [ 1.845041] meson-gx-mmc ffe05000.sd: Got CD GPIO 20182 [ 1.872387] Freeing unused kernel memory: 3328K 20183 [ 1.903446] Run /init as init process 20184 [ 1.903449] with arguments: 20185 [ 1.903452] /init 20186 [ 1.903454] with environment: 20187 [ 1.903456] HOME=/ 20188 [ 1.903457] TERM=linux 20189 [ 1.903460] hdmimode=1080p60hz 20190 [ 1.903461] cvbsmode=576cvbs 20191 [ 1.903463] max_freq_a53=1896 20192 [ 1.903465] max_freq_a73=1800 20193 [ 1.903466] voutmode=hdmi 20194 [ 1.903467] disablehpd=false 20195 [ 1.903469] cvbscable=0 20196 [ 1.903470] overscan=100 20197 [ 1.938419] mmc0: new ultra high speed SDR25 SDHC card at address b368 20198 [ 1.939306] mmcblk0: mmc0:b368 CBADS 30.0 GiB 20199 [ 1.941271] mmcblk0: p1 20200 [ 2.067579] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 20201 [ 2.067589] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 20202 [ 2.067722] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 20203 [ 2.068262] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 20204 [ 2.068275] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 20205 [ 2.068280] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 20206 [ 2.068283] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 20207 [ 2.068286] meson8b-dwmac ff3f0000.ethernet: COE Type 2 20208 [ 2.068288] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 20209 [ 2.068290] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 20210 [ 2.068368] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 20211 [ 2.068373] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 20212 [ 2.068375] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 20213 [ 2.068586] libphy: stmmac: probed 20214 [ 2.072157] libphy: mdio_mux: probed 20215 [ 2.079500] meson-vrtc ff8000a8.rtc: registered as rtc1 20216 [ 2.096332] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 20217 [ 2.096474] rtc-pcf8563 1-0051: registered as rtc0 20218 [ 2.097644] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 20219 [ 2.097649] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 20220 [ 2.102426] random: fast init done 20221 [ 2.175358] usb 1-1: new high-speed USB device number 2 using xhci-hcd 20222 [ 2.279747] libphy: mdio_mux: probed 20223 [ 2.325703] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 20224 [ 2.325713] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 20225 [ 2.325716] usb 1-1: Product: USB2.1 Hub 20226 [ 2.325720] usb 1-1: Manufacturer: GenesysLogic 20227 [ 2.387715] hub 1-1:1.0: USB hub found 20228 [ 2.387976] hub 1-1:1.0: 4 ports detected 20229 [ 2.451525] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 20230 [ 2.473940] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 20231 [ 2.473946] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 20232 [ 2.473949] usb 2-1: Product: USB3.1 Hub 20233 [ 2.473951] usb 2-1: Manufacturer: GenesysLogic 20234 [ 2.499625] hub 2-1:1.0: USB hub found 20235 [ 2.499907] hub 2-1:1.0: 4 ports detected 20236 [ 3.449925] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 20237 [ 4.217892] systemd[1]: System time before build time, advancing clock. 20238 [ 4.232803] systemd[1]: Inserted module 'autofs4' 20239 [ 4.279405] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 20240 [ 4.279618] systemd[1]: Detected architecture arm64. 20241 [ 4.313034] systemd[1]: Set hostname to <odroidn2>. 20242 [ 4.714730] random: systemd: uninitialized urandom read (16 bytes read) 20243 [ 4.720709] random: systemd: uninitialized urandom read (16 bytes read) 20244 [ 4.721194] systemd[1]: Listening on Journal Audit Socket. 20245 [ 4.721618] random: systemd: uninitialized urandom read (16 bytes read) 20246 [ 4.722037] systemd[1]: Listening on udev Control Socket. 20247 [ 4.723925] systemd[1]: Created slice User and Session Slice. 20248 [ 4.724218] systemd[1]: Reached target Slices. 20249 [ 4.724683] systemd[1]: Listening on udev Kernel Socket. 20250 [ 4.725120] systemd[1]: Listening on initctl Compatibility Named Pipe. 20251 [ 4.725416] systemd[1]: Reached target System Time Synchronized. 20252 [ 4.849576] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 20253 [ 5.360181] zram: Added device: zram0 20254 [ 5.360631] zram: Added device: zram1 20255 [ 5.360975] zram: Added device: zram2 20256 [ 5.370318] pwm-gpio pwmgpio: 1 gpio pwms loaded 20257 [ 5.529791] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 20258 [ 5.537291] mc: Linux media interface: v0.10 20259 [ 5.599233] panfrost ffe40000.gpu: clock rate = 24000000 20260 [ 5.599302] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 20261 [ 5.600196] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 20262 [ 5.600206] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 20263 [ 5.600211] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 20264 [ 5.600215] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 20265 [ 5.614650] videodev: Linux video capture interface: v2.00 20266 [ 5.614851] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 20267 [ 5.651368] Registered IR keymap rc-odroid 20268 [ 5.655777] meson-drm ff900000.vpu: Queued 2 outputs on vpu 20269 [ 5.680606] IR NEC protocol handler initialized 20270 [ 5.701947] meson-drm ff900000.vpu: CVBS Output connector not available 20271 [ 5.707455] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 20272 [ 5.707599] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 20273 [ 5.707697] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 20274 [ 5.707932] meson-ir ff808000.ir: receiver initialized 20275 [ 5.728172] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 20276 [ 5.730173] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 20277 [ 5.730444] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 20278 [ 5.730668] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 20279 [ 5.730720] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 20280 [ 5.751145] zram0: detected capacity change from 0 to 1904500736 20281 [ 5.832434] axg-sound-card sound: ASoC: no DMI vendor name! 20282 [ 5.833095] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 20283 [ 6.843330] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 20284 [ 6.909771] zram1: detected capacity change from 0 to 52428800 20285 [ 9.010090] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 20286 [ 9.010108] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 20287 [ 10.237614] systemd[1]: Started Armbian memory supported logging. 20288 [ 10.239936] systemd[1]: Starting Journal Service... 20289 [ 10.299138] systemd[1]: Started Journal Service. 20290 [ 10.323982] systemd-journald[1815]: Received request to flush runtime journal from PID 1 20291 20292 ### armbian-release: 20293 20294 # PLEASE DO NOT EDIT THIS FILE 20295 BOARD=odroidn2 20296 BOARD_NAME="Odroid N2" 20297 BOARDFAMILY=meson-g12b 20298 BUILD_REPOSITORY_URL=https://github.com/armbian/build 20299 BUILD_REPOSITORY_COMMIT=5f03d652 20300 DISTRIBUTION_CODENAME=buster 20301 DISTRIBUTION_STATUS=supported 20302 VERSION=21.02.1 20303 LINUXFAMILY=meson64 20304 BRANCH=current 20305 ARCH=arm64 20306 IMAGE_TYPE=stable 20307 BOARD_TYPE=conf 20308 INITRD_ARCH=arm64 20309 KERNEL_IMAGE_TYPE=Image 20310 20311 ### boot environment: 20312 20313 verbosity=1 20314 console=both 20315 overlay_prefix=meson 20316 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 20317 rootfstype=ext4 20318 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 20319 20320 ### lsusb: 20321 20322 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 20323 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 20324 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 20325 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 20326 20327 ### lscpu: 20328 20329 Architecture: aarch64 20330 Byte Order: Little Endian 20331 CPU(s): 6 20332 On-line CPU(s) list: 0-5 20333 Thread(s) per core: 1 20334 Core(s) per socket: 3 20335 Socket(s): 2 20336 NUMA node(s): 1 20337 Vendor ID: ARM 20338 Model: 4 20339 Model name: Cortex-A53 20340 Stepping: r0p4 20341 CPU max MHz: 1992.0000 20342 CPU min MHz: 100.0000 20343 BogoMIPS: 48.00 20344 L1d cache: unknown size 20345 L1i cache: unknown size 20346 L2 cache: unknown size 20347 NUMA node0 CPU(s): 0-5 20348 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 20349 20350 ### cpuinfo: 20351 20352 processor : 0 20353 BogoMIPS : 48.00 20354 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 20355 CPU implementer : 0x41 20356 CPU architecture: 8 20357 CPU variant : 0x0 20358 CPU part : 0xd03 20359 CPU revision : 4 20360 20361 processor : 1 20362 BogoMIPS : 48.00 20363 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 20364 CPU implementer : 0x41 20365 CPU architecture: 8 20366 CPU variant : 0x0 20367 CPU part : 0xd03 20368 CPU revision : 4 20369 20370 processor : 2 20371 BogoMIPS : 48.00 20372 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 20373 CPU implementer : 0x41 20374 CPU architecture: 8 20375 CPU variant : 0x0 20376 CPU part : 0xd09 20377 CPU revision : 2 20378 20379 processor : 3 20380 BogoMIPS : 48.00 20381 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 20382 CPU implementer : 0x41 20383 CPU architecture: 8 20384 CPU variant : 0x0 20385 CPU part : 0xd09 20386 CPU revision : 2 20387 20388 processor : 4 20389 BogoMIPS : 48.00 20390 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 20391 CPU implementer : 0x41 20392 CPU architecture: 8 20393 CPU variant : 0x0 20394 CPU part : 0xd09 20395 CPU revision : 2 20396 20397 processor : 5 20398 BogoMIPS : 48.00 20399 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 20400 CPU implementer : 0x41 20401 CPU architecture: 8 20402 CPU variant : 0x0 20403 CPU part : 0xd09 20404 CPU revision : 2 20405 20406 20407 ### meminfo: 20408 20409 MemTotal: 3719728 kB 20410 MemFree: 3388812 kB 20411 MemAvailable: 3344000 kB 20412 Buffers: 11840 kB 20413 Cached: 47440 kB 20414 SwapCached: 0 kB 20415 Active: 29736 kB 20416 Inactive: 201112 kB 20417 Active(anon): 112 kB 20418 Inactive(anon): 176540 kB 20419 Active(file): 29624 kB 20420 Inactive(file): 24572 kB 20421 Unevictable: 0 kB 20422 Mlocked: 0 kB 20423 SwapTotal: 1859860 kB 20424 SwapFree: 1859860 kB 20425 Dirty: 8272 kB 20426 Writeback: 0 kB 20427 AnonPages: 171804 kB 20428 Mapped: 11072 kB 20429 Shmem: 4940 kB 20430 KReclaimable: 12892 kB 20431 Slab: 38800 kB 20432 SReclaimable: 12892 kB 20433 SUnreclaim: 25908 kB 20434 KernelStack: 2048 kB 20435 PageTables: 5080 kB 20436 NFS_Unstable: 0 kB 20437 Bounce: 0 kB 20438 WritebackTmp: 0 kB 20439 CommitLimit: 3719724 kB 20440 Committed_AS: 4210504 kB 20441 VmallocTotal: 135290159040 kB 20442 VmallocUsed: 30880 kB 20443 VmallocChunk: 0 kB 20444 Percpu: 1368 kB 20445 HardwareCorrupted: 0 kB 20446 AnonHugePages: 0 kB 20447 ShmemHugePages: 0 kB 20448 ShmemPmdMapped: 0 kB 20449 FileHugePages: 0 kB 20450 FilePmdMapped: 0 kB 20451 CmaTotal: 917504 kB 20452 CmaFree: 909824 kB 20453 HugePages_Total: 0 20454 HugePages_Free: 0 20455 HugePages_Rsvd: 0 20456 HugePages_Surp: 0 20457 Hugepagesize: 2048 kB 20458 Hugetlb: 0 kB 20459 20460 ### virtual memory: 20461 20462 vm.admin_reserve_kbytes = 8192 20463 vm.block_dump = 0 20464 vm.compaction_proactiveness = 20 20465 vm.compact_unevictable_allowed = 1 20466 vm.dirty_background_bytes = 0 20467 vm.dirty_background_ratio = 10 20468 vm.dirty_bytes = 0 20469 vm.dirty_expire_centisecs = 3000 20470 vm.dirty_ratio = 20 20471 vm.dirtytime_expire_seconds = 43200 20472 vm.dirty_writeback_centisecs = 500 20473 vm.extfrag_threshold = 500 20474 vm.hugetlb_shm_group = 0 20475 vm.laptop_mode = 0 20476 vm.legacy_va_layout = 0 20477 vm.lowmem_reserve_ratio = 256 256 32 0 20478 vm.max_map_count = 65530 20479 vm.memory_failure_early_kill = 0 20480 vm.memory_failure_recovery = 1 20481 vm.min_free_kbytes = 45056 20482 vm.min_slab_ratio = 5 20483 vm.min_unmapped_ratio = 1 20484 vm.mmap_min_addr = 4096 20485 vm.mmap_rnd_bits = 18 20486 vm.mmap_rnd_compat_bits = 11 20487 vm.nr_hugepages = 0 20488 vm.nr_hugepages_mempolicy = 0 20489 vm.nr_overcommit_hugepages = 0 20490 vm.numa_stat = 1 20491 vm.numa_zonelist_order = Node 20492 vm.oom_dump_tasks = 1 20493 vm.oom_kill_allocating_task = 0 20494 vm.overcommit_kbytes = 0 20495 vm.overcommit_memory = 0 20496 vm.overcommit_ratio = 50 20497 vm.page-cluster = 0 20498 vm.page_lock_unfairness = 5 20499 vm.panic_on_oom = 0 20500 vm.percpu_pagelist_fraction = 0 20501 vm.stat_interval = 1 20502 vm.swappiness = 100 20503 vm.user_reserve_kbytes = 114956 20504 vm.vfs_cache_pressure = 100 20505 vm.watermark_boost_factor = 15000 20506 vm.watermark_scale_factor = 10 20507 vm.zone_reclaim_mode = 0 20508 20509 ### ip addr: 20510 20511 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 20512 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 20513 inet XXX.XXX.0.1/8 scope host lo 20514 valid_lft forever preferred_lft forever 20515 inet6 ::1/128 scope host 20516 valid_lft forever preferred_lft forever 20517 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 20518 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 20519 20520 ### partitions: 20521 20522 major minor #blocks name 20523 20524 179 0 31464960 mmcblk0 20525 179 1 31146208 mmcblk0p1 20526 252 0 1859864 zram0 20527 252 1 51200 zram1 20528 20529 ### df: 20530 20531 udev 1.4G 0 1.4G 0% /dev 20532 tmpfs 364M 4.9M 359M 2% /run 20533 /dev/mmcblk0p1 30G 1.8G 28G 6% / 20534 tmpfs 1.8G 0 1.8G 0% /dev/shm 20535 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 20536 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 20537 tmpfs 1.8G 0 1.8G 0% /tmp 20538 /dev/zram1 49M 8.1M 37M 18% /var/log 20539 20540 ### lsblk: 20541 20542 NAME FSTYPE SIZE MOUNTPOINT UUID 20543 mmcblk0 30G 20544 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 20545 zram1 50M /var/log 20546 20547 ### zramctl: 20548 20549 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 20550 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 20551 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 20552 20553 ### mtab: 20554 20555 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 20556 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 20557 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 20558 20559 ### mmc0:b368 info: 20560 20561 fwrev: 0x0 20562 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 20563 cid: 6f0303434241445310aa002b4d013b00 20564 rca: 0xb368 20565 csd: 400e005a5b590000f00e7f800a404000 20566 manfid: 0x00006f 20567 ocr: 0x00200000 20568 preferred_erase_size: 2097152 20569 type: SD 20570 hwrev: 0x1 20571 date: 11/2019 20572 dsr: 0x404 20573 erase_size: 512 20574 oemid: 0x0303 20575 serial: 0xaa002b4d 20576 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 20577 scr: 02b5800300000000 20578 name: CBADS 20579 20580 ### Boot system health: 20581 20582 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 20583 16:23:03: 1908/1992MHz 0.37 23% 10% 5% 0% 7% 0% 25.9°C 0/11 20584 16:23:03: 1908/1992MHz 0.37 79% 38% 8% 0% 32% 0% 25.2°C 0/11 20585 16:23:04: 1908/1992MHz 0.37 53% 10% 2% 0% 39% 0% 23.4°C 0/11 20586 16:23:04: 1908/1000MHz 0.37 60% 8% 6% 0% 44% 1% 23.2°C 0/11 20587 16:23:04: 1908/1992MHz 0.37 42% 1% 2% 1% 37% 0% 22.2°C 0/11 20588 20589 ### Activated 1 lzo-rle zram swap devices with 1848 MB each 20590 20591 ### Activated Armbian ramlog partition with zstd compression 20592 20593 Mon 03 May 2021 12:20:25 PM BST | Odroid N2 | 21.02.4 | arm64 | aarch64 | 5.10.27-meson64 20594 20595 ### dmesg: 20596 20597 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 20598 [ 0.000000] Linux version 5.10.27-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.4 SMP PREEMPT Sun Apr 4 09:23:42 UTC 2021 20599 [ 0.000000] Machine model: Hardkernel ODROID-N2 20600 [ 0.000000] efi: UEFI not found. 20601 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 20602 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 20603 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 20604 [ 0.000000] NUMA: No NUMA configuration found 20605 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 20606 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 20607 [ 0.000000] Zone ranges: 20608 [ 0.000000] DMA [mem 0x0000000000000000-0x00000000ed7fffff] 20609 [ 0.000000] DMA32 empty 20610 [ 0.000000] Normal empty 20611 [ 0.000000] Movable zone start for each node 20612 [ 0.000000] Early memory node ranges 20613 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 20614 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 20615 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 20616 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 20617 [ 0.000000] On node 0 totalpages: 972800 20618 [ 0.000000] DMA zone: 15200 pages used for memmap 20619 [ 0.000000] DMA zone: 0 pages reserved 20620 [ 0.000000] DMA zone: 972800 pages, LIFO batch:63 20621 [ 0.000000] psci: probing for conduit method from DT. 20622 [ 0.000000] psci: PSCIv1.0 detected in firmware. 20623 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 20624 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 20625 [ 0.000000] psci: SMC Calling Convention v1.1 20626 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 20627 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 20628 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 20629 [ 0.000000] Detected VIPT I-cache on CPU0 20630 [ 0.000000] CPU features: detected: ARM erratum 845719 20631 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 20632 [ 0.000000] Policy zone: DMA 20633 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=1080p60hz cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi disablehpd=false cvbscable=0 overscan=100 consoleblank=0 20634 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 20635 Please use sysfs to set IO scheduler for individual devices. 20636 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 20637 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 20638 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 20639 [ 0.000000] Memory: 2851276K/3891200K available (14144K kernel code, 1760K rwdata, 5512K rodata, 3328K init, 592K bss, 122420K reserved, 917504K cma-reserved) 20640 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 20641 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 20642 [ 0.000000] rcu: RCU event tracing is enabled. 20643 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 20644 [ 0.000000] Trampoline variant of Tasks RCU enabled. 20645 [ 0.000000] Rude variant of Tasks RCU enabled. 20646 [ 0.000000] Tracing variant of Tasks RCU enabled. 20647 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 20648 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 20649 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 20650 [ 0.000000] GIC: Using split EOI/Deactivate mode 20651 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 20652 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 20653 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 20654 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 20655 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 20656 [ 0.000241] Console: colour dummy device 80x25 20657 [ 0.000273] printk: console [tty1] enabled 20658 [ 0.000356] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 20659 [ 0.000367] pid_max: default: 32768 minimum: 301 20660 [ 0.000451] LSM: Security Framework initializing 20661 [ 0.000475] Yama: becoming mindful. 20662 [ 0.000563] AppArmor: AppArmor initialized 20663 [ 0.000615] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 20664 [ 0.000634] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 20665 [ 0.002626] rcu: Hierarchical SRCU implementation. 20666 [ 0.005021] EFI services will not be available. 20667 [ 0.005441] smp: Bringing up secondary CPUs ... 20668 [ 0.006112] Detected VIPT I-cache on CPU1 20669 [ 0.006172] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 20670 [ 0.007369] CPU features: detected: ARM erratum 858921 20671 [ 0.007377] CPU features: detected: Spectre-v2 20672 [ 0.007381] CPU features: detected: Spectre-v4 20673 [ 0.007387] Detected VIPT I-cache on CPU2 20674 [ 0.007412] arch_timer: Enabling local workaround for ARM erratum 858921 20675 [ 0.007428] arch_timer: CPU2: Trapping CNTVCT access 20676 [ 0.007442] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 20677 [ 0.008150] Detected VIPT I-cache on CPU3 20678 [ 0.008166] arch_timer: Enabling local workaround for ARM erratum 858921 20679 [ 0.008173] arch_timer: CPU3: Trapping CNTVCT access 20680 [ 0.008181] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 20681 [ 0.008810] Detected VIPT I-cache on CPU4 20682 [ 0.008827] arch_timer: Enabling local workaround for ARM erratum 858921 20683 [ 0.008834] arch_timer: CPU4: Trapping CNTVCT access 20684 [ 0.008842] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 20685 [ 0.009463] Detected VIPT I-cache on CPU5 20686 [ 0.009479] arch_timer: Enabling local workaround for ARM erratum 858921 20687 [ 0.009486] arch_timer: CPU5: Trapping CNTVCT access 20688 [ 0.009494] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 20689 [ 0.009575] smp: Brought up 1 node, 6 CPUs 20690 [ 0.009592] SMP: Total of 6 processors activated. 20691 [ 0.009600] CPU features: detected: 32-bit EL0 Support 20692 [ 0.009606] CPU features: detected: CRC32 instructions 20693 [ 0.009612] CPU features: detected: 32-bit EL1 Support 20694 [ 0.020917] CPU: All CPU(s) started at EL2 20695 [ 0.020966] alternatives: patching kernel code 20696 [ 0.022248] devtmpfs: initialized 20697 [ 0.029840] Registered cp15_barrier emulation handler 20698 [ 0.029854] Registered setend emulation handler 20699 [ 0.030022] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 20700 [ 0.030065] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 20701 [ 0.046136] pinctrl core: initialized pinctrl subsystem 20702 [ 0.046708] DMI not present or invalid. 20703 [ 0.047086] NET: Registered protocol family 16 20704 [ 0.048780] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 20705 [ 0.049012] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 20706 [ 0.049308] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 20707 [ 0.049349] audit: initializing netlink subsys (disabled) 20708 [ 0.049449] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 20709 [ 0.050849] thermal_sys: Registered thermal governor 'fair_share' 20710 [ 0.050856] thermal_sys: Registered thermal governor 'bang_bang' 20711 [ 0.050860] thermal_sys: Registered thermal governor 'step_wise' 20712 [ 0.050864] thermal_sys: Registered thermal governor 'user_space' 20713 [ 0.051265] cpuidle: using governor menu 20714 [ 0.051625] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 20715 [ 0.051744] ASID allocator initialised with 65536 entries 20716 [ 0.052689] Serial: AMBA PL011 UART driver 20717 [ 0.086722] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 20718 [ 0.086734] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 20719 [ 0.086740] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 20720 [ 0.086745] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 20721 [ 0.088443] cryptd: max_cpu_qlen set to 1000 20722 [ 0.156243] raid6: neonx8 gen() 2785 MB/s 20723 [ 0.224319] raid6: neonx8 xor() 1599 MB/s 20724 [ 0.292358] raid6: neonx4 gen() 3152 MB/s 20725 [ 0.360433] raid6: neonx4 xor() 2328 MB/s 20726 [ 0.428502] raid6: neonx2 gen() 2559 MB/s 20727 [ 0.496578] raid6: neonx2 xor() 2173 MB/s 20728 [ 0.564653] raid6: neonx1 gen() 1998 MB/s 20729 [ 0.632714] raid6: neonx1 xor() 1728 MB/s 20730 [ 0.700785] raid6: int64x8 gen() 1380 MB/s 20731 [ 0.768850] raid6: int64x8 xor() 736 MB/s 20732 [ 0.836936] raid6: int64x4 gen() 1463 MB/s 20733 [ 0.904975] raid6: int64x4 xor() 733 MB/s 20734 [ 0.973039] raid6: int64x2 gen() 1362 MB/s 20735 [ 1.041112] raid6: int64x2 xor() 619 MB/s 20736 [ 1.109177] raid6: int64x1 gen() 1127 MB/s 20737 [ 1.177248] raid6: int64x1 xor() 462 MB/s 20738 [ 1.177251] raid6: using algorithm neonx4 gen() 3152 MB/s 20739 [ 1.177254] raid6: .... xor() 2328 MB/s, rmw enabled 20740 [ 1.177258] raid6: using neon recovery algorithm 20741 [ 1.177732] ACPI: Interpreter disabled. 20742 [ 1.178569] 5V: supplied by 12V 20743 [ 1.179464] VDDAO_3V3: supplied by 12V 20744 [ 1.179955] iommu: Default domain type: Translated 20745 [ 1.180134] vgaarb: loaded 20746 [ 1.181073] SCSI subsystem initialized 20747 [ 1.181304] usbcore: registered new interface driver usbfs 20748 [ 1.181342] usbcore: registered new interface driver hub 20749 [ 1.181387] usbcore: registered new device driver usb 20750 [ 1.181696] pps_core: LinuxPPS API ver. 1 registered 20751 [ 1.181702] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 20752 [ 1.181722] PTP clock support registered 20753 [ 1.181905] EDAC MC: Ver: 3.0.0 20754 [ 1.183239] NetLabel: Initializing 20755 [ 1.183246] NetLabel: domain hash size = 128 20756 [ 1.183249] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 20757 [ 1.183290] NetLabel: unlabeled traffic allowed by default 20758 [ 1.183710] clocksource: Switched to clocksource arch_sys_counter 20759 [ 1.183913] VFS: Disk quotas dquot_6.6.0 20760 [ 1.183960] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 20761 [ 1.184309] AppArmor: AppArmor Filesystem Enabled 20762 [ 1.184354] pnp: PnP ACPI: disabled 20763 [ 1.189439] NET: Registered protocol family 2 20764 [ 1.189896] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 20765 [ 1.190003] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 20766 [ 1.190259] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 20767 [ 1.190446] TCP: Hash tables configured (established 32768 bind 32768) 20768 [ 1.190595] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 20769 [ 1.190660] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 20770 [ 1.190710] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 20771 [ 1.190855] NET: Registered protocol family 1 20772 [ 1.190874] PCI: CLS 0 bytes, default 64 20773 [ 1.190998] Trying to unpack rootfs image as initramfs... 20774 [ 1.720689] Freeing initrd memory: 13540K 20775 [ 1.721615] kvm [1]: IPA Size Limit: 40 bits 20776 [ 1.722334] kvm [1]: vgic interrupt IRQ9 20777 [ 1.722465] kvm [1]: Hyp mode initialized successfully 20778 [ 1.727650] Initialise system trusted keyrings 20779 [ 1.727683] Key type blacklist registered 20780 [ 1.727828] workingset: timestamp_bits=44 max_order=20 bucket_order=0 20781 [ 1.730995] zbud: loaded 20782 [ 1.731923] squashfs: version 4.0 (2009/01/31) Phillip Lougher 20783 [ 1.732460] fuse: init (API version 7.32) 20784 [ 1.733240] integrity: Platform Keyring initialized 20785 [ 1.761070] xor: measuring software checksum speed 20786 [ 1.763936] 8regs : 3476 MB/sec 20787 [ 1.766385] 32regs : 4022 MB/sec 20788 [ 1.769045] arm64_neon : 3712 MB/sec 20789 [ 1.769048] xor: using function: 32regs (4022 MB/sec) 20790 [ 1.769057] Key type asymmetric registered 20791 [ 1.769061] Asymmetric key parser 'x509' registered 20792 [ 1.769098] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 20793 [ 1.769204] io scheduler mq-deadline registered 20794 [ 1.769208] io scheduler kyber registered 20795 [ 1.769285] io scheduler bfq registered 20796 [ 1.771838] gpio-447 (usb-hub-reset): hogged as output/high 20797 [ 1.774876] EINJ: ACPI disabled. 20798 [ 1.781171] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 20799 [ 1.782543] VCC_3V3: supplied by VDDAO_3V3 20800 [ 1.782575] FLASH_1V8: supplied by VCC_3V3 20801 [ 1.782622] VCC_1V8: supplied by VCC_3V3 20802 [ 1.782649] VDDAO_1V8: supplied by VDDAO_3V3 20803 [ 1.782676] VDDCPU_A: supplied by regulator-dummy 20804 [ 1.783023] VDDCPU_B: supplied by regulator-dummy 20805 [ 1.783734] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 20806 [ 1.786059] Serial: AMBA driver 20807 [ 1.786353] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 20808 [ 1.786447] printk: console [ttyAML0] enabled 20809 [ 1.786973] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 20810 [ 1.792382] loop: module loaded 20811 [ 1.794203] libphy: Fixed MDIO Bus: probed 20812 [ 1.795179] tun: Universal TUN/TAP device driver, 1.6 20813 [ 1.795915] thunder_xcv, ver 1.0 20814 [ 1.795947] thunder_bgx, ver 1.0 20815 [ 1.795972] nicpf, ver 1.0 20816 [ 1.796455] e1000e: Intel(R) PRO/1000 Network Driver 20817 [ 1.796458] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 20818 [ 1.796499] igb: Intel(R) Gigabit Ethernet Network Driver 20819 [ 1.796502] igb: Copyright (c) 2007-2014 Intel Corporation. 20820 [ 1.796538] igbvf: Intel(R) Gigabit Virtual Function Network Driver 20821 [ 1.796541] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 20822 [ 1.796664] sky2: driver version 1.30 20823 [ 1.797025] VFIO - User Level meta-driver version: 0.3 20824 [ 1.798408] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 20825 [ 1.798424] ehci-pci: EHCI PCI platform driver 20826 [ 1.798456] ehci-platform: EHCI generic platform driver 20827 [ 1.798585] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 20828 [ 1.798594] ohci-pci: OHCI PCI platform driver 20829 [ 1.798623] ohci-platform: OHCI generic platform driver 20830 [ 1.799027] usbcore: registered new interface driver usb-storage 20831 [ 1.800346] mousedev: PS/2 mouse device common for all mice 20832 [ 1.800743] i2c /dev entries driver 20833 [ 1.805963] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 20834 [ 1.806615] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 20835 [ 1.807294] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 20836 [ 1.807933] sdhci: Secure Digital Host Controller Interface driver 20837 [ 1.807937] sdhci: Copyright(c) Pierre Ossman 20838 [ 1.808055] Synopsys Designware Multimedia Card Interface Driver 20839 [ 1.808497] sdhci-pltfm: SDHCI platform and OF driver helper 20840 [ 1.808931] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 20841 [ 1.809391] ledtrig-cpu: registered to indicate activity on CPUs 20842 [ 1.809821] meson-sm: secure-monitor enabled 20843 [ 1.810030] hid: raw HID events driver (C) Jiri Kosina 20844 [ 1.810122] usbcore: registered new interface driver usbhid 20845 [ 1.810123] usbhid: USB HID core driver 20846 [ 1.811135] NET: Registered protocol family 10 20847 [ 1.811568] Segment Routing with IPv6 20848 [ 1.811595] NET: Registered protocol family 17 20849 [ 1.811657] 8021q: 802.1Q VLAN Support v1.8 20850 [ 1.811684] Key type dns_resolver registered 20851 [ 1.812253] registered taskstats version 1 20852 [ 1.812259] Loading compiled-in X.509 certificates 20853 [ 1.813965] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 20854 [ 1.815573] zswap: loaded using pool zstd/z3fold 20855 [ 1.815932] Key type ._fscrypt registered 20856 [ 1.815934] Key type .fscrypt registered 20857 [ 1.815936] Key type fscrypt-provisioning registered 20858 [ 1.817008] Btrfs loaded, crc32c=crc32c-generic 20859 [ 1.822961] Key type encrypted registered 20860 [ 1.822973] AppArmor: AppArmor sha1 policy hashing enabled 20861 [ 1.829569] HUB_5V: supplied by 5V 20862 [ 1.829802] USB_PWR_EN: supplied by 5V 20863 [ 1.831413] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 20864 [ 1.831420] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 20865 [ 1.834122] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 20866 [ 1.834173] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 20867 [ 1.834278] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 20868 [ 1.834863] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 20869 [ 1.834874] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 20870 [ 1.834957] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 20871 [ 1.834977] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 20872 [ 1.835098] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 20873 [ 1.835101] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 20874 [ 1.835104] usb usb1: Product: xHCI Host Controller 20875 [ 1.835106] usb usb1: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 20876 [ 1.835108] usb usb1: SerialNumber: xhci-hcd.0.auto 20877 [ 1.835321] hub 1-0:1.0: USB hub found 20878 [ 1.835337] hub 1-0:1.0: 2 ports detected 20879 [ 1.835464] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 20880 [ 1.835470] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 20881 [ 1.835475] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 20882 [ 1.835495] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 20883 [ 1.835530] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 20884 [ 1.835533] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 20885 [ 1.835536] usb usb2: Product: xHCI Host Controller 20886 [ 1.835538] usb usb2: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 20887 [ 1.835540] usb usb2: SerialNumber: xhci-hcd.0.auto 20888 [ 1.835810] hub 2-0:1.0: USB hub found 20889 [ 1.835829] hub 2-0:1.0: 1 port detected 20890 [ 1.837459] meson-gx-mmc ffe05000.sd: Got CD GPIO 20891 [ 1.864781] Freeing unused kernel memory: 3328K 20892 [ 1.895770] Run /init as init process 20893 [ 1.895774] with arguments: 20894 [ 1.895776] /init 20895 [ 1.895778] with environment: 20896 [ 1.895779] HOME=/ 20897 [ 1.895781] TERM=linux 20898 [ 1.895782] hdmimode=1080p60hz 20899 [ 1.895784] cvbsmode=576cvbs 20900 [ 1.895785] max_freq_a53=1896 20901 [ 1.895787] max_freq_a73=1800 20902 [ 1.895788] voutmode=hdmi 20903 [ 1.895790] disablehpd=false 20904 [ 1.895791] cvbscable=0 20905 [ 1.895792] overscan=100 20906 [ 1.915753] mmc0: new high speed SDHC card at address b368 20907 [ 1.916628] mmcblk0: mmc0:b368 CBADS 30.0 GiB 20908 [ 1.918475] mmcblk0: p1 20909 [ 2.060183] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 20910 [ 2.060190] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 20911 [ 2.060300] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 20912 [ 2.060304] meson8b-dwmac ff3f0000.ethernet: no reset control found 20913 [ 2.060788] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 20914 [ 2.060796] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 20915 [ 2.060799] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 20916 [ 2.060801] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 20917 [ 2.060804] meson8b-dwmac ff3f0000.ethernet: COE Type 2 20918 [ 2.060806] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 20919 [ 2.060808] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 20920 [ 2.060869] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 20921 [ 2.060872] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 20922 [ 2.060874] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 20923 [ 2.061071] libphy: stmmac: probed 20924 [ 2.063129] meson-vrtc ff8000a8.rtc: registered as rtc1 20925 [ 2.064359] libphy: mdio_mux: probed 20926 [ 2.070559] rtc-pcf8563 1-0051: registered as rtc0 20927 [ 2.071768] rtc-pcf8563 1-0051: setting system clock to 2021-05-03T11:20:17 UTC (1620040817) 20928 [ 2.074054] random: fast init done 20929 [ 2.176049] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 20930 [ 2.200460] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 20931 [ 2.200467] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 20932 [ 2.200471] usb 2-1: Product: USB3.1 Hub 20933 [ 2.200473] usb 2-1: Manufacturer: GenesysLogic 20934 [ 2.219689] hub 2-1:1.0: USB hub found 20935 [ 2.220001] hub 2-1:1.0: 4 ports detected 20936 [ 2.264175] libphy: mdio_mux: probed 20937 [ 2.323723] usb 1-1: new high-speed USB device number 2 using xhci-hcd 20938 [ 2.473987] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 20939 [ 2.473990] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 20940 [ 2.473993] usb 1-1: Product: USB2.1 Hub 20941 [ 2.473995] usb 1-1: Manufacturer: GenesysLogic 20942 [ 2.507705] hub 1-1:1.0: USB hub found 20943 [ 2.507935] hub 1-1:1.0: 4 ports detected 20944 [ 2.813648] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 20945 [ 3.644617] systemd[1]: Inserted module 'autofs4' 20946 [ 3.691677] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 20947 [ 3.691931] systemd[1]: Detected architecture arm64. 20948 [ 3.713685] systemd[1]: Set hostname to <odroidn2>. 20949 [ 4.040317] random: systemd: uninitialized urandom read (16 bytes read) 20950 [ 4.043599] random: systemd: uninitialized urandom read (16 bytes read) 20951 [ 4.044903] systemd[1]: Created slice system-getty.slice. 20952 [ 4.045111] random: systemd: uninitialized urandom read (16 bytes read) 20953 [ 4.045196] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 20954 [ 4.045309] systemd[1]: Reached target System Time Synchronized. 20955 [ 4.045681] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 20956 [ 4.045855] systemd[1]: Listening on initctl Compatibility Named Pipe. 20957 [ 4.046108] systemd[1]: Listening on fsck to fsckd communication Socket. 20958 [ 4.046189] systemd[1]: Reached target Remote File Systems. 20959 [ 4.146695] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 20960 [ 4.678624] zram: Added device: zram0 20961 [ 4.678825] zram: Added device: zram1 20962 [ 4.679183] zram: Added device: zram2 20963 [ 4.682278] pwm-gpio pwmgpio: 1 gpio pwms loaded 20964 [ 4.803075] mc: Linux media interface: v0.10 20965 [ 4.877187] videodev: Linux video capture interface: v2.00 20966 [ 4.913093] panfrost ffe40000.gpu: clock rate = 24000000 20967 [ 4.913145] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 20968 [ 4.913728] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 20969 [ 4.913732] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 20970 [ 4.913736] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 20971 [ 4.913739] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 20972 [ 4.928105] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 20973 [ 4.931232] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 20974 [ 4.970488] meson-drm ff900000.vpu: Queued 2 outputs on vpu 20975 [ 5.013373] meson-drm ff900000.vpu: CVBS Output connector not available 20976 [ 5.015785] Registered IR keymap rc-odroid 20977 [ 5.025047] IR NEC protocol handler initialized 20978 [ 5.043069] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 20979 [ 5.043772] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 20980 [ 5.044098] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 20981 [ 5.044341] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 20982 [ 5.044400] meson-drm ff900000.vpu: [drm] Cannot find any crtc or sizes 20983 [ 5.048640] zram0: detected capacity change from 0 to 1938251776 20984 [ 5.051953] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 20985 [ 5.052105] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 20986 [ 5.052205] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 20987 [ 5.052488] meson-ir ff808000.ir: receiver initialized 20988 [ 5.085316] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 20989 [ 5.096777] axg-sound-card sound: ASoC: no DMI vendor name! 20990 [ 6.095729] Adding 1892820k swap on /dev/zram0. Priority:5 extents:1 across:1892820k SSFS 20991 [ 6.158493] zram1: detected capacity change from 0 to 52428800 20992 [ 8.244508] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 20993 [ 8.244526] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 20994 [ 9.496760] systemd[1]: Started Armbian memory supported logging. 20995 [ 9.500846] systemd[1]: Starting Journal Service... 20996 [ 9.555144] systemd[1]: Started Journal Service. 20997 [ 9.575414] systemd-journald[1816]: Received request to flush runtime journal from PID 1 20998 20999 ### armbian-release: 21000 21001 # PLEASE DO NOT EDIT THIS FILE 21002 BOARD=odroidn2 21003 BOARD_NAME="Odroid N2" 21004 BOARDFAMILY=meson-g12b 21005 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 21006 BUILD_REPOSITORY_COMMIT=23e571cb4-dirty 21007 DISTRIBUTION_CODENAME=buster 21008 DISTRIBUTION_STATUS=supported 21009 VERSION=21.02.4 21010 LINUXFAMILY=meson64 21011 BRANCH=current 21012 ARCH=arm64 21013 IMAGE_TYPE=stable 21014 BOARD_TYPE=conf 21015 INITRD_ARCH=arm64 21016 KERNEL_IMAGE_TYPE=Image 21017 21018 ### boot environment: 21019 21020 verbosity=1 21021 console=both 21022 overlay_prefix=meson 21023 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 21024 rootfstype=ext4 21025 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 21026 21027 ### lsusb: 21028 21029 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 21030 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 21031 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 21032 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 21033 21034 ### lscpu: 21035 21036 Architecture: aarch64 21037 Byte Order: Little Endian 21038 CPU(s): 6 21039 On-line CPU(s) list: 0-5 21040 Thread(s) per core: 1 21041 Core(s) per socket: 3 21042 Socket(s): 2 21043 NUMA node(s): 1 21044 Vendor ID: ARM 21045 Model: 4 21046 Model name: Cortex-A53 21047 Stepping: r0p4 21048 CPU max MHz: 1992.0000 21049 CPU min MHz: 100.0000 21050 BogoMIPS: 48.00 21051 L1d cache: unknown size 21052 L1i cache: unknown size 21053 L2 cache: unknown size 21054 NUMA node0 CPU(s): 0-5 21055 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21056 21057 ### cpuinfo: 21058 21059 processor : 0 21060 BogoMIPS : 48.00 21061 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21062 CPU implementer : 0x41 21063 CPU architecture: 8 21064 CPU variant : 0x0 21065 CPU part : 0xd03 21066 CPU revision : 4 21067 21068 processor : 1 21069 BogoMIPS : 48.00 21070 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21071 CPU implementer : 0x41 21072 CPU architecture: 8 21073 CPU variant : 0x0 21074 CPU part : 0xd03 21075 CPU revision : 4 21076 21077 processor : 2 21078 BogoMIPS : 48.00 21079 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21080 CPU implementer : 0x41 21081 CPU architecture: 8 21082 CPU variant : 0x0 21083 CPU part : 0xd09 21084 CPU revision : 2 21085 21086 processor : 3 21087 BogoMIPS : 48.00 21088 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21089 CPU implementer : 0x41 21090 CPU architecture: 8 21091 CPU variant : 0x0 21092 CPU part : 0xd09 21093 CPU revision : 2 21094 21095 processor : 4 21096 BogoMIPS : 48.00 21097 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21098 CPU implementer : 0x41 21099 CPU architecture: 8 21100 CPU variant : 0x0 21101 CPU part : 0xd09 21102 CPU revision : 2 21103 21104 processor : 5 21105 BogoMIPS : 48.00 21106 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21107 CPU implementer : 0x41 21108 CPU architecture: 8 21109 CPU variant : 0x0 21110 CPU part : 0xd09 21111 CPU revision : 2 21112 21113 21114 ### meminfo: 21115 21116 MemTotal: 3785648 kB 21117 MemFree: 3541240 kB 21118 MemAvailable: 3541164 kB 21119 Buffers: 11800 kB 21120 Cached: 47908 kB 21121 SwapCached: 0 kB 21122 Active: 30476 kB 21123 Inactive: 119724 kB 21124 Active(anon): 128 kB 21125 Inactive(anon): 95696 kB 21126 Active(file): 30348 kB 21127 Inactive(file): 24028 kB 21128 Unevictable: 0 kB 21129 Mlocked: 0 kB 21130 SwapTotal: 1892820 kB 21131 SwapFree: 1892820 kB 21132 Dirty: 8576 kB 21133 Writeback: 0 kB 21134 AnonPages: 90960 kB 21135 Mapped: 11092 kB 21136 Shmem: 5024 kB 21137 KReclaimable: 13056 kB 21138 Slab: 38932 kB 21139 SReclaimable: 13056 kB 21140 SUnreclaim: 25876 kB 21141 KernelStack: 2112 kB 21142 PageTables: 3016 kB 21143 NFS_Unstable: 0 kB 21144 Bounce: 0 kB 21145 WritebackTmp: 0 kB 21146 CommitLimit: 3785644 kB 21147 Committed_AS: 4210588 kB 21148 VmallocTotal: 135290159040 kB 21149 VmallocUsed: 31052 kB 21150 VmallocChunk: 0 kB 21151 Percpu: 1368 kB 21152 HardwareCorrupted: 0 kB 21153 AnonHugePages: 0 kB 21154 ShmemHugePages: 0 kB 21155 ShmemPmdMapped: 0 kB 21156 FileHugePages: 0 kB 21157 FilePmdMapped: 0 kB 21158 CmaTotal: 917504 kB 21159 CmaFree: 909312 kB 21160 HugePages_Total: 0 21161 HugePages_Free: 0 21162 HugePages_Rsvd: 0 21163 HugePages_Surp: 0 21164 Hugepagesize: 2048 kB 21165 Hugetlb: 0 kB 21166 21167 ### virtual memory: 21168 21169 vm.admin_reserve_kbytes = 8192 21170 vm.block_dump = 0 21171 vm.compaction_proactiveness = 20 21172 vm.compact_unevictable_allowed = 1 21173 vm.dirty_background_bytes = 0 21174 vm.dirty_background_ratio = 10 21175 vm.dirty_bytes = 0 21176 vm.dirty_expire_centisecs = 3000 21177 vm.dirty_ratio = 20 21178 vm.dirtytime_expire_seconds = 43200 21179 vm.dirty_writeback_centisecs = 500 21180 vm.extfrag_threshold = 500 21181 vm.hugetlb_shm_group = 0 21182 vm.laptop_mode = 0 21183 vm.legacy_va_layout = 0 21184 vm.lowmem_reserve_ratio = 256 256 32 0 21185 vm.max_map_count = 65530 21186 vm.memory_failure_early_kill = 0 21187 vm.memory_failure_recovery = 1 21188 vm.min_free_kbytes = 22528 21189 vm.min_slab_ratio = 5 21190 vm.min_unmapped_ratio = 1 21191 vm.mmap_min_addr = 4096 21192 vm.mmap_rnd_bits = 18 21193 vm.mmap_rnd_compat_bits = 11 21194 vm.nr_hugepages = 0 21195 vm.nr_hugepages_mempolicy = 0 21196 vm.nr_overcommit_hugepages = 0 21197 vm.numa_stat = 1 21198 vm.numa_zonelist_order = Node 21199 vm.oom_dump_tasks = 1 21200 vm.oom_kill_allocating_task = 0 21201 vm.overcommit_kbytes = 0 21202 vm.overcommit_memory = 0 21203 vm.overcommit_ratio = 50 21204 vm.page-cluster = 0 21205 vm.page_lock_unfairness = 5 21206 vm.panic_on_oom = 0 21207 vm.percpu_pagelist_fraction = 0 21208 vm.stat_interval = 1 21209 vm.swappiness = 100 21210 vm.user_reserve_kbytes = 117084 21211 vm.vfs_cache_pressure = 100 21212 vm.watermark_boost_factor = 15000 21213 vm.watermark_scale_factor = 10 21214 vm.zone_reclaim_mode = 0 21215 21216 ### ip addr: 21217 21218 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 21219 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 21220 inet XXX.XXX.0.1/8 scope host lo 21221 valid_lft forever preferred_lft forever 21222 inet6 ::1/128 scope host 21223 valid_lft forever preferred_lft forever 21224 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 21225 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 21226 21227 ### partitions: 21228 21229 major minor #blocks name 21230 21231 179 0 31464960 mmcblk0 21232 179 1 31146208 mmcblk0p1 21233 252 0 1892824 zram0 21234 252 1 51200 zram1 21235 21236 ### df: 21237 21238 udev 1.4G 0 1.4G 0% /dev 21239 tmpfs 370M 5.0M 365M 2% /run 21240 /dev/mmcblk0p1 30G 1.8G 28G 7% / 21241 tmpfs 1.9G 0 1.9G 0% /dev/shm 21242 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 21243 tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup 21244 tmpfs 1.9G 0 1.9G 0% /tmp 21245 /dev/zram1 49M 8.4M 37M 19% /var/log 21246 21247 ### lsblk: 21248 21249 NAME FSTYPE SIZE MOUNTPOINT UUID 21250 mmcblk0 30G 21251 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 21252 zram1 50M /var/log 21253 21254 ### zramctl: 21255 21256 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 21257 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 21258 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 21259 21260 ### mtab: 21261 21262 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 21263 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 21264 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 21265 21266 ### mmc0:b368 info: 21267 21268 fwrev: 0x0 21269 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 21270 cid: 6f0303434241445310aa002b4d013b00 21271 rca: 0xb368 21272 csd: 400e005a5b590000f00e7f800a404000 21273 manfid: 0x00006f 21274 ocr: 0x00200000 21275 preferred_erase_size: 2097152 21276 type: SD 21277 hwrev: 0x1 21278 date: 11/2019 21279 dsr: 0x404 21280 erase_size: 512 21281 oemid: 0x0303 21282 serial: 0xaa002b4d 21283 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 21284 scr: 02b5800300000000 21285 name: CBADS 21286 21287 ### Boot system health: 21288 21289 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 21290 12:20:26: 1908/1992MHz 2.23 25% 11% 5% 0% 7% 0% 32.9°C 0/11 21291 12:20:26: 1908/1992MHz 2.23 83% 25% 4% 0% 52% 0% 31.8°C 0/11 21292 12:20:27: 1908/1000MHz 2.23 42% 6% 4% 0% 30% 0% 29.9°C 0/11 21293 12:20:27: 1908/1000MHz 2.23 51% 4% 5% 0% 40% 0% 29.9°C 0/11 21294 12:20:27: 1908/1992MHz 2.23 55% 3% 8% 0% 41% 0% 29.9°C 0/11 21295 21296 ### Activated 1 lzo-rle zram swap devices with 1848 MB each 21297 21298 ### Activated Armbian ramlog partition with zstd compression 21299 21300 Mon 03 May 2021 02:24:27 PM BST | Odroid N2 | 21.02.4 | arm64 | aarch64 | 5.10.27-meson64 21301 21302 ### dmesg: 21303 21304 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 21305 [ 0.000000] Linux version 5.10.27-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.4 SMP PREEMPT Sun Apr 4 09:23:42 UTC 2021 21306 [ 0.000000] Machine model: Hardkernel ODROID-N2 21307 [ 0.000000] efi: UEFI not found. 21308 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 21309 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 21310 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 21311 [ 0.000000] NUMA: No NUMA configuration found 21312 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 21313 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 21314 [ 0.000000] Zone ranges: 21315 [ 0.000000] DMA [mem 0x0000000000000000-0x00000000ed7fffff] 21316 [ 0.000000] DMA32 empty 21317 [ 0.000000] Normal empty 21318 [ 0.000000] Movable zone start for each node 21319 [ 0.000000] Early memory node ranges 21320 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 21321 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 21322 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 21323 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 21324 [ 0.000000] On node 0 totalpages: 972800 21325 [ 0.000000] DMA zone: 15200 pages used for memmap 21326 [ 0.000000] DMA zone: 0 pages reserved 21327 [ 0.000000] DMA zone: 972800 pages, LIFO batch:63 21328 [ 0.000000] psci: probing for conduit method from DT. 21329 [ 0.000000] psci: PSCIv1.0 detected in firmware. 21330 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 21331 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 21332 [ 0.000000] psci: SMC Calling Convention v1.1 21333 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 21334 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 21335 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 21336 [ 0.000000] Detected VIPT I-cache on CPU0 21337 [ 0.000000] CPU features: detected: ARM erratum 845719 21338 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 21339 [ 0.000000] Policy zone: DMA 21340 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 21341 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 21342 Please use sysfs to set IO scheduler for individual devices. 21343 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 21344 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 21345 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 21346 [ 0.000000] Memory: 2851276K/3891200K available (14144K kernel code, 1760K rwdata, 5512K rodata, 3328K init, 592K bss, 122420K reserved, 917504K cma-reserved) 21347 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 21348 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 21349 [ 0.000000] rcu: RCU event tracing is enabled. 21350 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 21351 [ 0.000000] Trampoline variant of Tasks RCU enabled. 21352 [ 0.000000] Rude variant of Tasks RCU enabled. 21353 [ 0.000000] Tracing variant of Tasks RCU enabled. 21354 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 21355 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 21356 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 21357 [ 0.000000] GIC: Using split EOI/Deactivate mode 21358 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 21359 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 21360 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 21361 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 21362 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 21363 [ 0.000245] Console: colour dummy device 80x25 21364 [ 0.000278] printk: console [tty1] enabled 21365 [ 0.000360] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 21366 [ 0.000371] pid_max: default: 32768 minimum: 301 21367 [ 0.000455] LSM: Security Framework initializing 21368 [ 0.000480] Yama: becoming mindful. 21369 [ 0.000569] AppArmor: AppArmor initialized 21370 [ 0.000622] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 21371 [ 0.000641] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 21372 [ 0.002636] rcu: Hierarchical SRCU implementation. 21373 [ 0.005137] EFI services will not be available. 21374 [ 0.005558] smp: Bringing up secondary CPUs ... 21375 [ 0.006231] Detected VIPT I-cache on CPU1 21376 [ 0.006291] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 21377 [ 0.007486] CPU features: detected: ARM erratum 858921 21378 [ 0.007494] CPU features: detected: Spectre-v2 21379 [ 0.007498] CPU features: detected: Spectre-v4 21380 [ 0.007504] Detected VIPT I-cache on CPU2 21381 [ 0.007529] arch_timer: Enabling local workaround for ARM erratum 858921 21382 [ 0.007544] arch_timer: CPU2: Trapping CNTVCT access 21383 [ 0.007557] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 21384 [ 0.008268] Detected VIPT I-cache on CPU3 21385 [ 0.008284] arch_timer: Enabling local workaround for ARM erratum 858921 21386 [ 0.008291] arch_timer: CPU3: Trapping CNTVCT access 21387 [ 0.008299] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 21388 [ 0.008927] Detected VIPT I-cache on CPU4 21389 [ 0.008944] arch_timer: Enabling local workaround for ARM erratum 858921 21390 [ 0.008951] arch_timer: CPU4: Trapping CNTVCT access 21391 [ 0.008959] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 21392 [ 0.009581] Detected VIPT I-cache on CPU5 21393 [ 0.009598] arch_timer: Enabling local workaround for ARM erratum 858921 21394 [ 0.009605] arch_timer: CPU5: Trapping CNTVCT access 21395 [ 0.009612] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 21396 [ 0.009692] smp: Brought up 1 node, 6 CPUs 21397 [ 0.009709] SMP: Total of 6 processors activated. 21398 [ 0.009717] CPU features: detected: 32-bit EL0 Support 21399 [ 0.009722] CPU features: detected: CRC32 instructions 21400 [ 0.009728] CPU features: detected: 32-bit EL1 Support 21401 [ 0.020942] CPU: All CPU(s) started at EL2 21402 [ 0.020991] alternatives: patching kernel code 21403 [ 0.022262] devtmpfs: initialized 21404 [ 0.029901] Registered cp15_barrier emulation handler 21405 [ 0.029916] Registered setend emulation handler 21406 [ 0.030052] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 21407 [ 0.030090] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 21408 [ 0.046212] pinctrl core: initialized pinctrl subsystem 21409 [ 0.046929] DMI not present or invalid. 21410 [ 0.047296] NET: Registered protocol family 16 21411 [ 0.048795] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 21412 [ 0.049030] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 21413 [ 0.049322] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 21414 [ 0.049365] audit: initializing netlink subsys (disabled) 21415 [ 0.049474] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 21416 [ 0.050808] thermal_sys: Registered thermal governor 'fair_share' 21417 [ 0.050816] thermal_sys: Registered thermal governor 'bang_bang' 21418 [ 0.050820] thermal_sys: Registered thermal governor 'step_wise' 21419 [ 0.050823] thermal_sys: Registered thermal governor 'user_space' 21420 [ 0.051227] cpuidle: using governor menu 21421 [ 0.051571] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 21422 [ 0.051696] ASID allocator initialised with 65536 entries 21423 [ 0.052658] Serial: AMBA PL011 UART driver 21424 [ 0.087945] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 21425 [ 0.087955] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 21426 [ 0.087960] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 21427 [ 0.087964] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 21428 [ 0.089494] cryptd: max_cpu_qlen set to 1000 21429 [ 0.160241] raid6: neonx8 gen() 2787 MB/s 21430 [ 0.228300] raid6: neonx8 xor() 2041 MB/s 21431 [ 0.296389] raid6: neonx4 gen() 2998 MB/s 21432 [ 0.364440] raid6: neonx4 xor() 2328 MB/s 21433 [ 0.432503] raid6: neonx2 gen() 2563 MB/s 21434 [ 0.500565] raid6: neonx2 xor() 2197 MB/s 21435 [ 0.568636] raid6: neonx1 gen() 1999 MB/s 21436 [ 0.636697] raid6: neonx1 xor() 1727 MB/s 21437 [ 0.704765] raid6: int64x8 gen() 1379 MB/s 21438 [ 0.772837] raid6: int64x8 xor() 736 MB/s 21439 [ 0.840921] raid6: int64x4 gen() 1463 MB/s 21440 [ 0.908973] raid6: int64x4 xor() 733 MB/s 21441 [ 0.977029] raid6: int64x2 gen() 1362 MB/s 21442 [ 1.045093] raid6: int64x2 xor() 619 MB/s 21443 [ 1.113172] raid6: int64x1 gen() 1127 MB/s 21444 [ 1.181224] raid6: int64x1 xor() 462 MB/s 21445 [ 1.181228] raid6: using algorithm neonx4 gen() 2998 MB/s 21446 [ 1.181231] raid6: .... xor() 2328 MB/s, rmw enabled 21447 [ 1.181235] raid6: using neon recovery algorithm 21448 [ 1.181675] ACPI: Interpreter disabled. 21449 [ 1.182460] 5V: supplied by 12V 21450 [ 1.183344] VDDAO_3V3: supplied by 12V 21451 [ 1.183826] iommu: Default domain type: Translated 21452 [ 1.183939] vgaarb: loaded 21453 [ 1.184725] SCSI subsystem initialized 21454 [ 1.185080] usbcore: registered new interface driver usbfs 21455 [ 1.185120] usbcore: registered new interface driver hub 21456 [ 1.185161] usbcore: registered new device driver usb 21457 [ 1.185394] pps_core: LinuxPPS API ver. 1 registered 21458 [ 1.185398] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 21459 [ 1.185423] PTP clock support registered 21460 [ 1.185610] EDAC MC: Ver: 3.0.0 21461 [ 1.187014] NetLabel: Initializing 21462 [ 1.187021] NetLabel: domain hash size = 128 21463 [ 1.187024] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 21464 [ 1.187066] NetLabel: unlabeled traffic allowed by default 21465 [ 1.187509] clocksource: Switched to clocksource arch_sys_counter 21466 [ 1.187709] VFS: Disk quotas dquot_6.6.0 21467 [ 1.187751] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 21468 [ 1.188108] AppArmor: AppArmor Filesystem Enabled 21469 [ 1.188156] pnp: PnP ACPI: disabled 21470 [ 1.193697] NET: Registered protocol family 2 21471 [ 1.194175] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 21472 [ 1.194250] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 21473 [ 1.194506] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 21474 [ 1.194694] TCP: Hash tables configured (established 32768 bind 32768) 21475 [ 1.194845] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 21476 [ 1.194911] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 21477 [ 1.194957] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 21478 [ 1.195101] NET: Registered protocol family 1 21479 [ 1.195123] PCI: CLS 0 bytes, default 64 21480 [ 1.195243] Trying to unpack rootfs image as initramfs... 21481 [ 1.723871] Freeing initrd memory: 13540K 21482 [ 1.724835] kvm [1]: IPA Size Limit: 40 bits 21483 [ 1.725545] kvm [1]: vgic interrupt IRQ9 21484 [ 1.725674] kvm [1]: Hyp mode initialized successfully 21485 [ 1.730741] Initialise system trusted keyrings 21486 [ 1.730778] Key type blacklist registered 21487 [ 1.730872] workingset: timestamp_bits=44 max_order=20 bucket_order=0 21488 [ 1.734049] zbud: loaded 21489 [ 1.734951] squashfs: version 4.0 (2009/01/31) Phillip Lougher 21490 [ 1.735515] fuse: init (API version 7.32) 21491 [ 1.736330] integrity: Platform Keyring initialized 21492 [ 1.764086] xor: measuring software checksum speed 21493 [ 1.766921] 8regs : 3476 MB/sec 21494 [ 1.769379] 32regs : 4025 MB/sec 21495 [ 1.772038] arm64_neon : 3712 MB/sec 21496 [ 1.772041] xor: using function: 32regs (4025 MB/sec) 21497 [ 1.772048] Key type asymmetric registered 21498 [ 1.772051] Asymmetric key parser 'x509' registered 21499 [ 1.772083] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 21500 [ 1.772171] io scheduler mq-deadline registered 21501 [ 1.772175] io scheduler kyber registered 21502 [ 1.772255] io scheduler bfq registered 21503 [ 1.774812] gpio-447 (usb-hub-reset): hogged as output/high 21504 [ 1.777851] EINJ: ACPI disabled. 21505 [ 1.784193] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 21506 [ 1.785618] VCC_3V3: supplied by VDDAO_3V3 21507 [ 1.785666] FLASH_1V8: supplied by VCC_3V3 21508 [ 1.785696] VCC_1V8: supplied by VCC_3V3 21509 [ 1.785721] VDDAO_1V8: supplied by VDDAO_3V3 21510 [ 1.785749] VDDCPU_A: supplied by regulator-dummy 21511 [ 1.786115] VDDCPU_B: supplied by regulator-dummy 21512 [ 1.786800] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 21513 [ 1.789262] Serial: AMBA driver 21514 [ 1.789553] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 21515 [ 1.789647] printk: console [ttyAML0] enabled 21516 [ 1.790161] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 21517 [ 1.795411] loop: module loaded 21518 [ 1.797453] libphy: Fixed MDIO Bus: probed 21519 [ 1.798518] tun: Universal TUN/TAP device driver, 1.6 21520 [ 1.799179] thunder_xcv, ver 1.0 21521 [ 1.799209] thunder_bgx, ver 1.0 21522 [ 1.799237] nicpf, ver 1.0 21523 [ 1.799778] e1000e: Intel(R) PRO/1000 Network Driver 21524 [ 1.799783] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 21525 [ 1.799828] igb: Intel(R) Gigabit Ethernet Network Driver 21526 [ 1.799831] igb: Copyright (c) 2007-2014 Intel Corporation. 21527 [ 1.799863] igbvf: Intel(R) Gigabit Virtual Function Network Driver 21528 [ 1.799866] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 21529 [ 1.799996] sky2: driver version 1.30 21530 [ 1.800371] VFIO - User Level meta-driver version: 0.3 21531 [ 1.801769] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 21532 [ 1.801786] ehci-pci: EHCI PCI platform driver 21533 [ 1.801814] ehci-platform: EHCI generic platform driver 21534 [ 1.801948] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 21535 [ 1.801958] ohci-pci: OHCI PCI platform driver 21536 [ 1.801991] ohci-platform: OHCI generic platform driver 21537 [ 1.802405] usbcore: registered new interface driver usb-storage 21538 [ 1.803744] mousedev: PS/2 mouse device common for all mice 21539 [ 1.804131] i2c /dev entries driver 21540 [ 1.809341] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 21541 [ 1.810000] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 21542 [ 1.810677] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 21543 [ 1.811282] sdhci: Secure Digital Host Controller Interface driver 21544 [ 1.811290] sdhci: Copyright(c) Pierre Ossman 21545 [ 1.811426] Synopsys Designware Multimedia Card Interface Driver 21546 [ 1.811915] sdhci-pltfm: SDHCI platform and OF driver helper 21547 [ 1.812331] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 21548 [ 1.812775] ledtrig-cpu: registered to indicate activity on CPUs 21549 [ 1.813228] meson-sm: secure-monitor enabled 21550 [ 1.813456] hid: raw HID events driver (C) Jiri Kosina 21551 [ 1.813560] usbcore: registered new interface driver usbhid 21552 [ 1.813562] usbhid: USB HID core driver 21553 [ 1.814614] NET: Registered protocol family 10 21554 [ 1.815058] Segment Routing with IPv6 21555 [ 1.815086] NET: Registered protocol family 17 21556 [ 1.815150] 8021q: 802.1Q VLAN Support v1.8 21557 [ 1.815175] Key type dns_resolver registered 21558 [ 1.815455] registered taskstats version 1 21559 [ 1.815461] Loading compiled-in X.509 certificates 21560 [ 1.817214] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 21561 [ 1.818816] zswap: loaded using pool zstd/z3fold 21562 [ 1.818989] Key type ._fscrypt registered 21563 [ 1.818991] Key type .fscrypt registered 21564 [ 1.818993] Key type fscrypt-provisioning registered 21565 [ 1.820088] Btrfs loaded, crc32c=crc32c-generic 21566 [ 1.826012] Key type encrypted registered 21567 [ 1.826025] AppArmor: AppArmor sha1 policy hashing enabled 21568 [ 1.832642] HUB_5V: supplied by 5V 21569 [ 1.832859] USB_PWR_EN: supplied by 5V 21570 [ 1.834479] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 21571 [ 1.834487] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 21572 [ 1.837158] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 21573 [ 1.837204] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 21574 [ 1.837309] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 21575 [ 1.837893] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 21576 [ 1.837904] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 21577 [ 1.837994] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 21578 [ 1.838015] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 21579 [ 1.838138] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 21580 [ 1.838141] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 21581 [ 1.838144] usb usb1: Product: xHCI Host Controller 21582 [ 1.838146] usb usb1: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 21583 [ 1.838148] usb usb1: SerialNumber: xhci-hcd.0.auto 21584 [ 1.838338] hub 1-0:1.0: USB hub found 21585 [ 1.838351] hub 1-0:1.0: 2 ports detected 21586 [ 1.838479] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 21587 [ 1.838485] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 21588 [ 1.838491] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 21589 [ 1.838515] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 21590 [ 1.838546] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 21591 [ 1.838549] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 21592 [ 1.838551] usb usb2: Product: xHCI Host Controller 21593 [ 1.838553] usb usb2: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 21594 [ 1.838555] usb usb2: SerialNumber: xhci-hcd.0.auto 21595 [ 1.838695] hub 2-0:1.0: USB hub found 21596 [ 1.838705] hub 2-0:1.0: 1 port detected 21597 [ 1.840015] meson-gx-mmc ffe05000.sd: Got CD GPIO 21598 [ 1.864625] Freeing unused kernel memory: 3328K 21599 [ 1.907583] Run /init as init process 21600 [ 1.907587] with arguments: 21601 [ 1.907589] /init 21602 [ 1.907590] with environment: 21603 [ 1.907592] HOME=/ 21604 [ 1.907593] TERM=linux 21605 [ 1.907595] hdmimode=custombuilt 21606 [ 1.907596] cvbsmode=576cvbs 21607 [ 1.907598] max_freq_a53=1896 21608 [ 1.907599] max_freq_a73=1800 21609 [ 1.907601] voutmode=hdmi 21610 [ 1.907602] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 21611 [ 1.907604] disablehpd=false 21612 [ 1.907605] cvbscable= 21613 [ 1.907607] overscan=100 21614 [ 1.929818] mmc0: new ultra high speed SDR25 SDHC card at address b368 21615 [ 1.930359] mmcblk0: mmc0:b368 CBADS 30.0 GiB 21616 [ 1.932163] mmcblk0: p1 21617 [ 2.060157] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 21618 [ 2.060166] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 21619 [ 2.060298] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 21620 [ 2.060303] meson8b-dwmac ff3f0000.ethernet: no reset control found 21621 [ 2.060887] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 21622 [ 2.060899] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 21623 [ 2.060902] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 21624 [ 2.060905] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 21625 [ 2.060907] meson8b-dwmac ff3f0000.ethernet: COE Type 2 21626 [ 2.060909] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 21627 [ 2.060911] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 21628 [ 2.060971] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 21629 [ 2.060975] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 21630 [ 2.060977] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 21631 [ 2.061206] libphy: stmmac: probed 21632 [ 2.064108] libphy: mdio_mux: probed 21633 [ 2.066445] meson-vrtc ff8000a8.rtc: registered as rtc1 21634 [ 2.084722] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 21635 [ 2.084910] rtc-pcf8563 1-0051: registered as rtc0 21636 [ 2.086343] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 21637 [ 2.086352] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 21638 [ 2.087179] random: fast init done 21639 [ 2.171641] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 21640 [ 2.200251] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 21641 [ 2.200257] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 21642 [ 2.200260] usb 2-1: Product: USB3.1 Hub 21643 [ 2.200262] usb 2-1: Manufacturer: GenesysLogic 21644 [ 2.222701] hub 2-1:1.0: USB hub found 21645 [ 2.222983] hub 2-1:1.0: 4 ports detected 21646 [ 2.267985] libphy: mdio_mux: probed 21647 [ 2.323536] usb 1-1: new high-speed USB device number 2 using xhci-hcd 21648 [ 2.473788] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 21649 [ 2.473794] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 21650 [ 2.473798] usb 1-1: Product: USB2.1 Hub 21651 [ 2.473801] usb 1-1: Manufacturer: GenesysLogic 21652 [ 2.510778] hub 1-1:1.0: USB hub found 21653 [ 2.511018] hub 1-1:1.0: 4 ports detected 21654 [ 2.703520] usb 1-2: new high-speed USB device number 3 using xhci-hcd 21655 [ 2.851951] usb 1-2: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 21656 [ 2.851955] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 21657 [ 2.851959] usb 1-2: Product: PCTV 292e 21658 [ 2.851962] usb 1-2: Manufacturer: PCTV 21659 [ 2.851965] usb 1-2: SerialNumber: 0011356964 21660 [ 3.267540] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 21661 [ 4.081422] systemd[1]: System time before build time, advancing clock. 21662 [ 4.096328] systemd[1]: Inserted module 'autofs4' 21663 [ 4.143328] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 21664 [ 4.143561] systemd[1]: Detected architecture arm64. 21665 [ 4.169344] systemd[1]: Set hostname to <odroidn2>. 21666 [ 4.495594] random: systemd: uninitialized urandom read (16 bytes read) 21667 [ 4.498883] random: systemd: uninitialized urandom read (16 bytes read) 21668 [ 4.499105] systemd[1]: Listening on udev Kernel Socket. 21669 [ 4.499321] random: systemd: uninitialized urandom read (16 bytes read) 21670 [ 4.499548] systemd[1]: Listening on Journal Socket. 21671 [ 4.500416] systemd[1]: Created slice User and Session Slice. 21672 [ 4.500515] systemd[1]: Reached target Slices. 21673 [ 4.502369] systemd[1]: Mounting POSIX Message Queue File System... 21674 [ 4.502841] systemd[1]: Listening on Journal Socket (/dev/log). 21675 [ 4.503175] systemd[1]: Listening on udev Control Socket. 21676 [ 4.568484] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 21677 [ 5.094247] zram: Added device: zram0 21678 [ 5.094407] zram: Added device: zram1 21679 [ 5.094553] zram: Added device: zram2 21680 [ 5.131994] pwm-gpio pwmgpio: 1 gpio pwms loaded 21681 [ 5.305135] mc: Linux media interface: v0.10 21682 [ 5.326439] panfrost ffe40000.gpu: clock rate = 24000000 21683 [ 5.326493] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 21684 [ 5.327098] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 21685 [ 5.327102] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 21686 [ 5.327105] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 21687 [ 5.327108] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 21688 [ 5.341466] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 21689 [ 5.384168] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 21690 [ 5.405887] videodev: Linux video capture interface: v2.00 21691 [ 5.423291] meson-drm ff900000.vpu: Queued 2 outputs on vpu 21692 [ 5.451538] Registered IR keymap rc-odroid 21693 [ 5.463050] meson-drm ff900000.vpu: CVBS Output connector not available 21694 [ 5.491414] IR NEC protocol handler initialized 21695 [ 5.491572] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 21696 [ 5.505132] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 21697 [ 5.505423] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 21698 [ 5.505695] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 21699 [ 5.511476] zram0: detected capacity change from 0 to 1938251776 21700 [ 5.519646] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 21701 [ 5.519782] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 21702 [ 5.519869] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 21703 [ 5.521358] meson-ir ff808000.ir: receiver initialized 21704 [ 5.559594] em28xx 1-2:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 21705 [ 5.559606] em28xx 1-2:1.0: DVB interface 0 found: isoc 21706 [ 5.567190] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 21707 [ 5.619641] em28xx 1-2:1.0: chip ID is em28178 21708 [ 5.787666] Console: switching to colour frame buffer device 240x67 21709 [ 5.814188] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 21710 [ 5.862474] axg-sound-card sound: ASoC: no DMI vendor name! 21711 [ 6.555534] Adding 1892820k swap on /dev/zram0. Priority:5 extents:1 across:1892820k SSFS 21712 [ 6.618388] zram1: detected capacity change from 0 to 52428800 21713 [ 7.653845] em28xx 1-2:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 21714 [ 7.653851] em28xx 1-2:1.0: EEPROM info: 21715 [ 7.653856] em28xx 1-2:1.0: microcode start address = 0x0004, boot configuration = 0x01 21716 [ 7.659957] em28xx 1-2:1.0: AC97 audio (5 sample rates) 21717 [ 7.659960] em28xx 1-2:1.0: 500mA max power 21718 [ 7.659964] em28xx 1-2:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 21719 [ 7.719530] em28xx 1-2:1.0: Identified as PCTV tripleStick (292e) (card=94) 21720 [ 7.719539] em28xx 1-2:1.0: dvb set to isoc mode. 21721 [ 7.719773] usbcore: registered new interface driver em28xx 21722 [ 7.746664] em28xx 1-2:1.0: Binding DVB extension 21723 [ 7.760345] i2c i2c-4: Added multiplexed i2c bus 5 21724 [ 7.760353] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 21725 [ 7.760356] si2168 4-0064: firmware version: B 4.0.2 21726 [ 7.768709] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 21727 [ 7.768740] dvbdev: DVB: registering new adapter (1-2:1.0) 21728 [ 7.768745] em28xx 1-2:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 21729 [ 7.768752] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 21730 [ 7.769398] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 21731 [ 7.770719] em28xx 1-2:1.0: DVB extension successfully initialized 21732 [ 7.770729] em28xx: Registered (Em28xx dvb Extension) extension 21733 [ 7.777964] em28xx 1-2:1.0: Registering input extension 21734 [ 7.815531] Registered IR keymap rc-pinnacle-pctv-hd 21735 [ 7.815738] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1 21736 [ 7.815834] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 21737 [ 7.815894] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1/input1 21738 [ 7.815962] em28xx 1-2:1.0: Input extension successfully initialized 21739 [ 7.815967] em28xx: Registered (Em28xx Input Extension) extension 21740 [ 8.703751] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 21741 [ 8.703771] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 21742 [ 9.964579] systemd[1]: Started Armbian memory supported logging. 21743 [ 9.968799] systemd[1]: Starting Journal Service... 21744 [ 10.031810] systemd[1]: Started Journal Service. 21745 [ 10.061701] systemd-journald[1846]: Received request to flush runtime journal from PID 1 21746 21747 ### armbian-release: 21748 21749 # PLEASE DO NOT EDIT THIS FILE 21750 BOARD=odroidn2 21751 BOARD_NAME="Odroid N2" 21752 BOARDFAMILY=meson-g12b 21753 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 21754 BUILD_REPOSITORY_COMMIT=23e571cb4-dirty 21755 DISTRIBUTION_CODENAME=buster 21756 DISTRIBUTION_STATUS=supported 21757 VERSION=21.02.4 21758 LINUXFAMILY=meson64 21759 BRANCH=current 21760 ARCH=arm64 21761 IMAGE_TYPE=stable 21762 BOARD_TYPE=conf 21763 INITRD_ARCH=arm64 21764 KERNEL_IMAGE_TYPE=Image 21765 21766 ### boot environment: 21767 21768 verbosity=1 21769 console=both 21770 overlay_prefix=meson 21771 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 21772 rootfstype=ext4 21773 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 21774 21775 ### lsusb: 21776 21777 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 21778 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 21779 Bus 001 Device 003: ID 2013:025f PCTV Systems 21780 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 21781 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 21782 21783 ### lscpu: 21784 21785 Architecture: aarch64 21786 Byte Order: Little Endian 21787 CPU(s): 6 21788 On-line CPU(s) list: 0-5 21789 Thread(s) per core: 1 21790 Core(s) per socket: 3 21791 Socket(s): 2 21792 NUMA node(s): 1 21793 Vendor ID: ARM 21794 Model: 4 21795 Model name: Cortex-A53 21796 Stepping: r0p4 21797 CPU max MHz: 1992.0000 21798 CPU min MHz: 100.0000 21799 BogoMIPS: 48.00 21800 L1d cache: unknown size 21801 L1i cache: unknown size 21802 L2 cache: unknown size 21803 NUMA node0 CPU(s): 0-5 21804 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21805 21806 ### cpuinfo: 21807 21808 processor : 0 21809 BogoMIPS : 48.00 21810 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21811 CPU implementer : 0x41 21812 CPU architecture: 8 21813 CPU variant : 0x0 21814 CPU part : 0xd03 21815 CPU revision : 4 21816 21817 processor : 1 21818 BogoMIPS : 48.00 21819 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21820 CPU implementer : 0x41 21821 CPU architecture: 8 21822 CPU variant : 0x0 21823 CPU part : 0xd03 21824 CPU revision : 4 21825 21826 processor : 2 21827 BogoMIPS : 48.00 21828 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21829 CPU implementer : 0x41 21830 CPU architecture: 8 21831 CPU variant : 0x0 21832 CPU part : 0xd09 21833 CPU revision : 2 21834 21835 processor : 3 21836 BogoMIPS : 48.00 21837 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21838 CPU implementer : 0x41 21839 CPU architecture: 8 21840 CPU variant : 0x0 21841 CPU part : 0xd09 21842 CPU revision : 2 21843 21844 processor : 4 21845 BogoMIPS : 48.00 21846 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21847 CPU implementer : 0x41 21848 CPU architecture: 8 21849 CPU variant : 0x0 21850 CPU part : 0xd09 21851 CPU revision : 2 21852 21853 processor : 5 21854 BogoMIPS : 48.00 21855 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 21856 CPU implementer : 0x41 21857 CPU architecture: 8 21858 CPU variant : 0x0 21859 CPU part : 0xd09 21860 CPU revision : 2 21861 21862 21863 ### meminfo: 21864 21865 MemTotal: 3785648 kB 21866 MemFree: 3468676 kB 21867 MemAvailable: 3469232 kB 21868 Buffers: 11688 kB 21869 Cached: 48896 kB 21870 SwapCached: 0 kB 21871 Active: 29088 kB 21872 Inactive: 176696 kB 21873 Active(anon): 108 kB 21874 Inactive(anon): 150284 kB 21875 Active(file): 28980 kB 21876 Inactive(file): 26412 kB 21877 Unevictable: 0 kB 21878 Mlocked: 0 kB 21879 SwapTotal: 1892820 kB 21880 SwapFree: 1892820 kB 21881 Dirty: 8840 kB 21882 Writeback: 0 kB 21883 AnonPages: 145284 kB 21884 Mapped: 13568 kB 21885 Shmem: 5048 kB 21886 KReclaimable: 13304 kB 21887 Slab: 40784 kB 21888 SReclaimable: 13304 kB 21889 SUnreclaim: 27480 kB 21890 KernelStack: 2544 kB 21891 PageTables: 6064 kB 21892 NFS_Unstable: 0 kB 21893 Bounce: 0 kB 21894 WritebackTmp: 0 kB 21895 CommitLimit: 3785644 kB 21896 Committed_AS: 4241352 kB 21897 VmallocTotal: 135290159040 kB 21898 VmallocUsed: 33324 kB 21899 VmallocChunk: 0 kB 21900 Percpu: 1368 kB 21901 HardwareCorrupted: 0 kB 21902 AnonHugePages: 40960 kB 21903 ShmemHugePages: 0 kB 21904 ShmemPmdMapped: 0 kB 21905 FileHugePages: 0 kB 21906 FilePmdMapped: 0 kB 21907 CmaTotal: 917504 kB 21908 CmaFree: 901212 kB 21909 HugePages_Total: 0 21910 HugePages_Free: 0 21911 HugePages_Rsvd: 0 21912 HugePages_Surp: 0 21913 Hugepagesize: 2048 kB 21914 Hugetlb: 0 kB 21915 21916 ### virtual memory: 21917 21918 vm.admin_reserve_kbytes = 8192 21919 vm.block_dump = 0 21920 vm.compaction_proactiveness = 20 21921 vm.compact_unevictable_allowed = 1 21922 vm.dirty_background_bytes = 0 21923 vm.dirty_background_ratio = 10 21924 vm.dirty_bytes = 0 21925 vm.dirty_expire_centisecs = 3000 21926 vm.dirty_ratio = 20 21927 vm.dirtytime_expire_seconds = 43200 21928 vm.dirty_writeback_centisecs = 500 21929 vm.extfrag_threshold = 500 21930 vm.hugetlb_shm_group = 0 21931 vm.laptop_mode = 0 21932 vm.legacy_va_layout = 0 21933 vm.lowmem_reserve_ratio = 256 256 32 0 21934 vm.max_map_count = 65530 21935 vm.memory_failure_early_kill = 0 21936 vm.memory_failure_recovery = 1 21937 vm.min_free_kbytes = 22528 21938 vm.min_slab_ratio = 5 21939 vm.min_unmapped_ratio = 1 21940 vm.mmap_min_addr = 4096 21941 vm.mmap_rnd_bits = 18 21942 vm.mmap_rnd_compat_bits = 11 21943 vm.nr_hugepages = 0 21944 vm.nr_hugepages_mempolicy = 0 21945 vm.nr_overcommit_hugepages = 0 21946 vm.numa_stat = 1 21947 vm.numa_zonelist_order = Node 21948 vm.oom_dump_tasks = 1 21949 vm.oom_kill_allocating_task = 0 21950 vm.overcommit_kbytes = 0 21951 vm.overcommit_memory = 0 21952 vm.overcommit_ratio = 50 21953 vm.page-cluster = 0 21954 vm.page_lock_unfairness = 5 21955 vm.panic_on_oom = 0 21956 vm.percpu_pagelist_fraction = 0 21957 vm.stat_interval = 1 21958 vm.swappiness = 100 21959 vm.user_reserve_kbytes = 117113 21960 vm.vfs_cache_pressure = 100 21961 vm.watermark_boost_factor = 15000 21962 vm.watermark_scale_factor = 10 21963 vm.zone_reclaim_mode = 0 21964 21965 ### ip addr: 21966 21967 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 21968 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 21969 inet XXX.XXX.0.1/8 scope host lo 21970 valid_lft forever preferred_lft forever 21971 inet6 ::1/128 scope host 21972 valid_lft forever preferred_lft forever 21973 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 21974 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 21975 21976 ### partitions: 21977 21978 major minor #blocks name 21979 21980 179 0 31464960 mmcblk0 21981 179 1 31146208 mmcblk0p1 21982 252 0 1892824 zram0 21983 252 1 51200 zram1 21984 21985 ### df: 21986 21987 udev 1.4G 0 1.4G 0% /dev 21988 tmpfs 370M 5.0M 365M 2% /run 21989 /dev/mmcblk0p1 30G 1.8G 28G 7% / 21990 tmpfs 1.9G 0 1.9G 0% /dev/shm 21991 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 21992 tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup 21993 tmpfs 1.9G 0 1.9G 0% /tmp 21994 /dev/zram1 49M 8.7M 37M 20% /var/log 21995 21996 ### lsblk: 21997 21998 NAME FSTYPE SIZE MOUNTPOINT UUID 21999 mmcblk0 30G 22000 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 22001 zram1 50M /var/log 22002 22003 ### zramctl: 22004 22005 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 22006 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 22007 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 22008 22009 ### mtab: 22010 22011 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 22012 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 22013 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 22014 22015 ### mmc0:b368 info: 22016 22017 fwrev: 0x0 22018 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 22019 cid: 6f0303434241445310aa002b4d013b00 22020 rca: 0xb368 22021 csd: 400e005a5b590000f00e7f800a404000 22022 manfid: 0x00006f 22023 ocr: 0x00200000 22024 preferred_erase_size: 2097152 22025 type: SD 22026 hwrev: 0x1 22027 date: 11/2019 22028 dsr: 0x404 22029 erase_size: 512 22030 oemid: 0x0303 22031 serial: 0xaa002b4d 22032 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 22033 scr: 02b5800300000000 22034 name: CBADS 22035 22036 ### Boot system health: 22037 22038 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 22039 14:24:28: 1908/1992MHz 0.60 22% 10% 4% 0% 7% 0% 34.1°C 0/11 22040 14:24:28: 1908/1992MHz 0.60 66% 35% 11% 0% 18% 1% 33.7°C 0/11 22041 14:24:29: 1908/1992MHz 0.60 83% 27% 1% 0% 53% 0% 31.7°C 0/11 22042 14:24:29: 1908/1992MHz 0.60 48% 5% 5% 0% 34% 0% 30.4°C 0/11 22043 14:24:29: 1908/1992MHz 0.60 62% 10% 4% 0% 46% 0% 30.5°C 0/11 22044 22045 ### Activated 1 lzo-rle zram swap devices with 1848 MB each 22046 22047 ### Activated Armbian ramlog partition with zstd compression 22048 22049 Mon 03 May 2021 02:53:28 PM BST | Odroid N2 | 21.02.4 | arm64 | aarch64 | 5.10.27-meson64 22050 22051 ### dmesg: 22052 22053 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 22054 [ 0.000000] Linux version 5.10.27-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.4 SMP PREEMPT Sun Apr 4 09:23:42 UTC 2021 22055 [ 0.000000] Machine model: Hardkernel ODROID-N2 22056 [ 0.000000] efi: UEFI not found. 22057 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 22058 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 22059 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 22060 [ 0.000000] NUMA: No NUMA configuration found 22061 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 22062 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 22063 [ 0.000000] Zone ranges: 22064 [ 0.000000] DMA [mem 0x0000000000000000-0x00000000ed7fffff] 22065 [ 0.000000] DMA32 empty 22066 [ 0.000000] Normal empty 22067 [ 0.000000] Movable zone start for each node 22068 [ 0.000000] Early memory node ranges 22069 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 22070 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 22071 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 22072 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 22073 [ 0.000000] On node 0 totalpages: 972800 22074 [ 0.000000] DMA zone: 15200 pages used for memmap 22075 [ 0.000000] DMA zone: 0 pages reserved 22076 [ 0.000000] DMA zone: 972800 pages, LIFO batch:63 22077 [ 0.000000] psci: probing for conduit method from DT. 22078 [ 0.000000] psci: PSCIv1.0 detected in firmware. 22079 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 22080 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 22081 [ 0.000000] psci: SMC Calling Convention v1.1 22082 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 22083 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 22084 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 22085 [ 0.000000] Detected VIPT I-cache on CPU0 22086 [ 0.000000] CPU features: detected: ARM erratum 845719 22087 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 22088 [ 0.000000] Policy zone: DMA 22089 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 22090 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 22091 Please use sysfs to set IO scheduler for individual devices. 22092 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 22093 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 22094 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 22095 [ 0.000000] Memory: 2851276K/3891200K available (14144K kernel code, 1760K rwdata, 5512K rodata, 3328K init, 592K bss, 122420K reserved, 917504K cma-reserved) 22096 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 22097 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 22098 [ 0.000000] rcu: RCU event tracing is enabled. 22099 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 22100 [ 0.000000] Trampoline variant of Tasks RCU enabled. 22101 [ 0.000000] Rude variant of Tasks RCU enabled. 22102 [ 0.000000] Tracing variant of Tasks RCU enabled. 22103 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 22104 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 22105 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 22106 [ 0.000000] GIC: Using split EOI/Deactivate mode 22107 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 22108 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 22109 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 22110 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 22111 [ 0.000003] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 22112 [ 0.000249] Console: colour dummy device 80x25 22113 [ 0.000281] printk: console [tty1] enabled 22114 [ 0.000366] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 22115 [ 0.000378] pid_max: default: 32768 minimum: 301 22116 [ 0.000463] LSM: Security Framework initializing 22117 [ 0.000488] Yama: becoming mindful. 22118 [ 0.000577] AppArmor: AppArmor initialized 22119 [ 0.000629] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 22120 [ 0.000647] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 22121 [ 0.002642] rcu: Hierarchical SRCU implementation. 22122 [ 0.005119] EFI services will not be available. 22123 [ 0.005544] smp: Bringing up secondary CPUs ... 22124 [ 0.006217] Detected VIPT I-cache on CPU1 22125 [ 0.006276] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 22126 [ 0.007476] CPU features: detected: ARM erratum 858921 22127 [ 0.007485] CPU features: detected: Spectre-v2 22128 [ 0.007489] CPU features: detected: Spectre-v4 22129 [ 0.007495] Detected VIPT I-cache on CPU2 22130 [ 0.007519] arch_timer: Enabling local workaround for ARM erratum 858921 22131 [ 0.007535] arch_timer: CPU2: Trapping CNTVCT access 22132 [ 0.007549] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 22133 [ 0.008257] Detected VIPT I-cache on CPU3 22134 [ 0.008273] arch_timer: Enabling local workaround for ARM erratum 858921 22135 [ 0.008281] arch_timer: CPU3: Trapping CNTVCT access 22136 [ 0.008289] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 22137 [ 0.008917] Detected VIPT I-cache on CPU4 22138 [ 0.008934] arch_timer: Enabling local workaround for ARM erratum 858921 22139 [ 0.008940] arch_timer: CPU4: Trapping CNTVCT access 22140 [ 0.008948] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 22141 [ 0.009572] Detected VIPT I-cache on CPU5 22142 [ 0.009588] arch_timer: Enabling local workaround for ARM erratum 858921 22143 [ 0.009596] arch_timer: CPU5: Trapping CNTVCT access 22144 [ 0.009604] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 22145 [ 0.009684] smp: Brought up 1 node, 6 CPUs 22146 [ 0.009701] SMP: Total of 6 processors activated. 22147 [ 0.009709] CPU features: detected: 32-bit EL0 Support 22148 [ 0.009715] CPU features: detected: CRC32 instructions 22149 [ 0.009720] CPU features: detected: 32-bit EL1 Support 22150 [ 0.020988] CPU: All CPU(s) started at EL2 22151 [ 0.021038] alternatives: patching kernel code 22152 [ 0.022308] devtmpfs: initialized 22153 [ 0.029954] Registered cp15_barrier emulation handler 22154 [ 0.029967] Registered setend emulation handler 22155 [ 0.030103] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 22156 [ 0.030143] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 22157 [ 0.046227] pinctrl core: initialized pinctrl subsystem 22158 [ 0.046945] DMI not present or invalid. 22159 [ 0.047322] NET: Registered protocol family 16 22160 [ 0.048937] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 22161 [ 0.049181] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 22162 [ 0.049474] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 22163 [ 0.049516] audit: initializing netlink subsys (disabled) 22164 [ 0.049630] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 22165 [ 0.050924] thermal_sys: Registered thermal governor 'fair_share' 22166 [ 0.050932] thermal_sys: Registered thermal governor 'bang_bang' 22167 [ 0.050936] thermal_sys: Registered thermal governor 'step_wise' 22168 [ 0.050939] thermal_sys: Registered thermal governor 'user_space' 22169 [ 0.051366] cpuidle: using governor menu 22170 [ 0.051713] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 22171 [ 0.051834] ASID allocator initialised with 65536 entries 22172 [ 0.052790] Serial: AMBA PL011 UART driver 22173 [ 0.087316] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 22174 [ 0.087326] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 22175 [ 0.087330] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 22176 [ 0.087335] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 22177 [ 0.088782] cryptd: max_cpu_qlen set to 1000 22178 [ 0.156225] raid6: neonx8 gen() 2785 MB/s 22179 [ 0.224285] raid6: neonx8 xor() 2042 MB/s 22180 [ 0.292372] raid6: neonx4 gen() 2996 MB/s 22181 [ 0.360455] raid6: neonx4 xor() 2328 MB/s 22182 [ 0.428510] raid6: neonx2 gen() 2523 MB/s 22183 [ 0.496597] raid6: neonx2 xor() 1460 MB/s 22184 [ 0.564648] raid6: neonx1 gen() 2009 MB/s 22185 [ 0.632710] raid6: neonx1 xor() 1728 MB/s 22186 [ 0.700775] raid6: int64x8 gen() 1378 MB/s 22187 [ 0.768844] raid6: int64x8 xor() 736 MB/s 22188 [ 0.836921] raid6: int64x4 gen() 1462 MB/s 22189 [ 0.904980] raid6: int64x4 xor() 733 MB/s 22190 [ 0.973037] raid6: int64x2 gen() 1362 MB/s 22191 [ 1.041108] raid6: int64x2 xor() 619 MB/s 22192 [ 1.109172] raid6: int64x1 gen() 1127 MB/s 22193 [ 1.177235] raid6: int64x1 xor() 462 MB/s 22194 [ 1.177238] raid6: using algorithm neonx4 gen() 2996 MB/s 22195 [ 1.177241] raid6: .... xor() 2328 MB/s, rmw enabled 22196 [ 1.177245] raid6: using neon recovery algorithm 22197 [ 1.177699] ACPI: Interpreter disabled. 22198 [ 1.178476] 5V: supplied by 12V 22199 [ 1.179360] VDDAO_3V3: supplied by 12V 22200 [ 1.179852] iommu: Default domain type: Translated 22201 [ 1.179991] vgaarb: loaded 22202 [ 1.180665] SCSI subsystem initialized 22203 [ 1.180912] usbcore: registered new interface driver usbfs 22204 [ 1.180949] usbcore: registered new interface driver hub 22205 [ 1.180996] usbcore: registered new device driver usb 22206 [ 1.181297] pps_core: LinuxPPS API ver. 1 registered 22207 [ 1.181302] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 22208 [ 1.181316] PTP clock support registered 22209 [ 1.181527] EDAC MC: Ver: 3.0.0 22210 [ 1.182891] NetLabel: Initializing 22211 [ 1.182899] NetLabel: domain hash size = 128 22212 [ 1.182902] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 22213 [ 1.182944] NetLabel: unlabeled traffic allowed by default 22214 [ 1.183436] clocksource: Switched to clocksource arch_sys_counter 22215 [ 1.183653] VFS: Disk quotas dquot_6.6.0 22216 [ 1.183695] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 22217 [ 1.184039] AppArmor: AppArmor Filesystem Enabled 22218 [ 1.184086] pnp: PnP ACPI: disabled 22219 [ 1.189703] NET: Registered protocol family 2 22220 [ 1.190156] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 22221 [ 1.190261] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 22222 [ 1.190518] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 22223 [ 1.190706] TCP: Hash tables configured (established 32768 bind 32768) 22224 [ 1.190858] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 22225 [ 1.190926] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 22226 [ 1.190973] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 22227 [ 1.191108] NET: Registered protocol family 1 22228 [ 1.191127] PCI: CLS 0 bytes, default 64 22229 [ 1.191253] Trying to unpack rootfs image as initramfs... 22230 [ 1.720670] Freeing initrd memory: 13540K 22231 [ 1.721604] kvm [1]: IPA Size Limit: 40 bits 22232 [ 1.722324] kvm [1]: vgic interrupt IRQ9 22233 [ 1.722456] kvm [1]: Hyp mode initialized successfully 22234 [ 1.727603] Initialise system trusted keyrings 22235 [ 1.727634] Key type blacklist registered 22236 [ 1.727757] workingset: timestamp_bits=44 max_order=20 bucket_order=0 22237 [ 1.730912] zbud: loaded 22238 [ 1.731844] squashfs: version 4.0 (2009/01/31) Phillip Lougher 22239 [ 1.732379] fuse: init (API version 7.32) 22240 [ 1.733154] integrity: Platform Keyring initialized 22241 [ 1.760727] xor: measuring software checksum speed 22242 [ 1.763594] 8regs : 3476 MB/sec 22243 [ 1.766045] 32regs : 4020 MB/sec 22244 [ 1.768710] arm64_neon : 3712 MB/sec 22245 [ 1.768713] xor: using function: 32regs (4020 MB/sec) 22246 [ 1.768719] Key type asymmetric registered 22247 [ 1.768723] Asymmetric key parser 'x509' registered 22248 [ 1.768756] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 22249 [ 1.768875] io scheduler mq-deadline registered 22250 [ 1.768880] io scheduler kyber registered 22251 [ 1.768958] io scheduler bfq registered 22252 [ 1.771484] gpio-447 (usb-hub-reset): hogged as output/high 22253 [ 1.774532] EINJ: ACPI disabled. 22254 [ 1.780848] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 22255 [ 1.782247] VCC_3V3: supplied by VDDAO_3V3 22256 [ 1.782282] FLASH_1V8: supplied by VCC_3V3 22257 [ 1.782317] VCC_1V8: supplied by VCC_3V3 22258 [ 1.782344] VDDAO_1V8: supplied by VDDAO_3V3 22259 [ 1.782385] VDDCPU_A: supplied by regulator-dummy 22260 [ 1.782733] VDDCPU_B: supplied by regulator-dummy 22261 [ 1.783450] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 22262 [ 1.786157] Serial: AMBA driver 22263 [ 1.786551] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 22264 [ 1.786689] printk: console [ttyAML0] enabled 22265 [ 1.787336] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 22266 [ 1.792655] loop: module loaded 22267 [ 1.794532] libphy: Fixed MDIO Bus: probed 22268 [ 1.795701] tun: Universal TUN/TAP device driver, 1.6 22269 [ 1.796416] thunder_xcv, ver 1.0 22270 [ 1.796448] thunder_bgx, ver 1.0 22271 [ 1.796473] nicpf, ver 1.0 22272 [ 1.796949] e1000e: Intel(R) PRO/1000 Network Driver 22273 [ 1.796952] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 22274 [ 1.796989] igb: Intel(R) Gigabit Ethernet Network Driver 22275 [ 1.796992] igb: Copyright (c) 2007-2014 Intel Corporation. 22276 [ 1.797023] igbvf: Intel(R) Gigabit Virtual Function Network Driver 22277 [ 1.797026] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 22278 [ 1.797163] sky2: driver version 1.30 22279 [ 1.797555] VFIO - User Level meta-driver version: 0.3 22280 [ 1.799046] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 22281 [ 1.799068] ehci-pci: EHCI PCI platform driver 22282 [ 1.799102] ehci-platform: EHCI generic platform driver 22283 [ 1.799237] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 22284 [ 1.799248] ohci-pci: OHCI PCI platform driver 22285 [ 1.799280] ohci-platform: OHCI generic platform driver 22286 [ 1.799736] usbcore: registered new interface driver usb-storage 22287 [ 1.801066] mousedev: PS/2 mouse device common for all mice 22288 [ 1.801414] i2c /dev entries driver 22289 [ 1.806342] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 22290 [ 1.807025] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 22291 [ 1.808178] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 22292 [ 1.808809] sdhci: Secure Digital Host Controller Interface driver 22293 [ 1.808816] sdhci: Copyright(c) Pierre Ossman 22294 [ 1.808940] Synopsys Designware Multimedia Card Interface Driver 22295 [ 1.809399] sdhci-pltfm: SDHCI platform and OF driver helper 22296 [ 1.809819] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 22297 [ 1.810871] ledtrig-cpu: registered to indicate activity on CPUs 22298 [ 1.811122] meson-sm: secure-monitor enabled 22299 [ 1.811286] hid: raw HID events driver (C) Jiri Kosina 22300 [ 1.811365] usbcore: registered new interface driver usbhid 22301 [ 1.811368] usbhid: USB HID core driver 22302 [ 1.812415] NET: Registered protocol family 10 22303 [ 1.812879] Segment Routing with IPv6 22304 [ 1.812906] NET: Registered protocol family 17 22305 [ 1.812965] 8021q: 802.1Q VLAN Support v1.8 22306 [ 1.812988] Key type dns_resolver registered 22307 [ 1.813298] registered taskstats version 1 22308 [ 1.813304] Loading compiled-in X.509 certificates 22309 [ 1.814999] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 22310 [ 1.816896] zswap: loaded using pool zstd/z3fold 22311 [ 1.817118] Key type ._fscrypt registered 22312 [ 1.817120] Key type .fscrypt registered 22313 [ 1.817122] Key type fscrypt-provisioning registered 22314 [ 1.818200] Btrfs loaded, crc32c=crc32c-generic 22315 [ 1.824236] Key type encrypted registered 22316 [ 1.824248] AppArmor: AppArmor sha1 policy hashing enabled 22317 [ 1.830505] HUB_5V: supplied by 5V 22318 [ 1.830740] USB_PWR_EN: supplied by 5V 22319 [ 1.832418] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 22320 [ 1.832425] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 22321 [ 1.835099] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 22322 [ 1.835147] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 22323 [ 1.835254] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 22324 [ 1.835947] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 22325 [ 1.835960] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 22326 [ 1.836055] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 22327 [ 1.836080] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 22328 [ 1.836208] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 22329 [ 1.836211] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 22330 [ 1.836214] usb usb1: Product: xHCI Host Controller 22331 [ 1.836217] usb usb1: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 22332 [ 1.836219] usb usb1: SerialNumber: xhci-hcd.0.auto 22333 [ 1.836435] hub 1-0:1.0: USB hub found 22334 [ 1.836448] hub 1-0:1.0: 2 ports detected 22335 [ 1.836583] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 22336 [ 1.836589] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 22337 [ 1.836602] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 22338 [ 1.836628] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 22339 [ 1.836663] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 22340 [ 1.836666] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 22341 [ 1.836668] usb usb2: Product: xHCI Host Controller 22342 [ 1.836670] usb usb2: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 22343 [ 1.836672] usb usb2: SerialNumber: xhci-hcd.0.auto 22344 [ 1.836852] hub 2-0:1.0: USB hub found 22345 [ 1.836863] hub 2-0:1.0: 1 port detected 22346 [ 1.838377] meson-gx-mmc ffe05000.sd: Got CD GPIO 22347 [ 1.864487] Freeing unused kernel memory: 3328K 22348 [ 1.895507] Run /init as init process 22349 [ 1.895511] with arguments: 22350 [ 1.895513] /init 22351 [ 1.895515] with environment: 22352 [ 1.895516] HOME=/ 22353 [ 1.895518] TERM=linux 22354 [ 1.895520] hdmimode=custombuilt 22355 [ 1.895521] cvbsmode=576cvbs 22356 [ 1.895523] max_freq_a53=1896 22357 [ 1.895524] max_freq_a73=1800 22358 [ 1.895526] voutmode=hdmi 22359 [ 1.895528] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 22360 [ 1.895529] disablehpd=false 22361 [ 1.895531] cvbscable= 22362 [ 1.895532] overscan=100 22363 [ 1.914169] mmc0: new high speed SDHC card at address b368 22364 [ 1.914751] mmcblk0: mmc0:b368 CBADS 30.0 GiB 22365 [ 1.916727] mmcblk0: p1 22366 [ 2.043757] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 22367 [ 2.043765] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 22368 [ 2.043857] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 22369 [ 2.043862] meson8b-dwmac ff3f0000.ethernet: no reset control found 22370 [ 2.044281] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 22371 [ 2.044289] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 22372 [ 2.044293] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 22373 [ 2.044295] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 22374 [ 2.044298] meson8b-dwmac ff3f0000.ethernet: COE Type 2 22375 [ 2.044300] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 22376 [ 2.044302] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 22377 [ 2.044359] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 22378 [ 2.044362] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 22379 [ 2.044364] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 22380 [ 2.044573] libphy: stmmac: probed 22381 [ 2.048272] libphy: mdio_mux: probed 22382 [ 2.060356] meson-vrtc ff8000a8.rtc: registered as rtc1 22383 [ 2.077399] rtc-pcf8563 1-0051: registered as rtc0 22384 [ 2.078748] rtc-pcf8563 1-0051: setting system clock to 2021-05-03T13:53:18 UTC (1620049998) 22385 [ 2.085393] random: fast init done 22386 [ 2.171449] usb 1-1: new high-speed USB device number 2 using xhci-hcd 22387 [ 2.255842] libphy: mdio_mux: probed 22388 [ 2.321802] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 22389 [ 2.321809] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 22390 [ 2.321811] usb 1-1: Product: USB2.1 Hub 22391 [ 2.321814] usb 1-1: Manufacturer: GenesysLogic 22392 [ 2.380822] hub 1-1:1.0: USB hub found 22393 [ 2.381042] hub 1-1:1.0: 4 ports detected 22394 [ 2.447557] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 22395 [ 2.470033] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 22396 [ 2.470038] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 22397 [ 2.470041] usb 2-1: Product: USB3.1 Hub 22398 [ 2.470045] usb 2-1: Manufacturer: GenesysLogic 22399 [ 2.492852] hub 2-1:1.0: USB hub found 22400 [ 2.493139] hub 2-1:1.0: 4 ports detected 22401 [ 2.595437] usb 1-2: new high-speed USB device number 3 using xhci-hcd 22402 [ 2.723443] usb 1-2: device descriptor read/64, error -71 22403 [ 2.959441] usb 1-2: device descriptor read/64, error -71 22404 [ 3.195431] usb 1-2: new high-speed USB device number 4 using xhci-hcd 22405 [ 3.323441] usb 1-2: device descriptor read/64, error -71 22406 [ 3.559440] usb 1-2: device descriptor read/64, error -71 22407 [ 3.667459] usb usb1-port2: attempt power cycle 22408 [ 4.319429] usb 1-2: new high-speed USB device number 5 using xhci-hcd 22409 [ 4.319457] usb 1-2: Device not responding to setup address. 22410 [ 4.527452] usb 1-2: Device not responding to setup address. 22411 [ 4.735428] usb 1-2: device not accepting address 5, error -71 22412 [ 4.863429] usb 1-2: new high-speed USB device number 6 using xhci-hcd 22413 [ 4.863457] usb 1-2: Device not responding to setup address. 22414 [ 5.071452] usb 1-2: Device not responding to setup address. 22415 [ 5.279429] usb 1-2: device not accepting address 6, error -71 22416 [ 5.279461] usb usb1-port2: unable to enumerate USB device 22417 [ 5.521831] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 22418 [ 6.358497] systemd[1]: Inserted module 'autofs4' 22419 [ 6.405594] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 22420 [ 6.405809] systemd[1]: Detected architecture arm64. 22421 [ 6.433313] systemd[1]: Set hostname to <odroidn2>. 22422 [ 6.761970] random: systemd: uninitialized urandom read (16 bytes read) 22423 [ 6.765241] random: systemd: uninitialized urandom read (16 bytes read) 22424 [ 6.766504] systemd[1]: Created slice system-serial\x2dgetty.slice. 22425 [ 6.766728] random: systemd: uninitialized urandom read (16 bytes read) 22426 [ 6.766811] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 22427 [ 6.766992] systemd[1]: Listening on initctl Compatibility Named Pipe. 22428 [ 6.767250] systemd[1]: Listening on Syslog Socket. 22429 [ 6.767750] systemd[1]: Created slice system-getty.slice. 22430 [ 6.768033] systemd[1]: Listening on udev Control Socket. 22431 [ 6.768116] systemd[1]: Reached target System Time Synchronized. 22432 [ 6.865788] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 22433 [ 7.417623] pwm-gpio pwmgpio: 1 gpio pwms loaded 22434 [ 7.428902] zram: Added device: zram0 22435 [ 7.429059] zram: Added device: zram1 22436 [ 7.429209] zram: Added device: zram2 22437 [ 7.545923] mc: Linux media interface: v0.10 22438 [ 7.602113] videodev: Linux video capture interface: v2.00 22439 [ 7.620445] panfrost ffe40000.gpu: clock rate = 24000000 22440 [ 7.620519] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 22441 [ 7.621480] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 22442 [ 7.621492] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 22443 [ 7.621497] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 22444 [ 7.621501] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 22445 [ 7.631717] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 22446 [ 7.636711] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 22447 [ 7.657458] meson-drm ff900000.vpu: Queued 2 outputs on vpu 22448 [ 7.660029] Registered IR keymap rc-odroid 22449 [ 7.704852] IR NEC protocol handler initialized 22450 [ 7.719386] meson-drm ff900000.vpu: CVBS Output connector not available 22451 [ 7.731510] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 22452 [ 7.731616] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 22453 [ 7.731674] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 22454 [ 7.731907] meson-ir ff808000.ir: receiver initialized 22455 [ 7.747529] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 22456 [ 7.751237] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 22457 [ 7.751811] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 22458 [ 7.752210] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 22459 [ 7.781673] zram0: detected capacity change from 0 to 1938251776 22460 [ 7.810089] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 22461 [ 8.039625] Console: switching to colour frame buffer device 240x67 22462 [ 8.074355] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 22463 [ 8.115794] axg-sound-card sound: ASoC: no DMI vendor name! 22464 [ 8.839445] Adding 1892820k swap on /dev/zram0. Priority:5 extents:1 across:1892820k SSFS 22465 [ 8.905376] zram1: detected capacity change from 0 to 52428800 22466 [ 10.990864] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 22467 [ 10.990883] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 22468 [ 12.268772] systemd[1]: Started Armbian memory supported logging. 22469 [ 12.271064] systemd[1]: Starting Journal Service... 22470 [ 12.326848] systemd[1]: Started Journal Service. 22471 [ 12.345629] systemd-journald[1838]: Received request to flush runtime journal from PID 1 22472 22473 ### armbian-release: 22474 22475 # PLEASE DO NOT EDIT THIS FILE 22476 BOARD=odroidn2 22477 BOARD_NAME="Odroid N2" 22478 BOARDFAMILY=meson-g12b 22479 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 22480 BUILD_REPOSITORY_COMMIT=23e571cb4-dirty 22481 DISTRIBUTION_CODENAME=buster 22482 DISTRIBUTION_STATUS=supported 22483 VERSION=21.02.4 22484 LINUXFAMILY=meson64 22485 BRANCH=current 22486 ARCH=arm64 22487 IMAGE_TYPE=stable 22488 BOARD_TYPE=conf 22489 INITRD_ARCH=arm64 22490 KERNEL_IMAGE_TYPE=Image 22491 22492 ### boot environment: 22493 22494 verbosity=1 22495 console=both 22496 overlay_prefix=meson 22497 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 22498 rootfstype=ext4 22499 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 22500 22501 ### lsusb: 22502 22503 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 22504 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 22505 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 22506 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 22507 22508 ### lscpu: 22509 22510 Architecture: aarch64 22511 Byte Order: Little Endian 22512 CPU(s): 6 22513 On-line CPU(s) list: 0-5 22514 Thread(s) per core: 1 22515 Core(s) per socket: 3 22516 Socket(s): 2 22517 NUMA node(s): 1 22518 Vendor ID: ARM 22519 Model: 4 22520 Model name: Cortex-A53 22521 Stepping: r0p4 22522 CPU max MHz: 1992.0000 22523 CPU min MHz: 100.0000 22524 BogoMIPS: 48.00 22525 L1d cache: unknown size 22526 L1i cache: unknown size 22527 L2 cache: unknown size 22528 NUMA node0 CPU(s): 0-5 22529 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 22530 22531 ### cpuinfo: 22532 22533 processor : 0 22534 BogoMIPS : 48.00 22535 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 22536 CPU implementer : 0x41 22537 CPU architecture: 8 22538 CPU variant : 0x0 22539 CPU part : 0xd03 22540 CPU revision : 4 22541 22542 processor : 1 22543 BogoMIPS : 48.00 22544 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 22545 CPU implementer : 0x41 22546 CPU architecture: 8 22547 CPU variant : 0x0 22548 CPU part : 0xd03 22549 CPU revision : 4 22550 22551 processor : 2 22552 BogoMIPS : 48.00 22553 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 22554 CPU implementer : 0x41 22555 CPU architecture: 8 22556 CPU variant : 0x0 22557 CPU part : 0xd09 22558 CPU revision : 2 22559 22560 processor : 3 22561 BogoMIPS : 48.00 22562 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 22563 CPU implementer : 0x41 22564 CPU architecture: 8 22565 CPU variant : 0x0 22566 CPU part : 0xd09 22567 CPU revision : 2 22568 22569 processor : 4 22570 BogoMIPS : 48.00 22571 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 22572 CPU implementer : 0x41 22573 CPU architecture: 8 22574 CPU variant : 0x0 22575 CPU part : 0xd09 22576 CPU revision : 2 22577 22578 processor : 5 22579 BogoMIPS : 48.00 22580 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 22581 CPU implementer : 0x41 22582 CPU architecture: 8 22583 CPU variant : 0x0 22584 CPU part : 0xd09 22585 CPU revision : 2 22586 22587 22588 ### meminfo: 22589 22590 MemTotal: 3785648 kB 22591 MemFree: 3533624 kB 22592 MemAvailable: 3533676 kB 22593 Buffers: 11664 kB 22594 Cached: 48452 kB 22595 SwapCached: 0 kB 22596 Active: 30408 kB 22597 Inactive: 118544 kB 22598 Active(anon): 96 kB 22599 Inactive(anon): 94048 kB 22600 Active(file): 30312 kB 22601 Inactive(file): 24496 kB 22602 Unevictable: 0 kB 22603 Mlocked: 0 kB 22604 SwapTotal: 1892820 kB 22605 SwapFree: 1892820 kB 22606 Dirty: 9132 kB 22607 Writeback: 0 kB 22608 AnonPages: 89248 kB 22609 Mapped: 10964 kB 22610 Shmem: 5016 kB 22611 KReclaimable: 12880 kB 22612 Slab: 38132 kB 22613 SReclaimable: 12880 kB 22614 SUnreclaim: 25252 kB 22615 KernelStack: 2064 kB 22616 PageTables: 2960 kB 22617 NFS_Unstable: 0 kB 22618 Bounce: 0 kB 22619 WritebackTmp: 0 kB 22620 CommitLimit: 3785644 kB 22621 Committed_AS: 4210624 kB 22622 VmallocTotal: 135290159040 kB 22623 VmallocUsed: 31004 kB 22624 VmallocChunk: 0 kB 22625 Percpu: 1368 kB 22626 HardwareCorrupted: 0 kB 22627 AnonHugePages: 0 kB 22628 ShmemHugePages: 0 kB 22629 ShmemPmdMapped: 0 kB 22630 FileHugePages: 0 kB 22631 FilePmdMapped: 0 kB 22632 CmaTotal: 917504 kB 22633 CmaFree: 901212 kB 22634 HugePages_Total: 0 22635 HugePages_Free: 0 22636 HugePages_Rsvd: 0 22637 HugePages_Surp: 0 22638 Hugepagesize: 2048 kB 22639 Hugetlb: 0 kB 22640 22641 ### virtual memory: 22642 22643 vm.admin_reserve_kbytes = 8192 22644 vm.block_dump = 0 22645 vm.compaction_proactiveness = 20 22646 vm.compact_unevictable_allowed = 1 22647 vm.dirty_background_bytes = 0 22648 vm.dirty_background_ratio = 10 22649 vm.dirty_bytes = 0 22650 vm.dirty_expire_centisecs = 3000 22651 vm.dirty_ratio = 20 22652 vm.dirtytime_expire_seconds = 43200 22653 vm.dirty_writeback_centisecs = 500 22654 vm.extfrag_threshold = 500 22655 vm.hugetlb_shm_group = 0 22656 vm.laptop_mode = 0 22657 vm.legacy_va_layout = 0 22658 vm.lowmem_reserve_ratio = 256 256 32 0 22659 vm.max_map_count = 65530 22660 vm.memory_failure_early_kill = 0 22661 vm.memory_failure_recovery = 1 22662 vm.min_free_kbytes = 22528 22663 vm.min_slab_ratio = 5 22664 vm.min_unmapped_ratio = 1 22665 vm.mmap_min_addr = 4096 22666 vm.mmap_rnd_bits = 18 22667 vm.mmap_rnd_compat_bits = 11 22668 vm.nr_hugepages = 0 22669 vm.nr_hugepages_mempolicy = 0 22670 vm.nr_overcommit_hugepages = 0 22671 vm.numa_stat = 1 22672 vm.numa_zonelist_order = Node 22673 vm.oom_dump_tasks = 1 22674 vm.oom_kill_allocating_task = 0 22675 vm.overcommit_kbytes = 0 22676 vm.overcommit_memory = 0 22677 vm.overcommit_ratio = 50 22678 vm.page-cluster = 0 22679 vm.page_lock_unfairness = 5 22680 vm.panic_on_oom = 0 22681 vm.percpu_pagelist_fraction = 0 22682 vm.stat_interval = 1 22683 vm.swappiness = 100 22684 vm.user_reserve_kbytes = 117115 22685 vm.vfs_cache_pressure = 100 22686 vm.watermark_boost_factor = 15000 22687 vm.watermark_scale_factor = 10 22688 vm.zone_reclaim_mode = 0 22689 22690 ### ip addr: 22691 22692 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 22693 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 22694 inet XXX.XXX.0.1/8 scope host lo 22695 valid_lft forever preferred_lft forever 22696 inet6 ::1/128 scope host 22697 valid_lft forever preferred_lft forever 22698 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 22699 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 22700 22701 ### partitions: 22702 22703 major minor #blocks name 22704 22705 179 0 31464960 mmcblk0 22706 179 1 31146208 mmcblk0p1 22707 252 0 1892824 zram0 22708 252 1 51200 zram1 22709 22710 ### df: 22711 22712 udev 1.4G 0 1.4G 0% /dev 22713 tmpfs 370M 5.0M 365M 2% /run 22714 /dev/mmcblk0p1 30G 1.8G 28G 7% / 22715 tmpfs 1.9G 0 1.9G 0% /dev/shm 22716 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 22717 tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup 22718 tmpfs 1.9G 0 1.9G 0% /tmp 22719 /dev/zram1 49M 9.0M 37M 20% /var/log 22720 22721 ### lsblk: 22722 22723 NAME FSTYPE SIZE MOUNTPOINT UUID 22724 mmcblk0 30G 22725 └─mmcblk0p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 22726 zram1 50M /var/log 22727 22728 ### zramctl: 22729 22730 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 22731 /dev/zram1 zstd 50M 132K 695B 36K 6 /var/log 22732 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 22733 22734 ### mtab: 22735 22736 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 22737 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 22738 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 22739 22740 ### mmc0:b368 info: 22741 22742 fwrev: 0x0 22743 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 22744 cid: 6f0303434241445310aa002b4d013b00 22745 rca: 0xb368 22746 csd: 400e005a5b590000f00e7f800a404000 22747 manfid: 0x00006f 22748 ocr: 0x00200000 22749 preferred_erase_size: 2097152 22750 type: SD 22751 hwrev: 0x1 22752 date: 11/2019 22753 dsr: 0x404 22754 erase_size: 512 22755 oemid: 0x0303 22756 serial: 0xaa002b4d 22757 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 22758 scr: 02b5800300000000 22759 name: CBADS 22760 22761 ### Boot system health: 22762 22763 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 22764 14:53:29: 1908/1992MHz 0.07 18% 8% 4% 0% 5% 0% 34.0°C 0/11 22765 14:53:30: 1908/1992MHz 0.07 93% 37% 6% 0% 48% 1% 33.6°C 0/11 22766 14:53:30: 1908/1992MHz 0.07 78% 22% 6% 0% 47% 1% 31.7°C 0/11 22767 14:53:30: 1908/1992MHz 0.07 46% 4% 2% 0% 39% 0% 30.2°C 0/11 22768 14:53:31: 1908/1992MHz 0.07 57% 2% 4% 0% 48% 0% 29.9°C 0/11 22769 22770 ### Activated 1 lzo-rle zram swap devices with 1848 MB each 22771 22772 ### Activated Armbian ramlog partition with zstd compression 22773 22774 Mon 03 May 2021 02:58:15 PM BST | Odroid N2 | 21.02.4 | arm64 | aarch64 | 5.10.27-meson64 22775 22776 ### dmesg: 22777 22778 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 22779 [ 0.000000] Linux version 5.10.27-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.4 SMP PREEMPT Sun Apr 4 09:23:42 UTC 2021 22780 [ 0.000000] Machine model: Hardkernel ODROID-N2 22781 [ 0.000000] efi: UEFI not found. 22782 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 22783 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 22784 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 22785 [ 0.000000] NUMA: No NUMA configuration found 22786 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 22787 [ 0.000000] NUMA: NODE_DATA [mem 0xb502f100-0xb5030fff] 22788 [ 0.000000] Zone ranges: 22789 [ 0.000000] DMA [mem 0x0000000000000000-0x00000000ed7fffff] 22790 [ 0.000000] DMA32 empty 22791 [ 0.000000] Normal empty 22792 [ 0.000000] Movable zone start for each node 22793 [ 0.000000] Early memory node ranges 22794 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 22795 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 22796 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 22797 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 22798 [ 0.000000] On node 0 totalpages: 972800 22799 [ 0.000000] DMA zone: 15200 pages used for memmap 22800 [ 0.000000] DMA zone: 0 pages reserved 22801 [ 0.000000] DMA zone: 972800 pages, LIFO batch:63 22802 [ 0.000000] psci: probing for conduit method from DT. 22803 [ 0.000000] psci: PSCIv1.0 detected in firmware. 22804 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 22805 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 22806 [ 0.000000] psci: SMC Calling Convention v1.1 22807 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 22808 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 22809 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 22810 [ 0.000000] Detected VIPT I-cache on CPU0 22811 [ 0.000000] CPU features: detected: ARM erratum 845719 22812 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 22813 [ 0.000000] Policy zone: DMA 22814 [ 0.000000] Kernel command line: root=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1896 max_freq_a73=1800 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 22815 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 22816 Please use sysfs to set IO scheduler for individual devices. 22817 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 22818 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 22819 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 22820 [ 0.000000] Memory: 2851276K/3891200K available (14144K kernel code, 1760K rwdata, 5512K rodata, 3328K init, 592K bss, 122420K reserved, 917504K cma-reserved) 22821 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 22822 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 22823 [ 0.000000] rcu: RCU event tracing is enabled. 22824 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 22825 [ 0.000000] Trampoline variant of Tasks RCU enabled. 22826 [ 0.000000] Rude variant of Tasks RCU enabled. 22827 [ 0.000000] Tracing variant of Tasks RCU enabled. 22828 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 22829 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 22830 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 22831 [ 0.000000] GIC: Using split EOI/Deactivate mode 22832 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 22833 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 22834 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 22835 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 22836 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 22837 [ 0.000250] Console: colour dummy device 80x25 22838 [ 0.000284] printk: console [tty1] enabled 22839 [ 0.000370] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 22840 [ 0.000382] pid_max: default: 32768 minimum: 301 22841 [ 0.000465] LSM: Security Framework initializing 22842 [ 0.000490] Yama: becoming mindful. 22843 [ 0.000580] AppArmor: AppArmor initialized 22844 [ 0.000632] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 22845 [ 0.000650] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 22846 [ 0.002644] rcu: Hierarchical SRCU implementation. 22847 [ 0.005143] EFI services will not be available. 22848 [ 0.005564] smp: Bringing up secondary CPUs ... 22849 [ 0.006239] Detected VIPT I-cache on CPU1 22850 [ 0.006298] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 22851 [ 0.007495] CPU features: detected: ARM erratum 858921 22852 [ 0.007504] CPU features: detected: Spectre-v2 22853 [ 0.007508] CPU features: detected: Spectre-v4 22854 [ 0.007514] Detected VIPT I-cache on CPU2 22855 [ 0.007539] arch_timer: Enabling local workaround for ARM erratum 858921 22856 [ 0.007554] arch_timer: CPU2: Trapping CNTVCT access 22857 [ 0.007568] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 22858 [ 0.008277] Detected VIPT I-cache on CPU3 22859 [ 0.008294] arch_timer: Enabling local workaround for ARM erratum 858921 22860 [ 0.008301] arch_timer: CPU3: Trapping CNTVCT access 22861 [ 0.008308] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 22862 [ 0.008937] Detected VIPT I-cache on CPU4 22863 [ 0.008954] arch_timer: Enabling local workaround for ARM erratum 858921 22864 [ 0.008961] arch_timer: CPU4: Trapping CNTVCT access 22865 [ 0.008969] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 22866 [ 0.009593] Detected VIPT I-cache on CPU5 22867 [ 0.009610] arch_timer: Enabling local workaround for ARM erratum 858921 22868 [ 0.009616] arch_timer: CPU5: Trapping CNTVCT access 22869 [ 0.009624] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 22870 [ 0.009705] smp: Brought up 1 node, 6 CPUs 22871 [ 0.009722] SMP: Total of 6 processors activated. 22872 [ 0.009730] CPU features: detected: 32-bit EL0 Support 22873 [ 0.009736] CPU features: detected: CRC32 instructions 22874 [ 0.009741] CPU features: detected: 32-bit EL1 Support 22875 [ 0.020994] CPU: All CPU(s) started at EL2 22876 [ 0.021043] alternatives: patching kernel code 22877 [ 0.022318] devtmpfs: initialized 22878 [ 0.029964] Registered cp15_barrier emulation handler 22879 [ 0.029978] Registered setend emulation handler 22880 [ 0.030115] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 22881 [ 0.030155] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 22882 [ 0.046225] pinctrl core: initialized pinctrl subsystem 22883 [ 0.046937] DMI not present or invalid. 22884 [ 0.047301] NET: Registered protocol family 16 22885 [ 0.048907] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 22886 [ 0.049139] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 22887 [ 0.049432] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 22888 [ 0.049472] audit: initializing netlink subsys (disabled) 22889 [ 0.049585] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 22890 [ 0.050922] thermal_sys: Registered thermal governor 'fair_share' 22891 [ 0.050931] thermal_sys: Registered thermal governor 'bang_bang' 22892 [ 0.050935] thermal_sys: Registered thermal governor 'step_wise' 22893 [ 0.050938] thermal_sys: Registered thermal governor 'user_space' 22894 [ 0.051347] cpuidle: using governor menu 22895 [ 0.051691] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 22896 [ 0.051810] ASID allocator initialised with 65536 entries 22897 [ 0.052775] Serial: AMBA PL011 UART driver 22898 [ 0.088886] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 22899 [ 0.088896] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 22900 [ 0.088901] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 22901 [ 0.088905] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 22902 [ 0.090400] cryptd: max_cpu_qlen set to 1000 22903 [ 0.160259] raid6: neonx8 gen() 2779 MB/s 22904 [ 0.228300] raid6: neonx8 xor() 2041 MB/s 22905 [ 0.296368] raid6: neonx4 gen() 2999 MB/s 22906 [ 0.364437] raid6: neonx4 xor() 2246 MB/s 22907 [ 0.432512] raid6: neonx2 gen() 2580 MB/s 22908 [ 0.500581] raid6: neonx2 xor() 2136 MB/s 22909 [ 0.568646] raid6: neonx1 gen() 1989 MB/s 22910 [ 0.636708] raid6: neonx1 xor() 1718 MB/s 22911 [ 0.704770] raid6: int64x8 gen() 1377 MB/s 22912 [ 0.772845] raid6: int64x8 xor() 736 MB/s 22913 [ 0.840920] raid6: int64x4 gen() 1463 MB/s 22914 [ 0.908974] raid6: int64x4 xor() 733 MB/s 22915 [ 0.977036] raid6: int64x2 gen() 1362 MB/s 22916 [ 1.045109] raid6: int64x2 xor() 619 MB/s 22917 [ 1.113166] raid6: int64x1 gen() 1127 MB/s 22918 [ 1.181247] raid6: int64x1 xor() 462 MB/s 22919 [ 1.181251] raid6: using algorithm neonx4 gen() 2999 MB/s 22920 [ 1.181254] raid6: .... xor() 2246 MB/s, rmw enabled 22921 [ 1.181258] raid6: using neon recovery algorithm 22922 [ 1.181708] ACPI: Interpreter disabled. 22923 [ 1.182486] 5V: supplied by 12V 22924 [ 1.183378] VDDAO_3V3: supplied by 12V 22925 [ 1.183845] iommu: Default domain type: Translated 22926 [ 1.183971] vgaarb: loaded 22927 [ 1.184922] SCSI subsystem initialized 22928 [ 1.185122] usbcore: registered new interface driver usbfs 22929 [ 1.185153] usbcore: registered new interface driver hub 22930 [ 1.185248] usbcore: registered new device driver usb 22931 [ 1.185550] pps_core: LinuxPPS API ver. 1 registered 22932 [ 1.185555] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 22933 [ 1.185625] PTP clock support registered 22934 [ 1.185828] EDAC MC: Ver: 3.0.0 22935 [ 1.187190] NetLabel: Initializing 22936 [ 1.187197] NetLabel: domain hash size = 128 22937 [ 1.187200] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 22938 [ 1.187243] NetLabel: unlabeled traffic allowed by default 22939 [ 1.187709] clocksource: Switched to clocksource arch_sys_counter 22940 [ 1.187909] VFS: Disk quotas dquot_6.6.0 22941 [ 1.187952] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 22942 [ 1.188311] AppArmor: AppArmor Filesystem Enabled 22943 [ 1.188359] pnp: PnP ACPI: disabled 22944 [ 1.193525] NET: Registered protocol family 2 22945 [ 1.194000] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 22946 [ 1.194110] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 22947 [ 1.194366] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 22948 [ 1.194554] TCP: Hash tables configured (established 32768 bind 32768) 22949 [ 1.194709] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 22950 [ 1.194775] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 22951 [ 1.194822] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 22952 [ 1.194964] NET: Registered protocol family 1 22953 [ 1.194988] PCI: CLS 0 bytes, default 64 22954 [ 1.195117] Trying to unpack rootfs image as initramfs... 22955 [ 1.724688] Freeing initrd memory: 13540K 22956 [ 1.725641] kvm [1]: IPA Size Limit: 40 bits 22957 [ 1.726366] kvm [1]: vgic interrupt IRQ9 22958 [ 1.726498] kvm [1]: Hyp mode initialized successfully 22959 [ 1.731599] Initialise system trusted keyrings 22960 [ 1.731631] Key type blacklist registered 22961 [ 1.731751] workingset: timestamp_bits=44 max_order=20 bucket_order=0 22962 [ 1.734903] zbud: loaded 22963 [ 1.735828] squashfs: version 4.0 (2009/01/31) Phillip Lougher 22964 [ 1.736331] fuse: init (API version 7.32) 22965 [ 1.737082] integrity: Platform Keyring initialized 22966 [ 1.764845] xor: measuring software checksum speed 22967 [ 1.767681] 8regs : 3476 MB/sec 22968 [ 1.770138] 32regs : 4023 MB/sec 22969 [ 1.772797] arm64_neon : 3712 MB/sec 22970 [ 1.772801] xor: using function: 32regs (4023 MB/sec) 22971 [ 1.772807] Key type asymmetric registered 22972 [ 1.772811] Asymmetric key parser 'x509' registered 22973 [ 1.772844] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 22974 [ 1.772980] io scheduler mq-deadline registered 22975 [ 1.772983] io scheduler kyber registered 22976 [ 1.773061] io scheduler bfq registered 22977 [ 1.775577] gpio-447 (usb-hub-reset): hogged as output/high 22978 [ 1.778596] EINJ: ACPI disabled. 22979 [ 1.784799] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected 22980 [ 1.786208] VCC_3V3: supplied by VDDAO_3V3 22981 [ 1.786244] FLASH_1V8: supplied by VCC_3V3 22982 [ 1.786292] VCC_1V8: supplied by VCC_3V3 22983 [ 1.786319] VDDAO_1V8: supplied by VDDAO_3V3 22984 [ 1.786349] VDDCPU_A: supplied by regulator-dummy 22985 [ 1.786703] VDDCPU_B: supplied by regulator-dummy 22986 [ 1.787393] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 22987 [ 1.789639] Serial: AMBA driver 22988 [ 1.789930] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 22989 [ 1.790021] printk: console [ttyAML0] enabled 22990 [ 1.790502] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 22991 [ 1.795630] loop: module loaded 22992 [ 1.797624] libphy: Fixed MDIO Bus: probed 22993 [ 1.798736] tun: Universal TUN/TAP device driver, 1.6 22994 [ 1.799389] thunder_xcv, ver 1.0 22995 [ 1.799417] thunder_bgx, ver 1.0 22996 [ 1.799447] nicpf, ver 1.0 22997 [ 1.799976] e1000e: Intel(R) PRO/1000 Network Driver 22998 [ 1.799981] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 22999 [ 1.800025] igb: Intel(R) Gigabit Ethernet Network Driver 23000 [ 1.800028] igb: Copyright (c) 2007-2014 Intel Corporation. 23001 [ 1.800065] igbvf: Intel(R) Gigabit Virtual Function Network Driver 23002 [ 1.800068] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 23003 [ 1.800196] sky2: driver version 1.30 23004 [ 1.800556] VFIO - User Level meta-driver version: 0.3 23005 [ 1.801941] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 23006 [ 1.801958] ehci-pci: EHCI PCI platform driver 23007 [ 1.801987] ehci-platform: EHCI generic platform driver 23008 [ 1.802120] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 23009 [ 1.802130] ohci-pci: OHCI PCI platform driver 23010 [ 1.802158] ohci-platform: OHCI generic platform driver 23011 [ 1.802571] usbcore: registered new interface driver usb-storage 23012 [ 1.803864] mousedev: PS/2 mouse device common for all mice 23013 [ 1.804239] i2c /dev entries driver 23014 [ 1.809488] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 23015 [ 1.810146] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 23016 [ 1.810830] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 23017 [ 1.811427] sdhci: Secure Digital Host Controller Interface driver 23018 [ 1.811432] sdhci: Copyright(c) Pierre Ossman 23019 [ 1.811553] Synopsys Designware Multimedia Card Interface Driver 23020 [ 1.812067] sdhci-pltfm: SDHCI platform and OF driver helper 23021 [ 1.813011] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 23022 [ 1.813436] ledtrig-cpu: registered to indicate activity on CPUs 23023 [ 1.813700] meson-sm: secure-monitor enabled 23024 [ 1.813831] hid: raw HID events driver (C) Jiri Kosina 23025 [ 1.813891] usbcore: registered new interface driver usbhid 23026 [ 1.813892] usbhid: USB HID core driver 23027 [ 1.814694] NET: Registered protocol family 10 23028 [ 1.815227] Segment Routing with IPv6 23029 [ 1.815286] NET: Registered protocol family 17 23030 [ 1.815779] 8021q: 802.1Q VLAN Support v1.8 23031 [ 1.815812] Key type dns_resolver registered 23032 [ 1.816126] registered taskstats version 1 23033 [ 1.816133] Loading compiled-in X.509 certificates 23034 [ 1.817866] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 23035 [ 1.819491] zswap: loaded using pool zstd/z3fold 23036 [ 1.819678] Key type ._fscrypt registered 23037 [ 1.819681] Key type .fscrypt registered 23038 [ 1.819682] Key type fscrypt-provisioning registered 23039 [ 1.821245] Btrfs loaded, crc32c=crc32c-generic 23040 [ 1.827296] Key type encrypted registered 23041 [ 1.827309] AppArmor: AppArmor sha1 policy hashing enabled 23042 [ 1.833612] HUB_5V: supplied by 5V 23043 [ 1.833814] USB_PWR_EN: supplied by 5V 23044 [ 1.835442] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 23045 [ 1.835450] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 23046 [ 1.838127] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 23047 [ 1.838174] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 23048 [ 1.838285] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 23049 [ 1.838878] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 23050 [ 1.838888] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 23051 [ 1.838972] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 23052 [ 1.838994] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 23053 [ 1.839121] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 23054 [ 1.839124] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 23055 [ 1.839126] usb usb1: Product: xHCI Host Controller 23056 [ 1.839129] usb usb1: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 23057 [ 1.839131] usb usb1: SerialNumber: xhci-hcd.0.auto 23058 [ 1.839317] hub 1-0:1.0: USB hub found 23059 [ 1.839331] hub 1-0:1.0: 2 ports detected 23060 [ 1.839462] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 23061 [ 1.839467] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 23062 [ 1.839473] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 23063 [ 1.839500] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 23064 [ 1.839532] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 23065 [ 1.839535] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 23066 [ 1.839537] usb usb2: Product: xHCI Host Controller 23067 [ 1.839539] usb usb2: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 23068 [ 1.839541] usb usb2: SerialNumber: xhci-hcd.0.auto 23069 [ 1.839689] hub 2-0:1.0: USB hub found 23070 [ 1.839719] hub 2-0:1.0: 1 port detected 23071 [ 1.841580] meson-gx-mmc ffe05000.sd: Got CD GPIO 23072 [ 1.868799] Freeing unused kernel memory: 3328K 23073 [ 1.907765] Run /init as init process 23074 [ 1.907770] with arguments: 23075 [ 1.907772] /init 23076 [ 1.907774] with environment: 23077 [ 1.907775] HOME=/ 23078 [ 1.907777] TERM=linux 23079 [ 1.907778] hdmimode=custombuilt 23080 [ 1.907780] cvbsmode=576cvbs 23081 [ 1.907781] max_freq_a53=1896 23082 [ 1.907783] max_freq_a73=1800 23083 [ 1.907784] voutmode=hdmi 23084 [ 1.907786] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 23085 [ 1.907787] disablehpd=false 23086 [ 1.907789] cvbscable= 23087 [ 1.907790] overscan=100 23088 [ 1.935152] mmc1: new ultra high speed SDR25 SDHC card at address b368 23089 [ 1.936111] mmcblk1: mmc1:b368 CBADS 30.0 GiB 23090 [ 1.938002] mmcblk1: p1 23091 [ 2.063464] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 23092 [ 2.063476] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 23093 [ 2.063606] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 23094 [ 2.063612] meson8b-dwmac ff3f0000.ethernet: no reset control found 23095 [ 2.066420] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 23096 [ 2.066434] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 23097 [ 2.066438] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 23098 [ 2.066442] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 23099 [ 2.066444] meson8b-dwmac ff3f0000.ethernet: COE Type 2 23100 [ 2.066446] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 23101 [ 2.066448] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 23102 [ 2.066515] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 23103 [ 2.066518] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 23104 [ 2.066521] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 23105 [ 2.066742] libphy: stmmac: probed 23106 [ 2.067851] libphy: mdio_mux: probed 23107 [ 2.080393] meson-vrtc ff8000a8.rtc: registered as rtc1 23108 [ 2.088563] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 23109 [ 2.089148] rtc-pcf8563 1-0051: registered as rtc0 23110 [ 2.091055] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 23111 [ 2.091066] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 23112 [ 2.097752] random: fast init done 23113 [ 2.175743] usb 1-1: new high-speed USB device number 2 using xhci-hcd 23114 [ 2.276124] libphy: mdio_mux: probed 23115 [ 2.326074] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 23116 [ 2.326082] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 23117 [ 2.326086] usb 1-1: Product: USB2.1 Hub 23118 [ 2.326089] usb 1-1: Manufacturer: GenesysLogic 23119 [ 2.383790] hub 1-1:1.0: USB hub found 23120 [ 2.384027] hub 1-1:1.0: 4 ports detected 23121 [ 2.451822] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 23122 [ 2.474313] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 23123 [ 2.474317] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 23124 [ 2.474319] usb 2-1: Product: USB3.1 Hub 23125 [ 2.474322] usb 2-1: Manufacturer: GenesysLogic 23126 [ 2.495679] hub 2-1:1.0: USB hub found 23127 [ 2.495961] hub 2-1:1.0: 4 ports detected 23128 [ 2.599716] usb 1-2: new high-speed USB device number 3 using xhci-hcd 23129 [ 2.748150] usb 1-2: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 23130 [ 2.748155] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 23131 [ 2.748158] usb 1-2: Product: PCTV 292e 23132 [ 2.748161] usb 1-2: Manufacturer: PCTV 23133 [ 2.748164] usb 1-2: SerialNumber: 0011356964 23134 [ 3.049189] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 23135 [ 3.865542] systemd[1]: System time before build time, advancing clock. 23136 [ 3.880447] systemd[1]: Inserted module 'autofs4' 23137 [ 3.927490] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 23138 [ 3.927720] systemd[1]: Detected architecture arm64. 23139 [ 3.961598] systemd[1]: Set hostname to <odroidn2>. 23140 [ 4.288457] random: systemd: uninitialized urandom read (16 bytes read) 23141 [ 4.291730] random: systemd: uninitialized urandom read (16 bytes read) 23142 [ 4.293000] systemd[1]: Created slice system-serial\x2dgetty.slice. 23143 [ 4.293219] random: systemd: uninitialized urandom read (16 bytes read) 23144 [ 4.293237] systemd[1]: Reached target Swap. 23145 [ 4.293544] systemd[1]: Listening on Journal Socket (/dev/log). 23146 [ 4.293691] systemd[1]: Listening on initctl Compatibility Named Pipe. 23147 [ 4.293878] systemd[1]: Listening on fsck to fsckd communication Socket. 23148 [ 4.294166] systemd[1]: Listening on Journal Audit Socket. 23149 [ 4.294377] systemd[1]: Listening on udev Control Socket. 23150 [ 4.382516] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 23151 [ 4.933380] pwm-gpio pwmgpio: 1 gpio pwms loaded 23152 [ 4.936566] zram: Added device: zram0 23153 [ 4.937926] zram: Added device: zram1 23154 [ 4.938375] zram: Added device: zram2 23155 [ 5.074726] mc: Linux media interface: v0.10 23156 [ 5.095734] Registered IR keymap rc-odroid 23157 [ 5.125865] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 23158 [ 5.136200] IR NEC protocol handler initialized 23159 [ 5.136462] videodev: Linux video capture interface: v2.00 23160 [ 5.164244] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 23161 [ 5.165000] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 23162 [ 5.165122] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 23163 [ 5.165408] meson-ir ff808000.ir: receiver initialized 23164 [ 5.222651] meson-drm ff900000.vpu: Queued 2 outputs on vpu 23165 [ 5.277310] meson-drm ff900000.vpu: CVBS Output connector not available 23166 [ 5.297513] panfrost ffe40000.gpu: clock rate = 24000000 23167 [ 5.297574] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 23168 [ 5.303779] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 23169 [ 5.304786] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 23170 [ 5.304795] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 23171 [ 5.304799] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 23172 [ 5.304802] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 23173 [ 5.305097] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 23174 [ 5.305393] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 23175 [ 5.305662] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 23176 [ 5.319530] zram0: detected capacity change from 0 to 1938251776 23177 [ 5.321834] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 23178 [ 5.347986] em28xx 1-2:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 23179 [ 5.347993] em28xx 1-2:1.0: DVB interface 0 found: isoc 23180 [ 5.358231] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 23181 [ 5.407785] em28xx 1-2:1.0: chip ID is em28178 23182 [ 5.587869] Console: switching to colour frame buffer device 240x67 23183 [ 5.614383] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 23184 [ 5.651965] axg-sound-card sound: ASoC: no DMI vendor name! 23185 [ 6.379732] Adding 1892820k swap on /dev/zram0. Priority:5 extents:1 across:1892820k SSFS 23186 [ 6.442841] zram1: detected capacity change from 0 to 52428800 23187 [ 7.430031] em28xx 1-2:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 23188 [ 7.430037] em28xx 1-2:1.0: EEPROM info: 23189 [ 7.430041] em28xx 1-2:1.0: microcode start address = 0x0004, boot configuration = 0x01 23190 [ 7.436143] em28xx 1-2:1.0: AC97 audio (5 sample rates) 23191 [ 7.436147] em28xx 1-2:1.0: 500mA max power 23192 [ 7.436151] em28xx 1-2:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 23193 [ 7.495717] em28xx 1-2:1.0: Identified as PCTV tripleStick (292e) (card=94) 23194 [ 7.495723] em28xx 1-2:1.0: dvb set to isoc mode. 23195 [ 7.495951] usbcore: registered new interface driver em28xx 23196 [ 7.522719] em28xx 1-2:1.0: Binding DVB extension 23197 [ 7.536446] i2c i2c-4: Added multiplexed i2c bus 5 23198 [ 7.536454] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 23199 [ 7.536457] si2168 4-0064: firmware version: B 4.0.2 23200 [ 7.544900] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 23201 [ 7.544930] dvbdev: DVB: registering new adapter (1-2:1.0) 23202 [ 7.544936] em28xx 1-2:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 23203 [ 7.544941] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 23204 [ 7.545612] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 23205 [ 7.546973] em28xx 1-2:1.0: DVB extension successfully initialized 23206 [ 7.546982] em28xx: Registered (Em28xx dvb Extension) extension 23207 [ 7.554221] em28xx 1-2:1.0: Registering input extension 23208 [ 7.587736] Registered IR keymap rc-pinnacle-pctv-hd 23209 [ 7.587928] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1 23210 [ 7.587997] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 23211 [ 7.588058] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1/input1 23212 [ 7.588175] em28xx 1-2:1.0: Input extension successfully initialized 23213 [ 7.588183] em28xx: Registered (Em28xx Input Extension) extension 23214 [ 8.528069] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 23215 [ 8.528096] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 23216 [ 9.820462] systemd[1]: Started Armbian memory supported logging. 23217 [ 9.824606] systemd[1]: Starting Journal Service... 23218 [ 9.887423] systemd[1]: Started Journal Service. 23219 [ 9.908864] systemd-journald[1849]: Received request to flush runtime journal from PID 1 23220 23221 ### armbian-release: 23222 23223 # PLEASE DO NOT EDIT THIS FILE 23224 BOARD=odroidn2 23225 BOARD_NAME="Odroid N2" 23226 BOARDFAMILY=meson-g12b 23227 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 23228 BUILD_REPOSITORY_COMMIT=23e571cb4-dirty 23229 DISTRIBUTION_CODENAME=buster 23230 DISTRIBUTION_STATUS=supported 23231 VERSION=21.02.4 23232 LINUXFAMILY=meson64 23233 BRANCH=current 23234 ARCH=arm64 23235 IMAGE_TYPE=stable 23236 BOARD_TYPE=conf 23237 INITRD_ARCH=arm64 23238 KERNEL_IMAGE_TYPE=Image 23239 23240 ### boot environment: 23241 23242 verbosity=1 23243 console=both 23244 overlay_prefix=meson 23245 rootdev=UUID=bd34953d-41be-49d6-b1c0-c0c28a5e239c 23246 rootfstype=ext4 23247 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 23248 23249 ### lsusb: 23250 23251 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 23252 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 23253 Bus 001 Device 003: ID 2013:025f PCTV Systems 23254 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 23255 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 23256 23257 ### lscpu: 23258 23259 Architecture: aarch64 23260 Byte Order: Little Endian 23261 CPU(s): 6 23262 On-line CPU(s) list: 0-5 23263 Thread(s) per core: 1 23264 Core(s) per socket: 3 23265 Socket(s): 2 23266 NUMA node(s): 1 23267 Vendor ID: ARM 23268 Model: 4 23269 Model name: Cortex-A53 23270 Stepping: r0p4 23271 CPU max MHz: 1992.0000 23272 CPU min MHz: 100.0000 23273 BogoMIPS: 48.00 23274 L1d cache: unknown size 23275 L1i cache: unknown size 23276 L2 cache: unknown size 23277 NUMA node0 CPU(s): 0-5 23278 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 23279 23280 ### cpuinfo: 23281 23282 processor : 0 23283 BogoMIPS : 48.00 23284 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 23285 CPU implementer : 0x41 23286 CPU architecture: 8 23287 CPU variant : 0x0 23288 CPU part : 0xd03 23289 CPU revision : 4 23290 23291 processor : 1 23292 BogoMIPS : 48.00 23293 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 23294 CPU implementer : 0x41 23295 CPU architecture: 8 23296 CPU variant : 0x0 23297 CPU part : 0xd03 23298 CPU revision : 4 23299 23300 processor : 2 23301 BogoMIPS : 48.00 23302 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 23303 CPU implementer : 0x41 23304 CPU architecture: 8 23305 CPU variant : 0x0 23306 CPU part : 0xd09 23307 CPU revision : 2 23308 23309 processor : 3 23310 BogoMIPS : 48.00 23311 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 23312 CPU implementer : 0x41 23313 CPU architecture: 8 23314 CPU variant : 0x0 23315 CPU part : 0xd09 23316 CPU revision : 2 23317 23318 processor : 4 23319 BogoMIPS : 48.00 23320 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 23321 CPU implementer : 0x41 23322 CPU architecture: 8 23323 CPU variant : 0x0 23324 CPU part : 0xd09 23325 CPU revision : 2 23326 23327 processor : 5 23328 BogoMIPS : 48.00 23329 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 23330 CPU implementer : 0x41 23331 CPU architecture: 8 23332 CPU variant : 0x0 23333 CPU part : 0xd09 23334 CPU revision : 2 23335 23336 23337 ### meminfo: 23338 23339 MemTotal: 3785648 kB 23340 MemFree: 3449092 kB 23341 MemAvailable: 3449892 kB 23342 Buffers: 11688 kB 23343 Cached: 49440 kB 23344 SwapCached: 0 kB 23345 Active: 29116 kB 23346 Inactive: 196176 kB 23347 Active(anon): 140 kB 23348 Inactive(anon): 169376 kB 23349 Active(file): 28976 kB 23350 Inactive(file): 26800 kB 23351 Unevictable: 0 kB 23352 Mlocked: 0 kB 23353 SwapTotal: 1892820 kB 23354 SwapFree: 1892820 kB 23355 Dirty: 9364 kB 23356 Writeback: 0 kB 23357 AnonPages: 164640 kB 23358 Mapped: 13260 kB 23359 Shmem: 5060 kB 23360 KReclaimable: 13404 kB 23361 Slab: 40884 kB 23362 SReclaimable: 13404 kB 23363 SUnreclaim: 27480 kB 23364 KernelStack: 2592 kB 23365 PageTables: 5964 kB 23366 NFS_Unstable: 0 kB 23367 Bounce: 0 kB 23368 WritebackTmp: 0 kB 23369 CommitLimit: 3785644 kB 23370 Committed_AS: 4239916 kB 23371 VmallocTotal: 135290159040 kB 23372 VmallocUsed: 33372 kB 23373 VmallocChunk: 0 kB 23374 Percpu: 1368 kB 23375 HardwareCorrupted: 0 kB 23376 AnonHugePages: 0 kB 23377 ShmemHugePages: 0 kB 23378 ShmemPmdMapped: 0 kB 23379 FileHugePages: 0 kB 23380 FilePmdMapped: 0 kB 23381 CmaTotal: 917504 kB 23382 CmaFree: 901212 kB 23383 HugePages_Total: 0 23384 HugePages_Free: 0 23385 HugePages_Rsvd: 0 23386 HugePages_Surp: 0 23387 Hugepagesize: 2048 kB 23388 Hugetlb: 0 kB 23389 23390 ### virtual memory: 23391 23392 vm.admin_reserve_kbytes = 8192 23393 vm.block_dump = 0 23394 vm.compaction_proactiveness = 20 23395 vm.compact_unevictable_allowed = 1 23396 vm.dirty_background_bytes = 0 23397 vm.dirty_background_ratio = 10 23398 vm.dirty_bytes = 0 23399 vm.dirty_expire_centisecs = 3000 23400 vm.dirty_ratio = 20 23401 vm.dirtytime_expire_seconds = 43200 23402 vm.dirty_writeback_centisecs = 500 23403 vm.extfrag_threshold = 500 23404 vm.hugetlb_shm_group = 0 23405 vm.laptop_mode = 0 23406 vm.legacy_va_layout = 0 23407 vm.lowmem_reserve_ratio = 256 256 32 0 23408 vm.max_map_count = 65530 23409 vm.memory_failure_early_kill = 0 23410 vm.memory_failure_recovery = 1 23411 vm.min_free_kbytes = 22528 23412 vm.min_slab_ratio = 5 23413 vm.min_unmapped_ratio = 1 23414 vm.mmap_min_addr = 4096 23415 vm.mmap_rnd_bits = 18 23416 vm.mmap_rnd_compat_bits = 11 23417 vm.nr_hugepages = 0 23418 vm.nr_hugepages_mempolicy = 0 23419 vm.nr_overcommit_hugepages = 0 23420 vm.numa_stat = 1 23421 vm.numa_zonelist_order = Node 23422 vm.oom_dump_tasks = 1 23423 vm.oom_kill_allocating_task = 0 23424 vm.overcommit_kbytes = 0 23425 vm.overcommit_memory = 0 23426 vm.overcommit_ratio = 50 23427 vm.page-cluster = 0 23428 vm.page_lock_unfairness = 5 23429 vm.panic_on_oom = 0 23430 vm.percpu_pagelist_fraction = 0 23431 vm.stat_interval = 1 23432 vm.swappiness = 100 23433 vm.user_reserve_kbytes = 117055 23434 vm.vfs_cache_pressure = 100 23435 vm.watermark_boost_factor = 15000 23436 vm.watermark_scale_factor = 10 23437 vm.zone_reclaim_mode = 0 23438 23439 ### ip addr: 23440 23441 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 23442 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 23443 inet XXX.XXX.0.1/8 scope host lo 23444 valid_lft forever preferred_lft forever 23445 inet6 ::1/128 scope host 23446 valid_lft forever preferred_lft forever 23447 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 23448 link/ether 00:1e:06:42:03:f8 brd ff:ff:ff:ff:ff:ff 23449 23450 ### partitions: 23451 23452 major minor #blocks name 23453 23454 179 0 31464960 mmcblk1 23455 179 1 31146208 mmcblk1p1 23456 252 0 1892824 zram0 23457 252 1 51200 zram1 23458 23459 ### df: 23460 23461 udev 1.4G 0 1.4G 0% /dev 23462 tmpfs 370M 5.0M 365M 2% /run 23463 /dev/mmcblk1p1 30G 1.8G 28G 7% / 23464 tmpfs 1.9G 0 1.9G 0% /dev/shm 23465 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 23466 tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup 23467 tmpfs 1.9G 0 1.9G 0% /tmp 23468 /dev/zram1 49M 9.2M 36M 21% /var/log 23469 23470 ### lsblk: 23471 23472 NAME FSTYPE SIZE MOUNTPOINT UUID 23473 mmcblk1 30G 23474 └─mmcblk1p1 ext4 29.7G / bd34953d-41be-49d6-b1c0-c0c28a5e239c 23475 zram1 50M /var/log 23476 23477 ### zramctl: 23478 23479 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 23480 /dev/zram1 zstd 50M 132K 695B 36K 6 /var/log 23481 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 23482 23483 ### mtab: 23484 23485 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 23486 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 23487 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 23488 23489 ### mmc1:b368 info: 23490 23491 fwrev: 0x0 23492 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=CBADS MODALIAS=mmc:block 23493 cid: 6f0303434241445310aa002b4d013b00 23494 rca: 0xb368 23495 csd: 400e005a5b590000f00e7f800a404000 23496 manfid: 0x00006f 23497 ocr: 0x00200000 23498 preferred_erase_size: 2097152 23499 type: SD 23500 hwrev: 0x1 23501 date: 11/2019 23502 dsr: 0x404 23503 erase_size: 512 23504 oemid: 0x0303 23505 serial: 0xaa002b4d 23506 ssr: 00000000000000280402800100fd180a001e00000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 23507 scr: 02b5800300000000 23508 name: CBADS 23509 23510 ### Boot system health: 23511 23512 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 23513 14:58:16: 1908/1992MHz 3.30 23% 10% 5% 0% 6% 0% 33.6°C 0/11 23514 14:58:16: 1908/1992MHz 3.30 74% 41% 8% 0% 22% 1% 33.3°C 0/11 23515 14:58:17: 1908/1992MHz 3.30 78% 31% 3% 0% 39% 2% 30.9°C 0/11 23516 14:58:17: 1908/1000MHz 3.30 64% 12% 6% 0% 42% 1% 30.9°C 0/11 23517 14:58:17: 1908/1992MHz 3.30 45% 4% 0% 0% 37% 1% 30.1°C 0/11 23518 23519 ### lsusb: 23520 23521 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 23522 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 23523 Bus 001 Device 003: ID 2013:025f PCTV Systems 23524 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 23525 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 23526 23527 /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M 23528 |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M 23529 /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M 23530 |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M 23531 |__ Port 2: Dev 3, If 0, Class=Vendor Specific Class, Driver=em28xx, 480M 23532 23533 ### lspci: 23534 23535 23536 ### Installed packages: 23537 23538 iU armbian-config 21.02.4 all Armbian configuration utility 23539 ii armbian-firmware 21.02.4 all Linux firmware 23540 ii armbian-zsh 21.02.4 all Armbian improved ZShell 23541 ii hostapd 3:2.9-102~armbian20.05.2+1 arm64 IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator 23542 ii htop 3.1.0-0~armbian20.08.2+1 arm64 interactive processes viewer 23543 ii linux-base 4.6 all Linux image base package 23544 ii linux-buster-root-current-odroidn2 21.02.4 arm64 Armbian tweaks for buster on odroidn2 (current branch) 23545 ii linux-dtb-current-meson64 21.02.4 arm64 Linux DTB, version 5.10.27-meson64 23546 ii linux-image-current-meson64 21.02.4 arm64 Linux kernel, version 5.10.27-meson64 23547 ii linux-libc-dev:arm64 4.19.181-1 arm64 Linux support headers for userspace development 23548 ii linux-u-boot-odroidn2-current 21.02.4 arm64 Uboot loader 2015.01 23549 23550 ### Loaded modules: 23551 23552 Module Size Used by 23553 rfkill 36864 1 23554 cpufreq_powersave 20480 0 23555 cpufreq_conservative 16384 0 23556 rc_pinnacle_pctv_hd 16384 0 23557 em28xx_rc 24576 0 23558 si2157 24576 1 23559 si2168 24576 1 23560 i2c_mux 16384 1 si2168 23561 em28xx_dvb 40960 1 23562 dvb_core 147456 1 em28xx_dvb 23563 videobuf2_vmalloc 20480 1 dvb_core 23564 snd_soc_hdmi_codec 20480 1 23565 dw_hdmi_i2s_audio 16384 0 23566 meson_vdec 73728 0 23567 em28xx 98304 2 em28xx_rc,em28xx_dvb 23568 v4l2_mem2mem 40960 1 meson_vdec 23569 tveeprom 28672 1 em28xx 23570 videobuf2_dma_contig 24576 1 meson_vdec 23571 panfrost 65536 0 23572 snd_soc_meson_axg_sound_card 16384 0 23573 meson_dw_hdmi 24576 0 23574 videobuf2_memops 20480 2 videobuf2_vmalloc,videobuf2_dma_contig 23575 snd_soc_meson_axg_toddr 28672 3 23576 snd_soc_meson_g12a_tohdmitx 20480 1 23577 snd_soc_meson_axg_tdm_interface 16384 3 snd_soc_meson_axg_sound_card 23578 snd_soc_meson_axg_frddr 36864 3 23579 snd_soc_meson_axg_tdmin 24576 4 23580 snd_soc_meson_axg_tdmout 24576 2 23581 snd_soc_simple_amplifier 16384 1 23582 videobuf2_v4l2 32768 2 meson_vdec,v4l2_mem2mem 23583 snd_soc_meson_t9015 24576 1 23584 snd_soc_meson_g12a_toacodec 16384 1 23585 snd_soc_meson_card_utils 16384 2 snd_soc_meson_axg_sound_card 23586 gpu_sched 32768 1 panfrost 23587 dw_hdmi 53248 2 meson_dw_hdmi,dw_hdmi_i2s_audio 23588 meson_drm 61440 1 meson_dw_hdmi 23589 snd_soc_meson_axg_fifo 20480 2 snd_soc_meson_axg_toddr,snd_soc_meson_axg_frddr 23590 snd_soc_meson_codec_glue 16384 2 snd_soc_meson_g12a_toacodec,snd_soc_meson_g12a_tohdmitx 23591 snd_soc_meson_axg_tdm_formatter 16384 3 snd_soc_meson_axg_tdmin,snd_soc_meson_axg_tdm_interface,snd_soc_meson_axg_tdmout 23592 videobuf2_common 57344 4 meson_vdec,videobuf2_v4l2,dvb_core,v4l2_mem2mem 23593 snd_soc_core 221184 15 snd_soc_meson_axg_tdm_formatter,snd_soc_meson_t9015,snd_soc_meson_g12a_toacodec,snd_soc_meson_axg_sound_card,snd_soc_hdmi_codec,snd_soc_meson_g12a_tohdmitx,snd_soc_meson_axg_tdmin,snd_soc_simple_amplifier,snd_soc_meson_axg_tdm_interface,snd_soc_meson_axg_fifo,snd_soc_meson_axg_tdmout,snd_soc_meson_axg_toddr,snd_soc_meson_axg_frddr,snd_soc_meson_card_utils,snd_soc_meson_codec_glue 23594 drm_kms_helper 245760 5 meson_dw_hdmi,meson_drm,dw_hdmi 23595 ir_nec_decoder 20480 0 23596 videodev 278528 5 meson_vdec,videobuf2_v4l2,videobuf2_common,em28xx,v4l2_mem2mem 23597 ac97_bus 16384 1 snd_soc_core 23598 meson_saradc 24576 0 23599 snd_pcm_dmaengine 20480 1 snd_soc_core 23600 cec 73728 2 drm_kms_helper,dw_hdmi 23601 snd_pcm 122880 7 snd_soc_hdmi_codec,snd_soc_meson_axg_tdm_interface,snd_soc_core,snd_soc_meson_axg_fifo,snd_soc_meson_axg_toddr,snd_soc_meson_codec_glue,snd_pcm_dmaengine 23602 display_connector 20480 0 23603 mc 61440 7 videodev,si2157,videobuf2_v4l2,dvb_core,videobuf2_common,em28xx,v4l2_mem2mem 23604 meson_gxbb_wdt 20480 0 23605 rc_odroid 16384 0 23606 snd_timer 40960 1 snd_pcm 23607 drm 561152 8 gpu_sched,meson_dw_hdmi,meson_drm,drm_kms_helper,display_connector,dw_hdmi,panfrost 23608 meson_ir 16384 0 23609 snd 90112 6 snd_soc_hdmi_codec,snd_timer,snd_soc_core,snd_pcm 23610 rc_core 57344 7 em28xx_rc,rc_pinnacle_pctv_hd,ir_nec_decoder,meson_ir,rc_odroid 23611 reset_meson_audio_arb 16384 6 23612 meson_canvas 16384 2 meson_drm,meson_vdec 23613 pwm_fan 20480 0 23614 meson_rng 16384 0 23615 soundcore 16384 1 snd 23616 drm_panel_orientation_quirks 20480 1 drm 23617 zram 36864 2 23618 pwm_gpio 16384 1 23619 ip_tables 32768 0 23620 x_tables 45056 1 ip_tables 23621 autofs4 45056 2 23622 meson_gxl 20480 0 23623 rtc_pcf8563 24576 0 23624 axg_audio 77824 49 23625 rtc_meson_vrtc 20480 1 23626 realtek 24576 1 23627 sclk_div 16384 1 axg_audio 23628 clk_phase 16384 1 axg_audio 23629 dwmac_generic 16384 0 23630 dwmac_meson8b 16384 0 23631 23632 ### nand-sata-install.log: 23633 23634 Mon 3 May 12:10:32 BST 2021: Start nand-sata-install. 23635 23636 23637 23638 23639 23640 Mon 3 May 12:10:46 BST 2021: Start nand-sata-install. 23641 23642 ### Current system health: 23643 23644 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 23645 15:12:37: --- 0.71 1% 0% 0% 0% 0% 0% 30.3°C 0/11 23646 15:12:37: --- 0.71 1% 1% 0% 0% 0% 0% 28.7°C 0/11 23647 15:12:37: --- 0.71 1% 1% 0% 0% 0% 0% 28.4°C 0/11 23648 15:12:38: --- 0.73 1% 1% 0% 0% 0% 0% 28.2°C 0/11 23649 15:12:38: --- 0.73 1% 1% 0% 0% 0% 0% 28.2°C 0/11 23650 15:12:40: --- 0.73 1% 0% 1% 0% 0% 0% 42.0°C 0/11 23651 15:12:41: --- 0.73 100% 0% 99% 0% 0% 0% 42.9°C 0/11 23652 15:12:42: --- 0.73 59% 0% 58% 0% 0% 0% 32.1°C 0/11 23653 15:12:42: --- 0.73 1% 1% 0% 0% 0% 0% 30.7°C 0/11 23654 15:12:42: --- 0.73 1% 0% 0% 0% 0% 0% 30.1°C 0/11 23655 23656 ### resolv.conf 23657 23658 -rw-r--r-- 1 root root 53 May 3 14:58 /etc/resolv.conf 23659 # Generated by NetworkManager 23660 nameserver XXX.XXX.0.1 23661 23662 ### Current sysinfo: 23663 23664 Linux 5.10.27-meson64 (odroidn2) 03/05/21 _aarch64_ (6 CPU) 23665 23666 avg-cpu: %user %nice %system %iowait %steal %idle 23667 1.32 0.02 0.31 0.36 0.00 97.99 23668 23669 Device tps kB_read/s kB_wrtn/s kB_read kB_wrtn 23670 mmcblk1 9.67 262.99 1.24 222465 1052 23671 mmcblk1p1 9.43 258.05 1.24 218285 1052 23672 zram0 0.67 2.69 0.00 2272 4 23673 zram1 0.33 0.52 11.91 440 10076 23674 zram2 0.00 0.00 0.00 0 0 23675 23676 procs -----------------------memory---------------------- ---swap-- -----io---- -system-- --------cpu-------- 23677 r b swpd free buff cache si so bi bo in cs us sy id wa st 23678 0 0 0 3379448 19076 228732 0 0 44 2 64 52 1 0 98 0 0 23679 23680 total used free shared buff/cache available 23681 Mem: 3.6Gi 154Mi 3.2Gi 5.0Mi 242Mi 3.4Gi 23682 Swap: 1.8Gi 0B 1.8Gi 23683 23684 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 23685 /dev/zram1 zstd 50M 9.5M 2.6M 3M 6 /var/log 23686 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 23687 23688 15:12:43 up 14 min, 1 user, load average: 0.75, 0.70, 0.53 23689 23690 [ 1.799389] thunder_xcv, ver 1.0 23691 [ 1.799417] thunder_bgx, ver 1.0 23692 [ 1.799447] nicpf, ver 1.0 23693 [ 1.799976] e1000e: Intel(R) PRO/1000 Network Driver 23694 [ 1.799981] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 23695 [ 1.800025] igb: Intel(R) Gigabit Ethernet Network Driver 23696 [ 1.800028] igb: Copyright (c) 2007-2014 Intel Corporation. 23697 [ 1.800065] igbvf: Intel(R) Gigabit Virtual Function Network Driver 23698 [ 1.800068] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 23699 [ 1.800196] sky2: driver version 1.30 23700 [ 1.800556] VFIO - User Level meta-driver version: 0.3 23701 [ 1.801941] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 23702 [ 1.801958] ehci-pci: EHCI PCI platform driver 23703 [ 1.801987] ehci-platform: EHCI generic platform driver 23704 [ 1.802120] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 23705 [ 1.802130] ohci-pci: OHCI PCI platform driver 23706 [ 1.802158] ohci-platform: OHCI generic platform driver 23707 [ 1.802571] usbcore: registered new interface driver usb-storage 23708 [ 1.803864] mousedev: PS/2 mouse device common for all mice 23709 [ 1.804239] i2c /dev entries driver 23710 [ 1.809488] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 23711 [ 1.810146] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 23712 [ 1.810830] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 23713 [ 1.811427] sdhci: Secure Digital Host Controller Interface driver 23714 [ 1.811432] sdhci: Copyright(c) Pierre Ossman 23715 [ 1.811553] Synopsys Designware Multimedia Card Interface Driver 23716 [ 1.812067] sdhci-pltfm: SDHCI platform and OF driver helper 23717 [ 1.813011] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 23718 [ 1.813436] ledtrig-cpu: registered to indicate activity on CPUs 23719 [ 1.813700] meson-sm: secure-monitor enabled 23720 [ 1.813831] hid: raw HID events driver (C) Jiri Kosina 23721 [ 1.813891] usbcore: registered new interface driver usbhid 23722 [ 1.813892] usbhid: USB HID core driver 23723 [ 1.814694] NET: Registered protocol family 10 23724 [ 1.815227] Segment Routing with IPv6 23725 [ 1.815286] NET: Registered protocol family 17 23726 [ 1.815779] 8021q: 802.1Q VLAN Support v1.8 23727 [ 1.815812] Key type dns_resolver registered 23728 [ 1.816126] registered taskstats version 1 23729 [ 1.816133] Loading compiled-in X.509 certificates 23730 [ 1.817866] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 23731 [ 1.819491] zswap: loaded using pool zstd/z3fold 23732 [ 1.819678] Key type ._fscrypt registered 23733 [ 1.819681] Key type .fscrypt registered 23734 [ 1.819682] Key type fscrypt-provisioning registered 23735 [ 1.821245] Btrfs loaded, crc32c=crc32c-generic 23736 [ 1.827296] Key type encrypted registered 23737 [ 1.827309] AppArmor: AppArmor sha1 policy hashing enabled 23738 [ 1.833612] HUB_5V: supplied by 5V 23739 [ 1.833814] USB_PWR_EN: supplied by 5V 23740 [ 1.835442] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 23741 [ 1.835450] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 23742 [ 1.838127] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 23743 [ 1.838174] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 23744 [ 1.838285] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 23745 [ 1.838878] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 23746 [ 1.838888] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 23747 [ 1.838972] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 23748 [ 1.838994] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 23749 [ 1.839121] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 23750 [ 1.839124] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 23751 [ 1.839126] usb usb1: Product: xHCI Host Controller 23752 [ 1.839129] usb usb1: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 23753 [ 1.839131] usb usb1: SerialNumber: xhci-hcd.0.auto 23754 [ 1.839317] hub 1-0:1.0: USB hub found 23755 [ 1.839331] hub 1-0:1.0: 2 ports detected 23756 [ 1.839462] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 23757 [ 1.839467] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 23758 [ 1.839473] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 23759 [ 1.839500] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 23760 [ 1.839532] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 23761 [ 1.839535] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 23762 [ 1.839537] usb usb2: Product: xHCI Host Controller 23763 [ 1.839539] usb usb2: Manufacturer: Linux 5.10.27-meson64 xhci-hcd 23764 [ 1.839541] usb usb2: SerialNumber: xhci-hcd.0.auto 23765 [ 1.839689] hub 2-0:1.0: USB hub found 23766 [ 1.839719] hub 2-0:1.0: 1 port detected 23767 [ 1.841580] meson-gx-mmc ffe05000.sd: Got CD GPIO 23768 [ 1.868799] Freeing unused kernel memory: 3328K 23769 [ 1.907765] Run /init as init process 23770 [ 1.907770] with arguments: 23771 [ 1.907772] /init 23772 [ 1.907774] with environment: 23773 [ 1.907775] HOME=/ 23774 [ 1.907777] TERM=linux 23775 [ 1.907778] hdmimode=custombuilt 23776 [ 1.907780] cvbsmode=576cvbs 23777 [ 1.907781] max_freq_a53=1896 23778 [ 1.907783] max_freq_a73=1800 23779 [ 1.907784] voutmode=hdmi 23780 [ 1.907786] modeline=1920,1080,148500,56250,50,1920,2448,2492,2640,1080,1084,1089,1125,1,1,1 23781 [ 1.907787] disablehpd=false 23782 [ 1.907789] cvbscable= 23783 [ 1.907790] overscan=100 23784 [ 1.935152] mmc1: new ultra high speed SDR25 SDHC card at address b368 23785 [ 1.936111] mmcblk1: mmc1:b368 CBADS 30.0 GiB 23786 [ 1.938002] mmcblk1: p1 23787 [ 2.063464] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 23788 [ 2.063476] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 23789 [ 2.063606] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 23790 [ 2.063612] meson8b-dwmac ff3f0000.ethernet: no reset control found 23791 [ 2.066420] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 23792 [ 2.066434] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 23793 [ 2.066438] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 23794 [ 2.066442] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 23795 [ 2.066444] meson8b-dwmac ff3f0000.ethernet: COE Type 2 23796 [ 2.066446] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 23797 [ 2.066448] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 23798 [ 2.066515] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 23799 [ 2.066518] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 23800 [ 2.066521] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 23801 [ 2.066742] libphy: stmmac: probed 23802 [ 2.067851] libphy: mdio_mux: probed 23803 [ 2.080393] meson-vrtc ff8000a8.rtc: registered as rtc1 23804 [ 2.088563] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 23805 [ 2.089148] rtc-pcf8563 1-0051: registered as rtc0 23806 [ 2.091055] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 23807 [ 2.091066] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 23808 [ 2.097752] random: fast init done 23809 [ 2.175743] usb 1-1: new high-speed USB device number 2 using xhci-hcd 23810 [ 2.276124] libphy: mdio_mux: probed 23811 [ 2.326074] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 23812 [ 2.326082] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 23813 [ 2.326086] usb 1-1: Product: USB2.1 Hub 23814 [ 2.326089] usb 1-1: Manufacturer: GenesysLogic 23815 [ 2.383790] hub 1-1:1.0: USB hub found 23816 [ 2.384027] hub 1-1:1.0: 4 ports detected 23817 [ 2.451822] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 23818 [ 2.474313] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 23819 [ 2.474317] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 23820 [ 2.474319] usb 2-1: Product: USB3.1 Hub 23821 [ 2.474322] usb 2-1: Manufacturer: GenesysLogic 23822 [ 2.495679] hub 2-1:1.0: USB hub found 23823 [ 2.495961] hub 2-1:1.0: 4 ports detected 23824 [ 2.599716] usb 1-2: new high-speed USB device number 3 using xhci-hcd 23825 [ 2.748150] usb 1-2: New USB device found, idVendor=2013, idProduct=025f, bcdDevice= 1.00 23826 [ 2.748155] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 23827 [ 2.748158] usb 1-2: Product: PCTV 292e 23828 [ 2.748161] usb 1-2: Manufacturer: PCTV 23829 [ 2.748164] usb 1-2: SerialNumber: 0011356964 23830 [ 3.049189] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 23831 [ 3.865542] systemd[1]: System time before build time, advancing clock. 23832 [ 3.880447] systemd[1]: Inserted module 'autofs4' 23833 [ 3.927490] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 23834 [ 3.927720] systemd[1]: Detected architecture arm64. 23835 [ 3.961598] systemd[1]: Set hostname to <odroidn2>. 23836 [ 4.288457] random: systemd: uninitialized urandom read (16 bytes read) 23837 [ 4.291730] random: systemd: uninitialized urandom read (16 bytes read) 23838 [ 4.293000] systemd[1]: Created slice system-serial-getty.slice. 23839 [ 4.293219] random: systemd: uninitialized urandom read (16 bytes read) 23840 [ 4.293237] systemd[1]: Reached target Swap. 23841 [ 4.293544] systemd[1]: Listening on Journal Socket (/dev/log). 23842 [ 4.293691] systemd[1]: Listening on initctl Compatibility Named Pipe. 23843 [ 4.293878] systemd[1]: Listening on fsck to fsckd communication Socket. 23844 [ 4.294166] systemd[1]: Listening on Journal Audit Socket. 23845 [ 4.294377] systemd[1]: Listening on udev Control Socket. 23846 [ 4.382516] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 23847 [ 4.933380] pwm-gpio pwmgpio: 1 gpio pwms loaded 23848 [ 4.936566] zram: Added device: zram0 23849 [ 4.937926] zram: Added device: zram1 23850 [ 4.938375] zram: Added device: zram2 23851 [ 5.074726] mc: Linux media interface: v0.10 23852 [ 5.095734] Registered IR keymap rc-odroid 23853 [ 5.125865] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 23854 [ 5.136200] IR NEC protocol handler initialized 23855 [ 5.136462] videodev: Linux video capture interface: v2.00 23856 [ 5.164244] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 23857 [ 5.165000] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 23858 [ 5.165122] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 23859 [ 5.165408] meson-ir ff808000.ir: receiver initialized 23860 [ 5.222651] meson-drm ff900000.vpu: Queued 2 outputs on vpu 23861 [ 5.277310] meson-drm ff900000.vpu: CVBS Output connector not available 23862 [ 5.297513] panfrost ffe40000.gpu: clock rate = 24000000 23863 [ 5.297574] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 23864 [ 5.303779] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) sysctl: permission denied on key 'vm.mmap_rnd_bits' sysctl: permission denied on key 'vm.mmap_rnd_compat_bits' sysctl: permission denied on key 'vm.stat_refresh' 23865 [ 5.304786] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 23866 [ 5.304795] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 23867 [ 5.304799] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 23868 [ 5.304802] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 23869 [ 5.305097] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 23870 [ 5.305393] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 23871 [ 5.305662] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 23872 [ 5.319530] zram0: detected capacity change from 0 to 1938251776 23873 [ 5.321834] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 23874 [ 5.347986] em28xx 1-2:1.0: New device PCTV PCTV 292e @ 480 Mbps (2013:025f, interface 0, class 0) 23875 [ 5.347993] em28xx 1-2:1.0: DVB interface 0 found: isoc 23876 [ 5.358231] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 23877 [ 5.407785] em28xx 1-2:1.0: chip ID is em28178 23878 [ 5.587869] Console: switching to colour frame buffer device 240x67 23879 [ 5.614383] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 23880 [ 5.651965] axg-sound-card sound: ASoC: no DMI vendor name! 23881 [ 6.379732] Adding 1892820k swap on /dev/zram0. Priority:5 extents:1 across:1892820k SSFS 23882 [ 6.442841] zram1: detected capacity change from 0 to 52428800 23883 [ 7.430031] em28xx 1-2:1.0: EEPROM ID = 26 00 01 00, EEPROM hash = 0x8d0cfd04 23884 [ 7.430037] em28xx 1-2:1.0: EEPROM info: 23885 [ 7.430041] em28xx 1-2:1.0: microcode start address = 0x0004, boot configuration = 0x01 23886 [ 7.436143] em28xx 1-2:1.0: AC97 audio (5 sample rates) 23887 [ 7.436147] em28xx 1-2:1.0: 500mA max power 23888 [ 7.436151] em28xx 1-2:1.0: Table at offset 0x27, strings=0x146a, 0x1888, 0x0a7e 23889 [ 7.495717] em28xx 1-2:1.0: Identified as PCTV tripleStick (292e) (card=94) 23890 [ 7.495723] em28xx 1-2:1.0: dvb set to isoc mode. 23891 [ 7.495951] usbcore: registered new interface driver em28xx 23892 [ 7.522719] em28xx 1-2:1.0: Binding DVB extension 23893 [ 7.536446] i2c i2c-4: Added multiplexed i2c bus 5 23894 [ 7.536454] si2168 4-0064: Silicon Labs Si2168-B40 successfully identified 23895 [ 7.536457] si2168 4-0064: firmware version: B 4.0.2 23896 [ 7.544900] si2157 5-0060: Silicon Labs Si2147/2148/2157/2158 successfully attached 23897 [ 7.544930] dvbdev: DVB: registering new adapter (1-2:1.0) 23898 [ 7.544936] em28xx 1-2:1.0: DVB: registering adapter 0 frontend 0 (Silicon Labs Si2168)... 23899 [ 7.544941] dvbdev: dvb_create_media_entity: media entity 'Silicon Labs Si2168' registered. 23900 [ 7.545612] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered. 23901 [ 7.546973] em28xx 1-2:1.0: DVB extension successfully initialized 23902 [ 7.546982] em28xx: Registered (Em28xx dvb Extension) extension 23903 [ 7.554221] em28xx 1-2:1.0: Registering input extension 23904 [ 7.587736] Registered IR keymap rc-pinnacle-pctv-hd 23905 [ 7.587928] rc rc1: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1 23906 [ 7.587997] rc rc1: lirc_dev: driver em28xx registered at minor = 1, scancode receiver, no transmitter 23907 [ 7.588058] input: PCTV tripleStick (292e) as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-2/1-2:1.0/rc/rc1/input1 23908 [ 7.588175] em28xx 1-2:1.0: Input extension successfully initialized 23909 [ 7.588183] em28xx: Registered (Em28xx Input Extension) extension 23910 [ 8.528069] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 23911 [ 8.528096] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 23912 [ 9.820462] systemd[1]: Started Armbian memory supported logging. 23913 [ 9.824606] systemd[1]: Starting Journal Service... 23914 [ 9.887423] systemd[1]: Started Journal Service. 23915 [ 9.908864] systemd-journald[1849]: Received request to flush runtime journal from PID 1 23916 [ 11.126642] random: crng init done 23917 [ 11.126656] random: 7 urandom warning(s) missed due to ratelimiting 23918 [ 14.442205] meson8b-dwmac ff3f0000.ethernet eth0: PHY [0.0:00] driver [RTL8211F Gigabit Ethernet] (irq=42) 23919 [ 14.455686] meson8b-dwmac ff3f0000.ethernet eth0: No Safety Features support found 23920 [ 14.455702] meson8b-dwmac ff3f0000.ethernet eth0: PTP not supported by HW 23921 [ 14.456098] meson8b-dwmac ff3f0000.ethernet eth0: configuring for phy/rgmii link mode 23922 [ 16.880151] si2168 4-0064: downloading firmware from file 'dvb-demod-si2168-b40-01.fw' 23923 [ 17.247621] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23924 [ 17.247634] si2168 4-0064: firmware download failed -5 23925 [ 17.759589] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23926 [ 18.214391] meson8b-dwmac ff3f0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx 23927 [ 18.214420] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 23928 [ 18.271564] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23929 [ 18.783581] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23930 [ 19.039539] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23931 [ 19.039617] em28xx 1-2:1.0: DVB: adapter 0 frontend 0 frequency 0 out of range (48000000..870000000) 23932 [ 19.551496] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23933 [ 20.063477] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23934 [ 20.575435] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23935 [ 21.087424] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23936 [ 21.603412] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23937 [ 22.143359] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23938 [ 22.659370] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23939 [ 23.199327] em28xx 1-2:1.0: writing to i2c device at 0xc8 failed (error=-5) 23940 23941 23942 vm.admin_reserve_kbytes = 8192 23943 vm.block_dump = 0 23944 vm.compaction_proactiveness = 20 23945 vm.compact_unevictable_allowed = 1 23946 vm.dirty_background_bytes = 0 23947 vm.dirty_background_ratio = 10 23948 vm.dirty_bytes = 0 23949 vm.dirty_expire_centisecs = 3000 23950 vm.dirty_ratio = 20 23951 vm.dirtytime_expire_seconds = 43200 23952 vm.dirty_writeback_centisecs = 500 23953 vm.extfrag_threshold = 500 23954 vm.hugetlb_shm_group = 0 23955 vm.laptop_mode = 0 23956 vm.legacy_va_layout = 0 23957 vm.lowmem_reserve_ratio = 256 256 32 0 23958 vm.max_map_count = 65530 23959 vm.memory_failure_early_kill = 0 23960 vm.memory_failure_recovery = 1 23961 vm.min_free_kbytes = 22528 23962 vm.min_slab_ratio = 5 23963 vm.min_unmapped_ratio = 1 23964 vm.mmap_min_addr = 4096 23965 vm.nr_hugepages = 0 23966 vm.nr_hugepages_mempolicy = 0 23967 vm.nr_overcommit_hugepages = 0 23968 vm.numa_stat = 1 23969 vm.numa_zonelist_order = Node 23970 vm.oom_dump_tasks = 1 23971 vm.oom_kill_allocating_task = 0 23972 vm.overcommit_kbytes = 0 23973 vm.overcommit_memory = 0 23974 vm.overcommit_ratio = 50 23975 vm.page-cluster = 0 23976 vm.page_lock_unfairness = 5 23977 vm.panic_on_oom = 0 23978 vm.percpu_pagelist_fraction = 0 23979 vm.stat_interval = 1 23980 vm.swappiness = 100 23981 vm.user_reserve_kbytes = 117055 23982 vm.vfs_cache_pressure = 100 23983 vm.watermark_boost_factor = 15000 23984 vm.watermark_scale_factor = 10 23985 vm.zone_reclaim_mode = 0 23986 23987 ### interrupts: 23988 CPU0 CPU1 CPU2 CPU3 CPU4 CPU5 23989 9: 0 0 0 0 0 0 GICv2 25 Level vgic 23990 11: 162364 7248 19171 12183 14242 7186 GICv2 30 Level arch_timer 23991 12: 0 0 0 0 0 0 GICv2 27 Level kvm guest vtimer 23992 14: 891 0 0 0 0 0 GICv2 40 Level eth0 23993 15: 257 0 0 0 0 0 GICv2 89 Edge dw_hdmi_top_irq, ff600000.hdmi-tx 23994 25: 1 0 0 0 0 0 GICv2 225 Edge ttyAML0 23995 26: 2 0 0 0 0 0 GICv2 228 Edge ff808000.ir 23996 27: 7 0 0 0 0 0 GICv2 232 Edge ff809000.adc 23997 28: 0 0 0 0 0 0 GICv2 76 Edge vdec 23998 29: 0 0 0 0 0 0 GICv2 64 Edge esparserirq 23999 30: 518 0 0 0 0 0 GICv2 35 Edge meson 24000 31: 37 0 0 0 0 0 GICv2 71 Edge ffd1c000.i2c 24001 32: 0 0 0 0 0 0 GICv2 247 Edge ffd1d000.i2c 24002 34: 17352 0 0 0 0 0 GICv2 222 Edge ffe05000.sd 24003 35: 13 0 0 0 0 0 GICv2 223 Edge ffe07000.mmc 24004 36: 0 0 0 0 0 0 GICv2 48 Level ffe09000.usb 24005 37: 0 0 0 0 0 0 GICv2 194 Level panfrost-job 24006 38: 0 0 0 0 0 0 GICv2 193 Level panfrost-mmu 24007 39: 3 0 0 0 0 0 GICv2 192 Level panfrost-gpu 24008 40: 0 0 0 0 0 0 GICv2 63 Level ff400000.usb, ff400000.usb 24009 41: 224 0 4015 0 0 0 GICv2 62 Level xhci-hcd:usb1 24010 42: 2 0 0 0 0 0 meson-gpio-irqchip 26 Level 0.0:00 24011 IPI0: 785 2451 6771 15045 6499 9678 Rescheduling interrupts 24012 IPI1: 6340 10486 4791 4706 3807 4229 Function call interrupts 24013 IPI2: 0 0 0 0 0 0 CPU stop interrupts 24014 IPI3: 0 0 0 0 0 0 CPU stop (for crash dump) interrupts 24015 IPI4: 0 0 0 0 0 0 Timer broadcast interrupts 24016 IPI5: 1932 250 1275 2424 696 44 IRQ work interrupts 24017 IPI6: 0 0 0 0 0 0 CPU wake-up interrupts 24018 Err: 0 Please upload the [1mwhole output[0m above to an online pasteboard service and provide the URL in the forum where you have been asked for this.
  16. 1 2 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 3 4 ### Activated Armbian ramlog partition with zstd compression 5 6 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 7 8 ### Activated Armbian ramlog partition with zstd compression 9 10 Sun 28 Mar 2021 04:42:10 PM CEST | Odroid N2 | 21.02.3 | arm64 | aarch64 | 5.10.21-meson64 11 12 ### dmesg: 13 14 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 15 [ 0.000000] Linux version 5.10.21-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.3 SMP PREEMPT Mon Mar 8 07:22:00 UTC 2021 16 [ 0.000000] Machine model: Hardkernel ODROID-N2Plus 17 [ 0.000000] efi: UEFI not found. 18 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 19 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 20 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 21 [ 0.000000] NUMA: No NUMA configuration found 22 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 23 [ 0.000000] NUMA: NODE_DATA [mem 0xb502e100-0xb502ffff] 24 [ 0.000000] Zone ranges: 25 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 26 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 27 [ 0.000000] Normal empty 28 [ 0.000000] Movable zone start for each node 29 [ 0.000000] Early memory node ranges 30 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 31 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 32 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 33 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 34 [ 0.000000] On node 0 totalpages: 972800 35 [ 0.000000] DMA zone: 4096 pages used for memmap 36 [ 0.000000] DMA zone: 0 pages reserved 37 [ 0.000000] DMA zone: 262144 pages, LIFO batch:63 38 [ 0.000000] DMA32 zone: 11104 pages used for memmap 39 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 40 [ 0.000000] psci: probing for conduit method from DT. 41 [ 0.000000] psci: PSCIv1.0 detected in firmware. 42 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 43 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 44 [ 0.000000] psci: SMC Calling Convention v1.1 45 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 46 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 47 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 48 [ 0.000000] Detected VIPT I-cache on CPU0 49 [ 0.000000] CPU features: detected: ARM erratum 845719 50 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 51 [ 0.000000] Policy zone: DMA32 52 [ 0.000000] Kernel command line: root=UUID=51c33730-20c8-4007-8dc5-c3478d176211 rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1908 max_freq_a73=2208 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 53 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 54 Please use sysfs to set IO scheduler for individual devices. 55 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 56 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 57 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 58 [ 0.000000] software IO TLB: mapped [mem 0x000000003896d000-0x000000003c96d000] (64MB) 59 [ 0.000000] Memory: 2783972K/3891200K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 189724K reserved, 917504K cma-reserved) 60 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 61 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 62 [ 0.000000] rcu: RCU event tracing is enabled. 63 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 64 [ 0.000000] Trampoline variant of Tasks RCU enabled. 65 [ 0.000000] Rude variant of Tasks RCU enabled. 66 [ 0.000000] Tracing variant of Tasks RCU enabled. 67 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 68 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 69 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 70 [ 0.000000] GIC: Using split EOI/Deactivate mode 71 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 72 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 73 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 74 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 75 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 76 [ 0.000251] Console: colour dummy device 80x25 77 [ 0.000285] printk: console [tty1] enabled 78 [ 0.000374] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 79 [ 0.000387] pid_max: default: 32768 minimum: 301 80 [ 0.000470] LSM: Security Framework initializing 81 [ 0.000496] Yama: becoming mindful. 82 [ 0.000587] AppArmor: AppArmor initialized 83 [ 0.000637] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 84 [ 0.000656] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 85 [ 0.002650] rcu: Hierarchical SRCU implementation. 86 [ 0.005148] EFI services will not be available. 87 [ 0.005570] smp: Bringing up secondary CPUs ... 88 [ 0.006243] Detected VIPT I-cache on CPU1 89 [ 0.006304] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 90 [ 0.007500] CPU features: detected: ARM erratum 858921 91 [ 0.007510] CPU features: detected: Spectre-v2 92 [ 0.007513] CPU features: detected: Spectre-v4 93 [ 0.007520] Detected VIPT I-cache on CPU2 94 [ 0.007544] arch_timer: Enabling local workaround for ARM erratum 858921 95 [ 0.007559] arch_timer: CPU2: Trapping CNTVCT access 96 [ 0.007572] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 97 [ 0.008280] Detected VIPT I-cache on CPU3 98 [ 0.008296] arch_timer: Enabling local workaround for ARM erratum 858921 99 [ 0.008303] arch_timer: CPU3: Trapping CNTVCT access 100 [ 0.008311] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 101 [ 0.008936] Detected VIPT I-cache on CPU4 102 [ 0.008952] arch_timer: Enabling local workaround for ARM erratum 858921 103 [ 0.008960] arch_timer: CPU4: Trapping CNTVCT access 104 [ 0.008967] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 105 [ 0.009581] Detected VIPT I-cache on CPU5 106 [ 0.009598] arch_timer: Enabling local workaround for ARM erratum 858921 107 [ 0.009605] arch_timer: CPU5: Trapping CNTVCT access 108 [ 0.009614] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 109 [ 0.009696] smp: Brought up 1 node, 6 CPUs 110 [ 0.009713] SMP: Total of 6 processors activated. 111 [ 0.009721] CPU features: detected: 32-bit EL0 Support 112 [ 0.009727] CPU features: detected: CRC32 instructions 113 [ 0.009733] CPU features: detected: 32-bit EL1 Support 114 [ 0.020996] CPU: All CPU(s) started at EL2 115 [ 0.021045] alternatives: patching kernel code 116 [ 0.023048] devtmpfs: initialized 117 [ 0.030738] Registered cp15_barrier emulation handler 118 [ 0.030752] Registered setend emulation handler 119 [ 0.030892] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 120 [ 0.030931] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 121 [ 0.046222] pinctrl core: initialized pinctrl subsystem 122 [ 0.046949] DMI not present or invalid. 123 [ 0.047318] NET: Registered protocol family 16 124 [ 0.048878] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 125 [ 0.049153] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 126 [ 0.049384] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 127 [ 0.049428] audit: initializing netlink subsys (disabled) 128 [ 0.049548] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 129 [ 0.050799] thermal_sys: Registered thermal governor 'fair_share' 130 [ 0.050806] thermal_sys: Registered thermal governor 'bang_bang' 131 [ 0.050810] thermal_sys: Registered thermal governor 'step_wise' 132 [ 0.050814] thermal_sys: Registered thermal governor 'user_space' 133 [ 0.051255] cpuidle: using governor menu 134 [ 0.051603] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 135 [ 0.051724] ASID allocator initialised with 65536 entries 136 [ 0.052767] Serial: AMBA PL011 UART driver 137 [ 0.088041] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 138 [ 0.088051] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 139 [ 0.088055] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 140 [ 0.088059] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 141 [ 0.090039] cryptd: max_cpu_qlen set to 1000 142 [ 0.160228] raid6: neonx8 gen() 2780 MB/s 143 [ 0.228281] raid6: neonx8 xor() 2042 MB/s 144 [ 0.296330] raid6: neonx4 gen() 3153 MB/s 145 [ 0.364387] raid6: neonx4 xor() 2399 MB/s 146 [ 0.432465] raid6: neonx2 gen() 2538 MB/s 147 [ 0.500517] raid6: neonx2 xor() 2136 MB/s 148 [ 0.568591] raid6: neonx1 gen() 1964 MB/s 149 [ 0.636642] raid6: neonx1 xor() 1722 MB/s 150 [ 0.704712] raid6: int64x8 gen() 1374 MB/s 151 [ 0.772778] raid6: int64x8 xor() 735 MB/s 152 [ 0.840851] raid6: int64x4 gen() 1463 MB/s 153 [ 0.908895] raid6: int64x4 xor() 733 MB/s 154 [ 0.976972] raid6: int64x2 gen() 1363 MB/s 155 [ 1.045026] raid6: int64x2 xor() 619 MB/s 156 [ 1.113093] raid6: int64x1 gen() 1127 MB/s 157 [ 1.181148] raid6: int64x1 xor() 462 MB/s 158 [ 1.181151] raid6: using algorithm neonx4 gen() 3153 MB/s 159 [ 1.181155] raid6: .... xor() 2399 MB/s, rmw enabled 160 [ 1.181159] raid6: using neon recovery algorithm 161 [ 1.181616] ACPI: Interpreter disabled. 162 [ 1.182395] 5V: supplied by 12V 163 [ 1.183289] VDDAO_3V3: supplied by 12V 164 [ 1.183755] iommu: Default domain type: Translated 165 [ 1.183886] vgaarb: loaded 166 [ 1.184648] SCSI subsystem initialized 167 [ 1.184841] usbcore: registered new interface driver usbfs 168 [ 1.184881] usbcore: registered new interface driver hub 169 [ 1.184913] usbcore: registered new device driver usb 170 [ 1.185163] pps_core: LinuxPPS API ver. 1 registered 171 [ 1.185167] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 172 [ 1.185191] PTP clock support registered 173 [ 1.185380] EDAC MC: Ver: 3.0.0 174 [ 1.186826] NetLabel: Initializing 175 [ 1.186833] NetLabel: domain hash size = 128 176 [ 1.186836] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 177 [ 1.186877] NetLabel: unlabeled traffic allowed by default 178 [ 1.187315] clocksource: Switched to clocksource arch_sys_counter 179 [ 1.187529] VFS: Disk quotas dquot_6.6.0 180 [ 1.187576] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 181 [ 1.187926] AppArmor: AppArmor Filesystem Enabled 182 [ 1.187971] pnp: PnP ACPI: disabled 183 [ 1.193741] NET: Registered protocol family 2 184 [ 1.194188] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 185 [ 1.194291] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 186 [ 1.194548] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 187 [ 1.194735] TCP: Hash tables configured (established 32768 bind 32768) 188 [ 1.194886] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 189 [ 1.194955] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 190 [ 1.195001] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 191 [ 1.195146] NET: Registered protocol family 1 192 [ 1.195170] PCI: CLS 0 bytes, default 64 193 [ 1.195296] Trying to unpack rootfs image as initramfs... 194 [ 1.762407] Freeing initrd memory: 14920K 195 [ 1.763393] kvm [1]: IPA Size Limit: 40 bits 196 [ 1.764103] kvm [1]: vgic interrupt IRQ9 197 [ 1.764245] kvm [1]: Hyp mode initialized successfully 198 [ 1.769377] Initialise system trusted keyrings 199 [ 1.769414] Key type blacklist registered 200 [ 1.769536] workingset: timestamp_bits=44 max_order=20 bucket_order=0 201 [ 1.772714] zbud: loaded 202 [ 1.773709] squashfs: version 4.0 (2009/01/31) Phillip Lougher 203 [ 1.774164] fuse: init (API version 7.32) 204 [ 1.774908] integrity: Platform Keyring initialized 205 [ 1.802702] xor: measuring software checksum speed 206 [ 1.805549] 8regs : 3476 MB/sec 207 [ 1.808030] 32regs : 4022 MB/sec 208 [ 1.810676] arm64_neon : 3722 MB/sec 209 [ 1.810680] xor: using function: 32regs (4022 MB/sec) 210 [ 1.810687] Key type asymmetric registered 211 [ 1.810690] Asymmetric key parser 'x509' registered 212 [ 1.810722] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 213 [ 1.810801] io scheduler mq-deadline registered 214 [ 1.810805] io scheduler kyber registered 215 [ 1.810879] io scheduler bfq registered 216 [ 1.813446] gpio-447 (usb-hub-reset): hogged as output/high 217 [ 1.816440] EINJ: ACPI disabled. 218 [ 1.822682] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 219 [ 1.824108] VCC_3V3: supplied by VDDAO_3V3 220 [ 1.824145] FLASH_1V8: supplied by VCC_3V3 221 [ 1.824188] VCC_1V8: supplied by VCC_3V3 222 [ 1.824214] VDDAO_1V8: supplied by VDDAO_3V3 223 [ 1.824245] VDDCPU_A: supplied by regulator-dummy 224 [ 1.824602] VDDCPU_B: supplied by regulator-dummy 225 [ 1.825265] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 226 [ 1.827570] Serial: AMBA driver 227 [ 1.827867] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 228 [ 1.827957] printk: console [ttyAML0] enabled 229 [ 1.828469] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 230 [ 1.833884] loop: module loaded 231 [ 1.835856] libphy: Fixed MDIO Bus: probed 232 [ 1.836921] tun: Universal TUN/TAP device driver, 1.6 233 [ 1.837555] thunder_xcv, ver 1.0 234 [ 1.837584] thunder_bgx, ver 1.0 235 [ 1.837609] nicpf, ver 1.0 236 [ 1.838055] e1000e: Intel(R) PRO/1000 Network Driver 237 [ 1.838058] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 238 [ 1.838096] igb: Intel(R) Gigabit Ethernet Network Driver 239 [ 1.838099] igb: Copyright (c) 2007-2014 Intel Corporation. 240 [ 1.838127] igbvf: Intel(R) Gigabit Virtual Function Network Driver 241 [ 1.838130] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 242 [ 1.838252] sky2: driver version 1.30 243 [ 1.838584] VFIO - User Level meta-driver version: 0.3 244 [ 1.839991] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 245 [ 1.840009] ehci-pci: EHCI PCI platform driver 246 [ 1.840040] ehci-platform: EHCI generic platform driver 247 [ 1.840175] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 248 [ 1.840185] ohci-pci: OHCI PCI platform driver 249 [ 1.840217] ohci-platform: OHCI generic platform driver 250 [ 1.840646] usbcore: registered new interface driver usb-storage 251 [ 1.841943] mousedev: PS/2 mouse device common for all mice 252 [ 1.842321] i2c /dev entries driver 253 [ 1.847877] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 254 [ 1.848749] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 255 [ 1.849666] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 256 [ 1.850249] sdhci: Secure Digital Host Controller Interface driver 257 [ 1.850253] sdhci: Copyright(c) Pierre Ossman 258 [ 1.850343] Synopsys Designware Multimedia Card Interface Driver 259 [ 1.850702] sdhci-pltfm: SDHCI platform and OF driver helper 260 [ 1.851105] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 261 [ 1.851484] ledtrig-cpu: registered to indicate activity on CPUs 262 [ 1.851758] meson-sm: secure-monitor enabled 263 [ 1.851998] hid: raw HID events driver (C) Jiri Kosina 264 [ 1.852088] usbcore: registered new interface driver usbhid 265 [ 1.852091] usbhid: USB HID core driver 266 [ 1.852967] NET: Registered protocol family 10 267 [ 1.853335] Segment Routing with IPv6 268 [ 1.853357] NET: Registered protocol family 17 269 [ 1.853401] 8021q: 802.1Q VLAN Support v1.8 270 [ 1.853422] Key type dns_resolver registered 271 [ 1.853660] registered taskstats version 1 272 [ 1.853666] Loading compiled-in X.509 certificates 273 [ 1.855090] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 274 [ 1.856972] zswap: loaded using pool zstd/z3fold 275 [ 1.857150] Key type ._fscrypt registered 276 [ 1.857152] Key type .fscrypt registered 277 [ 1.857154] Key type fscrypt-provisioning registered 278 [ 1.858171] Btrfs loaded, crc32c=crc32c-generic 279 [ 1.863850] Key type encrypted registered 280 [ 1.863873] AppArmor: AppArmor sha1 policy hashing enabled 281 [ 1.871188] HUB_5V: supplied by 5V 282 [ 1.871445] USB_PWR_EN: supplied by 5V 283 [ 1.872914] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 284 [ 1.872921] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 285 [ 1.875866] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 286 [ 1.875913] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 287 [ 1.876005] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 288 [ 1.876510] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 289 [ 1.876520] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 290 [ 1.876643] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 291 [ 1.876662] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 292 [ 1.876812] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 293 [ 1.876814] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 294 [ 1.876816] usb usb1: Product: xHCI Host Controller 295 [ 1.876818] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 296 [ 1.876820] usb usb1: SerialNumber: xhci-hcd.0.auto 297 [ 1.876985] hub 1-0:1.0: USB hub found 298 [ 1.876996] hub 1-0:1.0: 2 ports detected 299 [ 1.877101] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 300 [ 1.877106] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 301 [ 1.877110] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 302 [ 1.877130] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 303 [ 1.877157] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 304 [ 1.877159] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 305 [ 1.877161] usb usb2: Product: xHCI Host Controller 306 [ 1.877163] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 307 [ 1.877164] usb usb2: SerialNumber: xhci-hcd.0.auto 308 [ 1.877284] hub 2-0:1.0: USB hub found 309 [ 1.877293] hub 2-0:1.0: 1 port detected 310 [ 1.877619] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 311 [ 1.878380] meson-gx-mmc ffe05000.sd: Got CD GPIO 312 [ 1.904659] Freeing unused kernel memory: 3328K 313 [ 1.943428] Run /init as init process 314 [ 1.943432] with arguments: 315 [ 1.943434] /init 316 [ 1.943435] with environment: 317 [ 1.943437] HOME=/ 318 [ 1.943438] TERM=linux 319 [ 1.943440] hdmimode=custombuilt 320 [ 1.943441] cvbsmode=576cvbs 321 [ 1.943442] max_freq_a53=1908 322 [ 1.943443] max_freq_a73=2208 323 [ 1.943445] voutmode=hdmi 324 [ 1.943446] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 325 [ 1.943448] disablehpd=false 326 [ 1.943449] cvbscable= 327 [ 1.943450] overscan=100 328 [ 2.056504] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 329 [ 2.056515] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 330 [ 2.056664] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 331 [ 2.062705] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 332 [ 2.062713] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 333 [ 2.062716] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 334 [ 2.062718] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 335 [ 2.062721] meson8b-dwmac ff3f0000.ethernet: COE Type 2 336 [ 2.062723] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 337 [ 2.062724] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 338 [ 2.066921] meson-vrtc ff8000a8.rtc: registered as rtc1 339 [ 2.069181] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 340 [ 2.069189] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 341 [ 2.069191] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 342 [ 2.070275] libphy: stmmac: probed 343 [ 2.070991] libphy: mdio_mux: probed 344 [ 2.071771] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 345 [ 2.071863] rtc-pcf8563 1-0051: registered as rtc0 346 [ 2.075109] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 347 [ 2.075118] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 348 [ 2.117608] mmc0: new ultra high speed SDR104 SDXC card at address aaaa 349 [ 2.118089] mmcblk0: mmc0:aaaa SH64G 59.5 GiB 350 [ 2.120063] mmcblk0: p1 351 [ 2.176745] random: fast init done 352 [ 2.190027] mmc1: new HS200 MMC card at address 0001 353 [ 2.190554] mmcblk1: mmc1:0001 CJTD4R 58.2 GiB 354 [ 2.190906] mmcblk1boot0: mmc1:0001 CJTD4R partition 1 4.00 MiB 355 [ 2.191155] mmcblk1boot1: mmc1:0001 CJTD4R partition 2 4.00 MiB 356 [ 2.191321] mmcblk1rpmb: mmc1:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 357 [ 2.192541] mmcblk1: p1 358 [ 2.211346] usb 1-1: new high-speed USB device number 2 using xhci-hcd 359 [ 2.279772] libphy: mdio_mux: probed 360 [ 2.349463] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 361 [ 2.365917] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 362 [ 2.365925] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 363 [ 2.365929] usb 1-1: Product: USB2.1 Hub 364 [ 2.365932] usb 1-1: Manufacturer: GenesysLogic 365 [ 2.421473] hub 1-1:1.0: USB hub found 366 [ 2.421729] hub 1-1:1.0: 4 ports detected 367 [ 2.491450] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 368 [ 2.517942] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 369 [ 2.517950] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 370 [ 2.517954] usb 2-1: Product: USB3.1 Hub 371 [ 2.517957] usb 2-1: Manufacturer: GenesysLogic 372 [ 2.523179] systemd[1]: System time before build time, advancing clock. 373 [ 2.526734] systemd[1]: Inserted module 'autofs4' 374 [ 2.544252] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 375 [ 2.544434] systemd[1]: Detected architecture arm64. 376 [ 2.549426] hub 2-1:1.0: USB hub found 377 [ 2.549723] hub 2-1:1.0: 4 ports detected 378 [ 2.568870] systemd[1]: Set hostname to <odroidn2>. 379 [ 2.712262] random: systemd: uninitialized urandom read (16 bytes read) 380 [ 2.714829] random: systemd: uninitialized urandom read (16 bytes read) 381 [ 2.715679] systemd[1]: Created slice User and Session Slice. 382 [ 2.715879] random: systemd: uninitialized urandom read (16 bytes read) 383 [ 2.715951] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 384 [ 2.716050] systemd[1]: Reached target Swap. 385 [ 2.716191] systemd[1]: Listening on initctl Compatibility Named Pipe. 386 [ 2.716469] systemd[1]: Listening on Journal Socket. 387 [ 2.718191] systemd[1]: Starting Create list of required static device nodes for the current kernel... 388 [ 2.719975] systemd[1]: Mounting Huge Pages File System... 389 [ 2.754256] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 390 [ 2.799391] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 391 [ 2.930745] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 392 [ 2.930756] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 393 [ 2.930760] usb 1-1.1: Product: USB OPTICAL MOUSE 394 [ 2.969459] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input0 395 [ 2.974783] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 396 [ 2.977906] pwm-gpio pwmgpio: 1 gpio pwms loaded 397 [ 3.021227] zram: Added device: zram0 398 [ 3.021501] zram: Added device: zram1 399 [ 3.021674] zram: Added device: zram2 400 [ 3.067164] mc: Linux media interface: v0.10 401 [ 3.069847] zram0: detected capacity change from 0 to 1904500736 402 [ 3.078574] videodev: Linux video capture interface: v2.00 403 [ 3.079395] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 404 [ 3.091823] meson-drm ff900000.vpu: Queued 2 outputs on vpu 405 [ 3.110094] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 406 [ 3.110148] meson-drm ff900000.vpu: CVBS Output connector not available 407 [ 3.125599] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 408 [ 3.137257] panfrost ffe40000.gpu: clock rate = 24000000 409 [ 3.137316] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 410 [ 3.138166] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 411 [ 3.138172] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 412 [ 3.138175] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 413 [ 3.138178] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 414 [ 3.143691] Registered IR keymap rc-odroid 415 [ 3.147649] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 416 [ 3.148170] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 417 [ 3.148457] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 418 [ 3.148696] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 419 [ 3.159817] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 420 [ 3.168555] IR NEC protocol handler initialized 421 [ 3.195410] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 422 [ 3.195546] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 423 [ 3.195600] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input1 424 [ 3.197470] meson-ir ff808000.ir: receiver initialized 425 [ 3.208807] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 426 [ 3.208824] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 427 [ 3.208827] usb 1-1.3: Product: USB Keyboard 428 [ 3.208831] usb 1-1.3: Manufacturer: Logitech 429 [ 3.290370] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input2 430 [ 3.347743] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 431 [ 3.353616] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 432 [ 3.411510] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input4 433 [ 3.411645] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 434 [ 3.436135] Console: switching to colour frame buffer device 240x67 435 [ 3.457977] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 436 [ 3.485611] axg-sound-card sound: ASoC: no DMI vendor name! 437 [ 3.667327] usb 1-1.2: new high-speed USB device number 5 using xhci-hcd 438 [ 3.791613] usb 1-1.2: New USB device found, idVendor=0781, idProduct=55a1, bcdDevice= 1.00 439 [ 3.791619] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 440 [ 3.791623] usb 1-1.2: Product: Cruzer Spark 441 [ 3.791626] usb 1-1.2: Manufacturer: SanDisk 442 [ 3.791630] usb 1-1.2: SerialNumber: 4C530001231009114503 443 [ 3.792360] usb-storage 1-1.2:1.0: USB Mass Storage device detected 444 [ 3.792611] scsi host0: usb-storage 1-1.2:1.0 445 [ 3.808003] usbcore: registered new interface driver uas 446 [ 4.111330] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 447 [ 4.152238] zram1: detected capacity change from 0 to 52428800 448 [ 4.800245] scsi 0:0:0:0: Direct-Access SanDisk Cruzer Spark 1.00 PQ: 0 ANSI: 6 449 [ 4.801346] sd 0:0:0:0: [sda] 240451584 512-byte logical blocks: (123 GB/115 GiB) 450 [ 4.802523] sd 0:0:0:0: [sda] Write Protect is off 451 [ 4.802527] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00 452 [ 4.802739] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA 453 [ 4.809956] sd 0:0:0:0: Attached scsi generic sg0 type 0 454 [ 4.830757] sda: sda1 455 [ 4.833222] sd 0:0:0:0: [sda] Attached SCSI removable disk 456 [ 6.195805] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 457 [ 6.195823] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 458 [ 7.027455] systemd-journald[1868]: Received request to flush runtime journal from PID 1 459 460 ### armbian-release: 461 462 # PLEASE DO NOT EDIT THIS FILE 463 BOARD=odroidn2 464 BOARD_NAME="Odroid N2" 465 BOARDFAMILY=meson-g12b 466 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 467 BUILD_REPOSITORY_COMMIT=e846ef656-dirty 468 DISTRIBUTION_CODENAME=buster 469 DISTRIBUTION_STATUS=supported 470 VERSION=21.02.3 471 LINUXFAMILY=meson64 472 BRANCH=current 473 ARCH=arm64 474 IMAGE_TYPE=stable 475 BOARD_TYPE=conf 476 INITRD_ARCH=arm64 477 KERNEL_IMAGE_TYPE=Image 478 479 ### boot environment: 480 481 verbosity=1 482 console=both 483 overlay_prefix=meson 484 bootlogo=true 485 rootdev=UUID=51c33730-20c8-4007-8dc5-c3478d176211 486 rootfstype=ext4 487 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 488 489 ### lsusb: 490 491 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 492 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 493 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 494 Bus 001 Device 005: ID 0781:55a1 SanDisk Corp. 495 Bus 001 Device 003: ID 275d:0ba6 496 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 497 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 498 499 ### lscpu: 500 501 Architecture: aarch64 502 Byte Order: Little Endian 503 CPU(s): 6 504 On-line CPU(s) list: 0-5 505 Thread(s) per core: 1 506 Core(s) per socket: 3 507 Socket(s): 2 508 NUMA node(s): 1 509 Vendor ID: ARM 510 Model: 4 511 Model name: Cortex-A53 512 Stepping: r0p4 513 CPU max MHz: 2400.0000 514 CPU min MHz: 100.0000 515 BogoMIPS: 48.00 516 L1d cache: unknown size 517 L1i cache: unknown size 518 L2 cache: unknown size 519 NUMA node0 CPU(s): 0-5 520 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 521 522 ### cpuinfo: 523 524 processor : 0 525 BogoMIPS : 48.00 526 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 527 CPU implementer : 0x41 528 CPU architecture: 8 529 CPU variant : 0x0 530 CPU part : 0xd03 531 CPU revision : 4 532 533 processor : 1 534 BogoMIPS : 48.00 535 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 536 CPU implementer : 0x41 537 CPU architecture: 8 538 CPU variant : 0x0 539 CPU part : 0xd03 540 CPU revision : 4 541 542 processor : 2 543 BogoMIPS : 48.00 544 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 545 CPU implementer : 0x41 546 CPU architecture: 8 547 CPU variant : 0x0 548 CPU part : 0xd09 549 CPU revision : 2 550 551 processor : 3 552 BogoMIPS : 48.00 553 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 554 CPU implementer : 0x41 555 CPU architecture: 8 556 CPU variant : 0x0 557 CPU part : 0xd09 558 CPU revision : 2 559 560 processor : 4 561 BogoMIPS : 48.00 562 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 563 CPU implementer : 0x41 564 CPU architecture: 8 565 CPU variant : 0x0 566 CPU part : 0xd09 567 CPU revision : 2 568 569 processor : 5 570 BogoMIPS : 48.00 571 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 572 CPU implementer : 0x41 573 CPU architecture: 8 574 CPU variant : 0x0 575 CPU part : 0xd09 576 CPU revision : 2 577 578 579 ### meminfo: 580 581 MemTotal: 3719724 kB 582 MemFree: 3387000 kB 583 MemAvailable: 3343456 kB 584 Buffers: 12552 kB 585 Cached: 48656 kB 586 SwapCached: 0 kB 587 Active: 33328 kB 588 Inactive: 180956 kB 589 Active(anon): 136 kB 590 Inactive(anon): 157888 kB 591 Active(file): 33192 kB 592 Inactive(file): 23068 kB 593 Unevictable: 0 kB 594 Mlocked: 0 kB 595 SwapTotal: 1859860 kB 596 SwapFree: 1859860 kB 597 Dirty: 1700 kB 598 Writeback: 0 kB 599 AnonPages: 153128 kB 600 Mapped: 14496 kB 601 Shmem: 4952 kB 602 KReclaimable: 13872 kB 603 Slab: 46352 kB 604 SReclaimable: 13872 kB 605 SUnreclaim: 32480 kB 606 KernelStack: 2688 kB 607 PageTables: 7104 kB 608 NFS_Unstable: 0 kB 609 Bounce: 0 kB 610 WritebackTmp: 0 kB 611 CommitLimit: 3719720 kB 612 Committed_AS: 4249144 kB 613 VmallocTotal: 135290159040 kB 614 VmallocUsed: 31620 kB 615 VmallocChunk: 0 kB 616 Percpu: 1416 kB 617 HardwareCorrupted: 0 kB 618 AnonHugePages: 40960 kB 619 ShmemHugePages: 0 kB 620 ShmemPmdMapped: 0 kB 621 FileHugePages: 0 kB 622 FilePmdMapped: 0 kB 623 CmaTotal: 917504 kB 624 CmaFree: 901724 kB 625 HugePages_Total: 0 626 HugePages_Free: 0 627 HugePages_Rsvd: 0 628 HugePages_Surp: 0 629 Hugepagesize: 2048 kB 630 Hugetlb: 0 kB 631 632 ### virtual memory: 633 634 vm.admin_reserve_kbytes = 8192 635 vm.block_dump = 0 636 vm.compaction_proactiveness = 20 637 vm.compact_unevictable_allowed = 1 638 vm.dirty_background_bytes = 0 639 vm.dirty_background_ratio = 10 640 vm.dirty_bytes = 0 641 vm.dirty_expire_centisecs = 3000 642 vm.dirty_ratio = 20 643 vm.dirtytime_expire_seconds = 43200 644 vm.dirty_writeback_centisecs = 500 645 vm.extfrag_threshold = 500 646 vm.hugetlb_shm_group = 0 647 vm.laptop_mode = 0 648 vm.legacy_va_layout = 0 649 vm.lowmem_reserve_ratio = 256 256 32 0 650 vm.max_map_count = 65530 651 vm.memory_failure_early_kill = 0 652 vm.memory_failure_recovery = 1 653 vm.min_free_kbytes = 45056 654 vm.min_slab_ratio = 5 655 vm.min_unmapped_ratio = 1 656 vm.mmap_min_addr = 4096 657 vm.mmap_rnd_bits = 18 658 vm.mmap_rnd_compat_bits = 11 659 vm.nr_hugepages = 0 660 vm.nr_hugepages_mempolicy = 0 661 vm.nr_overcommit_hugepages = 0 662 vm.numa_stat = 1 663 vm.numa_zonelist_order = Node 664 vm.oom_dump_tasks = 1 665 vm.oom_kill_allocating_task = 0 666 vm.overcommit_kbytes = 0 667 vm.overcommit_memory = 0 668 vm.overcommit_ratio = 50 669 vm.page-cluster = 0 670 vm.page_lock_unfairness = 5 671 vm.panic_on_oom = 0 672 vm.percpu_pagelist_fraction = 0 673 vm.stat_interval = 1 674 vm.swappiness = 100 675 vm.user_reserve_kbytes = 114983 676 vm.vfs_cache_pressure = 100 677 vm.watermark_boost_factor = 15000 678 vm.watermark_scale_factor = 10 679 vm.zone_reclaim_mode = 0 680 681 ### ip addr: 682 683 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 684 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 685 inet XXX.XXX.0.1/8 scope host lo 686 valid_lft forever preferred_lft forever 687 inet6 ::1/128 scope host 688 valid_lft forever preferred_lft forever 689 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 690 link/ether 00:1e:06:42:52:64 brd ff:ff:ff:ff:ff:ff 691 692 ### partitions: 693 694 major minor #blocks name 695 696 179 0 62367744 mmcblk0 697 179 1 62366720 mmcblk0p1 698 179 32 61071360 mmcblk1 699 179 33 60456544 mmcblk1p1 700 252 0 1859864 zram0 701 252 1 51200 zram1 702 8 0 120225792 sda 703 8 1 120225760 sda1 704 705 ### df: 706 707 udev 1.4G 0 1.4G 0% /dev 708 tmpfs 364M 5.0M 359M 2% /run 709 /dev/mmcblk1p1 57G 20G 37G 36% / 710 tmpfs 1.8G 0 1.8G 0% /dev/shm 711 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 712 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 713 tmpfs 1.8G 0 1.8G 0% /tmp 714 /dev/zram1 49M 1.7M 44M 4% /var/log 715 716 ### lsblk: 717 718 NAME FSTYPE SIZE MOUNTPOINT UUID 719 sda 114.7G 720 └─sda1 ntfs 114.7G 1CB8167CB816549C 721 mmcblk0 59.5G 722 └─mmcblk0p1 ext4 59.5G 83574bbb-e4ac-4398-8436-9962a3c61cdf 723 mmcblk1 58.2G 724 └─mmcblk1p1 ext4 57.7G / 51c33730-20c8-4007-8dc5-c3478d176211 725 mmcblk1boot0 4M 726 mmcblk1boot1 4M 727 zram1 50M /var/log 728 729 ### zramctl: 730 731 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 732 /dev/zram1 zstd 50M 132K 697B 36K 6 /var/log 733 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 734 735 ### mtab: 736 737 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 738 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 739 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 740 741 ### mmc0:aaaa info: 742 743 fwrev: 0x0 744 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SH64G MODALIAS=mmc:block 745 cid: 035344534836344780559b2001014a00 746 rca: 0xaaaa 747 csd: 400e0032db790001dbd37f800a404000 748 manfid: 0x000003 749 ocr: 0x00200000 750 preferred_erase_size: 4194304 751 type: SD 752 hwrev: 0x8 753 date: 10/2020 754 dsr: 0x404 755 erase_size: 512 756 oemid: 0x5344 757 serial: 0x559b2001 758 ssr: 0000000008000000040090000f05391e000800000001000003000000000000000000000000000000000000000000000000000000000000000000000000000000 759 scr: 0245848300000000 760 name: SH64G 761 762 ### mmc1:0001 info: 763 764 fwrev: 0x0400000000000000 765 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=CJTD4R MODALIAS=mmc:block 766 cid: 150100434a54443452042559facb7700 767 rel_sectors: 0x1 768 enhanced_rpmb_supported: 0x1 769 rca: 0x0001 770 pre_eol_info: 0x01 771 csd: d02701320f5903fff6dbffef8e404000 772 manfid: 0x000015 773 ocr: 0x00200000 774 preferred_erase_size: 4194304 775 enhanced_area_offset: 18446744073709551594 776 raw_rpmb_size_mult: 0x20 777 type: MMC 778 hwrev: 0x0 779 date: 07/2020 780 prv: 0x4 781 ffu_capable: 1 782 dsr: 0x404 783 erase_size: 524288 784 life_time: 0x01 0x01 785 enhanced_area_size: 4294967274 786 oemid: 0x0100 787 serial: 0x2559facb 788 cmdq_en: 0 789 rev: 0x8 790 name: CJTD4R 791 792 ### Boot system health: 793 794 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 795 16:42:11: 2400/2016MHz 0.16 23% 15% 6% 0% 1% 0% 28.4°C 0/12 796 16:42:11: 2400/2016MHz 0.16 29% 19% 8% 0% 0% 0% 26.3°C 0/12 797 16:42:12: 2400/2016MHz 0.16 19% 8% 9% 0% 0% 0% 25.1°C 0/12 798 16:42:12: 2400/2016MHz 0.16 48% 26% 13% 0% 6% 0% 26.1°C 0/12 799 16:42:12: 2400/2016MHz 0.16 85% 36% 30% 0% 15% 3% 28.4°C 0/12 800 801 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 802 803 ### Activated Armbian ramlog partition with zstd compression 804 805 Sun 28 Mar 2021 06:36:30 PM CEST | Odroid N2 | 21.02.3 | arm64 | aarch64 | 5.10.21-meson64 806 807 ### dmesg: 808 809 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 810 [ 0.000000] Linux version 5.10.21-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.3 SMP PREEMPT Mon Mar 8 07:22:00 UTC 2021 811 [ 0.000000] Machine model: Hardkernel ODROID-N2Plus 812 [ 0.000000] efi: UEFI not found. 813 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 814 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 815 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 816 [ 0.000000] NUMA: No NUMA configuration found 817 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 818 [ 0.000000] NUMA: NODE_DATA [mem 0xb502e100-0xb502ffff] 819 [ 0.000000] Zone ranges: 820 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 821 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 822 [ 0.000000] Normal empty 823 [ 0.000000] Movable zone start for each node 824 [ 0.000000] Early memory node ranges 825 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 826 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 827 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 828 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 829 [ 0.000000] On node 0 totalpages: 972800 830 [ 0.000000] DMA zone: 4096 pages used for memmap 831 [ 0.000000] DMA zone: 0 pages reserved 832 [ 0.000000] DMA zone: 262144 pages, LIFO batch:63 833 [ 0.000000] DMA32 zone: 11104 pages used for memmap 834 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 835 [ 0.000000] psci: probing for conduit method from DT. 836 [ 0.000000] psci: PSCIv1.0 detected in firmware. 837 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 838 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 839 [ 0.000000] psci: SMC Calling Convention v1.1 840 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 841 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 842 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 843 [ 0.000000] Detected VIPT I-cache on CPU0 844 [ 0.000000] CPU features: detected: ARM erratum 845719 845 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 846 [ 0.000000] Policy zone: DMA32 847 [ 0.000000] Kernel command line: root=UUID=51c33730-20c8-4007-8dc5-c3478d176211 rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1908 max_freq_a73=2208 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 848 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 849 Please use sysfs to set IO scheduler for individual devices. 850 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 851 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 852 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 853 [ 0.000000] software IO TLB: mapped [mem 0x000000003896d000-0x000000003c96d000] (64MB) 854 [ 0.000000] Memory: 2783972K/3891200K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 189724K reserved, 917504K cma-reserved) 855 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 856 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 857 [ 0.000000] rcu: RCU event tracing is enabled. 858 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 859 [ 0.000000] Trampoline variant of Tasks RCU enabled. 860 [ 0.000000] Rude variant of Tasks RCU enabled. 861 [ 0.000000] Tracing variant of Tasks RCU enabled. 862 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 863 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 864 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 865 [ 0.000000] GIC: Using split EOI/Deactivate mode 866 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 867 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 868 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 869 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 870 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 871 [ 0.000252] Console: colour dummy device 80x25 872 [ 0.000286] printk: console [tty1] enabled 873 [ 0.000375] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 874 [ 0.000386] pid_max: default: 32768 minimum: 301 875 [ 0.000470] LSM: Security Framework initializing 876 [ 0.000496] Yama: becoming mindful. 877 [ 0.000587] AppArmor: AppArmor initialized 878 [ 0.000638] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 879 [ 0.000656] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 880 [ 0.002660] rcu: Hierarchical SRCU implementation. 881 [ 0.005133] EFI services will not be available. 882 [ 0.005555] smp: Bringing up secondary CPUs ... 883 [ 0.006230] Detected VIPT I-cache on CPU1 884 [ 0.006293] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 885 [ 0.007489] CPU features: detected: ARM erratum 858921 886 [ 0.007497] CPU features: detected: Spectre-v2 887 [ 0.007501] CPU features: detected: Spectre-v4 888 [ 0.007507] Detected VIPT I-cache on CPU2 889 [ 0.007531] arch_timer: Enabling local workaround for ARM erratum 858921 890 [ 0.007546] arch_timer: CPU2: Trapping CNTVCT access 891 [ 0.007561] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 892 [ 0.008269] Detected VIPT I-cache on CPU3 893 [ 0.008285] arch_timer: Enabling local workaround for ARM erratum 858921 894 [ 0.008292] arch_timer: CPU3: Trapping CNTVCT access 895 [ 0.008300] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 896 [ 0.008928] Detected VIPT I-cache on CPU4 897 [ 0.008944] arch_timer: Enabling local workaround for ARM erratum 858921 898 [ 0.008951] arch_timer: CPU4: Trapping CNTVCT access 899 [ 0.008959] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 900 [ 0.009571] Detected VIPT I-cache on CPU5 901 [ 0.009587] arch_timer: Enabling local workaround for ARM erratum 858921 902 [ 0.009594] arch_timer: CPU5: Trapping CNTVCT access 903 [ 0.009602] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 904 [ 0.009683] smp: Brought up 1 node, 6 CPUs 905 [ 0.009700] SMP: Total of 6 processors activated. 906 [ 0.009708] CPU features: detected: 32-bit EL0 Support 907 [ 0.009714] CPU features: detected: CRC32 instructions 908 [ 0.009720] CPU features: detected: 32-bit EL1 Support 909 [ 0.020948] CPU: All CPU(s) started at EL2 910 [ 0.020999] alternatives: patching kernel code 911 [ 0.022996] devtmpfs: initialized 912 [ 0.030698] Registered cp15_barrier emulation handler 913 [ 0.030712] Registered setend emulation handler 914 [ 0.030849] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 915 [ 0.030887] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 916 [ 0.046165] pinctrl core: initialized pinctrl subsystem 917 [ 0.046874] DMI not present or invalid. 918 [ 0.047245] NET: Registered protocol family 16 919 [ 0.048774] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 920 [ 0.049065] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 921 [ 0.049294] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 922 [ 0.049336] audit: initializing netlink subsys (disabled) 923 [ 0.049445] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 924 [ 0.050851] thermal_sys: Registered thermal governor 'fair_share' 925 [ 0.050859] thermal_sys: Registered thermal governor 'bang_bang' 926 [ 0.050863] thermal_sys: Registered thermal governor 'step_wise' 927 [ 0.050866] thermal_sys: Registered thermal governor 'user_space' 928 [ 0.051288] cpuidle: using governor menu 929 [ 0.051632] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 930 [ 0.051753] ASID allocator initialised with 65536 entries 931 [ 0.052719] Serial: AMBA PL011 UART driver 932 [ 0.087742] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 933 [ 0.087755] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 934 [ 0.087761] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 935 [ 0.087766] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 936 [ 0.089343] cryptd: max_cpu_qlen set to 1000 937 [ 0.160211] raid6: neonx8 gen() 2785 MB/s 938 [ 0.228271] raid6: neonx8 xor() 2042 MB/s 939 [ 0.296365] raid6: neonx4 gen() 2998 MB/s 940 [ 0.364406] raid6: neonx4 xor() 2399 MB/s 941 [ 0.432474] raid6: neonx2 gen() 2552 MB/s 942 [ 0.500536] raid6: neonx2 xor() 2202 MB/s 943 [ 0.568605] raid6: neonx1 gen() 1924 MB/s 944 [ 0.636668] raid6: neonx1 xor() 1728 MB/s 945 [ 0.704738] raid6: int64x8 gen() 1374 MB/s 946 [ 0.772806] raid6: int64x8 xor() 735 MB/s 947 [ 0.840883] raid6: int64x4 gen() 1463 MB/s 948 [ 0.908943] raid6: int64x4 xor() 733 MB/s 949 [ 0.976994] raid6: int64x2 gen() 1362 MB/s 950 [ 1.045070] raid6: int64x2 xor() 619 MB/s 951 [ 1.113129] raid6: int64x1 gen() 1127 MB/s 952 [ 1.181191] raid6: int64x1 xor() 462 MB/s 953 [ 1.181194] raid6: using algorithm neonx4 gen() 2998 MB/s 954 [ 1.181197] raid6: .... xor() 2399 MB/s, rmw enabled 955 [ 1.181201] raid6: using neon recovery algorithm 956 [ 1.181673] ACPI: Interpreter disabled. 957 [ 1.182473] 5V: supplied by 12V 958 [ 1.183376] VDDAO_3V3: supplied by 12V 959 [ 1.183855] iommu: Default domain type: Translated 960 [ 1.183984] vgaarb: loaded 961 [ 1.184772] SCSI subsystem initialized 962 [ 1.185100] usbcore: registered new interface driver usbfs 963 [ 1.185149] usbcore: registered new interface driver hub 964 [ 1.185187] usbcore: registered new device driver usb 965 [ 1.185562] pps_core: LinuxPPS API ver. 1 registered 966 [ 1.185568] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 967 [ 1.185592] PTP clock support registered 968 [ 1.185783] EDAC MC: Ver: 3.0.0 969 [ 1.187140] NetLabel: Initializing 970 [ 1.187148] NetLabel: domain hash size = 128 971 [ 1.187151] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 972 [ 1.187191] NetLabel: unlabeled traffic allowed by default 973 [ 1.187669] clocksource: Switched to clocksource arch_sys_counter 974 [ 1.187880] VFS: Disk quotas dquot_6.6.0 975 [ 1.187925] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 976 [ 1.188298] AppArmor: AppArmor Filesystem Enabled 977 [ 1.188347] pnp: PnP ACPI: disabled 978 [ 1.193856] NET: Registered protocol family 2 979 [ 1.194318] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 980 [ 1.194421] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 981 [ 1.194678] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 982 [ 1.194865] TCP: Hash tables configured (established 32768 bind 32768) 983 [ 1.195016] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 984 [ 1.195079] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 985 [ 1.195125] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 986 [ 1.195270] NET: Registered protocol family 1 987 [ 1.195290] PCI: CLS 0 bytes, default 64 988 [ 1.195415] Trying to unpack rootfs image as initramfs... 989 [ 1.762842] Freeing initrd memory: 14920K 990 [ 1.763822] kvm [1]: IPA Size Limit: 40 bits 991 [ 1.764543] kvm [1]: vgic interrupt IRQ9 992 [ 1.764676] kvm [1]: Hyp mode initialized successfully 993 [ 1.769798] Initialise system trusted keyrings 994 [ 1.769827] Key type blacklist registered 995 [ 1.769927] workingset: timestamp_bits=44 max_order=20 bucket_order=0 996 [ 1.773093] zbud: loaded 997 [ 1.774106] squashfs: version 4.0 (2009/01/31) Phillip Lougher 998 [ 1.774566] fuse: init (API version 7.32) 999 [ 1.775314] integrity: Platform Keyring initialized 1000 [ 1.803129] xor: measuring software checksum speed 1001 [ 1.805973] 8regs : 3476 MB/sec 1002 [ 1.808426] 32regs : 4021 MB/sec 1003 [ 1.811073] arm64_neon : 3721 MB/sec 1004 [ 1.811076] xor: using function: 32regs (4021 MB/sec) 1005 [ 1.811085] Key type asymmetric registered 1006 [ 1.811088] Asymmetric key parser 'x509' registered 1007 [ 1.811119] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 1008 [ 1.811238] io scheduler mq-deadline registered 1009 [ 1.811242] io scheduler kyber registered 1010 [ 1.811313] io scheduler bfq registered 1011 [ 1.813839] gpio-447 (usb-hub-reset): hogged as output/high 1012 [ 1.816859] EINJ: ACPI disabled. 1013 [ 1.823011] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 1014 [ 1.824400] VCC_3V3: supplied by VDDAO_3V3 1015 [ 1.824432] FLASH_1V8: supplied by VCC_3V3 1016 [ 1.824465] VCC_1V8: supplied by VCC_3V3 1017 [ 1.824491] VDDAO_1V8: supplied by VDDAO_3V3 1018 [ 1.824518] VDDCPU_A: supplied by regulator-dummy 1019 [ 1.824853] VDDCPU_B: supplied by regulator-dummy 1020 [ 1.825479] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 1021 [ 1.827820] Serial: AMBA driver 1022 [ 1.828103] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 1023 [ 1.828195] printk: console [ttyAML0] enabled 1024 [ 1.828736] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 1025 [ 1.834024] loop: module loaded 1026 [ 1.835907] libphy: Fixed MDIO Bus: probed 1027 [ 1.837037] tun: Universal TUN/TAP device driver, 1.6 1028 [ 1.837667] thunder_xcv, ver 1.0 1029 [ 1.837696] thunder_bgx, ver 1.0 1030 [ 1.837725] nicpf, ver 1.0 1031 [ 1.838169] e1000e: Intel(R) PRO/1000 Network Driver 1032 [ 1.838172] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 1033 [ 1.838210] igb: Intel(R) Gigabit Ethernet Network Driver 1034 [ 1.838214] igb: Copyright (c) 2007-2014 Intel Corporation. 1035 [ 1.838242] igbvf: Intel(R) Gigabit Virtual Function Network Driver 1036 [ 1.838245] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 1037 [ 1.838365] sky2: driver version 1.30 1038 [ 1.838702] VFIO - User Level meta-driver version: 0.3 1039 [ 1.840110] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 1040 [ 1.840127] ehci-pci: EHCI PCI platform driver 1041 [ 1.840157] ehci-platform: EHCI generic platform driver 1042 [ 1.840292] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 1043 [ 1.840301] ohci-pci: OHCI PCI platform driver 1044 [ 1.840333] ohci-platform: OHCI generic platform driver 1045 [ 1.840760] usbcore: registered new interface driver usb-storage 1046 [ 1.842086] mousedev: PS/2 mouse device common for all mice 1047 [ 1.842470] i2c /dev entries driver 1048 [ 1.847832] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 1049 [ 1.848733] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 1050 [ 1.849656] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 1051 [ 1.850234] sdhci: Secure Digital Host Controller Interface driver 1052 [ 1.850238] sdhci: Copyright(c) Pierre Ossman 1053 [ 1.850319] Synopsys Designware Multimedia Card Interface Driver 1054 [ 1.850681] sdhci-pltfm: SDHCI platform and OF driver helper 1055 [ 1.851073] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 1056 [ 1.851379] ledtrig-cpu: registered to indicate activity on CPUs 1057 [ 1.851787] meson-sm: secure-monitor enabled 1058 [ 1.851929] hid: raw HID events driver (C) Jiri Kosina 1059 [ 1.852067] usbcore: registered new interface driver usbhid 1060 [ 1.852071] usbhid: USB HID core driver 1061 [ 1.852913] NET: Registered protocol family 10 1062 [ 1.853252] Segment Routing with IPv6 1063 [ 1.853274] NET: Registered protocol family 17 1064 [ 1.853317] 8021q: 802.1Q VLAN Support v1.8 1065 [ 1.853337] Key type dns_resolver registered 1066 [ 1.853569] registered taskstats version 1 1067 [ 1.853573] Loading compiled-in X.509 certificates 1068 [ 1.854987] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 1069 [ 1.856629] zswap: loaded using pool zstd/z3fold 1070 [ 1.856885] Key type ._fscrypt registered 1071 [ 1.856887] Key type .fscrypt registered 1072 [ 1.856889] Key type fscrypt-provisioning registered 1073 [ 1.857898] Btrfs loaded, crc32c=crc32c-generic 1074 [ 1.863431] Key type encrypted registered 1075 [ 1.863441] AppArmor: AppArmor sha1 policy hashing enabled 1076 [ 1.869052] HUB_5V: supplied by 5V 1077 [ 1.869246] USB_PWR_EN: supplied by 5V 1078 [ 1.870683] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 1079 [ 1.870689] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 1080 [ 1.873376] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 1081 [ 1.873420] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 1082 [ 1.873504] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 1083 [ 1.874018] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 1084 [ 1.874028] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 1085 [ 1.874107] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 1086 [ 1.874125] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 1087 [ 1.874235] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 1088 [ 1.874238] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1089 [ 1.874240] usb usb1: Product: xHCI Host Controller 1090 [ 1.874242] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 1091 [ 1.874244] usb usb1: SerialNumber: xhci-hcd.0.auto 1092 [ 1.874412] hub 1-0:1.0: USB hub found 1093 [ 1.874423] hub 1-0:1.0: 2 ports detected 1094 [ 1.874531] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 1095 [ 1.874536] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 1096 [ 1.874540] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 1097 [ 1.874557] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 1098 [ 1.874582] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 1099 [ 1.874584] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1100 [ 1.874586] usb usb2: Product: xHCI Host Controller 1101 [ 1.874588] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 1102 [ 1.874589] usb usb2: SerialNumber: xhci-hcd.0.auto 1103 [ 1.874708] hub 2-0:1.0: USB hub found 1104 [ 1.874717] hub 2-0:1.0: 1 port detected 1105 [ 1.874965] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 1106 [ 1.875880] meson-gx-mmc ffe05000.sd: Got CD GPIO 1107 [ 1.900732] Freeing unused kernel memory: 3328K 1108 [ 1.943705] Run /init as init process 1109 [ 1.943708] with arguments: 1110 [ 1.943710] /init 1111 [ 1.943712] with environment: 1112 [ 1.943714] HOME=/ 1113 [ 1.943715] TERM=linux 1114 [ 1.943717] hdmimode=custombuilt 1115 [ 1.943718] cvbsmode=576cvbs 1116 [ 1.943719] max_freq_a53=1908 1117 [ 1.943720] max_freq_a73=2208 1118 [ 1.943721] voutmode=hdmi 1119 [ 1.943723] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 1120 [ 1.943724] disablehpd=false 1121 [ 1.943725] cvbscable= 1122 [ 1.943726] overscan=100 1123 [ 2.045422] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 1124 [ 2.045429] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 1125 [ 2.045514] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 1126 [ 2.045904] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 1127 [ 2.045912] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 1128 [ 2.045915] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 1129 [ 2.045917] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 1130 [ 2.045919] meson8b-dwmac ff3f0000.ethernet: COE Type 2 1131 [ 2.045920] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 1132 [ 2.045922] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 1133 [ 2.045975] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 1134 [ 2.045977] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 1135 [ 2.045979] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 1136 [ 2.046146] libphy: stmmac: probed 1137 [ 2.048331] libphy: mdio_mux: probed 1138 [ 2.058504] meson-vrtc ff8000a8.rtc: registered as rtc1 1139 [ 2.068029] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 1140 [ 2.068522] rtc-pcf8563 1-0051: registered as rtc0 1141 [ 2.070528] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 1142 [ 2.070540] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 1143 [ 2.113770] mmc0: new ultra high speed SDR104 SDXC card at address aaaa 1144 [ 2.114320] mmcblk0: mmc0:aaaa SH64G 59.5 GiB 1145 [ 2.116482] mmcblk0: p1 1146 [ 2.130432] mmc1: new HS200 MMC card at address 0001 1147 [ 2.130953] mmcblk1: mmc1:0001 CJTD4R 58.2 GiB 1148 [ 2.131210] mmcblk1boot0: mmc1:0001 CJTD4R partition 1 4.00 MiB 1149 [ 2.131469] mmcblk1boot1: mmc1:0001 CJTD4R partition 2 4.00 MiB 1150 [ 2.131641] mmcblk1rpmb: mmc1:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 1151 [ 2.132790] mmcblk1: p1 1152 [ 2.139423] random: fast init done 1153 [ 2.207791] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 1154 [ 2.232430] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 1155 [ 2.232435] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1156 [ 2.232438] usb 2-1: Product: USB3.1 Hub 1157 [ 2.232439] usb 2-1: Manufacturer: GenesysLogic 1158 [ 2.254421] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 1159 [ 2.258843] hub 2-1:1.0: USB hub found 1160 [ 2.259130] hub 2-1:1.0: 4 ports detected 1161 [ 2.260102] libphy: mdio_mux: probed 1162 [ 2.355678] usb 1-1: new high-speed USB device number 2 using xhci-hcd 1163 [ 2.427320] systemd[1]: System time before build time, advancing clock. 1164 [ 2.430837] systemd[1]: Inserted module 'autofs4' 1165 [ 2.448091] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 1166 [ 2.448283] systemd[1]: Detected architecture arm64. 1167 [ 2.473691] systemd[1]: Set hostname to <odroidn2>. 1168 [ 2.506275] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 1169 [ 2.506283] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1170 [ 2.506286] usb 1-1: Product: USB2.1 Hub 1171 [ 2.506288] usb 1-1: Manufacturer: GenesysLogic 1172 [ 2.546871] hub 1-1:1.0: USB hub found 1173 [ 2.547100] hub 1-1:1.0: 4 ports detected 1174 [ 2.630136] random: systemd: uninitialized urandom read (16 bytes read) 1175 [ 2.632761] random: systemd: uninitialized urandom read (16 bytes read) 1176 [ 2.633537] systemd[1]: Created slice User and Session Slice. 1177 [ 2.633733] random: systemd: uninitialized urandom read (16 bytes read) 1178 [ 2.633749] systemd[1]: Reached target System Time Synchronized. 1179 [ 2.634074] systemd[1]: Listening on Journal Audit Socket. 1180 [ 2.634274] systemd[1]: Listening on Journal Socket (/dev/log). 1181 [ 2.634984] systemd[1]: Created slice system-getty.slice. 1182 [ 2.635196] systemd[1]: Listening on Syslog Socket. 1183 [ 2.635275] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 1184 [ 2.672878] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 1185 [ 2.901176] pwm-gpio pwmgpio: 1 gpio pwms loaded 1186 [ 2.923211] zram: Added device: zram0 1187 [ 2.923533] zram: Added device: zram1 1188 [ 2.923699] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 1189 [ 2.924611] zram: Added device: zram2 1190 [ 2.974166] zram0: detected capacity change from 0 to 1904500736 1191 [ 2.991146] meson-drm ff900000.vpu: Queued 2 outputs on vpu 1192 [ 2.992256] mc: Linux media interface: v0.10 1193 [ 3.002672] meson-drm ff900000.vpu: CVBS Output connector not available 1194 [ 3.003568] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 1195 [ 3.005342] videodev: Linux video capture interface: v2.00 1196 [ 3.031940] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 1197 [ 3.035977] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 1198 [ 3.036231] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 1199 [ 3.038732] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 1200 [ 3.050761] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 1201 [ 3.050768] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 1202 [ 3.050771] usb 1-1.1: Product: USB OPTICAL MOUSE 1203 [ 3.052486] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 1204 [ 3.063307] panfrost ffe40000.gpu: clock rate = 24000000 1205 [ 3.063365] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 1206 [ 3.064188] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 1207 [ 3.064198] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 1208 [ 3.064202] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 1209 [ 3.064205] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 1210 [ 3.079765] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 1211 [ 3.093258] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input1 1212 [ 3.093419] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 1213 [ 3.095901] Registered IR keymap rc-odroid 1214 [ 3.102418] IR NEC protocol handler initialized 1215 [ 3.132144] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 1216 [ 3.132243] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 1217 [ 3.132296] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0 1218 [ 3.132549] meson-ir ff808000.ir: receiver initialized 1219 [ 3.199693] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 1220 [ 3.328488] Console: switching to colour frame buffer device 240x67 1221 [ 3.328844] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 1222 [ 3.328847] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1223 [ 3.328849] usb 1-1.3: Product: USB Keyboard 1224 [ 3.328850] usb 1-1.3: Manufacturer: Logitech 1225 [ 3.350347] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 1226 [ 3.378054] axg-sound-card sound: ASoC: no DMI vendor name! 1227 [ 3.415502] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input2 1228 [ 3.471954] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 1229 [ 3.477887] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 1230 [ 3.535745] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input4 1231 [ 3.535815] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 1232 [ 3.783660] usb 1-1.2: new high-speed USB device number 5 using xhci-hcd 1233 [ 3.907952] usb 1-1.2: New USB device found, idVendor=0781, idProduct=55a1, bcdDevice= 1.00 1234 [ 3.907954] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 1235 [ 3.907957] usb 1-1.2: Product: Cruzer Spark 1236 [ 3.907958] usb 1-1.2: Manufacturer: SanDisk 1237 [ 3.907960] usb 1-1.2: SerialNumber: 4C530001231009114503 1238 [ 3.908367] usb-storage 1-1.2:1.0: USB Mass Storage device detected 1239 [ 3.908629] scsi host0: usb-storage 1-1.2:1.0 1240 [ 3.919734] usbcore: registered new interface driver uas 1241 [ 4.003688] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 1242 [ 4.048359] zram1: detected capacity change from 0 to 52428800 1243 [ 4.928493] scsi 0:0:0:0: Direct-Access SanDisk Cruzer Spark 1.00 PQ: 0 ANSI: 6 1244 [ 4.929397] sd 0:0:0:0: [sda] 240451584 512-byte logical blocks: (123 GB/115 GiB) 1245 [ 4.930584] sd 0:0:0:0: [sda] Write Protect is off 1246 [ 4.930589] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00 1247 [ 4.930820] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA 1248 [ 4.934204] sd 0:0:0:0: Attached scsi generic sg0 type 0 1249 [ 4.955190] sda: sda1 1250 [ 4.957663] sd 0:0:0:0: [sda] Attached SCSI removable disk 1251 [ 6.091970] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 1252 [ 6.091986] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 1253 [ 6.936168] systemd-journald[1862]: Received request to flush runtime journal from PID 1 1254 1255 ### armbian-release: 1256 1257 # PLEASE DO NOT EDIT THIS FILE 1258 BOARD=odroidn2 1259 BOARD_NAME="Odroid N2" 1260 BOARDFAMILY=meson-g12b 1261 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 1262 BUILD_REPOSITORY_COMMIT=e846ef656-dirty 1263 DISTRIBUTION_CODENAME=buster 1264 DISTRIBUTION_STATUS=supported 1265 VERSION=21.02.3 1266 LINUXFAMILY=meson64 1267 BRANCH=current 1268 ARCH=arm64 1269 IMAGE_TYPE=stable 1270 BOARD_TYPE=conf 1271 INITRD_ARCH=arm64 1272 KERNEL_IMAGE_TYPE=Image 1273 1274 ### boot environment: 1275 1276 verbosity=1 1277 console=both 1278 overlay_prefix=meson 1279 bootlogo=true 1280 rootdev=UUID=51c33730-20c8-4007-8dc5-c3478d176211 1281 rootfstype=ext4 1282 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 1283 1284 ### lsusb: 1285 1286 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 1287 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 1288 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 1289 Bus 001 Device 005: ID 0781:55a1 SanDisk Corp. 1290 Bus 001 Device 003: ID 275d:0ba6 1291 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 1292 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1293 1294 ### lscpu: 1295 1296 Architecture: aarch64 1297 Byte Order: Little Endian 1298 CPU(s): 6 1299 On-line CPU(s) list: 0-5 1300 Thread(s) per core: 1 1301 Core(s) per socket: 3 1302 Socket(s): 2 1303 NUMA node(s): 1 1304 Vendor ID: ARM 1305 Model: 4 1306 Model name: Cortex-A53 1307 Stepping: r0p4 1308 CPU max MHz: 2400.0000 1309 CPU min MHz: 100.0000 1310 BogoMIPS: 48.00 1311 L1d cache: unknown size 1312 L1i cache: unknown size 1313 L2 cache: unknown size 1314 NUMA node0 CPU(s): 0-5 1315 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1316 1317 ### cpuinfo: 1318 1319 processor : 0 1320 BogoMIPS : 48.00 1321 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1322 CPU implementer : 0x41 1323 CPU architecture: 8 1324 CPU variant : 0x0 1325 CPU part : 0xd03 1326 CPU revision : 4 1327 1328 processor : 1 1329 BogoMIPS : 48.00 1330 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1331 CPU implementer : 0x41 1332 CPU architecture: 8 1333 CPU variant : 0x0 1334 CPU part : 0xd03 1335 CPU revision : 4 1336 1337 processor : 2 1338 BogoMIPS : 48.00 1339 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1340 CPU implementer : 0x41 1341 CPU architecture: 8 1342 CPU variant : 0x0 1343 CPU part : 0xd09 1344 CPU revision : 2 1345 1346 processor : 3 1347 BogoMIPS : 48.00 1348 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1349 CPU implementer : 0x41 1350 CPU architecture: 8 1351 CPU variant : 0x0 1352 CPU part : 0xd09 1353 CPU revision : 2 1354 1355 processor : 4 1356 BogoMIPS : 48.00 1357 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1358 CPU implementer : 0x41 1359 CPU architecture: 8 1360 CPU variant : 0x0 1361 CPU part : 0xd09 1362 CPU revision : 2 1363 1364 processor : 5 1365 BogoMIPS : 48.00 1366 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1367 CPU implementer : 0x41 1368 CPU architecture: 8 1369 CPU variant : 0x0 1370 CPU part : 0xd09 1371 CPU revision : 2 1372 1373 1374 ### meminfo: 1375 1376 MemTotal: 3719724 kB 1377 MemFree: 3401804 kB 1378 MemAvailable: 3358912 kB 1379 Buffers: 12544 kB 1380 Cached: 49840 kB 1381 SwapCached: 0 kB 1382 Active: 33620 kB 1383 Inactive: 166504 kB 1384 Active(anon): 164 kB 1385 Inactive(anon): 142776 kB 1386 Active(file): 33456 kB 1387 Inactive(file): 23728 kB 1388 Unevictable: 0 kB 1389 Mlocked: 0 kB 1390 SwapTotal: 1859860 kB 1391 SwapFree: 1859860 kB 1392 Dirty: 2832 kB 1393 Writeback: 0 kB 1394 AnonPages: 137908 kB 1395 Mapped: 15200 kB 1396 Shmem: 5028 kB 1397 KReclaimable: 13748 kB 1398 Slab: 46248 kB 1399 SReclaimable: 13748 kB 1400 SUnreclaim: 32500 kB 1401 KernelStack: 2592 kB 1402 PageTables: 6580 kB 1403 NFS_Unstable: 0 kB 1404 Bounce: 0 kB 1405 WritebackTmp: 0 kB 1406 CommitLimit: 3719720 kB 1407 Committed_AS: 4249524 kB 1408 VmallocTotal: 135290159040 kB 1409 VmallocUsed: 31524 kB 1410 VmallocChunk: 0 kB 1411 Percpu: 1416 kB 1412 HardwareCorrupted: 0 kB 1413 AnonHugePages: 0 kB 1414 ShmemHugePages: 0 kB 1415 ShmemPmdMapped: 0 kB 1416 FileHugePages: 0 kB 1417 FilePmdMapped: 0 kB 1418 CmaTotal: 917504 kB 1419 CmaFree: 901724 kB 1420 HugePages_Total: 0 1421 HugePages_Free: 0 1422 HugePages_Rsvd: 0 1423 HugePages_Surp: 0 1424 Hugepagesize: 2048 kB 1425 Hugetlb: 0 kB 1426 1427 ### virtual memory: 1428 1429 vm.admin_reserve_kbytes = 8192 1430 vm.block_dump = 0 1431 vm.compaction_proactiveness = 20 1432 vm.compact_unevictable_allowed = 1 1433 vm.dirty_background_bytes = 0 1434 vm.dirty_background_ratio = 10 1435 vm.dirty_bytes = 0 1436 vm.dirty_expire_centisecs = 3000 1437 vm.dirty_ratio = 20 1438 vm.dirtytime_expire_seconds = 43200 1439 vm.dirty_writeback_centisecs = 500 1440 vm.extfrag_threshold = 500 1441 vm.hugetlb_shm_group = 0 1442 vm.laptop_mode = 0 1443 vm.legacy_va_layout = 0 1444 vm.lowmem_reserve_ratio = 256 256 32 0 1445 vm.max_map_count = 65530 1446 vm.memory_failure_early_kill = 0 1447 vm.memory_failure_recovery = 1 1448 vm.min_free_kbytes = 45056 1449 vm.min_slab_ratio = 5 1450 vm.min_unmapped_ratio = 1 1451 vm.mmap_min_addr = 4096 1452 vm.mmap_rnd_bits = 18 1453 vm.mmap_rnd_compat_bits = 11 1454 vm.nr_hugepages = 0 1455 vm.nr_hugepages_mempolicy = 0 1456 vm.nr_overcommit_hugepages = 0 1457 vm.numa_stat = 1 1458 vm.numa_zonelist_order = Node 1459 vm.oom_dump_tasks = 1 1460 vm.oom_kill_allocating_task = 0 1461 vm.overcommit_kbytes = 0 1462 vm.overcommit_memory = 0 1463 vm.overcommit_ratio = 50 1464 vm.page-cluster = 0 1465 vm.page_lock_unfairness = 5 1466 vm.panic_on_oom = 0 1467 vm.percpu_pagelist_fraction = 0 1468 vm.stat_interval = 1 1469 vm.swappiness = 100 1470 vm.user_reserve_kbytes = 115015 1471 vm.vfs_cache_pressure = 100 1472 vm.watermark_boost_factor = 15000 1473 vm.watermark_scale_factor = 10 1474 vm.zone_reclaim_mode = 0 1475 1476 ### ip addr: 1477 1478 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 1479 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 1480 inet XXX.XXX.0.1/8 scope host lo 1481 valid_lft forever preferred_lft forever 1482 inet6 ::1/128 scope host 1483 valid_lft forever preferred_lft forever 1484 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 1485 link/ether 00:1e:06:42:52:64 brd ff:ff:ff:ff:ff:ff 1486 1487 ### partitions: 1488 1489 major minor #blocks name 1490 1491 179 0 62367744 mmcblk0 1492 179 1 62366720 mmcblk0p1 1493 179 32 61071360 mmcblk1 1494 179 33 60456544 mmcblk1p1 1495 252 0 1859864 zram0 1496 252 1 51200 zram1 1497 8 0 120225792 sda 1498 8 1 120225760 sda1 1499 1500 ### df: 1501 1502 udev 1.4G 0 1.4G 0% /dev 1503 tmpfs 364M 5.0M 359M 2% /run 1504 /dev/mmcblk1p1 57G 20G 37G 36% / 1505 tmpfs 1.8G 0 1.8G 0% /dev/shm 1506 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 1507 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 1508 tmpfs 1.8G 0 1.8G 0% /tmp 1509 /dev/zram1 49M 2.9M 43M 7% /var/log 1510 1511 ### lsblk: 1512 1513 NAME FSTYPE SIZE MOUNTPOINT UUID 1514 sda 114.7G 1515 └─sda1 ntfs 114.7G 1CB8167CB816549C 1516 mmcblk0 59.5G 1517 └─mmcblk0p1 ext4 59.5G 83574bbb-e4ac-4398-8436-9962a3c61cdf 1518 mmcblk1 58.2G 1519 └─mmcblk1p1 ext4 57.7G / 51c33730-20c8-4007-8dc5-c3478d176211 1520 mmcblk1boot0 4M 1521 mmcblk1boot1 4M 1522 zram1 50M /var/log 1523 1524 ### zramctl: 1525 1526 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 1527 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 1528 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 1529 1530 ### mtab: 1531 1532 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 1533 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 1534 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 1535 1536 ### mmc0:aaaa info: 1537 1538 fwrev: 0x0 1539 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SH64G MODALIAS=mmc:block 1540 cid: 035344534836344780559b2001014a00 1541 rca: 0xaaaa 1542 csd: 400e0032db790001dbd37f800a404000 1543 manfid: 0x000003 1544 ocr: 0x00200000 1545 preferred_erase_size: 4194304 1546 type: SD 1547 hwrev: 0x8 1548 date: 10/2020 1549 dsr: 0x404 1550 erase_size: 512 1551 oemid: 0x5344 1552 serial: 0x559b2001 1553 ssr: 0000000008000000040090000f05391e000800000001000003000000000000000000000000000000000000000000000000000000000000000000000000000000 1554 scr: 0245848300000000 1555 name: SH64G 1556 1557 ### mmc1:0001 info: 1558 1559 fwrev: 0x0400000000000000 1560 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=CJTD4R MODALIAS=mmc:block 1561 cid: 150100434a54443452042559facb7700 1562 rel_sectors: 0x1 1563 enhanced_rpmb_supported: 0x1 1564 rca: 0x0001 1565 pre_eol_info: 0x01 1566 csd: d02701320f5903fff6dbffef8e404000 1567 manfid: 0x000015 1568 ocr: 0x00200000 1569 preferred_erase_size: 4194304 1570 enhanced_area_offset: 18446744073709551594 1571 raw_rpmb_size_mult: 0x20 1572 type: MMC 1573 hwrev: 0x0 1574 date: 07/2020 1575 prv: 0x4 1576 ffu_capable: 1 1577 dsr: 0x404 1578 erase_size: 524288 1579 life_time: 0x01 0x01 1580 enhanced_area_size: 4294967274 1581 oemid: 0x0100 1582 serial: 0x2559facb 1583 cmdq_en: 0 1584 rev: 0x8 1585 name: CJTD4R 1586 1587 ### Boot system health: 1588 1589 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 1590 18:36:31: 2400/2016MHz 0.16 23% 14% 7% 0% 1% 0% 24.3°C 0/12 1591 18:36:31: 2400/2016MHz 0.16 32% 22% 8% 1% 0% 0% 23.0°C 0/12 1592 18:36:32: 2400/2016MHz 0.16 18% 8% 9% 0% 0% 0% 22.1°C 0/12 1593 18:36:32: 2400/2016MHz 0.16 31% 16% 12% 0% 0% 0% 23.9°C 0/12 1594 18:36:32: 2400/2016MHz 0.16 89% 36% 31% 0% 17% 3% 25.4°C 0/12 1595 1596 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 1597 1598 ### Activated Armbian ramlog partition with zstd compression 1599 1600 Tue 30 Mar 2021 07:19:37 PM CEST | Odroid N2 | 21.02.3 | arm64 | aarch64 | 5.10.21-meson64 1601 1602 ### dmesg: 1603 1604 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 1605 [ 0.000000] Linux version 5.10.21-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.3 SMP PREEMPT Mon Mar 8 07:22:00 UTC 2021 1606 [ 0.000000] Machine model: Hardkernel ODROID-N2Plus 1607 [ 0.000000] efi: UEFI not found. 1608 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 1609 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 1610 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 1611 [ 0.000000] NUMA: No NUMA configuration found 1612 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 1613 [ 0.000000] NUMA: NODE_DATA [mem 0xb502e100-0xb502ffff] 1614 [ 0.000000] Zone ranges: 1615 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 1616 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 1617 [ 0.000000] Normal empty 1618 [ 0.000000] Movable zone start for each node 1619 [ 0.000000] Early memory node ranges 1620 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 1621 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 1622 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 1623 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 1624 [ 0.000000] On node 0 totalpages: 972800 1625 [ 0.000000] DMA zone: 4096 pages used for memmap 1626 [ 0.000000] DMA zone: 0 pages reserved 1627 [ 0.000000] DMA zone: 262144 pages, LIFO batch:63 1628 [ 0.000000] DMA32 zone: 11104 pages used for memmap 1629 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 1630 [ 0.000000] psci: probing for conduit method from DT. 1631 [ 0.000000] psci: PSCIv1.0 detected in firmware. 1632 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 1633 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 1634 [ 0.000000] psci: SMC Calling Convention v1.1 1635 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 1636 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 1637 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 1638 [ 0.000000] Detected VIPT I-cache on CPU0 1639 [ 0.000000] CPU features: detected: ARM erratum 845719 1640 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 1641 [ 0.000000] Policy zone: DMA32 1642 [ 0.000000] Kernel command line: root=UUID=51c33730-20c8-4007-8dc5-c3478d176211 rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1908 max_freq_a73=2208 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 1643 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 1644 Please use sysfs to set IO scheduler for individual devices. 1645 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 1646 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 1647 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 1648 [ 0.000000] software IO TLB: mapped [mem 0x000000003896d000-0x000000003c96d000] (64MB) 1649 [ 0.000000] Memory: 2783972K/3891200K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 189724K reserved, 917504K cma-reserved) 1650 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 1651 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 1652 [ 0.000000] rcu: RCU event tracing is enabled. 1653 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 1654 [ 0.000000] Trampoline variant of Tasks RCU enabled. 1655 [ 0.000000] Rude variant of Tasks RCU enabled. 1656 [ 0.000000] Tracing variant of Tasks RCU enabled. 1657 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 1658 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 1659 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 1660 [ 0.000000] GIC: Using split EOI/Deactivate mode 1661 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 1662 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 1663 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 1664 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 1665 [ 0.000005] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 1666 [ 0.000254] Console: colour dummy device 80x25 1667 [ 0.000288] printk: console [tty1] enabled 1668 [ 0.000376] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 1669 [ 0.000389] pid_max: default: 32768 minimum: 301 1670 [ 0.000473] LSM: Security Framework initializing 1671 [ 0.000499] Yama: becoming mindful. 1672 [ 0.000590] AppArmor: AppArmor initialized 1673 [ 0.000641] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 1674 [ 0.000660] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 1675 [ 0.002661] rcu: Hierarchical SRCU implementation. 1676 [ 0.005120] EFI services will not be available. 1677 [ 0.005543] smp: Bringing up secondary CPUs ... 1678 [ 0.006215] Detected VIPT I-cache on CPU1 1679 [ 0.006277] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 1680 [ 0.007468] CPU features: detected: ARM erratum 858921 1681 [ 0.007477] CPU features: detected: Spectre-v2 1682 [ 0.007481] CPU features: detected: Spectre-v4 1683 [ 0.007487] Detected VIPT I-cache on CPU2 1684 [ 0.007513] arch_timer: Enabling local workaround for ARM erratum 858921 1685 [ 0.007527] arch_timer: CPU2: Trapping CNTVCT access 1686 [ 0.007542] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 1687 [ 0.008253] Detected VIPT I-cache on CPU3 1688 [ 0.008269] arch_timer: Enabling local workaround for ARM erratum 858921 1689 [ 0.008276] arch_timer: CPU3: Trapping CNTVCT access 1690 [ 0.008284] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 1691 [ 0.008912] Detected VIPT I-cache on CPU4 1692 [ 0.008929] arch_timer: Enabling local workaround for ARM erratum 858921 1693 [ 0.008936] arch_timer: CPU4: Trapping CNTVCT access 1694 [ 0.008944] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 1695 [ 0.009557] Detected VIPT I-cache on CPU5 1696 [ 0.009574] arch_timer: Enabling local workaround for ARM erratum 858921 1697 [ 0.009580] arch_timer: CPU5: Trapping CNTVCT access 1698 [ 0.009589] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 1699 [ 0.009670] smp: Brought up 1 node, 6 CPUs 1700 [ 0.009687] SMP: Total of 6 processors activated. 1701 [ 0.009695] CPU features: detected: 32-bit EL0 Support 1702 [ 0.009700] CPU features: detected: CRC32 instructions 1703 [ 0.009706] CPU features: detected: 32-bit EL1 Support 1704 [ 0.020967] CPU: All CPU(s) started at EL2 1705 [ 0.021018] alternatives: patching kernel code 1706 [ 0.023019] devtmpfs: initialized 1707 [ 0.030692] Registered cp15_barrier emulation handler 1708 [ 0.030705] Registered setend emulation handler 1709 [ 0.030872] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 1710 [ 0.030916] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 1711 [ 0.046165] pinctrl core: initialized pinctrl subsystem 1712 [ 0.046911] DMI not present or invalid. 1713 [ 0.047281] NET: Registered protocol family 16 1714 [ 0.048877] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 1715 [ 0.049150] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 1716 [ 0.049384] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 1717 [ 0.049425] audit: initializing netlink subsys (disabled) 1718 [ 0.049519] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 1719 [ 0.050793] thermal_sys: Registered thermal governor 'fair_share' 1720 [ 0.050800] thermal_sys: Registered thermal governor 'bang_bang' 1721 [ 0.050804] thermal_sys: Registered thermal governor 'step_wise' 1722 [ 0.050807] thermal_sys: Registered thermal governor 'user_space' 1723 [ 0.051239] cpuidle: using governor menu 1724 [ 0.051584] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 1725 [ 0.051707] ASID allocator initialised with 65536 entries 1726 [ 0.052705] Serial: AMBA PL011 UART driver 1727 [ 0.086561] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 1728 [ 0.086572] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 1729 [ 0.086577] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 1730 [ 0.086581] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 1731 [ 0.089033] cryptd: max_cpu_qlen set to 1000 1732 [ 0.156247] raid6: neonx8 gen() 2780 MB/s 1733 [ 0.224285] raid6: neonx8 xor() 2041 MB/s 1734 [ 0.292351] raid6: neonx4 gen() 2996 MB/s 1735 [ 0.360413] raid6: neonx4 xor() 2346 MB/s 1736 [ 0.428477] raid6: neonx2 gen() 2581 MB/s 1737 [ 0.496540] raid6: neonx2 xor() 2131 MB/s 1738 [ 0.564603] raid6: neonx1 gen() 1965 MB/s 1739 [ 0.632669] raid6: neonx1 xor() 1721 MB/s 1740 [ 0.700737] raid6: int64x8 gen() 1376 MB/s 1741 [ 0.768802] raid6: int64x8 xor() 735 MB/s 1742 [ 0.836884] raid6: int64x4 gen() 1463 MB/s 1743 [ 0.904930] raid6: int64x4 xor() 733 MB/s 1744 [ 0.972995] raid6: int64x2 gen() 1363 MB/s 1745 [ 1.041047] raid6: int64x2 xor() 619 MB/s 1746 [ 1.109109] raid6: int64x1 gen() 1127 MB/s 1747 [ 1.177172] raid6: int64x1 xor() 462 MB/s 1748 [ 1.177176] raid6: using algorithm neonx4 gen() 2996 MB/s 1749 [ 1.177179] raid6: .... xor() 2346 MB/s, rmw enabled 1750 [ 1.177183] raid6: using neon recovery algorithm 1751 [ 1.177662] ACPI: Interpreter disabled. 1752 [ 1.178444] 5V: supplied by 12V 1753 [ 1.179346] VDDAO_3V3: supplied by 12V 1754 [ 1.179821] iommu: Default domain type: Translated 1755 [ 1.179954] vgaarb: loaded 1756 [ 1.181008] SCSI subsystem initialized 1757 [ 1.181310] usbcore: registered new interface driver usbfs 1758 [ 1.181348] usbcore: registered new interface driver hub 1759 [ 1.181389] usbcore: registered new device driver usb 1760 [ 1.181640] pps_core: LinuxPPS API ver. 1 registered 1761 [ 1.181643] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 1762 [ 1.181670] PTP clock support registered 1763 [ 1.181859] EDAC MC: Ver: 3.0.0 1764 [ 1.183187] NetLabel: Initializing 1765 [ 1.183195] NetLabel: domain hash size = 128 1766 [ 1.183197] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 1767 [ 1.183237] NetLabel: unlabeled traffic allowed by default 1768 [ 1.183696] clocksource: Switched to clocksource arch_sys_counter 1769 [ 1.183906] VFS: Disk quotas dquot_6.6.0 1770 [ 1.183949] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 1771 [ 1.184375] AppArmor: AppArmor Filesystem Enabled 1772 [ 1.184424] pnp: PnP ACPI: disabled 1773 [ 1.189882] NET: Registered protocol family 2 1774 [ 1.190317] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 1775 [ 1.190421] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 1776 [ 1.190677] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 1777 [ 1.190865] TCP: Hash tables configured (established 32768 bind 32768) 1778 [ 1.191018] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 1779 [ 1.191082] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 1780 [ 1.191128] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 1781 [ 1.191272] NET: Registered protocol family 1 1782 [ 1.191291] PCI: CLS 0 bytes, default 64 1783 [ 1.191414] Trying to unpack rootfs image as initramfs... 1784 [ 1.758556] Freeing initrd memory: 14920K 1785 [ 1.759490] kvm [1]: IPA Size Limit: 40 bits 1786 [ 1.760229] kvm [1]: vgic interrupt IRQ9 1787 [ 1.760362] kvm [1]: Hyp mode initialized successfully 1788 [ 1.765564] Initialise system trusted keyrings 1789 [ 1.765600] Key type blacklist registered 1790 [ 1.765739] workingset: timestamp_bits=44 max_order=20 bucket_order=0 1791 [ 1.768922] zbud: loaded 1792 [ 1.769905] squashfs: version 4.0 (2009/01/31) Phillip Lougher 1793 [ 1.770374] fuse: init (API version 7.32) 1794 [ 1.771123] integrity: Platform Keyring initialized 1795 [ 1.798598] xor: measuring software checksum speed 1796 [ 1.801544] 8regs : 3476 MB/sec 1797 [ 1.804000] 32regs : 4019 MB/sec 1798 [ 1.806648] arm64_neon : 3720 MB/sec 1799 [ 1.806651] xor: using function: 32regs (4019 MB/sec) 1800 [ 1.806659] Key type asymmetric registered 1801 [ 1.806663] Asymmetric key parser 'x509' registered 1802 [ 1.806701] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 1803 [ 1.806813] io scheduler mq-deadline registered 1804 [ 1.806817] io scheduler kyber registered 1805 [ 1.806905] io scheduler bfq registered 1806 [ 1.809470] gpio-447 (usb-hub-reset): hogged as output/high 1807 [ 1.812475] EINJ: ACPI disabled. 1808 [ 1.818686] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 1809 [ 1.820149] VCC_3V3: supplied by VDDAO_3V3 1810 [ 1.820182] FLASH_1V8: supplied by VCC_3V3 1811 [ 1.820228] VCC_1V8: supplied by VCC_3V3 1812 [ 1.820254] VDDAO_1V8: supplied by VDDAO_3V3 1813 [ 1.820285] VDDCPU_A: supplied by regulator-dummy 1814 [ 1.820640] VDDCPU_B: supplied by regulator-dummy 1815 [ 1.821364] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 1816 [ 1.823744] Serial: AMBA driver 1817 [ 1.824064] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 1818 [ 1.824155] printk: console [ttyAML0] enabled 1819 [ 1.824668] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 1820 [ 1.829914] loop: module loaded 1821 [ 1.831806] libphy: Fixed MDIO Bus: probed 1822 [ 1.832759] tun: Universal TUN/TAP device driver, 1.6 1823 [ 1.833454] thunder_xcv, ver 1.0 1824 [ 1.833484] thunder_bgx, ver 1.0 1825 [ 1.833510] nicpf, ver 1.0 1826 [ 1.833960] e1000e: Intel(R) PRO/1000 Network Driver 1827 [ 1.833963] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 1828 [ 1.833998] igb: Intel(R) Gigabit Ethernet Network Driver 1829 [ 1.834001] igb: Copyright (c) 2007-2014 Intel Corporation. 1830 [ 1.834035] igbvf: Intel(R) Gigabit Virtual Function Network Driver 1831 [ 1.834038] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 1832 [ 1.834159] sky2: driver version 1.30 1833 [ 1.834502] VFIO - User Level meta-driver version: 0.3 1834 [ 1.835929] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 1835 [ 1.835947] ehci-pci: EHCI PCI platform driver 1836 [ 1.835980] ehci-platform: EHCI generic platform driver 1837 [ 1.836114] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 1838 [ 1.836124] ohci-pci: OHCI PCI platform driver 1839 [ 1.836156] ohci-platform: OHCI generic platform driver 1840 [ 1.836577] usbcore: registered new interface driver usb-storage 1841 [ 1.837903] mousedev: PS/2 mouse device common for all mice 1842 [ 1.838279] i2c /dev entries driver 1843 [ 1.843598] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 1844 [ 1.844512] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 1845 [ 1.845180] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 1846 [ 1.845750] sdhci: Secure Digital Host Controller Interface driver 1847 [ 1.845754] sdhci: Copyright(c) Pierre Ossman 1848 [ 1.845835] Synopsys Designware Multimedia Card Interface Driver 1849 [ 1.846184] sdhci-pltfm: SDHCI platform and OF driver helper 1850 [ 1.846560] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 1851 [ 1.846901] ledtrig-cpu: registered to indicate activity on CPUs 1852 [ 1.847112] meson-sm: secure-monitor enabled 1853 [ 1.847487] hid: raw HID events driver (C) Jiri Kosina 1854 [ 1.847564] usbcore: registered new interface driver usbhid 1855 [ 1.847565] usbhid: USB HID core driver 1856 [ 1.848535] NET: Registered protocol family 10 1857 [ 1.848936] Segment Routing with IPv6 1858 [ 1.848961] NET: Registered protocol family 17 1859 [ 1.849020] 8021q: 802.1Q VLAN Support v1.8 1860 [ 1.849044] Key type dns_resolver registered 1861 [ 1.849280] registered taskstats version 1 1862 [ 1.849284] Loading compiled-in X.509 certificates 1863 [ 1.850697] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 1864 [ 1.852180] zswap: loaded using pool zstd/z3fold 1865 [ 1.852356] Key type ._fscrypt registered 1866 [ 1.852358] Key type .fscrypt registered 1867 [ 1.852359] Key type fscrypt-provisioning registered 1868 [ 1.853372] Btrfs loaded, crc32c=crc32c-generic 1869 [ 1.858569] Key type encrypted registered 1870 [ 1.858580] AppArmor: AppArmor sha1 policy hashing enabled 1871 [ 1.864196] HUB_5V: supplied by 5V 1872 [ 1.864374] USB_PWR_EN: supplied by 5V 1873 [ 1.865796] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 1874 [ 1.865803] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 1875 [ 1.868467] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 1876 [ 1.868519] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 1877 [ 1.868603] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 1878 [ 1.869106] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 1879 [ 1.869116] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 1880 [ 1.869195] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 1881 [ 1.869214] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 1882 [ 1.869326] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 1883 [ 1.869329] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1884 [ 1.869331] usb usb1: Product: xHCI Host Controller 1885 [ 1.869333] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 1886 [ 1.869335] usb usb1: SerialNumber: xhci-hcd.0.auto 1887 [ 1.869499] hub 1-0:1.0: USB hub found 1888 [ 1.869510] hub 1-0:1.0: 2 ports detected 1889 [ 1.869617] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 1890 [ 1.869622] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 1891 [ 1.869627] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 1892 [ 1.869644] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 1893 [ 1.869676] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 1894 [ 1.869678] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1895 [ 1.869680] usb usb2: Product: xHCI Host Controller 1896 [ 1.869682] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 1897 [ 1.869683] usb usb2: SerialNumber: xhci-hcd.0.auto 1898 [ 1.869799] hub 2-0:1.0: USB hub found 1899 [ 1.869807] hub 2-0:1.0: 1 port detected 1900 [ 1.870074] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 1901 [ 1.870830] meson-gx-mmc ffe05000.sd: Got CD GPIO 1902 [ 1.896882] Freeing unused kernel memory: 3328K 1903 [ 1.935848] Run /init as init process 1904 [ 1.935851] with arguments: 1905 [ 1.935852] /init 1906 [ 1.935854] with environment: 1907 [ 1.935855] HOME=/ 1908 [ 1.935857] TERM=linux 1909 [ 1.935858] hdmimode=custombuilt 1910 [ 1.935859] cvbsmode=576cvbs 1911 [ 1.935860] max_freq_a53=1908 1912 [ 1.935862] max_freq_a73=2208 1913 [ 1.935863] voutmode=hdmi 1914 [ 1.935864] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 1915 [ 1.935865] disablehpd=false 1916 [ 1.935866] cvbscable= 1917 [ 1.935867] overscan=100 1918 [ 2.065855] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 1919 [ 2.065863] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 1920 [ 2.065959] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 1921 [ 2.067807] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 1922 [ 2.067824] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 1923 [ 2.067829] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 1924 [ 2.067832] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 1925 [ 2.067836] meson8b-dwmac ff3f0000.ethernet: COE Type 2 1926 [ 2.067839] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 1927 [ 2.067841] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 1928 [ 2.067933] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 1929 [ 2.067937] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 1930 [ 2.067940] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 1931 [ 2.068441] libphy: stmmac: probed 1932 [ 2.070641] libphy: mdio_mux: probed 1933 [ 2.081196] meson-vrtc ff8000a8.rtc: registered as rtc1 1934 [ 2.088255] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 1935 [ 2.090511] rtc-pcf8563 1-0051: registered as rtc0 1936 [ 2.091897] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 1937 [ 2.091905] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 1938 [ 2.095558] mmc1: new HS200 MMC card at address 0001 1939 [ 2.096527] mmcblk1: mmc1:0001 CJTD4R 58.2 GiB 1940 [ 2.097121] mmcblk1boot0: mmc1:0001 CJTD4R partition 1 4.00 MiB 1941 [ 2.097674] mmcblk1boot1: mmc1:0001 CJTD4R partition 2 4.00 MiB 1942 [ 2.097857] mmcblk1rpmb: mmc1:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 1943 [ 2.100224] mmcblk1: p1 1944 [ 2.122847] random: fast init done 1945 [ 2.133754] mmc0: new ultra high speed SDR104 SDXC card at address aaaa 1946 [ 2.134296] mmcblk0: mmc0:aaaa SH64G 59.5 GiB 1947 [ 2.136148] mmcblk0: p1 1948 [ 2.203716] usb 1-1: new high-speed USB device number 2 using xhci-hcd 1949 [ 2.276294] libphy: mdio_mux: probed 1950 [ 2.354056] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 1951 [ 2.354062] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1952 [ 2.354065] usb 1-1: Product: USB2.1 Hub 1953 [ 2.354067] usb 1-1: Manufacturer: GenesysLogic 1954 [ 2.413843] hub 1-1:1.0: USB hub found 1955 [ 2.414073] hub 1-1:1.0: 4 ports detected 1956 [ 2.479812] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 1957 [ 2.502290] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 1958 [ 2.502295] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1959 [ 2.502297] usb 2-1: Product: USB3.1 Hub 1960 [ 2.502299] usb 2-1: Manufacturer: GenesysLogic 1961 [ 2.525819] hub 2-1:1.0: USB hub found 1962 [ 2.526101] hub 2-1:1.0: 4 ports detected 1963 [ 2.669515] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 1964 [ 2.787714] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 1965 [ 2.842583] systemd[1]: System time before build time, advancing clock. 1966 [ 2.846160] systemd[1]: Inserted module 'autofs4' 1967 [ 2.862923] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 1968 [ 2.863111] systemd[1]: Detected architecture arm64. 1969 [ 2.885873] systemd[1]: Set hostname to <odroidn2>. 1970 [ 2.919284] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 1971 [ 2.919298] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 1972 [ 2.919301] usb 1-1.1: Product: USB OPTICAL MOUSE 1973 [ 2.960301] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input0 1974 [ 2.960514] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 1975 [ 3.030590] random: systemd: uninitialized urandom read (16 bytes read) 1976 [ 3.033164] random: systemd: uninitialized urandom read (16 bytes read) 1977 [ 3.034274] systemd[1]: Created slice system-serial\x2dgetty.slice. 1978 [ 3.034476] random: systemd: uninitialized urandom read (16 bytes read) 1979 [ 3.034547] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 1980 [ 3.034884] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 1981 [ 3.035144] systemd[1]: Listening on Journal Socket (/dev/log). 1982 [ 3.035324] systemd[1]: Listening on fsck to fsckd communication Socket. 1983 [ 3.035395] systemd[1]: Reached target Remote File Systems. 1984 [ 3.035454] systemd[1]: Reached target Swap. 1985 [ 3.063751] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 1986 [ 3.077893] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 1987 [ 3.192970] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 1988 [ 3.192981] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1989 [ 3.192985] usb 1-1.3: Product: USB Keyboard 1990 [ 3.192989] usb 1-1.3: Manufacturer: Logitech 1991 [ 3.250707] zram: Added device: zram0 1992 [ 3.251422] zram: Added device: zram1 1993 [ 3.251721] zram: Added device: zram2 1994 [ 3.292846] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input1 1995 [ 3.303839] zram0: detected capacity change from 0 to 1904500736 1996 [ 3.341790] pwm-gpio pwmgpio: 1 gpio pwms loaded 1997 [ 3.352438] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 1998 [ 3.361738] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input2 1999 [ 3.397180] mc: Linux media interface: v0.10 2000 [ 3.409332] videodev: Linux video capture interface: v2.00 2001 [ 3.420128] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 2002 [ 3.420340] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 2003 [ 3.433897] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 2004 [ 3.453855] meson-drm ff900000.vpu: Queued 2 outputs on vpu 2005 [ 3.455917] panfrost ffe40000.gpu: clock rate = 24000000 2006 [ 3.456075] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 2007 [ 3.457243] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 2008 [ 3.457255] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 2009 [ 3.457260] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 2010 [ 3.457264] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 2011 [ 3.462370] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 2012 [ 3.462517] meson-drm ff900000.vpu: CVBS Output connector not available 2013 [ 3.483729] Registered IR keymap rc-odroid 2014 [ 3.489276] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 2015 [ 3.491922] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 2016 [ 3.493144] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 2017 [ 3.493371] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 2018 [ 3.493553] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 2019 [ 3.495229] IR NEC protocol handler initialized 2020 [ 3.523989] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 2021 [ 3.524198] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 2022 [ 3.524342] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input4 2023 [ 3.525432] meson-ir ff808000.ir: receiver initialized 2024 [ 3.667713] usb 1-1.2: new high-speed USB device number 5 using xhci-hcd 2025 [ 3.776516] Console: switching to colour frame buffer device 240x67 2026 [ 3.792004] usb 1-1.2: New USB device found, idVendor=0781, idProduct=55a1, bcdDevice= 1.00 2027 [ 3.792009] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 2028 [ 3.792012] usb 1-1.2: Product: Cruzer Spark 2029 [ 3.792015] usb 1-1.2: Manufacturer: SanDisk 2030 [ 3.792017] usb 1-1.2: SerialNumber: 4C530001231009114503 2031 [ 3.792733] usb-storage 1-1.2:1.0: USB Mass Storage device detected 2032 [ 3.792989] scsi host0: usb-storage 1-1.2:1.0 2033 [ 3.798444] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 2034 [ 3.812455] usbcore: registered new interface driver uas 2035 [ 3.848746] axg-sound-card sound: ASoC: no DMI vendor name! 2036 [ 4.335710] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 2037 [ 4.374989] zram1: detected capacity change from 0 to 52428800 2038 [ 4.800599] scsi 0:0:0:0: Direct-Access SanDisk Cruzer Spark 1.00 PQ: 0 ANSI: 6 2039 [ 4.801626] sd 0:0:0:0: [sda] 240451584 512-byte logical blocks: (123 GB/115 GiB) 2040 [ 4.802834] sd 0:0:0:0: [sda] Write Protect is off 2041 [ 4.802838] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00 2042 [ 4.803115] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA 2043 [ 4.806739] sd 0:0:0:0: Attached scsi generic sg0 type 0 2044 [ 4.827149] sda: sda1 2045 [ 4.829583] sd 0:0:0:0: [sda] Attached SCSI removable disk 2046 [ 6.420264] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 2047 [ 6.420286] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 2048 [ 7.311846] systemd-journald[1865]: Received request to flush runtime journal from PID 1 2049 2050 ### armbian-release: 2051 2052 # PLEASE DO NOT EDIT THIS FILE 2053 BOARD=odroidn2 2054 BOARD_NAME="Odroid N2" 2055 BOARDFAMILY=meson-g12b 2056 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 2057 BUILD_REPOSITORY_COMMIT=e846ef656-dirty 2058 DISTRIBUTION_CODENAME=buster 2059 DISTRIBUTION_STATUS=supported 2060 VERSION=21.02.3 2061 LINUXFAMILY=meson64 2062 BRANCH=current 2063 ARCH=arm64 2064 IMAGE_TYPE=stable 2065 BOARD_TYPE=conf 2066 INITRD_ARCH=arm64 2067 KERNEL_IMAGE_TYPE=Image 2068 2069 ### boot environment: 2070 2071 verbosity=1 2072 console=both 2073 overlay_prefix=meson 2074 bootlogo=true 2075 rootdev=UUID=51c33730-20c8-4007-8dc5-c3478d176211 2076 rootfstype=ext4 2077 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 2078 2079 ### lsusb: 2080 2081 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 2082 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 2083 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 2084 Bus 001 Device 005: ID 0781:55a1 SanDisk Corp. 2085 Bus 001 Device 003: ID 275d:0ba6 2086 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 2087 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2088 2089 ### lscpu: 2090 2091 Architecture: aarch64 2092 Byte Order: Little Endian 2093 CPU(s): 6 2094 On-line CPU(s) list: 0-5 2095 Thread(s) per core: 1 2096 Core(s) per socket: 3 2097 Socket(s): 2 2098 NUMA node(s): 1 2099 Vendor ID: ARM 2100 Model: 4 2101 Model name: Cortex-A53 2102 Stepping: r0p4 2103 CPU max MHz: 2400.0000 2104 CPU min MHz: 100.0000 2105 BogoMIPS: 48.00 2106 L1d cache: unknown size 2107 L1i cache: unknown size 2108 L2 cache: unknown size 2109 NUMA node0 CPU(s): 0-5 2110 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2111 2112 ### cpuinfo: 2113 2114 processor : 0 2115 BogoMIPS : 48.00 2116 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2117 CPU implementer : 0x41 2118 CPU architecture: 8 2119 CPU variant : 0x0 2120 CPU part : 0xd03 2121 CPU revision : 4 2122 2123 processor : 1 2124 BogoMIPS : 48.00 2125 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2126 CPU implementer : 0x41 2127 CPU architecture: 8 2128 CPU variant : 0x0 2129 CPU part : 0xd03 2130 CPU revision : 4 2131 2132 processor : 2 2133 BogoMIPS : 48.00 2134 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2135 CPU implementer : 0x41 2136 CPU architecture: 8 2137 CPU variant : 0x0 2138 CPU part : 0xd09 2139 CPU revision : 2 2140 2141 processor : 3 2142 BogoMIPS : 48.00 2143 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2144 CPU implementer : 0x41 2145 CPU architecture: 8 2146 CPU variant : 0x0 2147 CPU part : 0xd09 2148 CPU revision : 2 2149 2150 processor : 4 2151 BogoMIPS : 48.00 2152 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2153 CPU implementer : 0x41 2154 CPU architecture: 8 2155 CPU variant : 0x0 2156 CPU part : 0xd09 2157 CPU revision : 2 2158 2159 processor : 5 2160 BogoMIPS : 48.00 2161 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2162 CPU implementer : 0x41 2163 CPU architecture: 8 2164 CPU variant : 0x0 2165 CPU part : 0xd09 2166 CPU revision : 2 2167 2168 2169 ### meminfo: 2170 2171 MemTotal: 3719724 kB 2172 MemFree: 3393612 kB 2173 MemAvailable: 3353612 kB 2174 Buffers: 12544 kB 2175 Cached: 55512 kB 2176 SwapCached: 0 kB 2177 Active: 33408 kB 2178 Inactive: 174352 kB 2179 Active(anon): 128 kB 2180 Inactive(anon): 144816 kB 2181 Active(file): 33280 kB 2182 Inactive(file): 29536 kB 2183 Unevictable: 0 kB 2184 Mlocked: 0 kB 2185 SwapTotal: 1859860 kB 2186 SwapFree: 1859860 kB 2187 Dirty: 8304 kB 2188 Writeback: 0 kB 2189 AnonPages: 140204 kB 2190 Mapped: 14460 kB 2191 Shmem: 4948 kB 2192 KReclaimable: 13904 kB 2193 Slab: 46248 kB 2194 SReclaimable: 13904 kB 2195 SUnreclaim: 32344 kB 2196 KernelStack: 2704 kB 2197 PageTables: 5368 kB 2198 NFS_Unstable: 0 kB 2199 Bounce: 0 kB 2200 WritebackTmp: 0 kB 2201 CommitLimit: 3719720 kB 2202 Committed_AS: 4249992 kB 2203 VmallocTotal: 135290159040 kB 2204 VmallocUsed: 31572 kB 2205 VmallocChunk: 0 kB 2206 Percpu: 1464 kB 2207 HardwareCorrupted: 0 kB 2208 AnonHugePages: 0 kB 2209 ShmemHugePages: 0 kB 2210 ShmemPmdMapped: 0 kB 2211 FileHugePages: 0 kB 2212 FilePmdMapped: 0 kB 2213 CmaTotal: 917504 kB 2214 CmaFree: 901724 kB 2215 HugePages_Total: 0 2216 HugePages_Free: 0 2217 HugePages_Rsvd: 0 2218 HugePages_Surp: 0 2219 Hugepagesize: 2048 kB 2220 Hugetlb: 0 kB 2221 2222 ### virtual memory: 2223 2224 vm.admin_reserve_kbytes = 8192 2225 vm.block_dump = 0 2226 vm.compaction_proactiveness = 20 2227 vm.compact_unevictable_allowed = 1 2228 vm.dirty_background_bytes = 0 2229 vm.dirty_background_ratio = 10 2230 vm.dirty_bytes = 0 2231 vm.dirty_expire_centisecs = 3000 2232 vm.dirty_ratio = 20 2233 vm.dirtytime_expire_seconds = 43200 2234 vm.dirty_writeback_centisecs = 500 2235 vm.extfrag_threshold = 500 2236 vm.hugetlb_shm_group = 0 2237 vm.laptop_mode = 0 2238 vm.legacy_va_layout = 0 2239 vm.lowmem_reserve_ratio = 256 256 32 0 2240 vm.max_map_count = 65530 2241 vm.memory_failure_early_kill = 0 2242 vm.memory_failure_recovery = 1 2243 vm.min_free_kbytes = 45056 2244 vm.min_slab_ratio = 5 2245 vm.min_unmapped_ratio = 1 2246 vm.mmap_min_addr = 4096 2247 vm.mmap_rnd_bits = 18 2248 vm.mmap_rnd_compat_bits = 11 2249 vm.nr_hugepages = 0 2250 vm.nr_hugepages_mempolicy = 0 2251 vm.nr_overcommit_hugepages = 0 2252 vm.numa_stat = 1 2253 vm.numa_zonelist_order = Node 2254 vm.oom_dump_tasks = 1 2255 vm.oom_kill_allocating_task = 0 2256 vm.overcommit_kbytes = 0 2257 vm.overcommit_memory = 0 2258 vm.overcommit_ratio = 50 2259 vm.page-cluster = 0 2260 vm.page_lock_unfairness = 5 2261 vm.panic_on_oom = 0 2262 vm.percpu_pagelist_fraction = 0 2263 vm.stat_interval = 1 2264 vm.swappiness = 100 2265 vm.user_reserve_kbytes = 114935 2266 vm.vfs_cache_pressure = 100 2267 vm.watermark_boost_factor = 15000 2268 vm.watermark_scale_factor = 10 2269 vm.zone_reclaim_mode = 0 2270 2271 ### ip addr: 2272 2273 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 2274 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2275 inet XXX.XXX.0.1/8 scope host lo 2276 valid_lft forever preferred_lft forever 2277 inet6 ::1/128 scope host 2278 valid_lft forever preferred_lft forever 2279 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 2280 link/ether 00:1e:06:42:52:64 brd ff:ff:ff:ff:ff:ff 2281 2282 ### partitions: 2283 2284 major minor #blocks name 2285 2286 179 0 61071360 mmcblk1 2287 179 1 60456544 mmcblk1p1 2288 179 96 62367744 mmcblk0 2289 179 97 62366720 mmcblk0p1 2290 252 0 1859864 zram0 2291 252 1 51200 zram1 2292 8 0 120225792 sda 2293 8 1 120225760 sda1 2294 2295 ### df: 2296 2297 udev 1.4G 0 1.4G 0% /dev 2298 tmpfs 364M 5.0M 359M 2% /run 2299 /dev/mmcblk1p1 57G 20G 37G 36% / 2300 tmpfs 1.8G 0 1.8G 0% /dev/shm 2301 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 2302 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 2303 tmpfs 1.8G 0 1.8G 0% /tmp 2304 /dev/zram1 49M 8.3M 37M 19% /var/log 2305 2306 ### lsblk: 2307 2308 NAME FSTYPE SIZE MOUNTPOINT UUID 2309 sda 114.7G 2310 └─sda1 ntfs 114.7G 1CB8167CB816549C 2311 mmcblk1 58.2G 2312 └─mmcblk1p1 ext4 57.7G / 51c33730-20c8-4007-8dc5-c3478d176211 2313 mmcblk1boot0 4M 2314 mmcblk1boot1 4M 2315 mmcblk0 59.5G 2316 └─mmcblk0p1 ext4 59.5G 83574bbb-e4ac-4398-8436-9962a3c61cdf 2317 zram1 50M /var/log 2318 2319 ### zramctl: 2320 2321 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 2322 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 2323 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 2324 2325 ### mtab: 2326 2327 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 2328 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 2329 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 2330 2331 ### mmc0:aaaa info: 2332 2333 fwrev: 0x0 2334 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SH64G MODALIAS=mmc:block 2335 cid: 035344534836344780559b2001014a00 2336 rca: 0xaaaa 2337 csd: 400e0032db790001dbd37f800a404000 2338 manfid: 0x000003 2339 ocr: 0x00200000 2340 preferred_erase_size: 4194304 2341 type: SD 2342 hwrev: 0x8 2343 date: 10/2020 2344 dsr: 0x404 2345 erase_size: 512 2346 oemid: 0x5344 2347 serial: 0x559b2001 2348 ssr: 0000000008000000040090000f05391e000800000001000003000000000000000000000000000000000000000000000000000000000000000000000000000000 2349 scr: 0245848300000000 2350 name: SH64G 2351 2352 ### mmc1:0001 info: 2353 2354 fwrev: 0x0400000000000000 2355 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=CJTD4R MODALIAS=mmc:block 2356 cid: 150100434a54443452042559facb7700 2357 rel_sectors: 0x1 2358 enhanced_rpmb_supported: 0x1 2359 rca: 0x0001 2360 pre_eol_info: 0x01 2361 csd: d02701320f5903fff6dbffef8e404000 2362 manfid: 0x000015 2363 ocr: 0x00200000 2364 preferred_erase_size: 4194304 2365 enhanced_area_offset: 18446744073709551594 2366 raw_rpmb_size_mult: 0x20 2367 type: MMC 2368 hwrev: 0x0 2369 date: 07/2020 2370 prv: 0x4 2371 ffu_capable: 1 2372 dsr: 0x404 2373 erase_size: 524288 2374 life_time: 0x01 0x01 2375 enhanced_area_size: 4294967274 2376 oemid: 0x0100 2377 serial: 0x2559facb 2378 cmdq_en: 0 2379 rev: 0x8 2380 name: CJTD4R 2381 2382 ### Boot system health: 2383 2384 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 2385 19:19:38: 2400/2016MHz 0.16 22% 14% 6% 0% 1% 0% 24.9°C 0/12 2386 19:19:38: 2400/2016MHz 0.16 36% 24% 10% 0% 0% 0% 24.9°C 0/12 2387 19:19:39: 2400/2016MHz 0.16 18% 7% 10% 0% 0% 0% 22.2°C 0/12 2388 19:19:39: 2400/2016MHz 0.16 19% 8% 10% 0% 0% 1% 21.8°C 0/12 2389 19:19:39: 2400/2016MHz 0.16 76% 41% 18% 0% 14% 1% 24.1°C 0/12 2390 2391 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 2392 2393 ### Activated Armbian ramlog partition with zstd compression 2394 2395 Tue 30 Mar 2021 07:19:37 PM CEST | Odroid N2 | 21.02.3 | arm64 | aarch64 | 5.10.21-meson64 2396 2397 ### dmesg: 2398 2399 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 2400 [ 0.000000] Linux version 5.10.21-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.3 SMP PREEMPT Mon Mar 8 07:22:00 UTC 2021 2401 [ 0.000000] Machine model: Hardkernel ODROID-N2Plus 2402 [ 0.000000] efi: UEFI not found. 2403 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 2404 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 2405 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 2406 [ 0.000000] NUMA: No NUMA configuration found 2407 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 2408 [ 0.000000] NUMA: NODE_DATA [mem 0xb502e100-0xb502ffff] 2409 [ 0.000000] Zone ranges: 2410 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 2411 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 2412 [ 0.000000] Normal empty 2413 [ 0.000000] Movable zone start for each node 2414 [ 0.000000] Early memory node ranges 2415 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 2416 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 2417 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 2418 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 2419 [ 0.000000] On node 0 totalpages: 972800 2420 [ 0.000000] DMA zone: 4096 pages used for memmap 2421 [ 0.000000] DMA zone: 0 pages reserved 2422 [ 0.000000] DMA zone: 262144 pages, LIFO batch:63 2423 [ 0.000000] DMA32 zone: 11104 pages used for memmap 2424 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 2425 [ 0.000000] psci: probing for conduit method from DT. 2426 [ 0.000000] psci: PSCIv1.0 detected in firmware. 2427 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 2428 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 2429 [ 0.000000] psci: SMC Calling Convention v1.1 2430 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 2431 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 2432 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 2433 [ 0.000000] Detected VIPT I-cache on CPU0 2434 [ 0.000000] CPU features: detected: ARM erratum 845719 2435 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 2436 [ 0.000000] Policy zone: DMA32 2437 [ 0.000000] Kernel command line: root=UUID=51c33730-20c8-4007-8dc5-c3478d176211 rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1908 max_freq_a73=2208 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 2438 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 2439 Please use sysfs to set IO scheduler for individual devices. 2440 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 2441 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 2442 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 2443 [ 0.000000] software IO TLB: mapped [mem 0x000000003896d000-0x000000003c96d000] (64MB) 2444 [ 0.000000] Memory: 2783972K/3891200K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 189724K reserved, 917504K cma-reserved) 2445 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 2446 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 2447 [ 0.000000] rcu: RCU event tracing is enabled. 2448 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 2449 [ 0.000000] Trampoline variant of Tasks RCU enabled. 2450 [ 0.000000] Rude variant of Tasks RCU enabled. 2451 [ 0.000000] Tracing variant of Tasks RCU enabled. 2452 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 2453 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 2454 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 2455 [ 0.000000] GIC: Using split EOI/Deactivate mode 2456 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 2457 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 2458 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 2459 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 2460 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 2461 [ 0.000253] Console: colour dummy device 80x25 2462 [ 0.000288] printk: console [tty1] enabled 2463 [ 0.000373] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 2464 [ 0.000386] pid_max: default: 32768 minimum: 301 2465 [ 0.000467] LSM: Security Framework initializing 2466 [ 0.000492] Yama: becoming mindful. 2467 [ 0.000582] AppArmor: AppArmor initialized 2468 [ 0.000632] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 2469 [ 0.000651] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 2470 [ 0.002657] rcu: Hierarchical SRCU implementation. 2471 [ 0.005133] EFI services will not be available. 2472 [ 0.005556] smp: Bringing up secondary CPUs ... 2473 [ 0.006232] Detected VIPT I-cache on CPU1 2474 [ 0.006293] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 2475 [ 0.007486] CPU features: detected: ARM erratum 858921 2476 [ 0.007494] CPU features: detected: Spectre-v2 2477 [ 0.007498] CPU features: detected: Spectre-v4 2478 [ 0.007504] Detected VIPT I-cache on CPU2 2479 [ 0.007528] arch_timer: Enabling local workaround for ARM erratum 858921 2480 [ 0.007543] arch_timer: CPU2: Trapping CNTVCT access 2481 [ 0.007557] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 2482 [ 0.008267] Detected VIPT I-cache on CPU3 2483 [ 0.008283] arch_timer: Enabling local workaround for ARM erratum 858921 2484 [ 0.008290] arch_timer: CPU3: Trapping CNTVCT access 2485 [ 0.008298] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 2486 [ 0.008925] Detected VIPT I-cache on CPU4 2487 [ 0.008941] arch_timer: Enabling local workaround for ARM erratum 858921 2488 [ 0.008948] arch_timer: CPU4: Trapping CNTVCT access 2489 [ 0.008956] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 2490 [ 0.009575] Detected VIPT I-cache on CPU5 2491 [ 0.009591] arch_timer: Enabling local workaround for ARM erratum 858921 2492 [ 0.009598] arch_timer: CPU5: Trapping CNTVCT access 2493 [ 0.009606] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 2494 [ 0.009686] smp: Brought up 1 node, 6 CPUs 2495 [ 0.009704] SMP: Total of 6 processors activated. 2496 [ 0.009712] CPU features: detected: 32-bit EL0 Support 2497 [ 0.009718] CPU features: detected: CRC32 instructions 2498 [ 0.009723] CPU features: detected: 32-bit EL1 Support 2499 [ 0.020997] CPU: All CPU(s) started at EL2 2500 [ 0.021047] alternatives: patching kernel code 2501 [ 0.023051] devtmpfs: initialized 2502 [ 0.030728] Registered cp15_barrier emulation handler 2503 [ 0.030742] Registered setend emulation handler 2504 [ 0.030906] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 2505 [ 0.030951] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 2506 [ 0.046226] pinctrl core: initialized pinctrl subsystem 2507 [ 0.046961] DMI not present or invalid. 2508 [ 0.047334] NET: Registered protocol family 16 2509 [ 0.048926] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 2510 [ 0.049198] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 2511 [ 0.049434] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 2512 [ 0.049476] audit: initializing netlink subsys (disabled) 2513 [ 0.049570] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 2514 [ 0.050789] thermal_sys: Registered thermal governor 'fair_share' 2515 [ 0.050796] thermal_sys: Registered thermal governor 'bang_bang' 2516 [ 0.050800] thermal_sys: Registered thermal governor 'step_wise' 2517 [ 0.050803] thermal_sys: Registered thermal governor 'user_space' 2518 [ 0.051249] cpuidle: using governor menu 2519 [ 0.051593] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 2520 [ 0.051726] ASID allocator initialised with 65536 entries 2521 [ 0.052725] Serial: AMBA PL011 UART driver 2522 [ 0.085537] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 2523 [ 0.085550] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 2524 [ 0.085555] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 2525 [ 0.085561] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 2526 [ 0.088339] cryptd: max_cpu_qlen set to 1000 2527 [ 0.156245] raid6: neonx8 gen() 2779 MB/s 2528 [ 0.224325] raid6: neonx8 xor() 2041 MB/s 2529 [ 0.292359] raid6: neonx4 gen() 3151 MB/s 2530 [ 0.360431] raid6: neonx4 xor() 2399 MB/s 2531 [ 0.428507] raid6: neonx2 gen() 2562 MB/s 2532 [ 0.496573] raid6: neonx2 xor() 2189 MB/s 2533 [ 0.564639] raid6: neonx1 gen() 1925 MB/s 2534 [ 0.632702] raid6: neonx1 xor() 1728 MB/s 2535 [ 0.700768] raid6: int64x8 gen() 1374 MB/s 2536 [ 0.768825] raid6: int64x8 xor() 735 MB/s 2537 [ 0.836906] raid6: int64x4 gen() 1463 MB/s 2538 [ 0.904949] raid6: int64x4 xor() 733 MB/s 2539 [ 0.973018] raid6: int64x2 gen() 1363 MB/s 2540 [ 1.041092] raid6: int64x2 xor() 619 MB/s 2541 [ 1.109144] raid6: int64x1 gen() 1127 MB/s 2542 [ 1.177213] raid6: int64x1 xor() 462 MB/s 2543 [ 1.177217] raid6: using algorithm neonx4 gen() 3151 MB/s 2544 [ 1.177220] raid6: .... xor() 2399 MB/s, rmw enabled 2545 [ 1.177224] raid6: using neon recovery algorithm 2546 [ 1.177684] ACPI: Interpreter disabled. 2547 [ 1.178483] 5V: supplied by 12V 2548 [ 1.179370] VDDAO_3V3: supplied by 12V 2549 [ 1.179878] iommu: Default domain type: Translated 2550 [ 1.179991] vgaarb: loaded 2551 [ 1.180643] SCSI subsystem initialized 2552 [ 1.180834] usbcore: registered new interface driver usbfs 2553 [ 1.180865] usbcore: registered new interface driver hub 2554 [ 1.180896] usbcore: registered new device driver usb 2555 [ 1.181140] pps_core: LinuxPPS API ver. 1 registered 2556 [ 1.181144] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 2557 [ 1.181157] PTP clock support registered 2558 [ 1.181325] EDAC MC: Ver: 3.0.0 2559 [ 1.183108] NetLabel: Initializing 2560 [ 1.183116] NetLabel: domain hash size = 128 2561 [ 1.183119] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 2562 [ 1.183173] NetLabel: unlabeled traffic allowed by default 2563 [ 1.183670] clocksource: Switched to clocksource arch_sys_counter 2564 [ 1.183898] VFS: Disk quotas dquot_6.6.0 2565 [ 1.183942] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 2566 [ 1.184293] AppArmor: AppArmor Filesystem Enabled 2567 [ 1.184341] pnp: PnP ACPI: disabled 2568 [ 1.189791] NET: Registered protocol family 2 2569 [ 1.190270] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 2570 [ 1.190373] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 2571 [ 1.190630] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 2572 [ 1.190817] TCP: Hash tables configured (established 32768 bind 32768) 2573 [ 1.190966] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 2574 [ 1.191032] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 2575 [ 1.191079] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 2576 [ 1.191222] NET: Registered protocol family 1 2577 [ 1.191241] PCI: CLS 0 bytes, default 64 2578 [ 1.191363] Trying to unpack rootfs image as initramfs... 2579 [ 1.759864] Freeing initrd memory: 14920K 2580 [ 1.760803] kvm [1]: IPA Size Limit: 40 bits 2581 [ 1.761517] kvm [1]: vgic interrupt IRQ9 2582 [ 1.761656] kvm [1]: Hyp mode initialized successfully 2583 [ 1.766818] Initialise system trusted keyrings 2584 [ 1.766852] Key type blacklist registered 2585 [ 1.766960] workingset: timestamp_bits=44 max_order=20 bucket_order=0 2586 [ 1.770192] zbud: loaded 2587 [ 1.771176] squashfs: version 4.0 (2009/01/31) Phillip Lougher 2588 [ 1.771635] fuse: init (API version 7.32) 2589 [ 1.772417] integrity: Platform Keyring initialized 2590 [ 1.800655] xor: measuring software checksum speed 2591 [ 1.803491] 8regs : 3476 MB/sec 2592 [ 1.805947] 32regs : 4023 MB/sec 2593 [ 1.808598] arm64_neon : 3722 MB/sec 2594 [ 1.808601] xor: using function: 32regs (4023 MB/sec) 2595 [ 1.808607] Key type asymmetric registered 2596 [ 1.808611] Asymmetric key parser 'x509' registered 2597 [ 1.808645] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 2598 [ 1.808743] io scheduler mq-deadline registered 2599 [ 1.808748] io scheduler kyber registered 2600 [ 1.808833] io scheduler bfq registered 2601 [ 1.811373] gpio-447 (usb-hub-reset): hogged as output/high 2602 [ 1.814372] EINJ: ACPI disabled. 2603 [ 1.820688] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 2604 [ 1.822107] VCC_3V3: supplied by VDDAO_3V3 2605 [ 1.822143] FLASH_1V8: supplied by VCC_3V3 2606 [ 1.822173] VCC_1V8: supplied by VCC_3V3 2607 [ 1.822200] VDDAO_1V8: supplied by VDDAO_3V3 2608 [ 1.822240] VDDCPU_A: supplied by regulator-dummy 2609 [ 1.822608] VDDCPU_B: supplied by regulator-dummy 2610 [ 1.823302] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 2611 [ 1.825618] Serial: AMBA driver 2612 [ 1.825914] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 2613 [ 1.826011] printk: console [ttyAML0] enabled 2614 [ 1.826549] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 2615 [ 1.831962] loop: module loaded 2616 [ 1.833938] libphy: Fixed MDIO Bus: probed 2617 [ 1.834896] tun: Universal TUN/TAP device driver, 1.6 2618 [ 1.835550] thunder_xcv, ver 1.0 2619 [ 1.835580] thunder_bgx, ver 1.0 2620 [ 1.835609] nicpf, ver 1.0 2621 [ 1.836311] e1000e: Intel(R) PRO/1000 Network Driver 2622 [ 1.836316] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 2623 [ 1.836365] igb: Intel(R) Gigabit Ethernet Network Driver 2624 [ 1.836368] igb: Copyright (c) 2007-2014 Intel Corporation. 2625 [ 1.836399] igbvf: Intel(R) Gigabit Virtual Function Network Driver 2626 [ 1.836401] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 2627 [ 1.836529] sky2: driver version 1.30 2628 [ 1.836902] VFIO - User Level meta-driver version: 0.3 2629 [ 1.838278] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 2630 [ 1.838296] ehci-pci: EHCI PCI platform driver 2631 [ 1.838331] ehci-platform: EHCI generic platform driver 2632 [ 1.838463] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 2633 [ 1.838474] ohci-pci: OHCI PCI platform driver 2634 [ 1.838506] ohci-platform: OHCI generic platform driver 2635 [ 1.838925] usbcore: registered new interface driver usb-storage 2636 [ 1.840260] mousedev: PS/2 mouse device common for all mice 2637 [ 1.840641] i2c /dev entries driver 2638 [ 1.845815] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 2639 [ 1.846684] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 2640 [ 1.847328] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 2641 [ 1.847935] sdhci: Secure Digital Host Controller Interface driver 2642 [ 1.847940] sdhci: Copyright(c) Pierre Ossman 2643 [ 1.848028] Synopsys Designware Multimedia Card Interface Driver 2644 [ 1.848386] sdhci-pltfm: SDHCI platform and OF driver helper 2645 [ 1.848843] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 2646 [ 1.849988] ledtrig-cpu: registered to indicate activity on CPUs 2647 [ 1.850221] meson-sm: secure-monitor enabled 2648 [ 1.850354] hid: raw HID events driver (C) Jiri Kosina 2649 [ 1.850425] usbcore: registered new interface driver usbhid 2650 [ 1.850427] usbhid: USB HID core driver 2651 [ 1.851263] NET: Registered protocol family 10 2652 [ 1.851594] Segment Routing with IPv6 2653 [ 1.851620] NET: Registered protocol family 17 2654 [ 1.851682] 8021q: 802.1Q VLAN Support v1.8 2655 [ 1.851705] Key type dns_resolver registered 2656 [ 1.851951] registered taskstats version 1 2657 [ 1.851955] Loading compiled-in X.509 certificates 2658 [ 1.853399] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 2659 [ 1.854838] zswap: loaded using pool zstd/z3fold 2660 [ 1.855012] Key type ._fscrypt registered 2661 [ 1.855014] Key type .fscrypt registered 2662 [ 1.855016] Key type fscrypt-provisioning registered 2663 [ 1.856086] Btrfs loaded, crc32c=crc32c-generic 2664 [ 1.861334] Key type encrypted registered 2665 [ 1.861346] AppArmor: AppArmor sha1 policy hashing enabled 2666 [ 1.866736] HUB_5V: supplied by 5V 2667 [ 1.866908] USB_PWR_EN: supplied by 5V 2668 [ 1.868394] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 2669 [ 1.868400] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 2670 [ 1.871076] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 2671 [ 1.871120] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 2672 [ 1.871210] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 2673 [ 1.871690] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 2674 [ 1.871699] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 2675 [ 1.871796] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 2676 [ 1.871815] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 2677 [ 1.871927] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 2678 [ 1.871930] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2679 [ 1.871933] usb usb1: Product: xHCI Host Controller 2680 [ 1.871935] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 2681 [ 1.871936] usb usb1: SerialNumber: xhci-hcd.0.auto 2682 [ 1.872113] hub 1-0:1.0: USB hub found 2683 [ 1.872126] hub 1-0:1.0: 2 ports detected 2684 [ 1.872237] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 2685 [ 1.872242] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 2686 [ 1.872248] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 2687 [ 1.872267] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 2688 [ 1.872295] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 2689 [ 1.872297] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2690 [ 1.872299] usb usb2: Product: xHCI Host Controller 2691 [ 1.872301] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 2692 [ 1.872302] usb usb2: SerialNumber: xhci-hcd.0.auto 2693 [ 1.872412] hub 2-0:1.0: USB hub found 2694 [ 1.872421] hub 2-0:1.0: 1 port detected 2695 [ 1.872689] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 2696 [ 1.873451] meson-gx-mmc ffe05000.sd: Got CD GPIO 2697 [ 1.900654] Freeing unused kernel memory: 3328K 2698 [ 1.943716] Run /init as init process 2699 [ 1.943720] with arguments: 2700 [ 1.943722] /init 2701 [ 1.943723] with environment: 2702 [ 1.943725] HOME=/ 2703 [ 1.943726] TERM=linux 2704 [ 1.943727] hdmimode=custombuilt 2705 [ 1.943728] cvbsmode=576cvbs 2706 [ 1.943730] max_freq_a53=1908 2707 [ 1.943731] max_freq_a73=2208 2708 [ 1.943732] voutmode=hdmi 2709 [ 1.943734] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 2710 [ 1.943735] disablehpd=false 2711 [ 1.943736] cvbscable= 2712 [ 1.943737] overscan=100 2713 [ 2.046027] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 2714 [ 2.046034] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 2715 [ 2.046135] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 2716 [ 2.055033] meson-vrtc ff8000a8.rtc: registered as rtc1 2717 [ 2.056502] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 2718 [ 2.056512] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 2719 [ 2.056514] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 2720 [ 2.056517] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 2721 [ 2.056519] meson8b-dwmac ff3f0000.ethernet: COE Type 2 2722 [ 2.056521] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 2723 [ 2.056523] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 2724 [ 2.056567] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 2725 [ 2.056570] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 2726 [ 2.056572] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 2727 [ 2.056743] libphy: stmmac: probed 2728 [ 2.057875] libphy: mdio_mux: probed 2729 [ 2.067370] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 2730 [ 2.067681] rtc-pcf8563 1-0051: registered as rtc0 2731 [ 2.070011] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 2732 [ 2.070019] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 2733 [ 2.129385] mmc0: new ultra high speed SDR104 SDXC card at address aaaa 2734 [ 2.130223] mmcblk0: mmc0:aaaa SH64G 59.5 GiB 2735 [ 2.132546] mmcblk0: p1 2736 [ 2.135910] mmc1: new HS200 MMC card at address 0001 2737 [ 2.136610] mmcblk1: mmc1:0001 CJTD4R 58.2 GiB 2738 [ 2.136970] mmcblk1boot0: mmc1:0001 CJTD4R partition 1 4.00 MiB 2739 [ 2.137324] mmcblk1boot1: mmc1:0001 CJTD4R partition 2 4.00 MiB 2740 [ 2.137474] mmcblk1rpmb: mmc1:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 2741 [ 2.138676] mmcblk1: p1 2742 [ 2.147767] random: fast init done 2743 [ 2.211689] usb 1-1: new high-speed USB device number 2 using xhci-hcd 2744 [ 2.260128] libphy: mdio_mux: probed 2745 [ 2.366031] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 2746 [ 2.366037] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 2747 [ 2.366039] usb 1-1: Product: USB2.1 Hub 2748 [ 2.366041] usb 1-1: Manufacturer: GenesysLogic 2749 [ 2.396694] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 2750 [ 2.416528] hub 1-1:1.0: USB hub found 2751 [ 2.416771] hub 1-1:1.0: 4 ports detected 2752 [ 2.491813] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 2753 [ 2.518317] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 2754 [ 2.518327] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 2755 [ 2.518331] usb 2-1: Product: USB3.1 Hub 2756 [ 2.518335] usb 2-1: Manufacturer: GenesysLogic 2757 [ 2.544557] hub 2-1:1.0: USB hub found 2758 [ 2.544857] hub 2-1:1.0: 4 ports detected 2759 [ 2.639914] systemd[1]: System time before build time, advancing clock. 2760 [ 2.643461] systemd[1]: Inserted module 'autofs4' 2761 [ 2.661647] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 2762 [ 2.661829] systemd[1]: Detected architecture arm64. 2763 [ 2.701281] systemd[1]: Set hostname to <odroidn2>. 2764 [ 2.791735] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 2765 [ 2.918987] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 2766 [ 2.918996] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 2767 [ 2.919000] usb 1-1.1: Product: USB OPTICAL MOUSE 2768 [ 2.929956] random: systemd: uninitialized urandom read (16 bytes read) 2769 [ 2.932507] random: systemd: uninitialized urandom read (16 bytes read) 2770 [ 2.932797] systemd[1]: Listening on Journal Socket. 2771 [ 2.933002] random: systemd: uninitialized urandom read (16 bytes read) 2772 [ 2.934019] systemd[1]: Created slice system-getty.slice. 2773 [ 2.937056] systemd[1]: Starting Set the console keyboard layout... 2774 [ 2.938651] systemd[1]: Mounting Kernel Debug File System... 2775 [ 2.938912] systemd[1]: Reached target Remote File Systems. 2776 [ 2.939356] systemd[1]: Listening on fsck to fsckd communication Socket. 2777 [ 2.939684] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 2778 [ 2.963756] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input0 2779 [ 2.964380] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 2780 [ 2.972763] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 2781 [ 3.067738] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 2782 [ 3.174013] zram: Added device: zram0 2783 [ 3.174546] zram: Added device: zram1 2784 [ 3.174956] zram: Added device: zram2 2785 [ 3.197167] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 2786 [ 3.197176] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 2787 [ 3.197181] usb 1-1.3: Product: USB Keyboard 2788 [ 3.197184] usb 1-1.3: Manufacturer: Logitech 2789 [ 3.212972] pwm-gpio pwmgpio: 1 gpio pwms loaded 2790 [ 3.227862] zram0: detected capacity change from 0 to 1904500736 2791 [ 3.286277] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input1 2792 [ 3.344303] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 2793 [ 3.348334] mc: Linux media interface: v0.10 2794 [ 3.351618] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input2 2795 [ 3.358897] videodev: Linux video capture interface: v2.00 2796 [ 3.363231] meson-drm ff900000.vpu: Queued 2 outputs on vpu 2797 [ 3.368586] panfrost ffe40000.gpu: clock rate = 24000000 2798 [ 3.368675] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 2799 [ 3.369907] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 2800 [ 3.369920] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 2801 [ 3.369925] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 2802 [ 3.369929] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 2803 [ 3.380764] meson-drm ff900000.vpu: CVBS Output connector not available 2804 [ 3.397830] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 2805 [ 3.398871] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 2806 [ 3.405897] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 2807 [ 3.407890] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 2808 [ 3.408683] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 2809 [ 3.409366] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 2810 [ 3.413068] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 2811 [ 3.413481] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 2812 [ 3.413510] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 2813 [ 3.415804] Registered IR keymap rc-odroid 2814 [ 3.438977] IR NEC protocol handler initialized 2815 [ 3.476067] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 2816 [ 3.476197] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 2817 [ 3.476292] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input4 2818 [ 3.476788] meson-ir ff808000.ir: receiver initialized 2819 [ 3.700494] Console: switching to colour frame buffer device 240x67 2820 [ 3.722355] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 2821 [ 3.763305] axg-sound-card sound: ASoC: no DMI vendor name! 2822 [ 4.259685] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 2823 [ 4.300559] zram1: detected capacity change from 0 to 52428800 2824 [ 6.344004] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 2825 [ 6.344021] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 2826 [ 7.235961] systemd-journald[1855]: Received request to flush runtime journal from PID 1 2827 2828 ### armbian-release: 2829 2830 # PLEASE DO NOT EDIT THIS FILE 2831 BOARD=odroidn2 2832 BOARD_NAME="Odroid N2" 2833 BOARDFAMILY=meson-g12b 2834 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 2835 BUILD_REPOSITORY_COMMIT=e846ef656-dirty 2836 DISTRIBUTION_CODENAME=buster 2837 DISTRIBUTION_STATUS=supported 2838 VERSION=21.02.3 2839 LINUXFAMILY=meson64 2840 BRANCH=current 2841 ARCH=arm64 2842 IMAGE_TYPE=stable 2843 BOARD_TYPE=conf 2844 INITRD_ARCH=arm64 2845 KERNEL_IMAGE_TYPE=Image 2846 2847 ### boot environment: 2848 2849 verbosity=1 2850 console=both 2851 overlay_prefix=meson 2852 bootlogo=true 2853 rootdev=UUID=51c33730-20c8-4007-8dc5-c3478d176211 2854 rootfstype=ext4 2855 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 2856 2857 ### lsusb: 2858 2859 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 2860 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 2861 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 2862 Bus 001 Device 003: ID 275d:0ba6 2863 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 2864 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2865 2866 ### lscpu: 2867 2868 Architecture: aarch64 2869 Byte Order: Little Endian 2870 CPU(s): 6 2871 On-line CPU(s) list: 0-5 2872 Thread(s) per core: 1 2873 Core(s) per socket: 3 2874 Socket(s): 2 2875 NUMA node(s): 1 2876 Vendor ID: ARM 2877 Model: 4 2878 Model name: Cortex-A53 2879 Stepping: r0p4 2880 CPU max MHz: 2400.0000 2881 CPU min MHz: 100.0000 2882 BogoMIPS: 48.00 2883 L1d cache: unknown size 2884 L1i cache: unknown size 2885 L2 cache: unknown size 2886 NUMA node0 CPU(s): 0-5 2887 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2888 2889 ### cpuinfo: 2890 2891 processor : 0 2892 BogoMIPS : 48.00 2893 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2894 CPU implementer : 0x41 2895 CPU architecture: 8 2896 CPU variant : 0x0 2897 CPU part : 0xd03 2898 CPU revision : 4 2899 2900 processor : 1 2901 BogoMIPS : 48.00 2902 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2903 CPU implementer : 0x41 2904 CPU architecture: 8 2905 CPU variant : 0x0 2906 CPU part : 0xd03 2907 CPU revision : 4 2908 2909 processor : 2 2910 BogoMIPS : 48.00 2911 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2912 CPU implementer : 0x41 2913 CPU architecture: 8 2914 CPU variant : 0x0 2915 CPU part : 0xd09 2916 CPU revision : 2 2917 2918 processor : 3 2919 BogoMIPS : 48.00 2920 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2921 CPU implementer : 0x41 2922 CPU architecture: 8 2923 CPU variant : 0x0 2924 CPU part : 0xd09 2925 CPU revision : 2 2926 2927 processor : 4 2928 BogoMIPS : 48.00 2929 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2930 CPU implementer : 0x41 2931 CPU architecture: 8 2932 CPU variant : 0x0 2933 CPU part : 0xd09 2934 CPU revision : 2 2935 2936 processor : 5 2937 BogoMIPS : 48.00 2938 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2939 CPU implementer : 0x41 2940 CPU architecture: 8 2941 CPU variant : 0x0 2942 CPU part : 0xd09 2943 CPU revision : 2 2944 2945 2946 ### meminfo: 2947 2948 MemTotal: 3719724 kB 2949 MemFree: 3373572 kB 2950 MemAvailable: 3333452 kB 2951 Buffers: 12536 kB 2952 Cached: 55232 kB 2953 SwapCached: 0 kB 2954 Active: 32596 kB 2955 Inactive: 196124 kB 2956 Active(anon): 132 kB 2957 Inactive(anon): 165900 kB 2958 Active(file): 32464 kB 2959 Inactive(file): 30224 kB 2960 Unevictable: 0 kB 2961 Mlocked: 0 kB 2962 SwapTotal: 1859860 kB 2963 SwapFree: 1859860 kB 2964 Dirty: 8700 kB 2965 Writeback: 0 kB 2966 AnonPages: 161428 kB 2967 Mapped: 16416 kB 2968 Shmem: 4936 kB 2969 KReclaimable: 13788 kB 2970 Slab: 45376 kB 2971 SReclaimable: 13788 kB 2972 SUnreclaim: 31588 kB 2973 KernelStack: 2640 kB 2974 PageTables: 5552 kB 2975 NFS_Unstable: 0 kB 2976 Bounce: 0 kB 2977 WritebackTmp: 0 kB 2978 CommitLimit: 3719720 kB 2979 Committed_AS: 4251204 kB 2980 VmallocTotal: 135290159040 kB 2981 VmallocUsed: 31508 kB 2982 VmallocChunk: 0 kB 2983 Percpu: 1416 kB 2984 HardwareCorrupted: 0 kB 2985 AnonHugePages: 0 kB 2986 ShmemHugePages: 0 kB 2987 ShmemPmdMapped: 0 kB 2988 FileHugePages: 0 kB 2989 FilePmdMapped: 0 kB 2990 CmaTotal: 917504 kB 2991 CmaFree: 901724 kB 2992 HugePages_Total: 0 2993 HugePages_Free: 0 2994 HugePages_Rsvd: 0 2995 HugePages_Surp: 0 2996 Hugepagesize: 2048 kB 2997 Hugetlb: 0 kB 2998 2999 ### virtual memory: 3000 3001 vm.admin_reserve_kbytes = 8192 3002 vm.block_dump = 0 3003 vm.compaction_proactiveness = 20 3004 vm.compact_unevictable_allowed = 1 3005 vm.dirty_background_bytes = 0 3006 vm.dirty_background_ratio = 10 3007 vm.dirty_bytes = 0 3008 vm.dirty_expire_centisecs = 3000 3009 vm.dirty_ratio = 20 3010 vm.dirtytime_expire_seconds = 43200 3011 vm.dirty_writeback_centisecs = 500 3012 vm.extfrag_threshold = 500 3013 vm.hugetlb_shm_group = 0 3014 vm.laptop_mode = 0 3015 vm.legacy_va_layout = 0 3016 vm.lowmem_reserve_ratio = 256 256 32 0 3017 vm.max_map_count = 65530 3018 vm.memory_failure_early_kill = 0 3019 vm.memory_failure_recovery = 1 3020 vm.min_free_kbytes = 45056 3021 vm.min_slab_ratio = 5 3022 vm.min_unmapped_ratio = 1 3023 vm.mmap_min_addr = 4096 3024 vm.mmap_rnd_bits = 18 3025 vm.mmap_rnd_compat_bits = 11 3026 vm.nr_hugepages = 0 3027 vm.nr_hugepages_mempolicy = 0 3028 vm.nr_overcommit_hugepages = 0 3029 vm.numa_stat = 1 3030 vm.numa_zonelist_order = Node 3031 vm.oom_dump_tasks = 1 3032 vm.oom_kill_allocating_task = 0 3033 vm.overcommit_kbytes = 0 3034 vm.overcommit_memory = 0 3035 vm.overcommit_ratio = 50 3036 vm.page-cluster = 0 3037 vm.page_lock_unfairness = 5 3038 vm.panic_on_oom = 0 3039 vm.percpu_pagelist_fraction = 0 3040 vm.stat_interval = 1 3041 vm.swappiness = 100 3042 vm.user_reserve_kbytes = 114996 3043 vm.vfs_cache_pressure = 100 3044 vm.watermark_boost_factor = 15000 3045 vm.watermark_scale_factor = 10 3046 vm.zone_reclaim_mode = 0 3047 3048 ### ip addr: 3049 3050 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 3051 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 3052 inet XXX.XXX.0.1/8 scope host lo 3053 valid_lft forever preferred_lft forever 3054 inet6 ::1/128 scope host 3055 valid_lft forever preferred_lft forever 3056 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 3057 link/ether 00:1e:06:42:52:64 brd ff:ff:ff:ff:ff:ff 3058 3059 ### partitions: 3060 3061 major minor #blocks name 3062 3063 179 0 62367744 mmcblk0 3064 179 1 62366720 mmcblk0p1 3065 179 32 61071360 mmcblk1 3066 179 33 60456544 mmcblk1p1 3067 252 0 1859864 zram0 3068 252 1 51200 zram1 3069 3070 ### df: 3071 3072 udev 1.4G 0 1.4G 0% /dev 3073 tmpfs 364M 5.0M 359M 2% /run 3074 /dev/mmcblk1p1 57G 20G 37G 36% / 3075 tmpfs 1.8G 0 1.8G 0% /dev/shm 3076 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 3077 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 3078 tmpfs 1.8G 0 1.8G 0% /tmp 3079 /dev/zram1 49M 8.5M 37M 19% /var/log 3080 3081 ### lsblk: 3082 3083 NAME FSTYPE SIZE MOUNTPOINT UUID 3084 mmcblk0 59.5G 3085 └─mmcblk0p1 ext4 59.5G 83574bbb-e4ac-4398-8436-9962a3c61cdf 3086 mmcblk1 58.2G 3087 └─mmcblk1p1 ext4 57.7G / 51c33730-20c8-4007-8dc5-c3478d176211 3088 mmcblk1boot0 4M 3089 mmcblk1boot1 4M 3090 zram1 50M /var/log 3091 3092 ### zramctl: 3093 3094 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 3095 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 3096 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 3097 3098 ### mtab: 3099 3100 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 3101 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 3102 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 3103 3104 ### mmc0:aaaa info: 3105 3106 fwrev: 0x0 3107 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SH64G MODALIAS=mmc:block 3108 cid: 035344534836344780559b2001014a00 3109 rca: 0xaaaa 3110 csd: 400e0032db790001dbd37f800a404000 3111 manfid: 0x000003 3112 ocr: 0x00200000 3113 preferred_erase_size: 4194304 3114 type: SD 3115 hwrev: 0x8 3116 date: 10/2020 3117 dsr: 0x404 3118 erase_size: 512 3119 oemid: 0x5344 3120 serial: 0x559b2001 3121 ssr: 0000000008000000040090000f05391e000800000001000003000000000000000000000000000000000000000000000000000000000000000000000000000000 3122 scr: 0245848300000000 3123 name: SH64G 3124 3125 ### mmc1:0001 info: 3126 3127 fwrev: 0x0400000000000000 3128 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=CJTD4R MODALIAS=mmc:block 3129 cid: 150100434a54443452042559facb7700 3130 rel_sectors: 0x1 3131 enhanced_rpmb_supported: 0x1 3132 rca: 0x0001 3133 pre_eol_info: 0x01 3134 csd: d02701320f5903fff6dbffef8e404000 3135 manfid: 0x000015 3136 ocr: 0x00200000 3137 preferred_erase_size: 4194304 3138 enhanced_area_offset: 18446744073709551594 3139 raw_rpmb_size_mult: 0x20 3140 type: MMC 3141 hwrev: 0x0 3142 date: 07/2020 3143 prv: 0x4 3144 ffu_capable: 1 3145 dsr: 0x404 3146 erase_size: 524288 3147 life_time: 0x01 0x01 3148 enhanced_area_size: 4294967274 3149 oemid: 0x0100 3150 serial: 0x2559facb 3151 cmdq_en: 0 3152 rev: 0x8 3153 name: CJTD4R 3154 3155 ### Boot system health: 3156 3157 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 3158 19:19:38: 2400/2016MHz 0.00 23% 14% 6% 0% 1% 0% 27.6°C 0/12 3159 19:19:38: 2400/2016MHz 0.00 27% 17% 10% 0% 0% 0% 27.1°C 0/12 3160 19:19:39: 2400/2016MHz 0.00 19% 9% 8% 0% 0% 0% 25.8°C 0/12 3161 19:19:39: 2400/2016MHz 0.00 55% 34% 14% 0% 3% 1% 27.0°C 0/12 3162 19:19:39: 2400/2016MHz 0.00 89% 34% 37% 0% 12% 4% 28.0°C 0/12 3163 3164 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 3165 3166 ### Activated Armbian ramlog partition with zstd compression 3167 3168 Tue 30 Mar 2021 07:19:37 PM CEST | Odroid N2 | 21.02.3 | arm64 | aarch64 | 5.10.21-meson64 3169 3170 ### dmesg: 3171 3172 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 3173 [ 0.000000] Linux version 5.10.21-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.3 SMP PREEMPT Mon Mar 8 07:22:00 UTC 2021 3174 [ 0.000000] Machine model: Hardkernel ODROID-N2Plus 3175 [ 0.000000] efi: UEFI not found. 3176 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 3177 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 3178 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 3179 [ 0.000000] NUMA: No NUMA configuration found 3180 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 3181 [ 0.000000] NUMA: NODE_DATA [mem 0xb502e100-0xb502ffff] 3182 [ 0.000000] Zone ranges: 3183 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 3184 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 3185 [ 0.000000] Normal empty 3186 [ 0.000000] Movable zone start for each node 3187 [ 0.000000] Early memory node ranges 3188 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 3189 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 3190 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 3191 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 3192 [ 0.000000] On node 0 totalpages: 972800 3193 [ 0.000000] DMA zone: 4096 pages used for memmap 3194 [ 0.000000] DMA zone: 0 pages reserved 3195 [ 0.000000] DMA zone: 262144 pages, LIFO batch:63 3196 [ 0.000000] DMA32 zone: 11104 pages used for memmap 3197 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 3198 [ 0.000000] psci: probing for conduit method from DT. 3199 [ 0.000000] psci: PSCIv1.0 detected in firmware. 3200 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 3201 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 3202 [ 0.000000] psci: SMC Calling Convention v1.1 3203 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 3204 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 3205 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 3206 [ 0.000000] Detected VIPT I-cache on CPU0 3207 [ 0.000000] CPU features: detected: ARM erratum 845719 3208 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 3209 [ 0.000000] Policy zone: DMA32 3210 [ 0.000000] Kernel command line: root=UUID=51c33730-20c8-4007-8dc5-c3478d176211 rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1908 max_freq_a73=2208 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 3211 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 3212 Please use sysfs to set IO scheduler for individual devices. 3213 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 3214 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 3215 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 3216 [ 0.000000] software IO TLB: mapped [mem 0x000000003896d000-0x000000003c96d000] (64MB) 3217 [ 0.000000] Memory: 2783972K/3891200K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 189724K reserved, 917504K cma-reserved) 3218 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 3219 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 3220 [ 0.000000] rcu: RCU event tracing is enabled. 3221 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 3222 [ 0.000000] Trampoline variant of Tasks RCU enabled. 3223 [ 0.000000] Rude variant of Tasks RCU enabled. 3224 [ 0.000000] Tracing variant of Tasks RCU enabled. 3225 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 3226 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 3227 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 3228 [ 0.000000] GIC: Using split EOI/Deactivate mode 3229 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 3230 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 3231 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 3232 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 3233 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 3234 [ 0.000254] Console: colour dummy device 80x25 3235 [ 0.000289] printk: console [tty1] enabled 3236 [ 0.000376] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 3237 [ 0.000388] pid_max: default: 32768 minimum: 301 3238 [ 0.000472] LSM: Security Framework initializing 3239 [ 0.000497] Yama: becoming mindful. 3240 [ 0.000585] AppArmor: AppArmor initialized 3241 [ 0.000636] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 3242 [ 0.000655] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 3243 [ 0.002658] rcu: Hierarchical SRCU implementation. 3244 [ 0.005156] EFI services will not be available. 3245 [ 0.005577] smp: Bringing up secondary CPUs ... 3246 [ 0.006248] Detected VIPT I-cache on CPU1 3247 [ 0.006310] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 3248 [ 0.007505] CPU features: detected: ARM erratum 858921 3249 [ 0.007514] CPU features: detected: Spectre-v2 3250 [ 0.007517] CPU features: detected: Spectre-v4 3251 [ 0.007523] Detected VIPT I-cache on CPU2 3252 [ 0.007549] arch_timer: Enabling local workaround for ARM erratum 858921 3253 [ 0.007563] arch_timer: CPU2: Trapping CNTVCT access 3254 [ 0.007577] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 3255 [ 0.008289] Detected VIPT I-cache on CPU3 3256 [ 0.008305] arch_timer: Enabling local workaround for ARM erratum 858921 3257 [ 0.008312] arch_timer: CPU3: Trapping CNTVCT access 3258 [ 0.008320] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 3259 [ 0.008950] Detected VIPT I-cache on CPU4 3260 [ 0.008966] arch_timer: Enabling local workaround for ARM erratum 858921 3261 [ 0.008974] arch_timer: CPU4: Trapping CNTVCT access 3262 [ 0.008981] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 3263 [ 0.009599] Detected VIPT I-cache on CPU5 3264 [ 0.009616] arch_timer: Enabling local workaround for ARM erratum 858921 3265 [ 0.009622] arch_timer: CPU5: Trapping CNTVCT access 3266 [ 0.009630] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 3267 [ 0.009712] smp: Brought up 1 node, 6 CPUs 3268 [ 0.009730] SMP: Total of 6 processors activated. 3269 [ 0.009737] CPU features: detected: 32-bit EL0 Support 3270 [ 0.009743] CPU features: detected: CRC32 instructions 3271 [ 0.009749] CPU features: detected: 32-bit EL1 Support 3272 [ 0.021007] CPU: All CPU(s) started at EL2 3273 [ 0.021056] alternatives: patching kernel code 3274 [ 0.023056] devtmpfs: initialized 3275 [ 0.030712] Registered cp15_barrier emulation handler 3276 [ 0.030726] Registered setend emulation handler 3277 [ 0.030895] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 3278 [ 0.030938] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 3279 [ 0.046201] pinctrl core: initialized pinctrl subsystem 3280 [ 0.046792] DMI not present or invalid. 3281 [ 0.047170] NET: Registered protocol family 16 3282 [ 0.048776] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 3283 [ 0.049062] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 3284 [ 0.049292] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 3285 [ 0.049336] audit: initializing netlink subsys (disabled) 3286 [ 0.049448] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 3287 [ 0.050778] thermal_sys: Registered thermal governor 'fair_share' 3288 [ 0.050785] thermal_sys: Registered thermal governor 'bang_bang' 3289 [ 0.050789] thermal_sys: Registered thermal governor 'step_wise' 3290 [ 0.050793] thermal_sys: Registered thermal governor 'user_space' 3291 [ 0.051213] cpuidle: using governor menu 3292 [ 0.051554] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 3293 [ 0.051696] ASID allocator initialised with 65536 entries 3294 [ 0.052706] Serial: AMBA PL011 UART driver 3295 [ 0.087601] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 3296 [ 0.087611] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 3297 [ 0.087615] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 3298 [ 0.087620] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 3299 [ 0.089055] cryptd: max_cpu_qlen set to 1000 3300 [ 0.156235] raid6: neonx8 gen() 2783 MB/s 3301 [ 0.224296] raid6: neonx8 xor() 2042 MB/s 3302 [ 0.292362] raid6: neonx4 gen() 3002 MB/s 3303 [ 0.360426] raid6: neonx4 xor() 2348 MB/s 3304 [ 0.428492] raid6: neonx2 gen() 2577 MB/s 3305 [ 0.496553] raid6: neonx2 xor() 2134 MB/s 3306 [ 0.564618] raid6: neonx1 gen() 1964 MB/s 3307 [ 0.632684] raid6: neonx1 xor() 1721 MB/s 3308 [ 0.700742] raid6: int64x8 gen() 1373 MB/s 3309 [ 0.768812] raid6: int64x8 xor() 735 MB/s 3310 [ 0.836897] raid6: int64x4 gen() 1463 MB/s 3311 [ 0.904946] raid6: int64x4 xor() 733 MB/s 3312 [ 0.972999] raid6: int64x2 gen() 1362 MB/s 3313 [ 1.041073] raid6: int64x2 xor() 619 MB/s 3314 [ 1.109130] raid6: int64x1 gen() 1127 MB/s 3315 [ 1.177198] raid6: int64x1 xor() 462 MB/s 3316 [ 1.177201] raid6: using algorithm neonx4 gen() 3002 MB/s 3317 [ 1.177204] raid6: .... xor() 2348 MB/s, rmw enabled 3318 [ 1.177208] raid6: using neon recovery algorithm 3319 [ 1.177660] ACPI: Interpreter disabled. 3320 [ 1.178442] 5V: supplied by 12V 3321 [ 1.179338] VDDAO_3V3: supplied by 12V 3322 [ 1.179817] iommu: Default domain type: Translated 3323 [ 1.179985] vgaarb: loaded 3324 [ 1.180739] SCSI subsystem initialized 3325 [ 1.181065] usbcore: registered new interface driver usbfs 3326 [ 1.181099] usbcore: registered new interface driver hub 3327 [ 1.181140] usbcore: registered new device driver usb 3328 [ 1.181404] pps_core: LinuxPPS API ver. 1 registered 3329 [ 1.181408] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 3330 [ 1.181426] PTP clock support registered 3331 [ 1.181629] EDAC MC: Ver: 3.0.0 3332 [ 1.183007] NetLabel: Initializing 3333 [ 1.183014] NetLabel: domain hash size = 128 3334 [ 1.183017] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 3335 [ 1.183058] NetLabel: unlabeled traffic allowed by default 3336 [ 1.183489] clocksource: Switched to clocksource arch_sys_counter 3337 [ 1.183704] VFS: Disk quotas dquot_6.6.0 3338 [ 1.183747] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 3339 [ 1.184099] AppArmor: AppArmor Filesystem Enabled 3340 [ 1.184148] pnp: PnP ACPI: disabled 3341 [ 1.189767] NET: Registered protocol family 2 3342 [ 1.190233] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 3343 [ 1.190335] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 3344 [ 1.190592] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 3345 [ 1.190779] TCP: Hash tables configured (established 32768 bind 32768) 3346 [ 1.190929] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 3347 [ 1.190994] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 3348 [ 1.191041] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 3349 [ 1.191189] NET: Registered protocol family 1 3350 [ 1.191207] PCI: CLS 0 bytes, default 64 3351 [ 1.191340] Trying to unpack rootfs image as initramfs... 3352 [ 1.758206] Freeing initrd memory: 14920K 3353 [ 1.759135] kvm [1]: IPA Size Limit: 40 bits 3354 [ 1.759876] kvm [1]: vgic interrupt IRQ9 3355 [ 1.760010] kvm [1]: Hyp mode initialized successfully 3356 [ 1.765159] Initialise system trusted keyrings 3357 [ 1.765194] Key type blacklist registered 3358 [ 1.765295] workingset: timestamp_bits=44 max_order=20 bucket_order=0 3359 [ 1.768486] zbud: loaded 3360 [ 1.769467] squashfs: version 4.0 (2009/01/31) Phillip Lougher 3361 [ 1.769936] fuse: init (API version 7.32) 3362 [ 1.770684] integrity: Platform Keyring initialized 3363 [ 1.799233] xor: measuring software checksum speed 3364 [ 1.802087] 8regs : 3476 MB/sec 3365 [ 1.804543] 32regs : 4020 MB/sec 3366 [ 1.807191] arm64_neon : 3720 MB/sec 3367 [ 1.807195] xor: using function: 32regs (4020 MB/sec) 3368 [ 1.807202] Key type asymmetric registered 3369 [ 1.807205] Asymmetric key parser 'x509' registered 3370 [ 1.807241] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 3371 [ 1.807321] io scheduler mq-deadline registered 3372 [ 1.807325] io scheduler kyber registered 3373 [ 1.807402] io scheduler bfq registered 3374 [ 1.809969] gpio-447 (usb-hub-reset): hogged as output/high 3375 [ 1.812981] EINJ: ACPI disabled. 3376 [ 1.819260] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 3377 [ 1.820747] VCC_3V3: supplied by VDDAO_3V3 3378 [ 1.820782] FLASH_1V8: supplied by VCC_3V3 3379 [ 1.820813] VCC_1V8: supplied by VCC_3V3 3380 [ 1.820857] VDDAO_1V8: supplied by VDDAO_3V3 3381 [ 1.820885] VDDCPU_A: supplied by regulator-dummy 3382 [ 1.821235] VDDCPU_B: supplied by regulator-dummy 3383 [ 1.821934] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 3384 [ 1.824353] Serial: AMBA driver 3385 [ 1.824638] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 3386 [ 1.824728] printk: console [ttyAML0] enabled 3387 [ 1.825254] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 3388 [ 1.830536] loop: module loaded 3389 [ 1.832464] libphy: Fixed MDIO Bus: probed 3390 [ 1.833441] tun: Universal TUN/TAP device driver, 1.6 3391 [ 1.834107] thunder_xcv, ver 1.0 3392 [ 1.834143] thunder_bgx, ver 1.0 3393 [ 1.834170] nicpf, ver 1.0 3394 [ 1.834639] e1000e: Intel(R) PRO/1000 Network Driver 3395 [ 1.834642] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 3396 [ 1.834682] igb: Intel(R) Gigabit Ethernet Network Driver 3397 [ 1.834686] igb: Copyright (c) 2007-2014 Intel Corporation. 3398 [ 1.834716] igbvf: Intel(R) Gigabit Virtual Function Network Driver 3399 [ 1.834720] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 3400 [ 1.834859] sky2: driver version 1.30 3401 [ 1.835237] VFIO - User Level meta-driver version: 0.3 3402 [ 1.836678] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 3403 [ 1.836699] ehci-pci: EHCI PCI platform driver 3404 [ 1.836734] ehci-platform: EHCI generic platform driver 3405 [ 1.836873] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 3406 [ 1.836897] ohci-pci: OHCI PCI platform driver 3407 [ 1.836932] ohci-platform: OHCI generic platform driver 3408 [ 1.837369] usbcore: registered new interface driver usb-storage 3409 [ 1.838716] mousedev: PS/2 mouse device common for all mice 3410 [ 1.839106] i2c /dev entries driver 3411 [ 1.844692] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 3412 [ 1.845592] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 3413 [ 1.846503] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 3414 [ 1.847103] sdhci: Secure Digital Host Controller Interface driver 3415 [ 1.847108] sdhci: Copyright(c) Pierre Ossman 3416 [ 1.847214] Synopsys Designware Multimedia Card Interface Driver 3417 [ 1.847702] sdhci-pltfm: SDHCI platform and OF driver helper 3418 [ 1.848581] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 3419 [ 1.849007] ledtrig-cpu: registered to indicate activity on CPUs 3420 [ 1.849224] meson-sm: secure-monitor enabled 3421 [ 1.849366] hid: raw HID events driver (C) Jiri Kosina 3422 [ 1.849448] usbcore: registered new interface driver usbhid 3423 [ 1.849452] usbhid: USB HID core driver 3424 [ 1.850301] NET: Registered protocol family 10 3425 [ 1.850782] Segment Routing with IPv6 3426 [ 1.850804] NET: Registered protocol family 17 3427 [ 1.850893] 8021q: 802.1Q VLAN Support v1.8 3428 [ 1.850916] Key type dns_resolver registered 3429 [ 1.851160] registered taskstats version 1 3430 [ 1.851165] Loading compiled-in X.509 certificates 3431 [ 1.852748] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 3432 [ 1.854148] zswap: loaded using pool zstd/z3fold 3433 [ 1.854291] Key type ._fscrypt registered 3434 [ 1.854293] Key type .fscrypt registered 3435 [ 1.854295] Key type fscrypt-provisioning registered 3436 [ 1.855312] Btrfs loaded, crc32c=crc32c-generic 3437 [ 1.860819] Key type encrypted registered 3438 [ 1.860830] AppArmor: AppArmor sha1 policy hashing enabled 3439 [ 1.866104] HUB_5V: supplied by 5V 3440 [ 1.866264] USB_PWR_EN: supplied by 5V 3441 [ 1.867757] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 3442 [ 1.867764] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 3443 [ 1.870417] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 3444 [ 1.870467] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 3445 [ 1.870548] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 3446 [ 1.871042] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 3447 [ 1.871051] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 3448 [ 1.871130] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 3449 [ 1.871150] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 3450 [ 1.871259] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 3451 [ 1.871262] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3452 [ 1.871264] usb usb1: Product: xHCI Host Controller 3453 [ 1.871266] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 3454 [ 1.871268] usb usb1: SerialNumber: xhci-hcd.0.auto 3455 [ 1.871433] hub 1-0:1.0: USB hub found 3456 [ 1.871443] hub 1-0:1.0: 2 ports detected 3457 [ 1.871567] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 3458 [ 1.871573] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 3459 [ 1.871577] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 3460 [ 1.871595] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 3461 [ 1.871622] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 3462 [ 1.871624] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3463 [ 1.871626] usb usb2: Product: xHCI Host Controller 3464 [ 1.871628] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 3465 [ 1.871630] usb usb2: SerialNumber: xhci-hcd.0.auto 3466 [ 1.871767] hub 2-0:1.0: USB hub found 3467 [ 1.871776] hub 2-0:1.0: 1 port detected 3468 [ 1.872018] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 3469 [ 1.872779] meson-gx-mmc ffe05000.sd: Got CD GPIO 3470 [ 1.900057] Freeing unused kernel memory: 3328K 3471 [ 1.939618] Run /init as init process 3472 [ 1.939621] with arguments: 3473 [ 1.939623] /init 3474 [ 1.939625] with environment: 3475 [ 1.939627] HOME=/ 3476 [ 1.939628] TERM=linux 3477 [ 1.939629] hdmimode=custombuilt 3478 [ 1.939631] cvbsmode=576cvbs 3479 [ 1.939632] max_freq_a53=1908 3480 [ 1.939633] max_freq_a73=2208 3481 [ 1.939634] voutmode=hdmi 3482 [ 1.939635] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 3483 [ 1.939637] disablehpd=false 3484 [ 1.939638] cvbscable= 3485 [ 1.939639] overscan=100 3486 [ 2.071384] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 3487 [ 2.071390] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 3488 [ 2.071514] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 3489 [ 2.073500] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 3490 [ 2.073508] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 3491 [ 2.073510] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 3492 [ 2.073512] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 3493 [ 2.073515] meson8b-dwmac ff3f0000.ethernet: COE Type 2 3494 [ 2.073516] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 3495 [ 2.073518] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 3496 [ 2.073557] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 3497 [ 2.073559] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 3498 [ 2.073561] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 3499 [ 2.073704] libphy: stmmac: probed 3500 [ 2.077199] libphy: mdio_mux: probed 3501 [ 2.086168] meson-vrtc ff8000a8.rtc: registered as rtc1 3502 [ 2.096916] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 3503 [ 2.097222] rtc-pcf8563 1-0051: registered as rtc0 3504 [ 2.098687] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 3505 [ 2.098699] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 3506 [ 2.102799] mmc0: new HS200 MMC card at address 0001 3507 [ 2.103631] mmcblk0: mmc0:0001 CJTD4R 58.2 GiB 3508 [ 2.104066] mmcblk0boot0: mmc0:0001 CJTD4R partition 1 4.00 MiB 3509 [ 2.104476] mmcblk0boot1: mmc0:0001 CJTD4R partition 2 4.00 MiB 3510 [ 2.104699] mmcblk0rpmb: mmc0:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 3511 [ 2.106850] mmcblk0: p1 3512 [ 2.125101] random: fast init done 3513 [ 2.133357] mmc1: new ultra high speed SDR104 SDXC card at address aaaa 3514 [ 2.133963] mmcblk1: mmc1:aaaa SH64G 59.5 GiB 3515 [ 2.135694] mmcblk1: p1 3516 [ 2.211506] usb 1-1: new high-speed USB device number 2 using xhci-hcd 3517 [ 2.283906] libphy: mdio_mux: probed 3518 [ 2.361856] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 3519 [ 2.361862] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 3520 [ 2.361864] usb 1-1: Product: USB2.1 Hub 3521 [ 2.361866] usb 1-1: Manufacturer: GenesysLogic 3522 [ 2.415790] hub 1-1:1.0: USB hub found 3523 [ 2.416022] hub 1-1:1.0: 4 ports detected 3524 [ 2.491601] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 3525 [ 2.518074] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 3526 [ 2.518077] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 3527 [ 2.518080] usb 2-1: Product: USB3.1 Hub 3528 [ 2.518082] usb 2-1: Manufacturer: GenesysLogic 3529 [ 2.543772] hub 2-1:1.0: USB hub found 3530 [ 2.544053] hub 2-1:1.0: 4 ports detected 3531 [ 2.774721] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 3532 [ 2.791514] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 3533 [ 2.922531] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 3534 [ 2.922537] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 3535 [ 2.922539] usb 1-1.1: Product: USB OPTICAL MOUSE 3536 [ 2.939494] systemd[1]: System time before build time, advancing clock. 3537 [ 2.943069] systemd[1]: Inserted module 'autofs4' 3538 [ 2.960125] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 3539 [ 2.960332] systemd[1]: Detected architecture arm64. 3540 [ 2.961788] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input0 3541 [ 2.961900] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 3542 [ 2.993894] systemd[1]: Set hostname to <odroidn2>. 3543 [ 3.067504] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 3544 [ 3.135975] random: systemd: uninitialized urandom read (16 bytes read) 3545 [ 3.138571] random: systemd: uninitialized urandom read (16 bytes read) 3546 [ 3.139732] systemd[1]: Created slice system-getty.slice. 3547 [ 3.139937] random: systemd: uninitialized urandom read (16 bytes read) 3548 [ 3.140028] systemd[1]: Listening on initctl Compatibility Named Pipe. 3549 [ 3.140402] systemd[1]: Created slice system-serial\x2dgetty.slice. 3550 [ 3.140698] systemd[1]: Listening on Journal Socket. 3551 [ 3.142081] systemd[1]: Starting Create list of required static device nodes for the current kernel... 3552 [ 3.142534] systemd[1]: Listening on udev Kernel Socket. 3553 [ 3.142839] systemd[1]: Listening on Journal Socket (/dev/log). 3554 [ 3.187310] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 3555 [ 3.200929] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 3556 [ 3.200938] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 3557 [ 3.200940] usb 1-1.3: Product: USB Keyboard 3558 [ 3.200942] usb 1-1.3: Manufacturer: Logitech 3559 [ 3.284705] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input1 3560 [ 3.343845] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 3561 [ 3.349779] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input2 3562 [ 3.373759] zram: Added device: zram0 3563 [ 3.373963] zram: Added device: zram1 3564 [ 3.374126] zram: Added device: zram2 3565 [ 3.407686] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 3566 [ 3.407779] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 3567 [ 3.412943] pwm-gpio pwmgpio: 1 gpio pwms loaded 3568 [ 3.438411] zram0: detected capacity change from 0 to 1904500736 3569 [ 3.480810] mc: Linux media interface: v0.10 3570 [ 3.481825] panfrost ffe40000.gpu: clock rate = 24000000 3571 [ 3.481875] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 3572 [ 3.483379] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 3573 [ 3.483386] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 3574 [ 3.483390] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 3575 [ 3.483392] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 3576 [ 3.496328] videodev: Linux video capture interface: v2.00 3577 [ 3.522467] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 0 3578 [ 3.531227] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 3579 [ 3.534715] meson-drm ff900000.vpu: Queued 2 outputs on vpu 3580 [ 3.575878] meson-drm ff900000.vpu: CVBS Output connector not available 3581 [ 3.586666] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 3582 [ 3.603602] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 3583 [ 3.615733] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 3584 [ 3.615980] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 3585 [ 3.616242] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 1 3586 [ 3.631555] Registered IR keymap rc-odroid 3587 [ 3.636472] IR NEC protocol handler initialized 3588 [ 3.663870] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 3589 [ 3.664645] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 3590 [ 3.664754] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input4 3591 [ 3.665689] meson-ir ff808000.ir: receiver initialized 3592 [ 3.904318] Console: switching to colour frame buffer device 240x67 3593 [ 3.926163] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 3594 [ 3.966804] axg-sound-card sound: ASoC: no DMI vendor name! 3595 [ 4.479513] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 3596 [ 4.521491] zram1: detected capacity change from 0 to 52428800 3597 [ 6.564743] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 3598 [ 6.564761] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 3599 [ 7.455362] systemd-journald[1849]: Received request to flush runtime journal from PID 1 3600 3601 ### armbian-release: 3602 3603 # PLEASE DO NOT EDIT THIS FILE 3604 BOARD=odroidn2 3605 BOARD_NAME="Odroid N2" 3606 BOARDFAMILY=meson-g12b 3607 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 3608 BUILD_REPOSITORY_COMMIT=e846ef656-dirty 3609 DISTRIBUTION_CODENAME=buster 3610 DISTRIBUTION_STATUS=supported 3611 VERSION=21.02.3 3612 LINUXFAMILY=meson64 3613 BRANCH=current 3614 ARCH=arm64 3615 IMAGE_TYPE=stable 3616 BOARD_TYPE=conf 3617 INITRD_ARCH=arm64 3618 KERNEL_IMAGE_TYPE=Image 3619 3620 ### boot environment: 3621 3622 verbosity=1 3623 console=both 3624 overlay_prefix=meson 3625 bootlogo=true 3626 rootdev=UUID=51c33730-20c8-4007-8dc5-c3478d176211 3627 rootfstype=ext4 3628 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 3629 3630 ### lsusb: 3631 3632 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 3633 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 3634 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 3635 Bus 001 Device 003: ID 275d:0ba6 3636 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 3637 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 3638 3639 ### lscpu: 3640 3641 Architecture: aarch64 3642 Byte Order: Little Endian 3643 CPU(s): 6 3644 On-line CPU(s) list: 0-5 3645 Thread(s) per core: 1 3646 Core(s) per socket: 3 3647 Socket(s): 2 3648 NUMA node(s): 1 3649 Vendor ID: ARM 3650 Model: 4 3651 Model name: Cortex-A53 3652 Stepping: r0p4 3653 CPU max MHz: 2400.0000 3654 CPU min MHz: 100.0000 3655 BogoMIPS: 48.00 3656 L1d cache: unknown size 3657 L1i cache: unknown size 3658 L2 cache: unknown size 3659 NUMA node0 CPU(s): 0-5 3660 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3661 3662 ### cpuinfo: 3663 3664 processor : 0 3665 BogoMIPS : 48.00 3666 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3667 CPU implementer : 0x41 3668 CPU architecture: 8 3669 CPU variant : 0x0 3670 CPU part : 0xd03 3671 CPU revision : 4 3672 3673 processor : 1 3674 BogoMIPS : 48.00 3675 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3676 CPU implementer : 0x41 3677 CPU architecture: 8 3678 CPU variant : 0x0 3679 CPU part : 0xd03 3680 CPU revision : 4 3681 3682 processor : 2 3683 BogoMIPS : 48.00 3684 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3685 CPU implementer : 0x41 3686 CPU architecture: 8 3687 CPU variant : 0x0 3688 CPU part : 0xd09 3689 CPU revision : 2 3690 3691 processor : 3 3692 BogoMIPS : 48.00 3693 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3694 CPU implementer : 0x41 3695 CPU architecture: 8 3696 CPU variant : 0x0 3697 CPU part : 0xd09 3698 CPU revision : 2 3699 3700 processor : 4 3701 BogoMIPS : 48.00 3702 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3703 CPU implementer : 0x41 3704 CPU architecture: 8 3705 CPU variant : 0x0 3706 CPU part : 0xd09 3707 CPU revision : 2 3708 3709 processor : 5 3710 BogoMIPS : 48.00 3711 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3712 CPU implementer : 0x41 3713 CPU architecture: 8 3714 CPU variant : 0x0 3715 CPU part : 0xd09 3716 CPU revision : 2 3717 3718 3719 ### meminfo: 3720 3721 MemTotal: 3719724 kB 3722 MemFree: 3412608 kB 3723 MemAvailable: 3372708 kB 3724 Buffers: 12536 kB 3725 Cached: 55444 kB 3726 SwapCached: 0 kB 3727 Active: 33220 kB 3728 Inactive: 156220 kB 3729 Active(anon): 128 kB 3730 Inactive(anon): 126268 kB 3731 Active(file): 33092 kB 3732 Inactive(file): 29952 kB 3733 Unevictable: 0 kB 3734 Mlocked: 0 kB 3735 SwapTotal: 1859860 kB 3736 SwapFree: 1859860 kB 3737 Dirty: 8896 kB 3738 Writeback: 0 kB 3739 AnonPages: 121512 kB 3740 Mapped: 14996 kB 3741 Shmem: 4936 kB 3742 KReclaimable: 13868 kB 3743 Slab: 45700 kB 3744 SReclaimable: 13868 kB 3745 SUnreclaim: 31832 kB 3746 KernelStack: 2624 kB 3747 PageTables: 5436 kB 3748 NFS_Unstable: 0 kB 3749 Bounce: 0 kB 3750 WritebackTmp: 0 kB 3751 CommitLimit: 3719720 kB 3752 Committed_AS: 4249712 kB 3753 VmallocTotal: 135290159040 kB 3754 VmallocUsed: 31444 kB 3755 VmallocChunk: 0 kB 3756 Percpu: 1392 kB 3757 HardwareCorrupted: 0 kB 3758 AnonHugePages: 40960 kB 3759 ShmemHugePages: 0 kB 3760 ShmemPmdMapped: 0 kB 3761 FileHugePages: 0 kB 3762 FilePmdMapped: 0 kB 3763 CmaTotal: 917504 kB 3764 CmaFree: 901724 kB 3765 HugePages_Total: 0 3766 HugePages_Free: 0 3767 HugePages_Rsvd: 0 3768 HugePages_Surp: 0 3769 Hugepagesize: 2048 kB 3770 Hugetlb: 0 kB 3771 3772 ### virtual memory: 3773 3774 vm.admin_reserve_kbytes = 8192 3775 vm.block_dump = 0 3776 vm.compaction_proactiveness = 20 3777 vm.compact_unevictable_allowed = 1 3778 vm.dirty_background_bytes = 0 3779 vm.dirty_background_ratio = 10 3780 vm.dirty_bytes = 0 3781 vm.dirty_expire_centisecs = 3000 3782 vm.dirty_ratio = 20 3783 vm.dirtytime_expire_seconds = 43200 3784 vm.dirty_writeback_centisecs = 500 3785 vm.extfrag_threshold = 500 3786 vm.hugetlb_shm_group = 0 3787 vm.laptop_mode = 0 3788 vm.legacy_va_layout = 0 3789 vm.lowmem_reserve_ratio = 256 256 32 0 3790 vm.max_map_count = 65530 3791 vm.memory_failure_early_kill = 0 3792 vm.memory_failure_recovery = 1 3793 vm.min_free_kbytes = 45056 3794 vm.min_slab_ratio = 5 3795 vm.min_unmapped_ratio = 1 3796 vm.mmap_min_addr = 4096 3797 vm.mmap_rnd_bits = 18 3798 vm.mmap_rnd_compat_bits = 11 3799 vm.nr_hugepages = 0 3800 vm.nr_hugepages_mempolicy = 0 3801 vm.nr_overcommit_hugepages = 0 3802 vm.numa_stat = 1 3803 vm.numa_zonelist_order = Node 3804 vm.oom_dump_tasks = 1 3805 vm.oom_kill_allocating_task = 0 3806 vm.overcommit_kbytes = 0 3807 vm.overcommit_memory = 0 3808 vm.overcommit_ratio = 50 3809 vm.page-cluster = 0 3810 vm.page_lock_unfairness = 5 3811 vm.panic_on_oom = 0 3812 vm.percpu_pagelist_fraction = 0 3813 vm.stat_interval = 1 3814 vm.swappiness = 100 3815 vm.user_reserve_kbytes = 115003 3816 vm.vfs_cache_pressure = 100 3817 vm.watermark_boost_factor = 15000 3818 vm.watermark_scale_factor = 10 3819 vm.zone_reclaim_mode = 0 3820 3821 ### ip addr: 3822 3823 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 3824 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 3825 inet XXX.XXX.0.1/8 scope host lo 3826 valid_lft forever preferred_lft forever 3827 inet6 ::1/128 scope host 3828 valid_lft forever preferred_lft forever 3829 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 3830 link/ether 00:1e:06:42:52:64 brd ff:ff:ff:ff:ff:ff 3831 3832 ### partitions: 3833 3834 major minor #blocks name 3835 3836 179 0 61071360 mmcblk0 3837 179 1 60456544 mmcblk0p1 3838 179 96 62367744 mmcblk1 3839 179 97 62366720 mmcblk1p1 3840 252 0 1859864 zram0 3841 252 1 51200 zram1 3842 3843 ### df: 3844 3845 udev 1.4G 0 1.4G 0% /dev 3846 tmpfs 364M 5.0M 359M 2% /run 3847 /dev/mmcblk0p1 57G 20G 37G 36% / 3848 tmpfs 1.8G 0 1.8G 0% /dev/shm 3849 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 3850 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 3851 tmpfs 1.8G 0 1.8G 0% /tmp 3852 /dev/zram1 49M 8.8M 37M 20% /var/log 3853 3854 ### lsblk: 3855 3856 NAME FSTYPE SIZE MOUNTPOINT UUID 3857 mmcblk0 58.2G 3858 └─mmcblk0p1 ext4 57.7G / 51c33730-20c8-4007-8dc5-c3478d176211 3859 mmcblk0boot0 4M 3860 mmcblk0boot1 4M 3861 mmcblk1 59.5G 3862 └─mmcblk1p1 ext4 59.5G 83574bbb-e4ac-4398-8436-9962a3c61cdf 3863 zram1 50M /var/log 3864 3865 ### zramctl: 3866 3867 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 3868 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 3869 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 3870 3871 ### mtab: 3872 3873 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 3874 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 3875 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 3876 3877 ### mmc1:aaaa info: 3878 3879 fwrev: 0x0 3880 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SH64G MODALIAS=mmc:block 3881 cid: 035344534836344780559b2001014a00 3882 rca: 0xaaaa 3883 csd: 400e0032db790001dbd37f800a404000 3884 manfid: 0x000003 3885 ocr: 0x00200000 3886 preferred_erase_size: 4194304 3887 type: SD 3888 hwrev: 0x8 3889 date: 10/2020 3890 dsr: 0x404 3891 erase_size: 512 3892 oemid: 0x5344 3893 serial: 0x559b2001 3894 ssr: 0000000008000000040090000f05391e000800000001000003000000000000000000000000000000000000000000000000000000000000000000000000000000 3895 scr: 0245848300000000 3896 name: SH64G 3897 3898 ### mmc0:0001 info: 3899 3900 fwrev: 0x0400000000000000 3901 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=CJTD4R MODALIAS=mmc:block 3902 cid: 150100434a54443452042559facb7700 3903 rel_sectors: 0x1 3904 enhanced_rpmb_supported: 0x1 3905 rca: 0x0001 3906 pre_eol_info: 0x01 3907 csd: d02701320f5903fff6dbffef8e404000 3908 manfid: 0x000015 3909 ocr: 0x00200000 3910 preferred_erase_size: 4194304 3911 enhanced_area_offset: 18446744073709551594 3912 raw_rpmb_size_mult: 0x20 3913 type: MMC 3914 hwrev: 0x0 3915 date: 07/2020 3916 prv: 0x4 3917 ffu_capable: 1 3918 dsr: 0x404 3919 erase_size: 524288 3920 life_time: 0x01 0x01 3921 enhanced_area_size: 4294967274 3922 oemid: 0x0100 3923 serial: 0x2559facb 3924 cmdq_en: 0 3925 rev: 0x8 3926 name: CJTD4R 3927 3928 ### Boot system health: 3929 3930 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 3931 19:19:38: 2400/2016MHz 0.00 22% 14% 6% 0% 1% 0% 30.3°C 0/12 3932 19:19:38: 2400/2016MHz 0.00 28% 17% 9% 0% 0% 0% 27.4°C 0/12 3933 19:19:39: 2400/2016MHz 0.00 18% 7% 10% 0% 0% 0% 27.1°C 0/12 3934 19:19:39: 2400/2016MHz 0.00 34% 19% 10% 0% 1% 1% 28.4°C 0/12 3935 19:19:39: 2400/2016MHz 0.00 90% 43% 28% 0% 14% 4% 30.4°C 0/12 3936 3937 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 3938 3939 ### Activated Armbian ramlog partition with zstd compression 3940 3941 Tue 30 Mar 2021 07:19:37 PM CEST | Odroid N2 | 21.02.3 | arm64 | aarch64 | 5.10.21-meson64 3942 3943 ### dmesg: 3944 3945 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 3946 [ 0.000000] Linux version 5.10.21-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.3 SMP PREEMPT Mon Mar 8 07:22:00 UTC 2021 3947 [ 0.000000] Machine model: Hardkernel ODROID-N2Plus 3948 [ 0.000000] efi: UEFI not found. 3949 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 3950 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 3951 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 3952 [ 0.000000] NUMA: No NUMA configuration found 3953 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 3954 [ 0.000000] NUMA: NODE_DATA [mem 0xb502e100-0xb502ffff] 3955 [ 0.000000] Zone ranges: 3956 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 3957 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 3958 [ 0.000000] Normal empty 3959 [ 0.000000] Movable zone start for each node 3960 [ 0.000000] Early memory node ranges 3961 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 3962 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 3963 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 3964 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 3965 [ 0.000000] On node 0 totalpages: 972800 3966 [ 0.000000] DMA zone: 4096 pages used for memmap 3967 [ 0.000000] DMA zone: 0 pages reserved 3968 [ 0.000000] DMA zone: 262144 pages, LIFO batch:63 3969 [ 0.000000] DMA32 zone: 11104 pages used for memmap 3970 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 3971 [ 0.000000] psci: probing for conduit method from DT. 3972 [ 0.000000] psci: PSCIv1.0 detected in firmware. 3973 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 3974 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 3975 [ 0.000000] psci: SMC Calling Convention v1.1 3976 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 3977 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 3978 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 3979 [ 0.000000] Detected VIPT I-cache on CPU0 3980 [ 0.000000] CPU features: detected: ARM erratum 845719 3981 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 3982 [ 0.000000] Policy zone: DMA32 3983 [ 0.000000] Kernel command line: root=UUID=51c33730-20c8-4007-8dc5-c3478d176211 rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1908 max_freq_a73=2208 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 3984 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 3985 Please use sysfs to set IO scheduler for individual devices. 3986 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 3987 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 3988 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 3989 [ 0.000000] software IO TLB: mapped [mem 0x000000003896d000-0x000000003c96d000] (64MB) 3990 [ 0.000000] Memory: 2783972K/3891200K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 189724K reserved, 917504K cma-reserved) 3991 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 3992 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 3993 [ 0.000000] rcu: RCU event tracing is enabled. 3994 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 3995 [ 0.000000] Trampoline variant of Tasks RCU enabled. 3996 [ 0.000000] Rude variant of Tasks RCU enabled. 3997 [ 0.000000] Tracing variant of Tasks RCU enabled. 3998 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 3999 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 4000 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 4001 [ 0.000000] GIC: Using split EOI/Deactivate mode 4002 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 4003 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 4004 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 4005 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 4006 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 4007 [ 0.000254] Console: colour dummy device 80x25 4008 [ 0.000288] printk: console [tty1] enabled 4009 [ 0.000374] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 4010 [ 0.000387] pid_max: default: 32768 minimum: 301 4011 [ 0.000470] LSM: Security Framework initializing 4012 [ 0.000496] Yama: becoming mindful. 4013 [ 0.000585] AppArmor: AppArmor initialized 4014 [ 0.000636] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 4015 [ 0.000655] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 4016 [ 0.002660] rcu: Hierarchical SRCU implementation. 4017 [ 0.005155] EFI services will not be available. 4018 [ 0.005575] smp: Bringing up secondary CPUs ... 4019 [ 0.006251] Detected VIPT I-cache on CPU1 4020 [ 0.006311] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 4021 [ 0.007504] CPU features: detected: ARM erratum 858921 4022 [ 0.007512] CPU features: detected: Spectre-v2 4023 [ 0.007515] CPU features: detected: Spectre-v4 4024 [ 0.007522] Detected VIPT I-cache on CPU2 4025 [ 0.007546] arch_timer: Enabling local workaround for ARM erratum 858921 4026 [ 0.007560] arch_timer: CPU2: Trapping CNTVCT access 4027 [ 0.007574] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 4028 [ 0.008282] Detected VIPT I-cache on CPU3 4029 [ 0.008298] arch_timer: Enabling local workaround for ARM erratum 858921 4030 [ 0.008306] arch_timer: CPU3: Trapping CNTVCT access 4031 [ 0.008314] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 4032 [ 0.008940] Detected VIPT I-cache on CPU4 4033 [ 0.008957] arch_timer: Enabling local workaround for ARM erratum 858921 4034 [ 0.008964] arch_timer: CPU4: Trapping CNTVCT access 4035 [ 0.008972] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 4036 [ 0.009584] Detected VIPT I-cache on CPU5 4037 [ 0.009600] arch_timer: Enabling local workaround for ARM erratum 858921 4038 [ 0.009607] arch_timer: CPU5: Trapping CNTVCT access 4039 [ 0.009615] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 4040 [ 0.009698] smp: Brought up 1 node, 6 CPUs 4041 [ 0.009716] SMP: Total of 6 processors activated. 4042 [ 0.009723] CPU features: detected: 32-bit EL0 Support 4043 [ 0.009729] CPU features: detected: CRC32 instructions 4044 [ 0.009735] CPU features: detected: 32-bit EL1 Support 4045 [ 0.021012] CPU: All CPU(s) started at EL2 4046 [ 0.021062] alternatives: patching kernel code 4047 [ 0.023062] devtmpfs: initialized 4048 [ 0.030746] Registered cp15_barrier emulation handler 4049 [ 0.030760] Registered setend emulation handler 4050 [ 0.030898] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 4051 [ 0.030939] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 4052 [ 0.046202] pinctrl core: initialized pinctrl subsystem 4053 [ 0.046943] DMI not present or invalid. 4054 [ 0.047314] NET: Registered protocol family 16 4055 [ 0.048845] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 4056 [ 0.049119] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 4057 [ 0.049363] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 4058 [ 0.049410] audit: initializing netlink subsys (disabled) 4059 [ 0.049528] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 4060 [ 0.050795] thermal_sys: Registered thermal governor 'fair_share' 4061 [ 0.050803] thermal_sys: Registered thermal governor 'bang_bang' 4062 [ 0.050809] thermal_sys: Registered thermal governor 'step_wise' 4063 [ 0.050812] thermal_sys: Registered thermal governor 'user_space' 4064 [ 0.051258] cpuidle: using governor menu 4065 [ 0.051603] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 4066 [ 0.051727] ASID allocator initialised with 65536 entries 4067 [ 0.052793] Serial: AMBA PL011 UART driver 4068 [ 0.085133] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 4069 [ 0.085143] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 4070 [ 0.085148] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 4071 [ 0.085152] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 4072 [ 0.090804] cryptd: max_cpu_qlen set to 1000 4073 [ 0.160291] raid6: neonx8 gen() 2781 MB/s 4074 [ 0.228334] raid6: neonx8 xor() 2042 MB/s 4075 [ 0.296397] raid6: neonx4 gen() 2996 MB/s 4076 [ 0.364462] raid6: neonx4 xor() 2348 MB/s 4077 [ 0.432527] raid6: neonx2 gen() 2582 MB/s 4078 [ 0.500588] raid6: neonx2 xor() 2136 MB/s 4079 [ 0.568652] raid6: neonx1 gen() 1966 MB/s 4080 [ 0.636713] raid6: neonx1 xor() 1720 MB/s 4081 [ 0.704777] raid6: int64x8 gen() 1374 MB/s 4082 [ 0.772847] raid6: int64x8 xor() 735 MB/s 4083 [ 0.840931] raid6: int64x4 gen() 1463 MB/s 4084 [ 0.908976] raid6: int64x4 xor() 733 MB/s 4085 [ 0.977036] raid6: int64x2 gen() 1362 MB/s 4086 [ 1.045107] raid6: int64x2 xor() 619 MB/s 4087 [ 1.113173] raid6: int64x1 gen() 1127 MB/s 4088 [ 1.181234] raid6: int64x1 xor() 462 MB/s 4089 [ 1.181238] raid6: using algorithm neonx4 gen() 2996 MB/s 4090 [ 1.181241] raid6: .... xor() 2348 MB/s, rmw enabled 4091 [ 1.181245] raid6: using neon recovery algorithm 4092 [ 1.181714] ACPI: Interpreter disabled. 4093 [ 1.182558] 5V: supplied by 12V 4094 [ 1.183461] VDDAO_3V3: supplied by 12V 4095 [ 1.183940] iommu: Default domain type: Translated 4096 [ 1.184064] vgaarb: loaded 4097 [ 1.184974] SCSI subsystem initialized 4098 [ 1.185223] usbcore: registered new interface driver usbfs 4099 [ 1.185256] usbcore: registered new interface driver hub 4100 [ 1.185292] usbcore: registered new device driver usb 4101 [ 1.185646] pps_core: LinuxPPS API ver. 1 registered 4102 [ 1.185650] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 4103 [ 1.185668] PTP clock support registered 4104 [ 1.185855] EDAC MC: Ver: 3.0.0 4105 [ 1.187185] NetLabel: Initializing 4106 [ 1.187192] NetLabel: domain hash size = 128 4107 [ 1.187194] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 4108 [ 1.187238] NetLabel: unlabeled traffic allowed by default 4109 [ 1.187667] clocksource: Switched to clocksource arch_sys_counter 4110 [ 1.187882] VFS: Disk quotas dquot_6.6.0 4111 [ 1.187929] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 4112 [ 1.188288] AppArmor: AppArmor Filesystem Enabled 4113 [ 1.188334] pnp: PnP ACPI: disabled 4114 [ 1.193563] NET: Registered protocol family 2 4115 [ 1.194011] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 4116 [ 1.194117] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 4117 [ 1.194374] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 4118 [ 1.194561] TCP: Hash tables configured (established 32768 bind 32768) 4119 [ 1.194713] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 4120 [ 1.194777] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 4121 [ 1.194823] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 4122 [ 1.194972] NET: Registered protocol family 1 4123 [ 1.194991] PCI: CLS 0 bytes, default 64 4124 [ 1.195118] Trying to unpack rootfs image as initramfs... 4125 [ 1.762573] Freeing initrd memory: 14920K 4126 [ 1.763521] kvm [1]: IPA Size Limit: 40 bits 4127 [ 1.764287] kvm [1]: vgic interrupt IRQ9 4128 [ 1.764419] kvm [1]: Hyp mode initialized successfully 4129 [ 1.769450] Initialise system trusted keyrings 4130 [ 1.769486] Key type blacklist registered 4131 [ 1.769619] workingset: timestamp_bits=44 max_order=20 bucket_order=0 4132 [ 1.772804] zbud: loaded 4133 [ 1.773789] squashfs: version 4.0 (2009/01/31) Phillip Lougher 4134 [ 1.774232] fuse: init (API version 7.32) 4135 [ 1.774981] integrity: Platform Keyring initialized 4136 [ 1.802702] xor: measuring software checksum speed 4137 [ 1.805552] 8regs : 3476 MB/sec 4138 [ 1.808008] 32regs : 4024 MB/sec 4139 [ 1.810654] arm64_neon : 3723 MB/sec 4140 [ 1.810657] xor: using function: 32regs (4024 MB/sec) 4141 [ 1.810664] Key type asymmetric registered 4142 [ 1.810668] Asymmetric key parser 'x509' registered 4143 [ 1.810703] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 4144 [ 1.810817] io scheduler mq-deadline registered 4145 [ 1.810822] io scheduler kyber registered 4146 [ 1.810901] io scheduler bfq registered 4147 [ 1.813463] gpio-447 (usb-hub-reset): hogged as output/high 4148 [ 1.816447] EINJ: ACPI disabled. 4149 [ 1.822715] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 4150 [ 1.824152] VCC_3V3: supplied by VDDAO_3V3 4151 [ 1.824187] FLASH_1V8: supplied by VCC_3V3 4152 [ 1.824217] VCC_1V8: supplied by VCC_3V3 4153 [ 1.824242] VDDAO_1V8: supplied by VDDAO_3V3 4154 [ 1.824286] VDDCPU_A: supplied by regulator-dummy 4155 [ 1.824639] VDDCPU_B: supplied by regulator-dummy 4156 [ 1.825315] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 4157 [ 1.827625] Serial: AMBA driver 4158 [ 1.827951] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 4159 [ 1.828043] printk: console [ttyAML0] enabled 4160 [ 1.828600] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 4161 [ 1.833903] loop: module loaded 4162 [ 1.835917] libphy: Fixed MDIO Bus: probed 4163 [ 1.836995] tun: Universal TUN/TAP device driver, 1.6 4164 [ 1.837638] thunder_xcv, ver 1.0 4165 [ 1.837667] thunder_bgx, ver 1.0 4166 [ 1.837692] nicpf, ver 1.0 4167 [ 1.838149] e1000e: Intel(R) PRO/1000 Network Driver 4168 [ 1.838152] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 4169 [ 1.838188] igb: Intel(R) Gigabit Ethernet Network Driver 4170 [ 1.838191] igb: Copyright (c) 2007-2014 Intel Corporation. 4171 [ 1.838219] igbvf: Intel(R) Gigabit Virtual Function Network Driver 4172 [ 1.838222] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 4173 [ 1.838349] sky2: driver version 1.30 4174 [ 1.838704] VFIO - User Level meta-driver version: 0.3 4175 [ 1.840147] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 4176 [ 1.840166] ehci-pci: EHCI PCI platform driver 4177 [ 1.840196] ehci-platform: EHCI generic platform driver 4178 [ 1.840336] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 4179 [ 1.840346] ohci-pci: OHCI PCI platform driver 4180 [ 1.840382] ohci-platform: OHCI generic platform driver 4181 [ 1.840806] usbcore: registered new interface driver usb-storage 4182 [ 1.842161] mousedev: PS/2 mouse device common for all mice 4183 [ 1.842554] i2c /dev entries driver 4184 [ 1.847881] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 4185 [ 1.848771] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 4186 [ 1.849672] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 4187 [ 1.850273] sdhci: Secure Digital Host Controller Interface driver 4188 [ 1.850278] sdhci: Copyright(c) Pierre Ossman 4189 [ 1.850382] Synopsys Designware Multimedia Card Interface Driver 4190 [ 1.850835] sdhci-pltfm: SDHCI platform and OF driver helper 4191 [ 1.851648] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 4192 [ 1.852136] ledtrig-cpu: registered to indicate activity on CPUs 4193 [ 1.852394] meson-sm: secure-monitor enabled 4194 [ 1.852571] hid: raw HID events driver (C) Jiri Kosina 4195 [ 1.852644] usbcore: registered new interface driver usbhid 4196 [ 1.852646] usbhid: USB HID core driver 4197 [ 1.853516] NET: Registered protocol family 10 4198 [ 1.853904] Segment Routing with IPv6 4199 [ 1.853930] NET: Registered protocol family 17 4200 [ 1.853987] 8021q: 802.1Q VLAN Support v1.8 4201 [ 1.854014] Key type dns_resolver registered 4202 [ 1.854280] registered taskstats version 1 4203 [ 1.854285] Loading compiled-in X.509 certificates 4204 [ 1.855822] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 4205 [ 1.857265] zswap: loaded using pool zstd/z3fold 4206 [ 1.857448] Key type ._fscrypt registered 4207 [ 1.857450] Key type .fscrypt registered 4208 [ 1.857452] Key type fscrypt-provisioning registered 4209 [ 1.858466] Btrfs loaded, crc32c=crc32c-generic 4210 [ 1.863512] Key type encrypted registered 4211 [ 1.863524] AppArmor: AppArmor sha1 policy hashing enabled 4212 [ 1.868868] HUB_5V: supplied by 5V 4213 [ 1.869087] USB_PWR_EN: supplied by 5V 4214 [ 1.870525] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 4215 [ 1.870533] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 4216 [ 1.873221] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 4217 [ 1.873267] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 4218 [ 1.873354] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 4219 [ 1.873864] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 4220 [ 1.873874] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 4221 [ 1.873955] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 4222 [ 1.873973] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 4223 [ 1.874084] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 4224 [ 1.874086] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4225 [ 1.874089] usb usb1: Product: xHCI Host Controller 4226 [ 1.874090] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 4227 [ 1.874092] usb usb1: SerialNumber: xhci-hcd.0.auto 4228 [ 1.874263] hub 1-0:1.0: USB hub found 4229 [ 1.874274] hub 1-0:1.0: 2 ports detected 4230 [ 1.874380] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 4231 [ 1.874385] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 4232 [ 1.874390] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 4233 [ 1.874408] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 4234 [ 1.874436] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 4235 [ 1.874438] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4236 [ 1.874440] usb usb2: Product: xHCI Host Controller 4237 [ 1.874442] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 4238 [ 1.874443] usb usb2: SerialNumber: xhci-hcd.0.auto 4239 [ 1.874556] hub 2-0:1.0: USB hub found 4240 [ 1.874565] hub 2-0:1.0: 1 port detected 4241 [ 1.874812] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 4242 [ 1.875557] meson-gx-mmc ffe05000.sd: Got CD GPIO 4243 [ 1.900944] Freeing unused kernel memory: 3328K 4244 [ 1.943716] Run /init as init process 4245 [ 1.943720] with arguments: 4246 [ 1.943722] /init 4247 [ 1.943723] with environment: 4248 [ 1.943725] HOME=/ 4249 [ 1.943726] TERM=linux 4250 [ 1.943728] hdmimode=custombuilt 4251 [ 1.943729] cvbsmode=576cvbs 4252 [ 1.943730] max_freq_a53=1908 4253 [ 1.943731] max_freq_a73=2208 4254 [ 1.943732] voutmode=hdmi 4255 [ 1.943734] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 4256 [ 1.943735] disablehpd=false 4257 [ 1.943736] cvbscable= 4258 [ 1.943738] overscan=100 4259 [ 2.078648] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 4260 [ 2.078666] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 4261 [ 2.078850] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 4262 [ 2.080218] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 4263 [ 2.080226] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 4264 [ 2.080229] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 4265 [ 2.080232] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 4266 [ 2.080234] meson8b-dwmac ff3f0000.ethernet: COE Type 2 4267 [ 2.080235] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 4268 [ 2.080237] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 4269 [ 2.080273] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 4270 [ 2.080275] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 4271 [ 2.080277] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 4272 [ 2.080442] libphy: stmmac: probed 4273 [ 2.081352] libphy: mdio_mux: probed 4274 [ 2.083802] meson-vrtc ff8000a8.rtc: registered as rtc1 4275 [ 2.102508] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 4276 [ 2.102630] rtc-pcf8563 1-0051: registered as rtc0 4277 [ 2.103963] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 4278 [ 2.103975] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 4279 [ 2.133745] mmc1: new ultra high speed SDR104 SDXC card at address aaaa 4280 [ 2.134299] mmcblk1: mmc1:aaaa SH64G 59.5 GiB 4281 [ 2.136127] mmcblk1: p1 4282 [ 2.174534] mmc0: new HS200 MMC card at address 0001 4283 [ 2.175307] mmcblk0: mmc0:0001 CJTD4R 58.2 GiB 4284 [ 2.175876] mmcblk0boot0: mmc0:0001 CJTD4R partition 1 4.00 MiB 4285 [ 2.176316] mmcblk0boot1: mmc0:0001 CJTD4R partition 2 4.00 MiB 4286 [ 2.176500] mmcblk0rpmb: mmc0:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 4287 [ 2.177782] mmcblk0: p1 4288 [ 2.181580] random: fast init done 4289 [ 2.211707] usb 1-1: new high-speed USB device number 2 using xhci-hcd 4290 [ 2.280096] libphy: mdio_mux: probed 4291 [ 2.362025] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 4292 [ 2.362034] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4293 [ 2.362038] usb 1-1: Product: USB2.1 Hub 4294 [ 2.362042] usb 1-1: Manufacturer: GenesysLogic 4295 [ 2.418672] hub 1-1:1.0: USB hub found 4296 [ 2.418916] hub 1-1:1.0: 4 ports detected 4297 [ 2.487791] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 4298 [ 2.510251] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 4299 [ 2.510253] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4300 [ 2.510256] usb 2-1: Product: USB3.1 Hub 4301 [ 2.510258] usb 2-1: Manufacturer: GenesysLogic 4302 [ 2.530585] hub 2-1:1.0: USB hub found 4303 [ 2.530865] hub 2-1:1.0: 4 ports detected 4304 [ 2.791689] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 4305 [ 2.918727] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 4306 [ 2.918735] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 4307 [ 2.918739] usb 1-1.1: Product: USB OPTICAL MOUSE 4308 [ 2.948627] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 4309 [ 2.965104] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input0 4310 [ 2.965326] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 4311 [ 3.067686] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 4312 [ 3.123690] systemd[1]: System time before build time, advancing clock. 4313 [ 3.127278] systemd[1]: Inserted module 'autofs4' 4314 [ 3.144215] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 4315 [ 3.144393] systemd[1]: Detected architecture arm64. 4316 [ 3.165130] systemd[1]: Set hostname to <odroidn2>. 4317 [ 3.201569] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 4318 [ 3.201584] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4319 [ 3.201588] usb 1-1.3: Product: USB Keyboard 4320 [ 3.201592] usb 1-1.3: Manufacturer: Logitech 4321 [ 3.287720] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input1 4322 [ 3.348117] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 4323 [ 3.354538] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input2 4324 [ 3.411901] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 4325 [ 3.412063] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 4326 [ 3.422495] random: systemd: uninitialized urandom read (16 bytes read) 4327 [ 3.427893] random: systemd: uninitialized urandom read (16 bytes read) 4328 [ 3.430330] systemd[1]: Created slice system-serial\x2dgetty.slice. 4329 [ 3.430752] random: systemd: uninitialized urandom read (16 bytes read) 4330 [ 3.431642] systemd[1]: Created slice system-getty.slice. 4331 [ 3.432196] systemd[1]: Listening on Journal Socket (/dev/log). 4332 [ 3.432296] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 4333 [ 3.432454] systemd[1]: Listening on udev Control Socket. 4334 [ 3.432525] systemd[1]: Reached target Remote File Systems. 4335 [ 3.432668] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 4336 [ 3.478533] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 4337 [ 3.689664] pwm-gpio pwmgpio: 1 gpio pwms loaded 4338 [ 3.751325] zram: Added device: zram0 4339 [ 3.751716] zram: Added device: zram1 4340 [ 3.752952] zram: Added device: zram2 4341 [ 3.772112] meson-drm ff900000.vpu: Queued 2 outputs on vpu 4342 [ 3.775890] meson-drm ff900000.vpu: CVBS Output connector not available 4343 [ 3.811392] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 4344 [ 3.811451] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 4345 [ 3.812062] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 4346 [ 3.812111] mc: Linux media interface: v0.10 4347 [ 3.812286] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 4348 [ 3.812493] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 4349 [ 3.825394] videodev: Linux video capture interface: v2.00 4350 [ 3.825714] zram0: detected capacity change from 0 to 1904500736 4351 [ 3.855705] Registered IR keymap rc-odroid 4352 [ 3.858219] panfrost ffe40000.gpu: clock rate = 24000000 4353 [ 3.858280] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 4354 [ 3.861876] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 4355 [ 3.861884] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 4356 [ 3.861888] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 4357 [ 3.861890] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 4358 [ 3.876846] IR NEC protocol handler initialized 4359 [ 3.892987] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 4360 [ 3.899360] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 4361 [ 3.907763] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 4362 [ 3.908023] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 4363 [ 3.908088] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input4 4364 [ 3.910031] meson-ir ff808000.ir: receiver initialized 4365 [ 4.152555] Console: switching to colour frame buffer device 240x67 4366 [ 4.183762] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 4367 [ 4.224183] axg-sound-card sound: ASoC: no DMI vendor name! 4368 [ 4.855686] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 4369 [ 4.896742] zram1: detected capacity change from 0 to 52428800 4370 [ 6.940517] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 4371 [ 6.940536] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 4372 [ 7.828560] systemd-journald[1852]: Received request to flush runtime journal from PID 1 4373 4374 ### armbian-release: 4375 4376 # PLEASE DO NOT EDIT THIS FILE 4377 BOARD=odroidn2 4378 BOARD_NAME="Odroid N2" 4379 BOARDFAMILY=meson-g12b 4380 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 4381 BUILD_REPOSITORY_COMMIT=e846ef656-dirty 4382 DISTRIBUTION_CODENAME=buster 4383 DISTRIBUTION_STATUS=supported 4384 VERSION=21.02.3 4385 LINUXFAMILY=meson64 4386 BRANCH=current 4387 ARCH=arm64 4388 IMAGE_TYPE=stable 4389 BOARD_TYPE=conf 4390 INITRD_ARCH=arm64 4391 KERNEL_IMAGE_TYPE=Image 4392 4393 ### boot environment: 4394 4395 verbosity=1 4396 console=both 4397 overlay_prefix=meson 4398 bootlogo=true 4399 rootdev=UUID=51c33730-20c8-4007-8dc5-c3478d176211 4400 rootfstype=ext4 4401 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 4402 4403 ### lsusb: 4404 4405 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 4406 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 4407 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 4408 Bus 001 Device 003: ID 275d:0ba6 4409 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 4410 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4411 4412 ### lscpu: 4413 4414 Architecture: aarch64 4415 Byte Order: Little Endian 4416 CPU(s): 6 4417 On-line CPU(s) list: 0-5 4418 Thread(s) per core: 1 4419 Core(s) per socket: 3 4420 Socket(s): 2 4421 NUMA node(s): 1 4422 Vendor ID: ARM 4423 Model: 4 4424 Model name: Cortex-A53 4425 Stepping: r0p4 4426 CPU max MHz: 2400.0000 4427 CPU min MHz: 100.0000 4428 BogoMIPS: 48.00 4429 L1d cache: unknown size 4430 L1i cache: unknown size 4431 L2 cache: unknown size 4432 NUMA node0 CPU(s): 0-5 4433 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4434 4435 ### cpuinfo: 4436 4437 processor : 0 4438 BogoMIPS : 48.00 4439 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4440 CPU implementer : 0x41 4441 CPU architecture: 8 4442 CPU variant : 0x0 4443 CPU part : 0xd03 4444 CPU revision : 4 4445 4446 processor : 1 4447 BogoMIPS : 48.00 4448 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4449 CPU implementer : 0x41 4450 CPU architecture: 8 4451 CPU variant : 0x0 4452 CPU part : 0xd03 4453 CPU revision : 4 4454 4455 processor : 2 4456 BogoMIPS : 48.00 4457 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4458 CPU implementer : 0x41 4459 CPU architecture: 8 4460 CPU variant : 0x0 4461 CPU part : 0xd09 4462 CPU revision : 2 4463 4464 processor : 3 4465 BogoMIPS : 48.00 4466 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4467 CPU implementer : 0x41 4468 CPU architecture: 8 4469 CPU variant : 0x0 4470 CPU part : 0xd09 4471 CPU revision : 2 4472 4473 processor : 4 4474 BogoMIPS : 48.00 4475 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4476 CPU implementer : 0x41 4477 CPU architecture: 8 4478 CPU variant : 0x0 4479 CPU part : 0xd09 4480 CPU revision : 2 4481 4482 processor : 5 4483 BogoMIPS : 48.00 4484 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4485 CPU implementer : 0x41 4486 CPU architecture: 8 4487 CPU variant : 0x0 4488 CPU part : 0xd09 4489 CPU revision : 2 4490 4491 4492 ### meminfo: 4493 4494 MemTotal: 3719724 kB 4495 MemFree: 3394208 kB 4496 MemAvailable: 3354456 kB 4497 Buffers: 12676 kB 4498 Cached: 55724 kB 4499 SwapCached: 0 kB 4500 Active: 33160 kB 4501 Inactive: 174436 kB 4502 Active(anon): 144 kB 4503 Inactive(anon): 143836 kB 4504 Active(file): 33016 kB 4505 Inactive(file): 30600 kB 4506 Unevictable: 0 kB 4507 Mlocked: 0 kB 4508 SwapTotal: 1859860 kB 4509 SwapFree: 1859860 kB 4510 Dirty: 9200 kB 4511 Writeback: 0 kB 4512 AnonPages: 138940 kB 4513 Mapped: 16252 kB 4514 Shmem: 4936 kB 4515 KReclaimable: 14104 kB 4516 Slab: 46440 kB 4517 SReclaimable: 14104 kB 4518 SUnreclaim: 32336 kB 4519 KernelStack: 2592 kB 4520 PageTables: 5380 kB 4521 NFS_Unstable: 0 kB 4522 Bounce: 0 kB 4523 WritebackTmp: 0 kB 4524 CommitLimit: 3719720 kB 4525 Committed_AS: 4249880 kB 4526 VmallocTotal: 135290159040 kB 4527 VmallocUsed: 31460 kB 4528 VmallocChunk: 0 kB 4529 Percpu: 1416 kB 4530 HardwareCorrupted: 0 kB 4531 AnonHugePages: 0 kB 4532 ShmemHugePages: 0 kB 4533 ShmemPmdMapped: 0 kB 4534 FileHugePages: 0 kB 4535 FilePmdMapped: 0 kB 4536 CmaTotal: 917504 kB 4537 CmaFree: 901724 kB 4538 HugePages_Total: 0 4539 HugePages_Free: 0 4540 HugePages_Rsvd: 0 4541 HugePages_Surp: 0 4542 Hugepagesize: 2048 kB 4543 Hugetlb: 0 kB 4544 4545 ### virtual memory: 4546 4547 vm.admin_reserve_kbytes = 8192 4548 vm.block_dump = 0 4549 vm.compaction_proactiveness = 20 4550 vm.compact_unevictable_allowed = 1 4551 vm.dirty_background_bytes = 0 4552 vm.dirty_background_ratio = 10 4553 vm.dirty_bytes = 0 4554 vm.dirty_expire_centisecs = 3000 4555 vm.dirty_ratio = 20 4556 vm.dirtytime_expire_seconds = 43200 4557 vm.dirty_writeback_centisecs = 500 4558 vm.extfrag_threshold = 500 4559 vm.hugetlb_shm_group = 0 4560 vm.laptop_mode = 0 4561 vm.legacy_va_layout = 0 4562 vm.lowmem_reserve_ratio = 256 256 32 0 4563 vm.max_map_count = 65530 4564 vm.memory_failure_early_kill = 0 4565 vm.memory_failure_recovery = 1 4566 vm.min_free_kbytes = 45056 4567 vm.min_slab_ratio = 5 4568 vm.min_unmapped_ratio = 1 4569 vm.mmap_min_addr = 4096 4570 vm.mmap_rnd_bits = 18 4571 vm.mmap_rnd_compat_bits = 11 4572 vm.nr_hugepages = 0 4573 vm.nr_hugepages_mempolicy = 0 4574 vm.nr_overcommit_hugepages = 0 4575 vm.numa_stat = 1 4576 vm.numa_zonelist_order = Node 4577 vm.oom_dump_tasks = 1 4578 vm.oom_kill_allocating_task = 0 4579 vm.overcommit_kbytes = 0 4580 vm.overcommit_memory = 0 4581 vm.overcommit_ratio = 50 4582 vm.page-cluster = 0 4583 vm.page_lock_unfairness = 5 4584 vm.panic_on_oom = 0 4585 vm.percpu_pagelist_fraction = 0 4586 vm.stat_interval = 1 4587 vm.swappiness = 100 4588 vm.user_reserve_kbytes = 115071 4589 vm.vfs_cache_pressure = 100 4590 vm.watermark_boost_factor = 15000 4591 vm.watermark_scale_factor = 10 4592 vm.zone_reclaim_mode = 0 4593 4594 ### ip addr: 4595 4596 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 4597 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 4598 inet XXX.XXX.0.1/8 scope host lo 4599 valid_lft forever preferred_lft forever 4600 inet6 ::1/128 scope host 4601 valid_lft forever preferred_lft forever 4602 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 4603 link/ether 00:1e:06:42:52:64 brd ff:ff:ff:ff:ff:ff 4604 4605 ### partitions: 4606 4607 major minor #blocks name 4608 4609 179 0 62367744 mmcblk1 4610 179 1 62366720 mmcblk1p1 4611 179 32 61071360 mmcblk0 4612 179 33 60456544 mmcblk0p1 4613 252 0 1859864 zram0 4614 252 1 51200 zram1 4615 4616 ### df: 4617 4618 udev 1.4G 0 1.4G 0% /dev 4619 tmpfs 364M 5.0M 359M 2% /run 4620 /dev/mmcblk0p1 57G 20G 37G 36% / 4621 tmpfs 1.8G 0 1.8G 0% /dev/shm 4622 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 4623 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 4624 tmpfs 1.8G 0 1.8G 0% /tmp 4625 /dev/zram1 49M 9.0M 36M 20% /var/log 4626 4627 ### lsblk: 4628 4629 NAME FSTYPE SIZE MOUNTPOINT UUID 4630 mmcblk1 59.5G 4631 └─mmcblk1p1 ext4 59.5G 83574bbb-e4ac-4398-8436-9962a3c61cdf 4632 mmcblk0 58.2G 4633 └─mmcblk0p1 ext4 57.7G / 51c33730-20c8-4007-8dc5-c3478d176211 4634 mmcblk0boot0 4M 4635 mmcblk0boot1 4M 4636 zram1 50M /var/log 4637 4638 ### zramctl: 4639 4640 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 4641 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 4642 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 4643 4644 ### mtab: 4645 4646 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 4647 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 4648 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 4649 4650 ### mmc1:aaaa info: 4651 4652 fwrev: 0x0 4653 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SH64G MODALIAS=mmc:block 4654 cid: 035344534836344780559b2001014a00 4655 rca: 0xaaaa 4656 csd: 400e0032db790001dbd37f800a404000 4657 manfid: 0x000003 4658 ocr: 0x00200000 4659 preferred_erase_size: 4194304 4660 type: SD 4661 hwrev: 0x8 4662 date: 10/2020 4663 dsr: 0x404 4664 erase_size: 512 4665 oemid: 0x5344 4666 serial: 0x559b2001 4667 ssr: 0000000008000000040090000f05391e000800000001000003000000000000000000000000000000000000000000000000000000000000000000000000000000 4668 scr: 0245848300000000 4669 name: SH64G 4670 4671 ### mmc0:0001 info: 4672 4673 fwrev: 0x0400000000000000 4674 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=CJTD4R MODALIAS=mmc:block 4675 cid: 150100434a54443452042559facb7700 4676 rel_sectors: 0x1 4677 enhanced_rpmb_supported: 0x1 4678 rca: 0x0001 4679 pre_eol_info: 0x01 4680 csd: d02701320f5903fff6dbffef8e404000 4681 manfid: 0x000015 4682 ocr: 0x00200000 4683 preferred_erase_size: 4194304 4684 enhanced_area_offset: 18446744073709551594 4685 raw_rpmb_size_mult: 0x20 4686 type: MMC 4687 hwrev: 0x0 4688 date: 07/2020 4689 prv: 0x4 4690 ffu_capable: 1 4691 dsr: 0x404 4692 erase_size: 524288 4693 life_time: 0x01 0x01 4694 enhanced_area_size: 4294967274 4695 oemid: 0x0100 4696 serial: 0x2559facb 4697 cmdq_en: 0 4698 rev: 0x8 4699 name: CJTD4R 4700 4701 ### Boot system health: 4702 4703 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 4704 19:19:38: 2400/2016MHz 0.00 21% 13% 6% 0% 1% 0% 31.1°C 0/12 4705 19:19:38: 2400/2016MHz 0.00 35% 23% 11% 0% 0% 0% 31.4°C 0/12 4706 19:19:39: 2400/2016MHz 0.00 19% 8% 9% 0% 0% 0% 28.6°C 0/12 4707 19:19:39: 2400/2016MHz 0.00 18% 9% 9% 0% 0% 0% 28.8°C 0/12 4708 19:19:39: 2400/2016MHz 1.04 87% 45% 23% 0% 14% 3% 31.8°C 0/12 4709 4710 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 4711 4712 ### Activated Armbian ramlog partition with zstd compression 4713 4714 Sun 04 Apr 2021 06:28:06 AM CEST | Odroid N2 | 21.02.3 | arm64 | aarch64 | 5.10.21-meson64 4715 4716 ### dmesg: 4717 4718 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 4719 [ 0.000000] Linux version 5.10.21-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.3 SMP PREEMPT Mon Mar 8 07:22:00 UTC 2021 4720 [ 0.000000] Machine model: Hardkernel ODROID-N2Plus 4721 [ 0.000000] efi: UEFI not found. 4722 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 4723 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 4724 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 4725 [ 0.000000] NUMA: No NUMA configuration found 4726 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 4727 [ 0.000000] NUMA: NODE_DATA [mem 0xb502e100-0xb502ffff] 4728 [ 0.000000] Zone ranges: 4729 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 4730 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 4731 [ 0.000000] Normal empty 4732 [ 0.000000] Movable zone start for each node 4733 [ 0.000000] Early memory node ranges 4734 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 4735 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 4736 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 4737 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 4738 [ 0.000000] On node 0 totalpages: 972800 4739 [ 0.000000] DMA zone: 4096 pages used for memmap 4740 [ 0.000000] DMA zone: 0 pages reserved 4741 [ 0.000000] DMA zone: 262144 pages, LIFO batch:63 4742 [ 0.000000] DMA32 zone: 11104 pages used for memmap 4743 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 4744 [ 0.000000] psci: probing for conduit method from DT. 4745 [ 0.000000] psci: PSCIv1.0 detected in firmware. 4746 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 4747 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 4748 [ 0.000000] psci: SMC Calling Convention v1.1 4749 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 4750 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 4751 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 4752 [ 0.000000] Detected VIPT I-cache on CPU0 4753 [ 0.000000] CPU features: detected: ARM erratum 845719 4754 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 4755 [ 0.000000] Policy zone: DMA32 4756 [ 0.000000] Kernel command line: root=UUID=51c33730-20c8-4007-8dc5-c3478d176211 rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1908 max_freq_a73=2208 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 4757 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 4758 Please use sysfs to set IO scheduler for individual devices. 4759 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 4760 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 4761 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 4762 [ 0.000000] software IO TLB: mapped [mem 0x000000003896d000-0x000000003c96d000] (64MB) 4763 [ 0.000000] Memory: 2783972K/3891200K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 189724K reserved, 917504K cma-reserved) 4764 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 4765 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 4766 [ 0.000000] rcu: RCU event tracing is enabled. 4767 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 4768 [ 0.000000] Trampoline variant of Tasks RCU enabled. 4769 [ 0.000000] Rude variant of Tasks RCU enabled. 4770 [ 0.000000] Tracing variant of Tasks RCU enabled. 4771 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 4772 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 4773 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 4774 [ 0.000000] GIC: Using split EOI/Deactivate mode 4775 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 4776 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 4777 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 4778 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 4779 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 4780 [ 0.000253] Console: colour dummy device 80x25 4781 [ 0.000289] printk: console [tty1] enabled 4782 [ 0.000375] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 4783 [ 0.000388] pid_max: default: 32768 minimum: 301 4784 [ 0.000470] LSM: Security Framework initializing 4785 [ 0.000496] Yama: becoming mindful. 4786 [ 0.000586] AppArmor: AppArmor initialized 4787 [ 0.000636] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 4788 [ 0.000655] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 4789 [ 0.002666] rcu: Hierarchical SRCU implementation. 4790 [ 0.005143] EFI services will not be available. 4791 [ 0.005563] smp: Bringing up secondary CPUs ... 4792 [ 0.006243] Detected VIPT I-cache on CPU1 4793 [ 0.006304] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 4794 [ 0.007501] CPU features: detected: ARM erratum 858921 4795 [ 0.007509] CPU features: detected: Spectre-v2 4796 [ 0.007513] CPU features: detected: Spectre-v4 4797 [ 0.007519] Detected VIPT I-cache on CPU2 4798 [ 0.007544] arch_timer: Enabling local workaround for ARM erratum 858921 4799 [ 0.007558] arch_timer: CPU2: Trapping CNTVCT access 4800 [ 0.007572] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 4801 [ 0.008282] Detected VIPT I-cache on CPU3 4802 [ 0.008299] arch_timer: Enabling local workaround for ARM erratum 858921 4803 [ 0.008306] arch_timer: CPU3: Trapping CNTVCT access 4804 [ 0.008314] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 4805 [ 0.008945] Detected VIPT I-cache on CPU4 4806 [ 0.008962] arch_timer: Enabling local workaround for ARM erratum 858921 4807 [ 0.008968] arch_timer: CPU4: Trapping CNTVCT access 4808 [ 0.008976] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 4809 [ 0.009590] Detected VIPT I-cache on CPU5 4810 [ 0.009606] arch_timer: Enabling local workaround for ARM erratum 858921 4811 [ 0.009613] arch_timer: CPU5: Trapping CNTVCT access 4812 [ 0.009621] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 4813 [ 0.009703] smp: Brought up 1 node, 6 CPUs 4814 [ 0.009720] SMP: Total of 6 processors activated. 4815 [ 0.009728] CPU features: detected: 32-bit EL0 Support 4816 [ 0.009734] CPU features: detected: CRC32 instructions 4817 [ 0.009740] CPU features: detected: 32-bit EL1 Support 4818 [ 0.020949] CPU: All CPU(s) started at EL2 4819 [ 0.020999] alternatives: patching kernel code 4820 [ 0.022995] devtmpfs: initialized 4821 [ 0.030686] Registered cp15_barrier emulation handler 4822 [ 0.030701] Registered setend emulation handler 4823 [ 0.030841] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 4824 [ 0.030883] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 4825 [ 0.046157] pinctrl core: initialized pinctrl subsystem 4826 [ 0.046697] DMI not present or invalid. 4827 [ 0.047092] NET: Registered protocol family 16 4828 [ 0.048709] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 4829 [ 0.048983] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 4830 [ 0.049213] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 4831 [ 0.049255] audit: initializing netlink subsys (disabled) 4832 [ 0.049354] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 4833 [ 0.050587] thermal_sys: Registered thermal governor 'fair_share' 4834 [ 0.050595] thermal_sys: Registered thermal governor 'bang_bang' 4835 [ 0.050598] thermal_sys: Registered thermal governor 'step_wise' 4836 [ 0.050601] thermal_sys: Registered thermal governor 'user_space' 4837 [ 0.051052] cpuidle: using governor menu 4838 [ 0.051396] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 4839 [ 0.051517] ASID allocator initialised with 65536 entries 4840 [ 0.052545] Serial: AMBA PL011 UART driver 4841 [ 0.086283] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 4842 [ 0.086296] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 4843 [ 0.086301] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 4844 [ 0.086307] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 4845 [ 0.088418] cryptd: max_cpu_qlen set to 1000 4846 [ 0.156296] raid6: neonx8 gen() 2786 MB/s 4847 [ 0.224351] raid6: neonx8 xor() 2041 MB/s 4848 [ 0.292442] raid6: neonx4 gen() 2994 MB/s 4849 [ 0.360504] raid6: neonx4 xor() 2354 MB/s 4850 [ 0.428548] raid6: neonx2 gen() 2528 MB/s 4851 [ 0.496614] raid6: neonx2 xor() 2205 MB/s 4852 [ 0.564701] raid6: neonx1 gen() 1937 MB/s 4853 [ 0.632742] raid6: neonx1 xor() 1716 MB/s 4854 [ 0.700806] raid6: int64x8 gen() 1376 MB/s 4855 [ 0.768878] raid6: int64x8 xor() 735 MB/s 4856 [ 0.836968] raid6: int64x4 gen() 1463 MB/s 4857 [ 0.904998] raid6: int64x4 xor() 733 MB/s 4858 [ 0.973067] raid6: int64x2 gen() 1362 MB/s 4859 [ 1.041128] raid6: int64x2 xor() 619 MB/s 4860 [ 1.109205] raid6: int64x1 gen() 1127 MB/s 4861 [ 1.177256] raid6: int64x1 xor() 462 MB/s 4862 [ 1.177259] raid6: using algorithm neonx4 gen() 2994 MB/s 4863 [ 1.177262] raid6: .... xor() 2354 MB/s, rmw enabled 4864 [ 1.177265] raid6: using neon recovery algorithm 4865 [ 1.177709] ACPI: Interpreter disabled. 4866 [ 1.178492] 5V: supplied by 12V 4867 [ 1.179402] VDDAO_3V3: supplied by 12V 4868 [ 1.179887] iommu: Default domain type: Translated 4869 [ 1.180070] vgaarb: loaded 4870 [ 1.180902] SCSI subsystem initialized 4871 [ 1.181117] usbcore: registered new interface driver usbfs 4872 [ 1.181160] usbcore: registered new interface driver hub 4873 [ 1.181202] usbcore: registered new device driver usb 4874 [ 1.181562] pps_core: LinuxPPS API ver. 1 registered 4875 [ 1.181568] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 4876 [ 1.181587] PTP clock support registered 4877 [ 1.181773] EDAC MC: Ver: 3.0.0 4878 [ 1.183055] NetLabel: Initializing 4879 [ 1.183061] NetLabel: domain hash size = 128 4880 [ 1.183064] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 4881 [ 1.183106] NetLabel: unlabeled traffic allowed by default 4882 [ 1.183540] clocksource: Switched to clocksource arch_sys_counter 4883 [ 1.183766] VFS: Disk quotas dquot_6.6.0 4884 [ 1.183809] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 4885 [ 1.184173] AppArmor: AppArmor Filesystem Enabled 4886 [ 1.184220] pnp: PnP ACPI: disabled 4887 [ 1.189765] NET: Registered protocol family 2 4888 [ 1.190227] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 4889 [ 1.190331] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 4890 [ 1.190591] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 4891 [ 1.190779] TCP: Hash tables configured (established 32768 bind 32768) 4892 [ 1.190927] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 4893 [ 1.190991] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 4894 [ 1.191037] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 4895 [ 1.191181] NET: Registered protocol family 1 4896 [ 1.191206] PCI: CLS 0 bytes, default 64 4897 [ 1.191338] Trying to unpack rootfs image as initramfs... 4898 [ 1.759384] Freeing initrd memory: 14920K 4899 [ 1.760332] kvm [1]: IPA Size Limit: 40 bits 4900 [ 1.761054] kvm [1]: vgic interrupt IRQ9 4901 [ 1.761195] kvm [1]: Hyp mode initialized successfully 4902 [ 1.766276] Initialise system trusted keyrings 4903 [ 1.766307] Key type blacklist registered 4904 [ 1.766405] workingset: timestamp_bits=44 max_order=20 bucket_order=0 4905 [ 1.769640] zbud: loaded 4906 [ 1.770611] squashfs: version 4.0 (2009/01/31) Phillip Lougher 4907 [ 1.771060] fuse: init (API version 7.32) 4908 [ 1.771835] integrity: Platform Keyring initialized 4909 [ 1.799884] xor: measuring software checksum speed 4910 [ 1.802719] 8regs : 3476 MB/sec 4911 [ 1.805174] 32regs : 4026 MB/sec 4912 [ 1.807823] arm64_neon : 3725 MB/sec 4913 [ 1.807827] xor: using function: 32regs (4026 MB/sec) 4914 [ 1.807834] Key type asymmetric registered 4915 [ 1.807837] Asymmetric key parser 'x509' registered 4916 [ 1.807872] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 4917 [ 1.807953] io scheduler mq-deadline registered 4918 [ 1.807957] io scheduler kyber registered 4919 [ 1.808038] io scheduler bfq registered 4920 [ 1.810572] gpio-447 (usb-hub-reset): hogged as output/high 4921 [ 1.813578] EINJ: ACPI disabled. 4922 [ 1.819853] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 4923 [ 1.821282] VCC_3V3: supplied by VDDAO_3V3 4924 [ 1.821316] FLASH_1V8: supplied by VCC_3V3 4925 [ 1.821346] VCC_1V8: supplied by VCC_3V3 4926 [ 1.821392] VDDAO_1V8: supplied by VDDAO_3V3 4927 [ 1.821423] VDDCPU_A: supplied by regulator-dummy 4928 [ 1.821777] VDDCPU_B: supplied by regulator-dummy 4929 [ 1.822481] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 4930 [ 1.824742] Serial: AMBA driver 4931 [ 1.825028] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 4932 [ 1.825122] printk: console [ttyAML0] enabled 4933 [ 1.825631] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 4934 [ 1.830956] loop: module loaded 4935 [ 1.833015] libphy: Fixed MDIO Bus: probed 4936 [ 1.834088] tun: Universal TUN/TAP device driver, 1.6 4937 [ 1.834744] thunder_xcv, ver 1.0 4938 [ 1.834777] thunder_bgx, ver 1.0 4939 [ 1.834807] nicpf, ver 1.0 4940 [ 1.835272] e1000e: Intel(R) PRO/1000 Network Driver 4941 [ 1.835275] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 4942 [ 1.835315] igb: Intel(R) Gigabit Ethernet Network Driver 4943 [ 1.835318] igb: Copyright (c) 2007-2014 Intel Corporation. 4944 [ 1.835349] igbvf: Intel(R) Gigabit Virtual Function Network Driver 4945 [ 1.835352] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 4946 [ 1.835480] sky2: driver version 1.30 4947 [ 1.835935] VFIO - User Level meta-driver version: 0.3 4948 [ 1.837516] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 4949 [ 1.837535] ehci-pci: EHCI PCI platform driver 4950 [ 1.837564] ehci-platform: EHCI generic platform driver 4951 [ 1.837694] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 4952 [ 1.837719] ohci-pci: OHCI PCI platform driver 4953 [ 1.837751] ohci-platform: OHCI generic platform driver 4954 [ 1.838167] usbcore: registered new interface driver usb-storage 4955 [ 1.839457] mousedev: PS/2 mouse device common for all mice 4956 [ 1.839871] i2c /dev entries driver 4957 [ 1.845081] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 4958 [ 1.845948] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 4959 [ 1.846598] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 4960 [ 1.847148] sdhci: Secure Digital Host Controller Interface driver 4961 [ 1.847154] sdhci: Copyright(c) Pierre Ossman 4962 [ 1.847244] Synopsys Designware Multimedia Card Interface Driver 4963 [ 1.847604] sdhci-pltfm: SDHCI platform and OF driver helper 4964 [ 1.848030] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 4965 [ 1.849154] ledtrig-cpu: registered to indicate activity on CPUs 4966 [ 1.849405] meson-sm: secure-monitor enabled 4967 [ 1.849544] hid: raw HID events driver (C) Jiri Kosina 4968 [ 1.849609] usbcore: registered new interface driver usbhid 4969 [ 1.849611] usbhid: USB HID core driver 4970 [ 1.850453] NET: Registered protocol family 10 4971 [ 1.850781] Segment Routing with IPv6 4972 [ 1.850808] NET: Registered protocol family 17 4973 [ 1.850844] 8021q: 802.1Q VLAN Support v1.8 4974 [ 1.850867] Key type dns_resolver registered 4975 [ 1.851103] registered taskstats version 1 4976 [ 1.851107] Loading compiled-in X.509 certificates 4977 [ 1.852479] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 4978 [ 1.853905] zswap: loaded using pool zstd/z3fold 4979 [ 1.854049] Key type ._fscrypt registered 4980 [ 1.854051] Key type .fscrypt registered 4981 [ 1.854052] Key type fscrypt-provisioning registered 4982 [ 1.855073] Btrfs loaded, crc32c=crc32c-generic 4983 [ 1.860513] Key type encrypted registered 4984 [ 1.860524] AppArmor: AppArmor sha1 policy hashing enabled 4985 [ 1.865835] HUB_5V: supplied by 5V 4986 [ 1.865991] USB_PWR_EN: supplied by 5V 4987 [ 1.867468] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 4988 [ 1.867477] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 4989 [ 1.870156] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 4990 [ 1.870202] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 4991 [ 1.870296] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 4992 [ 1.870784] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 4993 [ 1.870794] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 4994 [ 1.870873] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 4995 [ 1.870890] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 4996 [ 1.871000] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 4997 [ 1.871003] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4998 [ 1.871006] usb usb1: Product: xHCI Host Controller 4999 [ 1.871008] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 5000 [ 1.871009] usb usb1: SerialNumber: xhci-hcd.0.auto 5001 [ 1.871171] hub 1-0:1.0: USB hub found 5002 [ 1.871182] hub 1-0:1.0: 2 ports detected 5003 [ 1.871289] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 5004 [ 1.871296] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 5005 [ 1.871301] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 5006 [ 1.871319] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 5007 [ 1.871345] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 5008 [ 1.871348] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 5009 [ 1.871350] usb usb2: Product: xHCI Host Controller 5010 [ 1.871352] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 5011 [ 1.871354] usb usb2: SerialNumber: xhci-hcd.0.auto 5012 [ 1.871474] hub 2-0:1.0: USB hub found 5013 [ 1.871483] hub 2-0:1.0: 1 port detected 5014 [ 1.872244] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 5015 [ 1.873566] meson-gx-mmc ffe05000.sd: Got CD GPIO 5016 [ 1.900679] Freeing unused kernel memory: 3328K 5017 [ 1.943594] Run /init as init process 5018 [ 1.943597] with arguments: 5019 [ 1.943599] /init 5020 [ 1.943601] with environment: 5021 [ 1.943603] HOME=/ 5022 [ 1.943604] TERM=linux 5023 [ 1.943605] hdmimode=custombuilt 5024 [ 1.943606] cvbsmode=576cvbs 5025 [ 1.943608] max_freq_a53=1908 5026 [ 1.943609] max_freq_a73=2208 5027 [ 1.943610] voutmode=hdmi 5028 [ 1.943611] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 5029 [ 1.943613] disablehpd=false 5030 [ 1.943614] cvbscable= 5031 [ 1.943615] overscan=100 5032 [ 2.048043] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 5033 [ 2.048051] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 5034 [ 2.048146] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 5035 [ 2.049487] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 5036 [ 2.049500] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 5037 [ 2.049504] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 5038 [ 2.049507] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 5039 [ 2.049510] meson8b-dwmac ff3f0000.ethernet: COE Type 2 5040 [ 2.049511] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 5041 [ 2.049513] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 5042 [ 2.049572] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 5043 [ 2.049574] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 5044 [ 2.049577] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 5045 [ 2.049833] libphy: stmmac: probed 5046 [ 2.050927] libphy: mdio_mux: probed 5047 [ 2.065553] meson-vrtc ff8000a8.rtc: registered as rtc1 5048 [ 2.080116] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 5049 [ 2.080227] rtc-pcf8563 1-0051: registered as rtc0 5050 [ 2.081820] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 5051 [ 2.081831] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 5052 [ 2.114315] mmc0: new HS200 MMC card at address 0001 5053 [ 2.114775] mmcblk0: mmc0:0001 CJTD4R 58.2 GiB 5054 [ 2.115028] mmcblk0boot0: mmc0:0001 CJTD4R partition 1 4.00 MiB 5055 [ 2.115272] mmcblk0boot1: mmc0:0001 CJTD4R partition 2 4.00 MiB 5056 [ 2.115421] mmcblk0rpmb: mmc0:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 5057 [ 2.116688] mmcblk0: p1 5058 [ 2.131333] random: fast init done 5059 [ 2.141539] mmc1: new ultra high speed SDR104 SDXC card at address aaaa 5060 [ 2.142548] mmcblk1: mmc1:aaaa SH64G 59.5 GiB 5061 [ 2.150228] mmcblk1: p1 5062 [ 2.211555] usb 1-1: new high-speed USB device number 2 using xhci-hcd 5063 [ 2.252008] libphy: mdio_mux: probed 5064 [ 2.273213] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) 5065 [ 2.369911] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 5066 [ 2.369917] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 5067 [ 2.369920] usb 1-1: Product: USB2.1 Hub 5068 [ 2.369922] usb 1-1: Manufacturer: GenesysLogic 5069 [ 2.415597] hub 1-1:1.0: USB hub found 5070 [ 2.415837] hub 1-1:1.0: 4 ports detected 5071 [ 2.450614] systemd[1]: System time before build time, advancing clock. 5072 [ 2.454230] systemd[1]: Inserted module 'autofs4' 5073 [ 2.477014] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 5074 [ 2.477382] systemd[1]: Detected architecture arm64. 5075 [ 2.499651] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 5076 [ 2.522116] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 5077 [ 2.522119] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 5078 [ 2.522122] usb 2-1: Product: USB3.1 Hub 5079 [ 2.522124] usb 2-1: Manufacturer: GenesysLogic 5080 [ 2.527043] systemd[1]: Set hostname to <odroidn2>. 5081 [ 2.543544] hub 2-1:1.0: USB hub found 5082 [ 2.543833] hub 2-1:1.0: 4 ports detected 5083 [ 2.771009] random: systemd: uninitialized urandom read (16 bytes read) 5084 [ 2.776536] random: systemd: uninitialized urandom read (16 bytes read) 5085 [ 2.778244] systemd[1]: Created slice User and Session Slice. 5086 [ 2.778864] random: systemd: uninitialized urandom read (16 bytes read) 5087 [ 2.779192] systemd[1]: Listening on Journal Audit Socket. 5088 [ 2.779875] systemd[1]: Listening on Journal Socket. 5089 [ 2.782136] systemd[1]: Starting Restore / save the current clock... 5090 [ 2.785268] systemd[1]: Starting Set the console keyboard layout... 5091 [ 2.786201] systemd[1]: Created slice system-getty.slice. 5092 [ 2.786546] systemd[1]: Listening on udev Kernel Socket. 5093 [ 2.799572] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 5094 [ 2.829579] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro 5095 [ 2.934772] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 5096 [ 2.934777] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 5097 [ 2.934779] usb 1-1.1: Product: USB OPTICAL MOUSE 5098 [ 2.996172] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input0 5099 [ 2.996692] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 5100 [ 3.029015] zram: Added device: zram0 5101 [ 3.029661] zram: Added device: zram1 5102 [ 3.031042] zram: Added device: zram2 5103 [ 3.070581] pwm-gpio pwmgpio: 1 gpio pwms loaded 5104 [ 3.073652] zram0: detected capacity change from 0 to 1904500736 5105 [ 3.100991] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 5106 [ 3.111154] mc: Linux media interface: v0.10 5107 [ 3.122613] videodev: Linux video capture interface: v2.00 5108 [ 3.146469] meson-drm ff900000.vpu: Queued 2 outputs on vpu 5109 [ 3.154650] meson-drm ff900000.vpu: CVBS Output connector not available 5110 [ 3.175986] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 5111 [ 3.179821] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 5112 [ 3.181255] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 5113 [ 3.181850] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 5114 [ 3.182435] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 5115 [ 3.187095] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 5116 [ 3.187341] panfrost ffe40000.gpu: clock rate = 24000000 5117 [ 3.187410] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 5118 [ 3.188341] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 5119 [ 3.188351] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 5120 [ 3.188355] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 5121 [ 3.188359] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 5122 [ 3.204034] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 5123 [ 3.215578] Registered IR keymap rc-odroid 5124 [ 3.221354] IR NEC protocol handler initialized 5125 [ 3.237010] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 5126 [ 3.237017] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 5127 [ 3.237020] usb 1-1.3: Product: USB Keyboard 5128 [ 3.237021] usb 1-1.3: Manufacturer: Logitech 5129 [ 3.247643] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 5130 [ 3.247751] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 5131 [ 3.247821] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input1 5132 [ 3.248234] meson-ir ff808000.ir: receiver initialized 5133 [ 3.316335] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input2 5134 [ 3.379841] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 5135 [ 3.385654] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 5136 [ 3.443626] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input4 5137 [ 3.443715] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 5138 [ 3.492408] Console: switching to colour frame buffer device 240x67 5139 [ 3.514284] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 5140 [ 3.571440] axg-sound-card sound: ASoC: no DMI vendor name! 5141 [ 4.103558] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 5142 [ 4.144311] zram1: detected capacity change from 0 to 52428800 5143 [ 6.187780] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 5144 [ 6.187798] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 5145 [ 7.162749] systemd-journald[1854]: Received request to flush runtime journal from PID 1 5146 5147 ### armbian-release: 5148 5149 # PLEASE DO NOT EDIT THIS FILE 5150 BOARD=odroidn2 5151 BOARD_NAME="Odroid N2" 5152 BOARDFAMILY=meson-g12b 5153 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 5154 BUILD_REPOSITORY_COMMIT=e846ef656-dirty 5155 DISTRIBUTION_CODENAME=buster 5156 DISTRIBUTION_STATUS=supported 5157 VERSION=21.02.3 5158 LINUXFAMILY=meson64 5159 BRANCH=current 5160 ARCH=arm64 5161 IMAGE_TYPE=stable 5162 BOARD_TYPE=conf 5163 INITRD_ARCH=arm64 5164 KERNEL_IMAGE_TYPE=Image 5165 5166 ### boot environment: 5167 5168 verbosity=1 5169 console=both 5170 overlay_prefix=meson 5171 bootlogo=true 5172 rootdev=UUID=51c33730-20c8-4007-8dc5-c3478d176211 5173 rootfstype=ext4 5174 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 5175 5176 ### lsusb: 5177 5178 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 5179 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 5180 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 5181 Bus 001 Device 003: ID 275d:0ba6 5182 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 5183 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 5184 5185 ### lscpu: 5186 5187 Architecture: aarch64 5188 Byte Order: Little Endian 5189 CPU(s): 6 5190 On-line CPU(s) list: 0-5 5191 Thread(s) per core: 1 5192 Core(s) per socket: 3 5193 Socket(s): 2 5194 NUMA node(s): 1 5195 Vendor ID: ARM 5196 Model: 4 5197 Model name: Cortex-A53 5198 Stepping: r0p4 5199 CPU max MHz: 2400.0000 5200 CPU min MHz: 100.0000 5201 BogoMIPS: 48.00 5202 L1d cache: unknown size 5203 L1i cache: unknown size 5204 L2 cache: unknown size 5205 NUMA node0 CPU(s): 0-5 5206 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5207 5208 ### cpuinfo: 5209 5210 processor : 0 5211 BogoMIPS : 48.00 5212 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5213 CPU implementer : 0x41 5214 CPU architecture: 8 5215 CPU variant : 0x0 5216 CPU part : 0xd03 5217 CPU revision : 4 5218 5219 processor : 1 5220 BogoMIPS : 48.00 5221 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5222 CPU implementer : 0x41 5223 CPU architecture: 8 5224 CPU variant : 0x0 5225 CPU part : 0xd03 5226 CPU revision : 4 5227 5228 processor : 2 5229 BogoMIPS : 48.00 5230 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5231 CPU implementer : 0x41 5232 CPU architecture: 8 5233 CPU variant : 0x0 5234 CPU part : 0xd09 5235 CPU revision : 2 5236 5237 processor : 3 5238 BogoMIPS : 48.00 5239 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5240 CPU implementer : 0x41 5241 CPU architecture: 8 5242 CPU variant : 0x0 5243 CPU part : 0xd09 5244 CPU revision : 2 5245 5246 processor : 4 5247 BogoMIPS : 48.00 5248 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5249 CPU implementer : 0x41 5250 CPU architecture: 8 5251 CPU variant : 0x0 5252 CPU part : 0xd09 5253 CPU revision : 2 5254 5255 processor : 5 5256 BogoMIPS : 48.00 5257 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5258 CPU implementer : 0x41 5259 CPU architecture: 8 5260 CPU variant : 0x0 5261 CPU part : 0xd09 5262 CPU revision : 2 5263 5264 5265 ### meminfo: 5266 5267 MemTotal: 3719724 kB 5268 MemFree: 3408404 kB 5269 MemAvailable: 3372812 kB 5270 Buffers: 13060 kB 5271 Cached: 63452 kB 5272 SwapCached: 0 kB 5273 Active: 33316 kB 5274 Inactive: 161744 kB 5275 Active(anon): 132 kB 5276 Inactive(anon): 123500 kB 5277 Active(file): 33184 kB 5278 Inactive(file): 38244 kB 5279 Unevictable: 0 kB 5280 Mlocked: 0 kB 5281 SwapTotal: 1859860 kB 5282 SwapFree: 1859860 kB 5283 Dirty: 16744 kB 5284 Writeback: 0 kB 5285 AnonPages: 118772 kB 5286 Mapped: 16004 kB 5287 Shmem: 4940 kB 5288 KReclaimable: 14104 kB 5289 Slab: 46440 kB 5290 SReclaimable: 14104 kB 5291 SUnreclaim: 32336 kB 5292 KernelStack: 2672 kB 5293 PageTables: 4992 kB 5294 NFS_Unstable: 0 kB 5295 Bounce: 0 kB 5296 WritebackTmp: 0 kB 5297 CommitLimit: 3719720 kB 5298 Committed_AS: 4249976 kB 5299 VmallocTotal: 135290159040 kB 5300 VmallocUsed: 31556 kB 5301 VmallocChunk: 0 kB 5302 Percpu: 1392 kB 5303 HardwareCorrupted: 0 kB 5304 AnonHugePages: 0 kB 5305 ShmemHugePages: 0 kB 5306 ShmemPmdMapped: 0 kB 5307 FileHugePages: 0 kB 5308 FilePmdMapped: 0 kB 5309 CmaTotal: 917504 kB 5310 CmaFree: 901724 kB 5311 HugePages_Total: 0 5312 HugePages_Free: 0 5313 HugePages_Rsvd: 0 5314 HugePages_Surp: 0 5315 Hugepagesize: 2048 kB 5316 Hugetlb: 0 kB 5317 5318 ### virtual memory: 5319 5320 vm.admin_reserve_kbytes = 8192 5321 vm.block_dump = 0 5322 vm.compaction_proactiveness = 20 5323 vm.compact_unevictable_allowed = 1 5324 vm.dirty_background_bytes = 0 5325 vm.dirty_background_ratio = 10 5326 vm.dirty_bytes = 0 5327 vm.dirty_expire_centisecs = 3000 5328 vm.dirty_ratio = 20 5329 vm.dirtytime_expire_seconds = 43200 5330 vm.dirty_writeback_centisecs = 500 5331 vm.extfrag_threshold = 500 5332 vm.hugetlb_shm_group = 0 5333 vm.laptop_mode = 0 5334 vm.legacy_va_layout = 0 5335 vm.lowmem_reserve_ratio = 256 256 32 0 5336 vm.max_map_count = 65530 5337 vm.memory_failure_early_kill = 0 5338 vm.memory_failure_recovery = 1 5339 vm.min_free_kbytes = 45056 5340 vm.min_slab_ratio = 5 5341 vm.min_unmapped_ratio = 1 5342 vm.mmap_min_addr = 4096 5343 vm.mmap_rnd_bits = 18 5344 vm.mmap_rnd_compat_bits = 11 5345 vm.nr_hugepages = 0 5346 vm.nr_hugepages_mempolicy = 0 5347 vm.nr_overcommit_hugepages = 0 5348 vm.numa_stat = 1 5349 vm.numa_zonelist_order = Node 5350 vm.oom_dump_tasks = 1 5351 vm.oom_kill_allocating_task = 0 5352 vm.overcommit_kbytes = 0 5353 vm.overcommit_memory = 0 5354 vm.overcommit_ratio = 50 5355 vm.page-cluster = 0 5356 vm.page_lock_unfairness = 5 5357 vm.panic_on_oom = 0 5358 vm.percpu_pagelist_fraction = 0 5359 vm.stat_interval = 1 5360 vm.swappiness = 100 5361 vm.user_reserve_kbytes = 114921 5362 vm.vfs_cache_pressure = 100 5363 vm.watermark_boost_factor = 15000 5364 vm.watermark_scale_factor = 10 5365 vm.zone_reclaim_mode = 0 5366 5367 ### ip addr: 5368 5369 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 5370 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 5371 inet XXX.XXX.0.1/8 scope host lo 5372 valid_lft forever preferred_lft forever 5373 inet6 ::1/128 scope host 5374 valid_lft forever preferred_lft forever 5375 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 5376 link/ether 00:1e:06:42:52:64 brd ff:ff:ff:ff:ff:ff 5377 5378 ### partitions: 5379 5380 major minor #blocks name 5381 5382 179 0 61071360 mmcblk0 5383 179 1 60456544 mmcblk0p1 5384 179 96 62367744 mmcblk1 5385 179 97 62366720 mmcblk1p1 5386 252 0 1859864 zram0 5387 252 1 51200 zram1 5388 5389 ### df: 5390 5391 udev 1.4G 0 1.4G 0% /dev 5392 tmpfs 364M 5.0M 359M 2% /run 5393 /dev/mmcblk0p1 57G 21G 36G 37% / 5394 tmpfs 1.8G 0 1.8G 0% /dev/shm 5395 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 5396 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 5397 tmpfs 1.8G 0 1.8G 0% /tmp 5398 /dev/zram1 49M 17M 29M 37% /var/log 5399 5400 ### lsblk: 5401 5402 NAME FSTYPE SIZE MOUNTPOINT UUID 5403 mmcblk0 58.2G 5404 └─mmcblk0p1 ext4 57.7G / 51c33730-20c8-4007-8dc5-c3478d176211 5405 mmcblk0boot0 4M 5406 mmcblk0boot1 4M 5407 mmcblk1 59.5G 5408 └─mmcblk1p1 ext4 59.5G 83574bbb-e4ac-4398-8436-9962a3c61cdf 5409 zram1 50M /var/log 5410 5411 ### zramctl: 5412 5413 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 5414 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 5415 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 5416 5417 ### mtab: 5418 5419 /dev/mmcblk0p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 5420 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 5421 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 5422 5423 ### mmc1:aaaa info: 5424 5425 fwrev: 0x0 5426 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SH64G MODALIAS=mmc:block 5427 cid: 035344534836344780559b2001014a00 5428 rca: 0xaaaa 5429 csd: 400e0032db790001dbd37f800a404000 5430 manfid: 0x000003 5431 ocr: 0x00200000 5432 preferred_erase_size: 4194304 5433 type: SD 5434 hwrev: 0x8 5435 date: 10/2020 5436 dsr: 0x404 5437 erase_size: 512 5438 oemid: 0x5344 5439 serial: 0x559b2001 5440 ssr: 0000000008000000040090000f05391e000800000001000003000000000000000000000000000000000000000000000000000000000000000000000000000000 5441 scr: 0245848300000000 5442 name: SH64G 5443 5444 ### mmc0:0001 info: 5445 5446 fwrev: 0x0400000000000000 5447 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=CJTD4R MODALIAS=mmc:block 5448 cid: 150100434a54443452042559facb7700 5449 rel_sectors: 0x1 5450 enhanced_rpmb_supported: 0x1 5451 rca: 0x0001 5452 pre_eol_info: 0x01 5453 csd: d02701320f5903fff6dbffef8e404000 5454 manfid: 0x000015 5455 ocr: 0x00200000 5456 preferred_erase_size: 4194304 5457 enhanced_area_offset: 18446744073709551594 5458 raw_rpmb_size_mult: 0x20 5459 type: MMC 5460 hwrev: 0x0 5461 date: 07/2020 5462 prv: 0x4 5463 ffu_capable: 1 5464 dsr: 0x404 5465 erase_size: 524288 5466 life_time: 0x01 0x01 5467 enhanced_area_size: 4294967274 5468 oemid: 0x0100 5469 serial: 0x2559facb 5470 cmdq_en: 0 5471 rev: 0x8 5472 name: CJTD4R 5473 5474 ### Boot system health: 5475 5476 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 5477 06:28:07: 2400/2016MHz 0.00 23% 15% 6% 0% 1% 0% 24.5°C 0/12 5478 06:28:07: 2400/2016MHz 0.00 27% 17% 9% 0% 0% 0% 22.8°C 0/12 5479 06:28:08: 2400/2016MHz 0.00 18% 8% 9% 0% 0% 0% 21.5°C 0/12 5480 06:28:08: 2400/2016MHz 0.00 44% 28% 11% 0% 2% 1% 22.7°C 0/12 5481 06:28:09: 2400/2016MHz 0.00 89% 38% 31% 0% 15% 2% 24.7°C 0/12 5482 5483 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 5484 5485 ### Activated Armbian ramlog partition with zstd compression 5486 5487 Sun 04 Apr 2021 09:26:34 PM CEST | Odroid N2 | 21.02.3 | arm64 | aarch64 | 5.10.21-meson64 5488 5489 ### dmesg: 5490 5491 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 5492 [ 0.000000] Linux version 5.10.21-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.3 SMP PREEMPT Mon Mar 8 07:22:00 UTC 2021 5493 [ 0.000000] Machine model: Hardkernel ODROID-N2Plus 5494 [ 0.000000] efi: UEFI not found. 5495 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 5496 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 5497 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 5498 [ 0.000000] NUMA: No NUMA configuration found 5499 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 5500 [ 0.000000] NUMA: NODE_DATA [mem 0xb502e100-0xb502ffff] 5501 [ 0.000000] Zone ranges: 5502 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 5503 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 5504 [ 0.000000] Normal empty 5505 [ 0.000000] Movable zone start for each node 5506 [ 0.000000] Early memory node ranges 5507 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 5508 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 5509 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 5510 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 5511 [ 0.000000] On node 0 totalpages: 972800 5512 [ 0.000000] DMA zone: 4096 pages used for memmap 5513 [ 0.000000] DMA zone: 0 pages reserved 5514 [ 0.000000] DMA zone: 262144 pages, LIFO batch:63 5515 [ 0.000000] DMA32 zone: 11104 pages used for memmap 5516 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 5517 [ 0.000000] psci: probing for conduit method from DT. 5518 [ 0.000000] psci: PSCIv1.0 detected in firmware. 5519 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 5520 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 5521 [ 0.000000] psci: SMC Calling Convention v1.1 5522 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 5523 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 5524 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 5525 [ 0.000000] Detected VIPT I-cache on CPU0 5526 [ 0.000000] CPU features: detected: ARM erratum 845719 5527 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 5528 [ 0.000000] Policy zone: DMA32 5529 [ 0.000000] Kernel command line: root=UUID=51c33730-20c8-4007-8dc5-c3478d176211 rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1908 max_freq_a73=2208 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 5530 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 5531 Please use sysfs to set IO scheduler for individual devices. 5532 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 5533 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 5534 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 5535 [ 0.000000] software IO TLB: mapped [mem 0x000000003896d000-0x000000003c96d000] (64MB) 5536 [ 0.000000] Memory: 2783972K/3891200K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 189724K reserved, 917504K cma-reserved) 5537 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 5538 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 5539 [ 0.000000] rcu: RCU event tracing is enabled. 5540 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 5541 [ 0.000000] Trampoline variant of Tasks RCU enabled. 5542 [ 0.000000] Rude variant of Tasks RCU enabled. 5543 [ 0.000000] Tracing variant of Tasks RCU enabled. 5544 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 5545 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 5546 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 5547 [ 0.000000] GIC: Using split EOI/Deactivate mode 5548 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 5549 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 5550 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 5551 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 5552 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 5553 [ 0.000256] Console: colour dummy device 80x25 5554 [ 0.000291] printk: console [tty1] enabled 5555 [ 0.000378] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 5556 [ 0.000391] pid_max: default: 32768 minimum: 301 5557 [ 0.000474] LSM: Security Framework initializing 5558 [ 0.000499] Yama: becoming mindful. 5559 [ 0.000591] AppArmor: AppArmor initialized 5560 [ 0.000641] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 5561 [ 0.000660] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 5562 [ 0.002662] rcu: Hierarchical SRCU implementation. 5563 [ 0.005142] EFI services will not be available. 5564 [ 0.005567] smp: Bringing up secondary CPUs ... 5565 [ 0.006242] Detected VIPT I-cache on CPU1 5566 [ 0.006303] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 5567 [ 0.007499] CPU features: detected: ARM erratum 858921 5568 [ 0.007507] CPU features: detected: Spectre-v2 5569 [ 0.007511] CPU features: detected: Spectre-v4 5570 [ 0.007517] Detected VIPT I-cache on CPU2 5571 [ 0.007541] arch_timer: Enabling local workaround for ARM erratum 858921 5572 [ 0.007556] arch_timer: CPU2: Trapping CNTVCT access 5573 [ 0.007570] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 5574 [ 0.008281] Detected VIPT I-cache on CPU3 5575 [ 0.008297] arch_timer: Enabling local workaround for ARM erratum 858921 5576 [ 0.008305] arch_timer: CPU3: Trapping CNTVCT access 5577 [ 0.008312] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 5578 [ 0.008937] Detected VIPT I-cache on CPU4 5579 [ 0.008954] arch_timer: Enabling local workaround for ARM erratum 858921 5580 [ 0.008961] arch_timer: CPU4: Trapping CNTVCT access 5581 [ 0.008969] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 5582 [ 0.009587] Detected VIPT I-cache on CPU5 5583 [ 0.009604] arch_timer: Enabling local workaround for ARM erratum 858921 5584 [ 0.009610] arch_timer: CPU5: Trapping CNTVCT access 5585 [ 0.009618] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 5586 [ 0.009699] smp: Brought up 1 node, 6 CPUs 5587 [ 0.009716] SMP: Total of 6 processors activated. 5588 [ 0.009724] CPU features: detected: 32-bit EL0 Support 5589 [ 0.009730] CPU features: detected: CRC32 instructions 5590 [ 0.009736] CPU features: detected: 32-bit EL1 Support 5591 [ 0.021010] CPU: All CPU(s) started at EL2 5592 [ 0.021059] alternatives: patching kernel code 5593 [ 0.023059] devtmpfs: initialized 5594 [ 0.030750] Registered cp15_barrier emulation handler 5595 [ 0.030764] Registered setend emulation handler 5596 [ 0.030902] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 5597 [ 0.030943] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 5598 [ 0.046220] pinctrl core: initialized pinctrl subsystem 5599 [ 0.046957] DMI not present or invalid. 5600 [ 0.047328] NET: Registered protocol family 16 5601 [ 0.048887] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 5602 [ 0.049161] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 5603 [ 0.049392] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 5604 [ 0.049436] audit: initializing netlink subsys (disabled) 5605 [ 0.049556] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 5606 [ 0.050794] thermal_sys: Registered thermal governor 'fair_share' 5607 [ 0.050801] thermal_sys: Registered thermal governor 'bang_bang' 5608 [ 0.050805] thermal_sys: Registered thermal governor 'step_wise' 5609 [ 0.050809] thermal_sys: Registered thermal governor 'user_space' 5610 [ 0.051244] cpuidle: using governor menu 5611 [ 0.051586] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 5612 [ 0.051715] ASID allocator initialised with 65536 entries 5613 [ 0.052776] Serial: AMBA PL011 UART driver 5614 [ 0.086857] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 5615 [ 0.086868] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 5616 [ 0.086873] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 5617 [ 0.086878] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 5618 [ 0.088652] cryptd: max_cpu_qlen set to 1000 5619 [ 0.156227] raid6: neonx8 gen() 2779 MB/s 5620 [ 0.224291] raid6: neonx8 xor() 2041 MB/s 5621 [ 0.292365] raid6: neonx4 gen() 3154 MB/s 5622 [ 0.360451] raid6: neonx4 xor() 1585 MB/s 5623 [ 0.428502] raid6: neonx2 gen() 2528 MB/s 5624 [ 0.496567] raid6: neonx2 xor() 2205 MB/s 5625 [ 0.564644] raid6: neonx1 gen() 1938 MB/s 5626 [ 0.632711] raid6: neonx1 xor() 1729 MB/s 5627 [ 0.700771] raid6: int64x8 gen() 1376 MB/s 5628 [ 0.768836] raid6: int64x8 xor() 735 MB/s 5629 [ 0.836925] raid6: int64x4 gen() 1463 MB/s 5630 [ 0.904972] raid6: int64x4 xor() 733 MB/s 5631 [ 0.973031] raid6: int64x2 gen() 1363 MB/s 5632 [ 1.041106] raid6: int64x2 xor() 619 MB/s 5633 [ 1.109170] raid6: int64x1 gen() 1127 MB/s 5634 [ 1.177234] raid6: int64x1 xor() 462 MB/s 5635 [ 1.177238] raid6: using algorithm neonx4 gen() 3154 MB/s 5636 [ 1.177241] raid6: .... xor() 1585 MB/s, rmw enabled 5637 [ 1.177244] raid6: using neon recovery algorithm 5638 [ 1.177702] ACPI: Interpreter disabled. 5639 [ 1.178542] 5V: supplied by 12V 5640 [ 1.179461] VDDAO_3V3: supplied by 12V 5641 [ 1.179912] iommu: Default domain type: Translated 5642 [ 1.180036] vgaarb: loaded 5643 [ 1.180883] SCSI subsystem initialized 5644 [ 1.181084] usbcore: registered new interface driver usbfs 5645 [ 1.181126] usbcore: registered new interface driver hub 5646 [ 1.181175] usbcore: registered new device driver usb 5647 [ 1.181455] pps_core: LinuxPPS API ver. 1 registered 5648 [ 1.181459] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 5649 [ 1.181482] PTP clock support registered 5650 [ 1.181693] EDAC MC: Ver: 3.0.0 5651 [ 1.183082] NetLabel: Initializing 5652 [ 1.183090] NetLabel: domain hash size = 128 5653 [ 1.183092] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 5654 [ 1.183134] NetLabel: unlabeled traffic allowed by default 5655 [ 1.183607] clocksource: Switched to clocksource arch_sys_counter 5656 [ 1.183816] VFS: Disk quotas dquot_6.6.0 5657 [ 1.183859] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 5658 [ 1.184228] AppArmor: AppArmor Filesystem Enabled 5659 [ 1.184332] pnp: PnP ACPI: disabled 5660 [ 1.190019] NET: Registered protocol family 2 5661 [ 1.190480] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 5662 [ 1.190585] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 5663 [ 1.190842] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 5664 [ 1.191030] TCP: Hash tables configured (established 32768 bind 32768) 5665 [ 1.191180] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 5666 [ 1.191245] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 5667 [ 1.191291] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 5668 [ 1.191435] NET: Registered protocol family 1 5669 [ 1.191459] PCI: CLS 0 bytes, default 64 5670 [ 1.191582] Trying to unpack rootfs image as initramfs... 5671 [ 1.760011] Freeing initrd memory: 14920K 5672 [ 1.760944] kvm [1]: IPA Size Limit: 40 bits 5673 [ 1.761653] kvm [1]: vgic interrupt IRQ9 5674 [ 1.761789] kvm [1]: Hyp mode initialized successfully 5675 [ 1.766945] Initialise system trusted keyrings 5676 [ 1.766976] Key type blacklist registered 5677 [ 1.767072] workingset: timestamp_bits=44 max_order=20 bucket_order=0 5678 [ 1.770257] zbud: loaded 5679 [ 1.771236] squashfs: version 4.0 (2009/01/31) Phillip Lougher 5680 [ 1.771726] fuse: init (API version 7.32) 5681 [ 1.772485] integrity: Platform Keyring initialized 5682 [ 1.800127] xor: measuring software checksum speed 5683 [ 1.802963] 8regs : 3476 MB/sec 5684 [ 1.805421] 32regs : 4023 MB/sec 5685 [ 1.808073] arm64_neon : 3720 MB/sec 5686 [ 1.808076] xor: using function: 32regs (4023 MB/sec) 5687 [ 1.808083] Key type asymmetric registered 5688 [ 1.808087] Asymmetric key parser 'x509' registered 5689 [ 1.808120] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 5690 [ 1.808201] io scheduler mq-deadline registered 5691 [ 1.808205] io scheduler kyber registered 5692 [ 1.808285] io scheduler bfq registered 5693 [ 1.810838] gpio-447 (usb-hub-reset): hogged as output/high 5694 [ 1.813865] EINJ: ACPI disabled. 5695 [ 1.820174] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 5696 [ 1.821593] VCC_3V3: supplied by VDDAO_3V3 5697 [ 1.821632] FLASH_1V8: supplied by VCC_3V3 5698 [ 1.821667] VCC_1V8: supplied by VCC_3V3 5699 [ 1.821693] VDDAO_1V8: supplied by VDDAO_3V3 5700 [ 1.821732] VDDCPU_A: supplied by regulator-dummy 5701 [ 1.822096] VDDCPU_B: supplied by regulator-dummy 5702 [ 1.822779] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 5703 [ 1.824980] Serial: AMBA driver 5704 [ 1.825265] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 5705 [ 1.825358] printk: console [ttyAML0] enabled 5706 [ 1.825866] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 5707 [ 1.831368] loop: module loaded 5708 [ 1.833402] libphy: Fixed MDIO Bus: probed 5709 [ 1.834519] tun: Universal TUN/TAP device driver, 1.6 5710 [ 1.835179] thunder_xcv, ver 1.0 5711 [ 1.835210] thunder_bgx, ver 1.0 5712 [ 1.835250] nicpf, ver 1.0 5713 [ 1.835804] e1000e: Intel(R) PRO/1000 Network Driver 5714 [ 1.835808] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 5715 [ 1.835860] igb: Intel(R) Gigabit Ethernet Network Driver 5716 [ 1.835863] igb: Copyright (c) 2007-2014 Intel Corporation. 5717 [ 1.835894] igbvf: Intel(R) Gigabit Virtual Function Network Driver 5718 [ 1.835897] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 5719 [ 1.836027] sky2: driver version 1.30 5720 [ 1.836391] VFIO - User Level meta-driver version: 0.3 5721 [ 1.837788] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 5722 [ 1.837805] ehci-pci: EHCI PCI platform driver 5723 [ 1.837835] ehci-platform: EHCI generic platform driver 5724 [ 1.837964] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 5725 [ 1.837973] ohci-pci: OHCI PCI platform driver 5726 [ 1.838002] ohci-platform: OHCI generic platform driver 5727 [ 1.838417] usbcore: registered new interface driver usb-storage 5728 [ 1.839897] mousedev: PS/2 mouse device common for all mice 5729 [ 1.840409] i2c /dev entries driver 5730 [ 1.845506] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 5731 [ 1.846369] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 5732 [ 1.847016] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 5733 [ 1.847537] sdhci: Secure Digital Host Controller Interface driver 5734 [ 1.847540] sdhci: Copyright(c) Pierre Ossman 5735 [ 1.847652] Synopsys Designware Multimedia Card Interface Driver 5736 [ 1.848016] sdhci-pltfm: SDHCI platform and OF driver helper 5737 [ 1.848422] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 5738 [ 1.849424] ledtrig-cpu: registered to indicate activity on CPUs 5739 [ 1.849673] meson-sm: secure-monitor enabled 5740 [ 1.849811] hid: raw HID events driver (C) Jiri Kosina 5741 [ 1.849877] usbcore: registered new interface driver usbhid 5742 [ 1.849878] usbhid: USB HID core driver 5743 [ 1.850710] NET: Registered protocol family 10 5744 [ 1.851043] Segment Routing with IPv6 5745 [ 1.851071] NET: Registered protocol family 17 5746 [ 1.851105] 8021q: 802.1Q VLAN Support v1.8 5747 [ 1.851126] Key type dns_resolver registered 5748 [ 1.851362] registered taskstats version 1 5749 [ 1.851366] Loading compiled-in X.509 certificates 5750 [ 1.852779] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 5751 [ 1.854192] zswap: loaded using pool zstd/z3fold 5752 [ 1.854344] Key type ._fscrypt registered 5753 [ 1.854346] Key type .fscrypt registered 5754 [ 1.854348] Key type fscrypt-provisioning registered 5755 [ 1.855371] Btrfs loaded, crc32c=crc32c-generic 5756 [ 1.860652] Key type encrypted registered 5757 [ 1.860662] AppArmor: AppArmor sha1 policy hashing enabled 5758 [ 1.865927] HUB_5V: supplied by 5V 5759 [ 1.866086] USB_PWR_EN: supplied by 5V 5760 [ 1.867557] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 5761 [ 1.867564] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 5762 [ 1.870281] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 5763 [ 1.870330] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 5764 [ 1.870413] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 5765 [ 1.870907] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 5766 [ 1.870917] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 5767 [ 1.870998] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 5768 [ 1.871019] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 5769 [ 1.871130] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 5770 [ 1.871133] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 5771 [ 1.871135] usb usb1: Product: xHCI Host Controller 5772 [ 1.871137] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 5773 [ 1.871139] usb usb1: SerialNumber: xhci-hcd.0.auto 5774 [ 1.871303] hub 1-0:1.0: USB hub found 5775 [ 1.871314] hub 1-0:1.0: 2 ports detected 5776 [ 1.871425] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 5777 [ 1.871431] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 5778 [ 1.871436] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 5779 [ 1.871452] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 5780 [ 1.871481] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 5781 [ 1.871484] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 5782 [ 1.871486] usb usb2: Product: xHCI Host Controller 5783 [ 1.871488] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 5784 [ 1.871489] usb usb2: SerialNumber: xhci-hcd.0.auto 5785 [ 1.871633] hub 2-0:1.0: USB hub found 5786 [ 1.871642] hub 2-0:1.0: 1 port detected 5787 [ 1.872000] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 5788 [ 1.872768] meson-gx-mmc ffe05000.sd: Got CD GPIO 5789 [ 1.900335] Freeing unused kernel memory: 3328K 5790 [ 1.923728] Run /init as init process 5791 [ 1.923732] with arguments: 5792 [ 1.923734] /init 5793 [ 1.923735] with environment: 5794 [ 1.923737] HOME=/ 5795 [ 1.923738] TERM=linux 5796 [ 1.923740] hdmimode=custombuilt 5797 [ 1.923741] cvbsmode=576cvbs 5798 [ 1.923742] max_freq_a53=1908 5799 [ 1.923743] max_freq_a73=2208 5800 [ 1.923744] voutmode=hdmi 5801 [ 1.923746] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 5802 [ 1.923747] disablehpd=false 5803 [ 1.923748] cvbscable= 5804 [ 1.923749] overscan=100 5805 [ 2.042112] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 5806 [ 2.042119] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 5807 [ 2.042193] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 5808 [ 2.042537] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 5809 [ 2.042542] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 5810 [ 2.042545] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 5811 [ 2.042547] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 5812 [ 2.042549] meson8b-dwmac ff3f0000.ethernet: COE Type 2 5813 [ 2.042551] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 5814 [ 2.042552] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 5815 [ 2.042591] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 5816 [ 2.042594] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 5817 [ 2.042595] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 5818 [ 2.042792] libphy: stmmac: probed 5819 [ 2.043705] libphy: mdio_mux: probed 5820 [ 2.056499] meson-vrtc ff8000a8.rtc: registered as rtc1 5821 [ 2.066019] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 5822 [ 2.066223] rtc-pcf8563 1-0051: registered as rtc0 5823 [ 2.067406] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 5824 [ 2.067413] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 5825 [ 2.137415] mmc0: new ultra high speed SDR104 SDXC card at address aaaa 5826 [ 2.137877] mmcblk0: mmc0:aaaa SH64G 59.5 GiB 5827 [ 2.141183] mmcblk0: p1 5828 [ 2.166342] mmc1: new HS200 MMC card at address 0001 5829 [ 2.166813] mmcblk1: mmc1:0001 CJTD4R 58.2 GiB 5830 [ 2.167064] mmcblk1boot0: mmc1:0001 CJTD4R partition 1 4.00 MiB 5831 [ 2.167336] mmcblk1boot1: mmc1:0001 CJTD4R partition 2 4.00 MiB 5832 [ 2.167486] mmcblk1rpmb: mmc1:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 5833 [ 2.168639] mmcblk1: p1 5834 [ 2.173942] random: fast init done 5835 [ 2.215742] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 5836 [ 2.240327] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 5837 [ 2.240332] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 5838 [ 2.240335] usb 2-1: Product: USB3.1 Hub 5839 [ 2.240337] usb 2-1: Manufacturer: GenesysLogic 5840 [ 2.252018] libphy: mdio_mux: probed 5841 [ 2.271693] hub 2-1:1.0: USB hub found 5842 [ 2.271982] hub 2-1:1.0: 4 ports detected 5843 [ 2.363608] usb 1-1: new high-speed USB device number 2 using xhci-hcd 5844 [ 2.513874] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 5845 [ 2.513877] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 5846 [ 2.513879] usb 1-1: Product: USB2.1 Hub 5847 [ 2.513881] usb 1-1: Manufacturer: GenesysLogic 5848 [ 2.575658] hub 1-1:1.0: USB hub found 5849 [ 2.575891] hub 1-1:1.0: 4 ports detected 5850 [ 2.951604] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 5851 [ 3.078631] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 5852 [ 3.078634] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 5853 [ 3.078636] usb 1-1.1: Product: USB OPTICAL MOUSE 5854 [ 3.121617] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input0 5855 [ 3.121894] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 5856 [ 3.181452] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 5857 [ 3.227657] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 5858 [ 3.354008] systemd[1]: System time before build time, advancing clock. 5859 [ 3.356743] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 5860 [ 3.356747] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 5861 [ 3.356750] usb 1-1.3: Product: USB Keyboard 5862 [ 3.356752] usb 1-1.3: Manufacturer: Logitech 5863 [ 3.357825] systemd[1]: Inserted module 'autofs4' 5864 [ 3.380055] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 5865 [ 3.380427] systemd[1]: Detected architecture arm64. 5866 [ 3.398396] systemd[1]: Set hostname to <odroidn2>. 5867 [ 3.444540] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input1 5868 [ 3.503861] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 5869 [ 3.509649] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input2 5870 [ 3.567669] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 5871 [ 3.567730] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 5872 [ 3.643277] random: systemd: uninitialized urandom read (16 bytes read) 5873 [ 3.649114] random: systemd: uninitialized urandom read (16 bytes read) 5874 [ 3.649611] systemd[1]: Listening on Journal Audit Socket. 5875 [ 3.650001] random: systemd: uninitialized urandom read (16 bytes read) 5876 [ 3.650396] systemd[1]: Listening on Journal Socket (/dev/log). 5877 [ 3.650653] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 5878 [ 3.650723] systemd[1]: Reached target System Time Synchronized. 5879 [ 3.650913] systemd[1]: Reached target Swap. 5880 [ 3.651282] systemd[1]: Listening on initctl Compatibility Named Pipe. 5881 [ 3.651912] systemd[1]: Listening on Syslog Socket. 5882 [ 3.707916] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 5883 [ 3.892017] zram: Added device: zram0 5884 [ 3.892298] zram: Added device: zram1 5885 [ 3.892506] zram: Added device: zram2 5886 [ 3.945570] zram0: detected capacity change from 0 to 1904500736 5887 [ 3.947536] pwm-gpio pwmgpio: 1 gpio pwms loaded 5888 [ 3.988844] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 5889 [ 4.009446] mc: Linux media interface: v0.10 5890 [ 4.021256] videodev: Linux video capture interface: v2.00 5891 [ 4.025132] meson-drm ff900000.vpu: Queued 2 outputs on vpu 5892 [ 4.039640] Registered IR keymap rc-odroid 5893 [ 4.049177] IR NEC protocol handler initialized 5894 [ 4.061613] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 5895 [ 4.073537] meson-drm ff900000.vpu: CVBS Output connector not available 5896 [ 4.079866] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 5897 [ 4.079967] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 5898 [ 4.080023] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input4 5899 [ 4.083096] meson-ir ff808000.ir: receiver initialized 5900 [ 4.099730] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 5901 [ 4.101991] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 5902 [ 4.102263] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 5903 [ 4.102498] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 5904 [ 4.107296] panfrost ffe40000.gpu: clock rate = 24000000 5905 [ 4.107354] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 5906 [ 4.109230] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 5907 [ 4.109237] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 5908 [ 4.109240] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 5909 [ 4.109243] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 5910 [ 4.136857] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 5911 [ 4.408430] Console: switching to colour frame buffer device 240x67 5912 [ 4.430294] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 5913 [ 4.458098] axg-sound-card sound: ASoC: no DMI vendor name! 5914 [ 4.979626] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 5915 [ 5.021767] zram1: detected capacity change from 0 to 52428800 5916 [ 7.066442] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 5917 [ 7.066461] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 5918 [ 8.072699] systemd-journald[1848]: Received request to flush runtime journal from PID 1 5919 5920 ### armbian-release: 5921 5922 # PLEASE DO NOT EDIT THIS FILE 5923 BOARD=odroidn2 5924 BOARD_NAME="Odroid N2" 5925 BOARDFAMILY=meson-g12b 5926 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 5927 BUILD_REPOSITORY_COMMIT=e846ef656-dirty 5928 DISTRIBUTION_CODENAME=buster 5929 DISTRIBUTION_STATUS=supported 5930 VERSION=21.02.3 5931 LINUXFAMILY=meson64 5932 BRANCH=current 5933 ARCH=arm64 5934 IMAGE_TYPE=stable 5935 BOARD_TYPE=conf 5936 INITRD_ARCH=arm64 5937 KERNEL_IMAGE_TYPE=Image 5938 5939 ### boot environment: 5940 5941 verbosity=1 5942 console=both 5943 overlay_prefix=meson 5944 bootlogo=true 5945 rootdev=UUID=51c33730-20c8-4007-8dc5-c3478d176211 5946 rootfstype=ext4 5947 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 5948 5949 ### lsusb: 5950 5951 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 5952 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 5953 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 5954 Bus 001 Device 003: ID 275d:0ba6 5955 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 5956 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 5957 5958 ### lscpu: 5959 5960 Architecture: aarch64 5961 Byte Order: Little Endian 5962 CPU(s): 6 5963 On-line CPU(s) list: 0-5 5964 Thread(s) per core: 1 5965 Core(s) per socket: 3 5966 Socket(s): 2 5967 NUMA node(s): 1 5968 Vendor ID: ARM 5969 Model: 4 5970 Model name: Cortex-A53 5971 Stepping: r0p4 5972 CPU max MHz: 2400.0000 5973 CPU min MHz: 100.0000 5974 BogoMIPS: 48.00 5975 L1d cache: unknown size 5976 L1i cache: unknown size 5977 L2 cache: unknown size 5978 NUMA node0 CPU(s): 0-5 5979 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5980 5981 ### cpuinfo: 5982 5983 processor : 0 5984 BogoMIPS : 48.00 5985 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5986 CPU implementer : 0x41 5987 CPU architecture: 8 5988 CPU variant : 0x0 5989 CPU part : 0xd03 5990 CPU revision : 4 5991 5992 processor : 1 5993 BogoMIPS : 48.00 5994 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 5995 CPU implementer : 0x41 5996 CPU architecture: 8 5997 CPU variant : 0x0 5998 CPU part : 0xd03 5999 CPU revision : 4 6000 6001 processor : 2 6002 BogoMIPS : 48.00 6003 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6004 CPU implementer : 0x41 6005 CPU architecture: 8 6006 CPU variant : 0x0 6007 CPU part : 0xd09 6008 CPU revision : 2 6009 6010 processor : 3 6011 BogoMIPS : 48.00 6012 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6013 CPU implementer : 0x41 6014 CPU architecture: 8 6015 CPU variant : 0x0 6016 CPU part : 0xd09 6017 CPU revision : 2 6018 6019 processor : 4 6020 BogoMIPS : 48.00 6021 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6022 CPU implementer : 0x41 6023 CPU architecture: 8 6024 CPU variant : 0x0 6025 CPU part : 0xd09 6026 CPU revision : 2 6027 6028 processor : 5 6029 BogoMIPS : 48.00 6030 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6031 CPU implementer : 0x41 6032 CPU architecture: 8 6033 CPU variant : 0x0 6034 CPU part : 0xd09 6035 CPU revision : 2 6036 6037 6038 ### meminfo: 6039 6040 MemTotal: 3719724 kB 6041 MemFree: 3401664 kB 6042 MemAvailable: 3368272 kB 6043 Buffers: 13060 kB 6044 Cached: 67664 kB 6045 SwapCached: 0 kB 6046 Active: 33872 kB 6047 Inactive: 167316 kB 6048 Active(anon): 144 kB 6049 Inactive(anon): 125400 kB 6050 Active(file): 33728 kB 6051 Inactive(file): 41916 kB 6052 Unevictable: 0 kB 6053 Mlocked: 0 kB 6054 SwapTotal: 1859860 kB 6055 SwapFree: 1859860 kB 6056 Dirty: 20776 kB 6057 Writeback: 0 kB 6058 AnonPages: 120632 kB 6059 Mapped: 15912 kB 6060 Shmem: 4936 kB 6061 KReclaimable: 14288 kB 6062 Slab: 46568 kB 6063 SReclaimable: 14288 kB 6064 SUnreclaim: 32280 kB 6065 KernelStack: 2736 kB 6066 PageTables: 5944 kB 6067 NFS_Unstable: 0 kB 6068 Bounce: 0 kB 6069 WritebackTmp: 0 kB 6070 CommitLimit: 3719720 kB 6071 Committed_AS: 4250048 kB 6072 VmallocTotal: 135290159040 kB 6073 VmallocUsed: 31508 kB 6074 VmallocChunk: 0 kB 6075 Percpu: 1416 kB 6076 HardwareCorrupted: 0 kB 6077 AnonHugePages: 0 kB 6078 ShmemHugePages: 0 kB 6079 ShmemPmdMapped: 0 kB 6080 FileHugePages: 0 kB 6081 FilePmdMapped: 0 kB 6082 CmaTotal: 917504 kB 6083 CmaFree: 901724 kB 6084 HugePages_Total: 0 6085 HugePages_Free: 0 6086 HugePages_Rsvd: 0 6087 HugePages_Surp: 0 6088 Hugepagesize: 2048 kB 6089 Hugetlb: 0 kB 6090 6091 ### virtual memory: 6092 6093 vm.admin_reserve_kbytes = 8192 6094 vm.block_dump = 0 6095 vm.compaction_proactiveness = 20 6096 vm.compact_unevictable_allowed = 1 6097 vm.dirty_background_bytes = 0 6098 vm.dirty_background_ratio = 10 6099 vm.dirty_bytes = 0 6100 vm.dirty_expire_centisecs = 3000 6101 vm.dirty_ratio = 20 6102 vm.dirtytime_expire_seconds = 43200 6103 vm.dirty_writeback_centisecs = 500 6104 vm.extfrag_threshold = 500 6105 vm.hugetlb_shm_group = 0 6106 vm.laptop_mode = 0 6107 vm.legacy_va_layout = 0 6108 vm.lowmem_reserve_ratio = 256 256 32 0 6109 vm.max_map_count = 65530 6110 vm.memory_failure_early_kill = 0 6111 vm.memory_failure_recovery = 1 6112 vm.min_free_kbytes = 45056 6113 vm.min_slab_ratio = 5 6114 vm.min_unmapped_ratio = 1 6115 vm.mmap_min_addr = 4096 6116 vm.mmap_rnd_bits = 18 6117 vm.mmap_rnd_compat_bits = 11 6118 vm.nr_hugepages = 0 6119 vm.nr_hugepages_mempolicy = 0 6120 vm.nr_overcommit_hugepages = 0 6121 vm.numa_stat = 1 6122 vm.numa_zonelist_order = Node 6123 vm.oom_dump_tasks = 1 6124 vm.oom_kill_allocating_task = 0 6125 vm.overcommit_kbytes = 0 6126 vm.overcommit_memory = 0 6127 vm.overcommit_ratio = 50 6128 vm.page-cluster = 0 6129 vm.page_lock_unfairness = 5 6130 vm.panic_on_oom = 0 6131 vm.percpu_pagelist_fraction = 0 6132 vm.stat_interval = 1 6133 vm.swappiness = 100 6134 vm.user_reserve_kbytes = 114995 6135 vm.vfs_cache_pressure = 100 6136 vm.watermark_boost_factor = 15000 6137 vm.watermark_scale_factor = 10 6138 vm.zone_reclaim_mode = 0 6139 6140 ### ip addr: 6141 6142 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 6143 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 6144 inet XXX.XXX.0.1/8 scope host lo 6145 valid_lft forever preferred_lft forever 6146 inet6 ::1/128 scope host 6147 valid_lft forever preferred_lft forever 6148 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 6149 link/ether 00:1e:06:42:52:64 brd ff:ff:ff:ff:ff:ff 6150 6151 ### partitions: 6152 6153 major minor #blocks name 6154 6155 179 0 62367744 mmcblk0 6156 179 1 62366720 mmcblk0p1 6157 179 32 61071360 mmcblk1 6158 179 33 60456544 mmcblk1p1 6159 252 0 1859864 zram0 6160 252 1 51200 zram1 6161 6162 ### df: 6163 6164 udev 1.4G 0 1.4G 0% /dev 6165 tmpfs 364M 5.0M 359M 2% /run 6166 /dev/mmcblk1p1 57G 21G 36G 37% / 6167 tmpfs 1.8G 0 1.8G 0% /dev/shm 6168 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 6169 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 6170 tmpfs 1.8G 0 1.8G 0% /tmp 6171 /dev/zram1 49M 21M 25M 46% /var/log 6172 6173 ### lsblk: 6174 6175 NAME FSTYPE SIZE MOUNTPOINT UUID 6176 mmcblk0 59.5G 6177 └─mmcblk0p1 ext4 59.5G 83574bbb-e4ac-4398-8436-9962a3c61cdf 6178 mmcblk1 58.2G 6179 └─mmcblk1p1 ext4 57.7G / 51c33730-20c8-4007-8dc5-c3478d176211 6180 mmcblk1boot0 4M 6181 mmcblk1boot1 4M 6182 zram1 50M /var/log 6183 6184 ### zramctl: 6185 6186 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 6187 /dev/zram1 zstd 50M 132K 695B 36K 6 /var/log 6188 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 6189 6190 ### mtab: 6191 6192 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 6193 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 6194 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 6195 6196 ### mmc0:aaaa info: 6197 6198 fwrev: 0x0 6199 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SH64G MODALIAS=mmc:block 6200 cid: 035344534836344780559b2001014a00 6201 rca: 0xaaaa 6202 csd: 400e0032db790001dbd37f800a404000 6203 manfid: 0x000003 6204 ocr: 0x00200000 6205 preferred_erase_size: 4194304 6206 type: SD 6207 hwrev: 0x8 6208 date: 10/2020 6209 dsr: 0x404 6210 erase_size: 512 6211 oemid: 0x5344 6212 serial: 0x559b2001 6213 ssr: 0000000008000000040090000f05391e000800000001000003000000000000000000000000000000000000000000000000000000000000000000000000000000 6214 scr: 0245848300000000 6215 name: SH64G 6216 6217 ### mmc1:0001 info: 6218 6219 fwrev: 0x0400000000000000 6220 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=CJTD4R MODALIAS=mmc:block 6221 cid: 150100434a54443452042559facb7700 6222 rel_sectors: 0x1 6223 enhanced_rpmb_supported: 0x1 6224 rca: 0x0001 6225 pre_eol_info: 0x01 6226 csd: d02701320f5903fff6dbffef8e404000 6227 manfid: 0x000015 6228 ocr: 0x00200000 6229 preferred_erase_size: 4194304 6230 enhanced_area_offset: 18446744073709551594 6231 raw_rpmb_size_mult: 0x20 6232 type: MMC 6233 hwrev: 0x0 6234 date: 07/2020 6235 prv: 0x4 6236 ffu_capable: 1 6237 dsr: 0x404 6238 erase_size: 524288 6239 life_time: 0x01 0x01 6240 enhanced_area_size: 4294967274 6241 oemid: 0x0100 6242 serial: 0x2559facb 6243 cmdq_en: 0 6244 rev: 0x8 6245 name: CJTD4R 6246 6247 ### Boot system health: 6248 6249 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 6250 21:26:35: 2400/2016MHz 0.16 20% 12% 6% 0% 1% 0% 21.8°C 0/12 6251 21:26:35: 2400/2016MHz 0.16 33% 22% 10% 0% 0% 0% 20.1°C 0/12 6252 21:26:36: 2400/2016MHz 0.16 18% 7% 10% 0% 0% 0% 19.4°C 0/12 6253 21:26:36: 2400/2016MHz 0.31 18% 8% 10% 0% 0% 0% 17.9°C 0/12 6254 21:26:36: 2400/2016MHz 0.31 89% 51% 24% 0% 10% 2% 21.9°C 0/12 6255 6256 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 6257 6258 ### Activated Armbian ramlog partition with zstd compression 6259 6260 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 6261 6262 ### Activated Armbian ramlog partition with zstd compression 6263 6264 ### Activated 1 lzo-rle zram swap devices with 1816 MB each 6265 6266 ### Activated Armbian ramlog partition with zstd compression 6267 6268 Mon 05 Apr 2021 02:56:51 PM CEST | Odroid N2 | 21.02.3 | arm64 | aarch64 | 5.10.21-meson64 6269 6270 ### dmesg: 6271 6272 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] 6273 [ 0.000000] Linux version 5.10.21-meson64 (root@hirsute) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) XXX.XXX.0.20190321) #21.02.3 SMP PREEMPT Mon Mar 8 07:22:00 UTC 2021 6274 [ 0.000000] Machine model: Hardkernel ODROID-N2Plus 6275 [ 0.000000] efi: UEFI not found. 6276 [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! 6277 [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b5800000, size 896 MiB 6278 [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool 6279 [ 0.000000] NUMA: No NUMA configuration found 6280 [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000ed7fffff] 6281 [ 0.000000] NUMA: NODE_DATA [mem 0xb502e100-0xb502ffff] 6282 [ 0.000000] Zone ranges: 6283 [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] 6284 [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ed7fffff] 6285 [ 0.000000] Normal empty 6286 [ 0.000000] Movable zone start for each node 6287 [ 0.000000] Early memory node ranges 6288 [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff] 6289 [ 0.000000] node 0: [mem 0x0000000005000000-0x00000000052fffff] 6290 [ 0.000000] node 0: [mem 0x0000000005300000-0x00000000ed7fffff] 6291 [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ed7fffff] 6292 [ 0.000000] On node 0 totalpages: 972800 6293 [ 0.000000] DMA zone: 4096 pages used for memmap 6294 [ 0.000000] DMA zone: 0 pages reserved 6295 [ 0.000000] DMA zone: 262144 pages, LIFO batch:63 6296 [ 0.000000] DMA32 zone: 11104 pages used for memmap 6297 [ 0.000000] DMA32 zone: 710656 pages, LIFO batch:63 6298 [ 0.000000] psci: probing for conduit method from DT. 6299 [ 0.000000] psci: PSCIv1.0 detected in firmware. 6300 [ 0.000000] psci: Using standard PSCI v0.2 function IDs 6301 [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. 6302 [ 0.000000] psci: SMC Calling Convention v1.1 6303 [ 0.000000] percpu: Embedded 23 pages/cpu s56728 r8192 d29288 u94208 6304 [ 0.000000] pcpu-alloc: s56728 r8192 d29288 u94208 alloc=23*4096 6305 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 6306 [ 0.000000] Detected VIPT I-cache on CPU0 6307 [ 0.000000] CPU features: detected: ARM erratum 845719 6308 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 957600 6309 [ 0.000000] Policy zone: DMA32 6310 [ 0.000000] Kernel command line: root=UUID=51c33730-20c8-4007-8dc5-c3478d176211 rootwait rootfstype=ext4 console=ttyAML0,115200n8 console=tty1 loglevel=1 no_console_suspend fsck.repair=yes net.ifnames=0 elevator=noop hdmimode=custombuilt cvbsmode=576cvbs max_freq_a53=1908 max_freq_a73=2208 maxcpus=6 voutmode=hdmi modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 disablehpd=false cvbscable= overscan=100 consoleblank=0 6311 [ 0.000000] Kernel parameter elevator= does not have any effect anymore. 6312 Please use sysfs to set IO scheduler for individual devices. 6313 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) 6314 [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) 6315 [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off 6316 [ 0.000000] software IO TLB: mapped [mem 0x000000003896d000-0x000000003c96d000] (64MB) 6317 [ 0.000000] Memory: 2783972K/3891200K available (14144K kernel code, 1760K rwdata, 5508K rodata, 3328K init, 592K bss, 189724K reserved, 917504K cma-reserved) 6318 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 6319 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. 6320 [ 0.000000] rcu: RCU event tracing is enabled. 6321 [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6. 6322 [ 0.000000] Trampoline variant of Tasks RCU enabled. 6323 [ 0.000000] Rude variant of Tasks RCU enabled. 6324 [ 0.000000] Tracing variant of Tasks RCU enabled. 6325 [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. 6326 [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6 6327 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 6328 [ 0.000000] GIC: Using split EOI/Deactivate mode 6329 [ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized 6330 [ 0.000000] random: get_random_bytes called from start_kernel+0x378/0x538 with crng_init=0 6331 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). 6332 [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns 6333 [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns 6334 [ 0.000252] Console: colour dummy device 80x25 6335 [ 0.000287] printk: console [tty1] enabled 6336 [ 0.000374] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) 6337 [ 0.000387] pid_max: default: 32768 minimum: 301 6338 [ 0.000470] LSM: Security Framework initializing 6339 [ 0.000495] Yama: becoming mindful. 6340 [ 0.000584] AppArmor: AppArmor initialized 6341 [ 0.000634] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 6342 [ 0.000653] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) 6343 [ 0.002649] rcu: Hierarchical SRCU implementation. 6344 [ 0.005146] EFI services will not be available. 6345 [ 0.005569] smp: Bringing up secondary CPUs ... 6346 [ 0.006240] Detected VIPT I-cache on CPU1 6347 [ 0.006300] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 6348 [ 0.007494] CPU features: detected: ARM erratum 858921 6349 [ 0.007502] CPU features: detected: Spectre-v2 6350 [ 0.007506] CPU features: detected: Spectre-v4 6351 [ 0.007512] Detected VIPT I-cache on CPU2 6352 [ 0.007537] arch_timer: Enabling local workaround for ARM erratum 858921 6353 [ 0.007552] arch_timer: CPU2: Trapping CNTVCT access 6354 [ 0.007567] CPU2: Booted secondary processor 0x0000000100 [0x410fd092] 6355 [ 0.008278] Detected VIPT I-cache on CPU3 6356 [ 0.008294] arch_timer: Enabling local workaround for ARM erratum 858921 6357 [ 0.008302] arch_timer: CPU3: Trapping CNTVCT access 6358 [ 0.008310] CPU3: Booted secondary processor 0x0000000101 [0x410fd092] 6359 [ 0.008936] Detected VIPT I-cache on CPU4 6360 [ 0.008952] arch_timer: Enabling local workaround for ARM erratum 858921 6361 [ 0.008959] arch_timer: CPU4: Trapping CNTVCT access 6362 [ 0.008967] CPU4: Booted secondary processor 0x0000000102 [0x410fd092] 6363 [ 0.009585] Detected VIPT I-cache on CPU5 6364 [ 0.009602] arch_timer: Enabling local workaround for ARM erratum 858921 6365 [ 0.009609] arch_timer: CPU5: Trapping CNTVCT access 6366 [ 0.009617] CPU5: Booted secondary processor 0x0000000103 [0x410fd092] 6367 [ 0.009699] smp: Brought up 1 node, 6 CPUs 6368 [ 0.009716] SMP: Total of 6 processors activated. 6369 [ 0.009724] CPU features: detected: 32-bit EL0 Support 6370 [ 0.009730] CPU features: detected: CRC32 instructions 6371 [ 0.009736] CPU features: detected: 32-bit EL1 Support 6372 [ 0.021001] CPU: All CPU(s) started at EL2 6373 [ 0.021051] alternatives: patching kernel code 6374 [ 0.023051] devtmpfs: initialized 6375 [ 0.030728] Registered cp15_barrier emulation handler 6376 [ 0.030742] Registered setend emulation handler 6377 [ 0.030881] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 6378 [ 0.030922] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) 6379 [ 0.046178] pinctrl core: initialized pinctrl subsystem 6380 [ 0.046902] DMI not present or invalid. 6381 [ 0.047277] NET: Registered protocol family 16 6382 [ 0.048820] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations 6383 [ 0.049093] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 6384 [ 0.049324] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 6385 [ 0.049365] audit: initializing netlink subsys (disabled) 6386 [ 0.049462] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1 6387 [ 0.050826] thermal_sys: Registered thermal governor 'fair_share' 6388 [ 0.050833] thermal_sys: Registered thermal governor 'bang_bang' 6389 [ 0.050837] thermal_sys: Registered thermal governor 'step_wise' 6390 [ 0.050841] thermal_sys: Registered thermal governor 'user_space' 6391 [ 0.051259] cpuidle: using governor menu 6392 [ 0.051597] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 6393 [ 0.051735] ASID allocator initialised with 65536 entries 6394 [ 0.052736] Serial: AMBA PL011 UART driver 6395 [ 0.088111] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 6396 [ 0.088121] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 6397 [ 0.088126] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 6398 [ 0.088130] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 6399 [ 0.090180] cryptd: max_cpu_qlen set to 1000 6400 [ 0.160230] raid6: neonx8 gen() 2780 MB/s 6401 [ 0.228272] raid6: neonx8 xor() 2041 MB/s 6402 [ 0.296343] raid6: neonx4 gen() 3001 MB/s 6403 [ 0.364408] raid6: neonx4 xor() 2349 MB/s 6404 [ 0.432482] raid6: neonx2 gen() 2576 MB/s 6405 [ 0.500549] raid6: neonx2 xor() 2143 MB/s 6406 [ 0.568629] raid6: neonx1 gen() 1964 MB/s 6407 [ 0.636697] raid6: neonx1 xor() 1724 MB/s 6408 [ 0.704762] raid6: int64x8 gen() 1373 MB/s 6409 [ 0.772829] raid6: int64x8 xor() 735 MB/s 6410 [ 0.840914] raid6: int64x4 gen() 1463 MB/s 6411 [ 0.908959] raid6: int64x4 xor() 733 MB/s 6412 [ 0.977026] raid6: int64x2 gen() 1362 MB/s 6413 [ 1.045080] raid6: int64x2 xor() 619 MB/s 6414 [ 1.113162] raid6: int64x1 gen() 1127 MB/s 6415 [ 1.181228] raid6: int64x1 xor() 462 MB/s 6416 [ 1.181232] raid6: using algorithm neonx4 gen() 3001 MB/s 6417 [ 1.181235] raid6: .... xor() 2349 MB/s, rmw enabled 6418 [ 1.181238] raid6: using neon recovery algorithm 6419 [ 1.181678] ACPI: Interpreter disabled. 6420 [ 1.182463] 5V: supplied by 12V 6421 [ 1.183359] VDDAO_3V3: supplied by 12V 6422 [ 1.183846] iommu: Default domain type: Translated 6423 [ 1.183964] vgaarb: loaded 6424 [ 1.184867] SCSI subsystem initialized 6425 [ 1.185172] usbcore: registered new interface driver usbfs 6426 [ 1.185211] usbcore: registered new interface driver hub 6427 [ 1.185251] usbcore: registered new device driver usb 6428 [ 1.185522] pps_core: LinuxPPS API ver. 1 registered 6429 [ 1.185527] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 6430 [ 1.185543] PTP clock support registered 6431 [ 1.185735] EDAC MC: Ver: 3.0.0 6432 [ 1.187106] NetLabel: Initializing 6433 [ 1.187113] NetLabel: domain hash size = 128 6434 [ 1.187116] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 6435 [ 1.187157] NetLabel: unlabeled traffic allowed by default 6436 [ 1.187639] clocksource: Switched to clocksource arch_sys_counter 6437 [ 1.187853] VFS: Disk quotas dquot_6.6.0 6438 [ 1.187896] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 6439 [ 1.188255] AppArmor: AppArmor Filesystem Enabled 6440 [ 1.188302] pnp: PnP ACPI: disabled 6441 [ 1.193898] NET: Registered protocol family 2 6442 [ 1.194346] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) 6443 [ 1.194451] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) 6444 [ 1.194708] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) 6445 [ 1.194896] TCP: Hash tables configured (established 32768 bind 32768) 6446 [ 1.195050] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) 6447 [ 1.195115] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) 6448 [ 1.195162] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) 6449 [ 1.195308] NET: Registered protocol family 1 6450 [ 1.195327] PCI: CLS 0 bytes, default 64 6451 [ 1.195447] Trying to unpack rootfs image as initramfs... 6452 [ 1.763940] Freeing initrd memory: 14920K 6453 [ 1.764880] kvm [1]: IPA Size Limit: 40 bits 6454 [ 1.765592] kvm [1]: vgic interrupt IRQ9 6455 [ 1.765727] kvm [1]: Hyp mode initialized successfully 6456 [ 1.770833] Initialise system trusted keyrings 6457 [ 1.770867] Key type blacklist registered 6458 [ 1.770988] workingset: timestamp_bits=44 max_order=20 bucket_order=0 6459 [ 1.774223] zbud: loaded 6460 [ 1.775197] squashfs: version 4.0 (2009/01/31) Phillip Lougher 6461 [ 1.775695] fuse: init (API version 7.32) 6462 [ 1.776492] integrity: Platform Keyring initialized 6463 [ 1.804290] xor: measuring software checksum speed 6464 [ 1.807124] 8regs : 3476 MB/sec 6465 [ 1.809582] 32regs : 4024 MB/sec 6466 [ 1.812237] arm64_neon : 3719 MB/sec 6467 [ 1.812240] xor: using function: 32regs (4024 MB/sec) 6468 [ 1.812247] Key type asymmetric registered 6469 [ 1.812251] Asymmetric key parser 'x509' registered 6470 [ 1.812285] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 6471 [ 1.812393] io scheduler mq-deadline registered 6472 [ 1.812397] io scheduler kyber registered 6473 [ 1.812473] io scheduler bfq registered 6474 [ 1.815003] gpio-447 (usb-hub-reset): hogged as output/high 6475 [ 1.818011] EINJ: ACPI disabled. 6476 [ 1.824336] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 6477 [ 1.825741] VCC_3V3: supplied by VDDAO_3V3 6478 [ 1.825775] FLASH_1V8: supplied by VCC_3V3 6479 [ 1.825811] VCC_1V8: supplied by VCC_3V3 6480 [ 1.825849] VDDAO_1V8: supplied by VDDAO_3V3 6481 [ 1.825877] VDDCPU_A: supplied by regulator-dummy 6482 [ 1.826234] VDDCPU_B: supplied by regulator-dummy 6483 [ 1.826945] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 6484 [ 1.829373] Serial: AMBA driver 6485 [ 1.829666] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 6486 [ 1.829759] printk: console [ttyAML0] enabled 6487 [ 1.830271] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 6488 [ 1.835627] loop: module loaded 6489 [ 1.837548] libphy: Fixed MDIO Bus: probed 6490 [ 1.838620] tun: Universal TUN/TAP device driver, 1.6 6491 [ 1.839290] thunder_xcv, ver 1.0 6492 [ 1.839320] thunder_bgx, ver 1.0 6493 [ 1.839349] nicpf, ver 1.0 6494 [ 1.839923] e1000e: Intel(R) PRO/1000 Network Driver 6495 [ 1.839928] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 6496 [ 1.839978] igb: Intel(R) Gigabit Ethernet Network Driver 6497 [ 1.839982] igb: Copyright (c) 2007-2014 Intel Corporation. 6498 [ 1.840015] igbvf: Intel(R) Gigabit Virtual Function Network Driver 6499 [ 1.840019] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 6500 [ 1.840147] sky2: driver version 1.30 6501 [ 1.840525] VFIO - User Level meta-driver version: 0.3 6502 [ 1.841909] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 6503 [ 1.841925] ehci-pci: EHCI PCI platform driver 6504 [ 1.841953] ehci-platform: EHCI generic platform driver 6505 [ 1.842083] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 6506 [ 1.842093] ohci-pci: OHCI PCI platform driver 6507 [ 1.842123] ohci-platform: OHCI generic platform driver 6508 [ 1.842536] usbcore: registered new interface driver usb-storage 6509 [ 1.843834] mousedev: PS/2 mouse device common for all mice 6510 [ 1.844288] i2c /dev entries driver 6511 [ 1.849523] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 6512 [ 1.850386] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 6513 [ 1.851033] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 6514 [ 1.851595] sdhci: Secure Digital Host Controller Interface driver 6515 [ 1.851601] sdhci: Copyright(c) Pierre Ossman 6516 [ 1.851767] Synopsys Designware Multimedia Card Interface Driver 6517 [ 1.852140] sdhci-pltfm: SDHCI platform and OF driver helper 6518 [ 1.852499] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 6519 [ 1.852882] ledtrig-cpu: registered to indicate activity on CPUs 6520 [ 1.853148] meson-sm: secure-monitor enabled 6521 [ 1.853570] hid: raw HID events driver (C) Jiri Kosina 6522 [ 1.853669] usbcore: registered new interface driver usbhid 6523 [ 1.853672] usbhid: USB HID core driver 6524 [ 1.854647] NET: Registered protocol family 10 6525 [ 1.854995] Segment Routing with IPv6 6526 [ 1.855022] NET: Registered protocol family 17 6527 [ 1.855058] 8021q: 802.1Q VLAN Support v1.8 6528 [ 1.855078] Key type dns_resolver registered 6529 [ 1.855328] registered taskstats version 1 6530 [ 1.855334] Loading compiled-in X.509 certificates 6531 [ 1.856692] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 6532 [ 1.858093] zswap: loaded using pool zstd/z3fold 6533 [ 1.858238] Key type ._fscrypt registered 6534 [ 1.858240] Key type .fscrypt registered 6535 [ 1.858242] Key type fscrypt-provisioning registered 6536 [ 1.859256] Btrfs loaded, crc32c=crc32c-generic 6537 [ 1.864389] Key type encrypted registered 6538 [ 1.864400] AppArmor: AppArmor sha1 policy hashing enabled 6539 [ 1.869677] HUB_5V: supplied by 5V 6540 [ 1.869828] USB_PWR_EN: supplied by 5V 6541 [ 1.871272] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 6542 [ 1.871279] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 6543 [ 1.873927] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 6544 [ 1.873970] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 6545 [ 1.874053] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 6546 [ 1.874549] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 6547 [ 1.874559] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 6548 [ 1.874647] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 6549 [ 1.874668] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 6550 [ 1.874782] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 6551 [ 1.874785] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 6552 [ 1.874787] usb usb1: Product: xHCI Host Controller 6553 [ 1.874789] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 6554 [ 1.874791] usb usb1: SerialNumber: xhci-hcd.0.auto 6555 [ 1.874952] hub 1-0:1.0: USB hub found 6556 [ 1.874963] hub 1-0:1.0: 2 ports detected 6557 [ 1.875073] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 6558 [ 1.875077] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 6559 [ 1.875082] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 6560 [ 1.875100] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 6561 [ 1.875126] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 6562 [ 1.875129] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 6563 [ 1.875130] usb usb2: Product: xHCI Host Controller 6564 [ 1.875132] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 6565 [ 1.875134] usb usb2: SerialNumber: xhci-hcd.0.auto 6566 [ 1.875250] hub 2-0:1.0: USB hub found 6567 [ 1.875257] hub 2-0:1.0: 1 port detected 6568 [ 1.875482] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 6569 [ 1.876734] meson-gx-mmc ffe05000.sd: Got CD GPIO 6570 [ 1.904168] Freeing unused kernel memory: 3328K 6571 [ 1.943678] Run /init as init process 6572 [ 1.943681] with arguments: 6573 [ 1.943684] /init 6574 [ 1.943685] with environment: 6575 [ 1.943687] HOME=/ 6576 [ 1.943688] TERM=linux 6577 [ 1.943689] hdmimode=custombuilt 6578 [ 1.943690] cvbsmode=576cvbs 6579 [ 1.943692] max_freq_a53=1908 6580 [ 1.943693] max_freq_a73=2208 6581 [ 1.943694] voutmode=hdmi 6582 [ 1.943695] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 6583 [ 1.943696] disablehpd=false 6584 [ 1.943697] cvbscable= 6585 [ 1.943698] overscan=100 6586 [ 2.047772] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 6587 [ 2.047778] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 6588 [ 2.047865] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 6589 [ 2.048304] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 6590 [ 2.048310] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 6591 [ 2.048313] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 6592 [ 2.048315] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 6593 [ 2.048317] meson8b-dwmac ff3f0000.ethernet: COE Type 2 6594 [ 2.048319] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 6595 [ 2.048320] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 6596 [ 2.048357] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 6597 [ 2.048359] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 6598 [ 2.048361] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 6599 [ 2.048509] libphy: stmmac: probed 6600 [ 2.051551] libphy: mdio_mux: probed 6601 [ 2.070205] meson-vrtc ff8000a8.rtc: registered as rtc1 6602 [ 2.070657] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 6603 [ 2.070880] rtc-pcf8563 1-0051: registered as rtc0 6604 [ 2.072170] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 6605 [ 2.072182] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 6606 [ 2.145543] mmc0: new ultra high speed SDR104 SDXC card at address aaaa 6607 [ 2.146046] mmcblk0: mmc0:aaaa SH64G 59.5 GiB 6608 [ 2.150430] mmc1: new HS200 MMC card at address 0001 6609 [ 2.150775] mmcblk0: p1 6610 [ 2.151198] mmcblk1: mmc1:0001 CJTD4R 58.2 GiB 6611 [ 2.151572] mmcblk1boot0: mmc1:0001 CJTD4R partition 1 4.00 MiB 6612 [ 2.151971] mmcblk1boot1: mmc1:0001 CJTD4R partition 2 4.00 MiB 6613 [ 2.152093] mmcblk1rpmb: mmc1:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 6614 [ 2.153452] mmcblk1: p1 6615 [ 2.163614] random: fast init done 6616 [ 2.211772] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 6617 [ 2.236365] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 6618 [ 2.236371] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 6619 [ 2.236374] usb 2-1: Product: USB3.1 Hub 6620 [ 2.236376] usb 2-1: Manufacturer: GenesysLogic 6621 [ 2.256053] libphy: mdio_mux: probed 6622 [ 2.259390] hub 2-1:1.0: USB hub found 6623 [ 2.259679] hub 2-1:1.0: 4 ports detected 6624 [ 2.359659] usb 1-1: new high-speed USB device number 2 using xhci-hcd 6625 [ 2.509980] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 6626 [ 2.509985] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 6627 [ 2.509989] usb 1-1: Product: USB2.1 Hub 6628 [ 2.509993] usb 1-1: Manufacturer: GenesysLogic 6629 [ 2.547356] hub 1-1:1.0: USB hub found 6630 [ 2.547579] hub 1-1:1.0: 4 ports detected 6631 [ 2.923650] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 6632 [ 3.050656] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 6633 [ 3.050661] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 6634 [ 3.050664] usb 1-1.1: Product: USB OPTICAL MOUSE 6635 [ 3.093486] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input0 6636 [ 3.093702] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 6637 [ 3.195651] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 6638 [ 3.234735] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 6639 [ 3.332996] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 6640 [ 3.333006] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 6641 [ 3.333010] usb 1-1.3: Product: USB Keyboard 6642 [ 3.333013] usb 1-1.3: Manufacturer: Logitech 6643 [ 3.408041] systemd[1]: System time before build time, advancing clock. 6644 [ 3.411728] systemd[1]: Inserted module 'autofs4' 6645 [ 3.416471] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input1 6646 [ 3.429690] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 6647 [ 3.429871] systemd[1]: Detected architecture arm64. 6648 [ 3.457278] systemd[1]: Set hostname to <odroidn2>. 6649 [ 3.476298] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 6650 [ 3.483299] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input2 6651 [ 3.539916] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 6652 [ 3.540055] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 6653 [ 3.612625] random: systemd: uninitialized urandom read (16 bytes read) 6654 [ 3.615211] random: systemd: uninitialized urandom read (16 bytes read) 6655 [ 3.615408] systemd[1]: Listening on udev Kernel Socket. 6656 [ 3.615744] random: systemd: uninitialized urandom read (16 bytes read) 6657 [ 3.615916] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 6658 [ 3.616155] systemd[1]: Listening on udev Control Socket. 6659 [ 3.616278] systemd[1]: Listening on initctl Compatibility Named Pipe. 6660 [ 3.616514] systemd[1]: Listening on Journal Audit Socket. 6661 [ 3.616584] systemd[1]: Reached target Remote File Systems. 6662 [ 3.616663] systemd[1]: Reached target System Time Synchronized. 6663 [ 3.664329] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 6664 [ 3.884092] zram: Added device: zram0 6665 [ 3.884257] zram: Added device: zram1 6666 [ 3.884381] zram: Added device: zram2 6667 [ 3.915701] pwm-gpio pwmgpio: 1 gpio pwms loaded 6668 [ 3.944938] zram0: detected capacity change from 0 to 1904500736 6669 [ 3.978061] meson-drm ff900000.vpu: Queued 2 outputs on vpu 6670 [ 3.981860] mc: Linux media interface: v0.10 6671 [ 3.983557] meson-drm ff900000.vpu: CVBS Output connector not available 6672 [ 3.989190] videodev: Linux video capture interface: v2.00 6673 [ 4.007364] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 6674 [ 4.011714] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 6675 [ 4.012343] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 6676 [ 4.012570] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 6677 [ 4.012805] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 6678 [ 4.060191] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 6679 [ 4.078183] panfrost ffe40000.gpu: clock rate = 24000000 6680 [ 4.078231] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 6681 [ 4.078752] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 6682 [ 4.078757] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 6683 [ 4.078760] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 6684 [ 4.078763] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 6685 [ 4.093952] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 6686 [ 4.095686] Registered IR keymap rc-odroid 6687 [ 4.108886] IR NEC protocol handler initialized 6688 [ 4.135744] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 6689 [ 4.135823] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 6690 [ 4.135870] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input4 6691 [ 4.136511] meson-ir ff808000.ir: receiver initialized 6692 [ 4.304522] Console: switching to colour frame buffer device 240x67 6693 [ 4.335736] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 6694 [ 4.369310] axg-sound-card sound: ASoC: no DMI vendor name! 6695 [ 4.979657] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 6696 [ 5.022600] zram1: detected capacity change from 0 to 52428800 6697 [ 7.067679] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 6698 [ 7.067700] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 6699 [ 8.081399] systemd-journald[1877]: Received request to flush runtime journal from PID 1 6700 6701 ### armbian-release: 6702 6703 # PLEASE DO NOT EDIT THIS FILE 6704 BOARD=odroidn2 6705 BOARD_NAME="Odroid N2" 6706 BOARDFAMILY=meson-g12b 6707 BUILD_REPOSITORY_URL=git@github.com:armbian/build.git 6708 BUILD_REPOSITORY_COMMIT=e846ef656-dirty 6709 DISTRIBUTION_CODENAME=buster 6710 DISTRIBUTION_STATUS=supported 6711 VERSION=21.02.3 6712 LINUXFAMILY=meson64 6713 BRANCH=current 6714 ARCH=arm64 6715 IMAGE_TYPE=stable 6716 BOARD_TYPE=conf 6717 INITRD_ARCH=arm64 6718 KERNEL_IMAGE_TYPE=Image 6719 6720 ### boot environment: 6721 6722 verbosity=1 6723 console=both 6724 overlay_prefix=meson 6725 bootlogo=true 6726 rootdev=UUID=51c33730-20c8-4007-8dc5-c3478d176211 6727 rootfstype=ext4 6728 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 6729 6730 ### lsusb: 6731 6732 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 6733 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 6734 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 6735 Bus 001 Device 003: ID 275d:0ba6 6736 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 6737 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 6738 6739 ### lscpu: 6740 6741 Architecture: aarch64 6742 Byte Order: Little Endian 6743 CPU(s): 6 6744 On-line CPU(s) list: 0-5 6745 Thread(s) per core: 1 6746 Core(s) per socket: 3 6747 Socket(s): 2 6748 NUMA node(s): 1 6749 Vendor ID: ARM 6750 Model: 4 6751 Model name: Cortex-A53 6752 Stepping: r0p4 6753 CPU max MHz: 2400.0000 6754 CPU min MHz: 100.0000 6755 BogoMIPS: 48.00 6756 L1d cache: unknown size 6757 L1i cache: unknown size 6758 L2 cache: unknown size 6759 NUMA node0 CPU(s): 0-5 6760 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6761 6762 ### cpuinfo: 6763 6764 processor : 0 6765 BogoMIPS : 48.00 6766 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6767 CPU implementer : 0x41 6768 CPU architecture: 8 6769 CPU variant : 0x0 6770 CPU part : 0xd03 6771 CPU revision : 4 6772 6773 processor : 1 6774 BogoMIPS : 48.00 6775 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6776 CPU implementer : 0x41 6777 CPU architecture: 8 6778 CPU variant : 0x0 6779 CPU part : 0xd03 6780 CPU revision : 4 6781 6782 processor : 2 6783 BogoMIPS : 48.00 6784 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6785 CPU implementer : 0x41 6786 CPU architecture: 8 6787 CPU variant : 0x0 6788 CPU part : 0xd09 6789 CPU revision : 2 6790 6791 processor : 3 6792 BogoMIPS : 48.00 6793 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6794 CPU implementer : 0x41 6795 CPU architecture: 8 6796 CPU variant : 0x0 6797 CPU part : 0xd09 6798 CPU revision : 2 6799 6800 processor : 4 6801 BogoMIPS : 48.00 6802 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6803 CPU implementer : 0x41 6804 CPU architecture: 8 6805 CPU variant : 0x0 6806 CPU part : 0xd09 6807 CPU revision : 2 6808 6809 processor : 5 6810 BogoMIPS : 48.00 6811 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 6812 CPU implementer : 0x41 6813 CPU architecture: 8 6814 CPU variant : 0x0 6815 CPU part : 0xd09 6816 CPU revision : 2 6817 6818 6819 ### meminfo: 6820 6821 MemTotal: 3719724 kB 6822 MemFree: 3373276 kB 6823 MemAvailable: 3340472 kB 6824 Buffers: 13344 kB 6825 Cached: 68160 kB 6826 SwapCached: 0 kB 6827 Active: 34136 kB 6828 Inactive: 194072 kB 6829 Active(anon): 156 kB 6830 Inactive(anon): 151560 kB 6831 Active(file): 33980 kB 6832 Inactive(file): 42512 kB 6833 Unevictable: 0 kB 6834 Mlocked: 0 kB 6835 SwapTotal: 1859860 kB 6836 SwapFree: 1859860 kB 6837 Dirty: 21228 kB 6838 Writeback: 0 kB 6839 AnonPages: 146732 kB 6840 Mapped: 14972 kB 6841 Shmem: 5016 kB 6842 KReclaimable: 14616 kB 6843 Slab: 46764 kB 6844 SReclaimable: 14616 kB 6845 SUnreclaim: 32148 kB 6846 KernelStack: 2640 kB 6847 PageTables: 6848 kB 6848 NFS_Unstable: 0 kB 6849 Bounce: 0 kB 6850 WritebackTmp: 0 kB 6851 CommitLimit: 3719720 kB 6852 Committed_AS: 4249748 kB 6853 VmallocTotal: 135290159040 kB 6854 VmallocUsed: 31524 kB 6855 VmallocChunk: 0 kB 6856 Percpu: 1416 kB 6857 HardwareCorrupted: 0 kB 6858 AnonHugePages: 0 kB 6859 ShmemHugePages: 0 kB 6860 ShmemPmdMapped: 0 kB 6861 FileHugePages: 0 kB 6862 FilePmdMapped: 0 kB 6863 CmaTotal: 917504 kB 6864 CmaFree: 901724 kB 6865 HugePages_Total: 0 6866 HugePages_Free: 0 6867 HugePages_Rsvd: 0 6868 HugePages_Surp: 0 6869 Hugepagesize: 2048 kB 6870 Hugetlb: 0 kB 6871 6872 ### virtual memory: 6873 6874 vm.admin_reserve_kbytes = 8192 6875 vm.block_dump = 0 6876 vm.compaction_proactiveness = 20 6877 vm.compact_unevictable_allowed = 1 6878 vm.dirty_background_bytes = 0 6879 vm.dirty_background_ratio = 10 6880 vm.dirty_bytes = 0 6881 vm.dirty_expire_centisecs = 3000 6882 vm.dirty_ratio = 20 6883 vm.dirtytime_expire_seconds = 43200 6884 vm.dirty_writeback_centisecs = 500 6885 vm.extfrag_threshold = 500 6886 vm.hugetlb_shm_group = 0 6887 vm.laptop_mode = 0 6888 vm.legacy_va_layout = 0 6889 vm.lowmem_reserve_ratio = 256 256 32 0 6890 vm.max_map_count = 65530 6891 vm.memory_failure_early_kill = 0 6892 vm.memory_failure_recovery = 1 6893 vm.min_free_kbytes = 45056 6894 vm.min_slab_ratio = 5 6895 vm.min_unmapped_ratio = 1 6896 vm.mmap_min_addr = 4096 6897 vm.mmap_rnd_bits = 18 6898 vm.mmap_rnd_compat_bits = 11 6899 vm.nr_hugepages = 0 6900 vm.nr_hugepages_mempolicy = 0 6901 vm.nr_overcommit_hugepages = 0 6902 vm.numa_stat = 1 6903 vm.numa_zonelist_order = Node 6904 vm.oom_dump_tasks = 1 6905 vm.oom_kill_allocating_task = 0 6906 vm.overcommit_kbytes = 0 6907 vm.overcommit_memory = 0 6908 vm.overcommit_ratio = 50 6909 vm.page-cluster = 0 6910 vm.page_lock_unfairness = 5 6911 vm.panic_on_oom = 0 6912 vm.percpu_pagelist_fraction = 0 6913 vm.stat_interval = 1 6914 vm.swappiness = 100 6915 vm.user_reserve_kbytes = 114979 6916 vm.vfs_cache_pressure = 100 6917 vm.watermark_boost_factor = 15000 6918 vm.watermark_scale_factor = 10 6919 vm.zone_reclaim_mode = 0 6920 6921 ### ip addr: 6922 6923 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 6924 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 6925 inet XXX.XXX.0.1/8 scope host lo 6926 valid_lft forever preferred_lft forever 6927 inet6 ::1/128 scope host 6928 valid_lft forever preferred_lft forever 6929 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 6930 link/ether 00:1e:06:42:52:64 brd ff:ff:ff:ff:ff:ff 6931 6932 ### partitions: 6933 6934 major minor #blocks name 6935 6936 179 0 62367744 mmcblk0 6937 179 1 62366720 mmcblk0p1 6938 179 32 61071360 mmcblk1 6939 179 33 60456544 mmcblk1p1 6940 252 0 1859864 zram0 6941 252 1 51200 zram1 6942 6943 ### df: 6944 6945 udev 1.4G 0 1.4G 0% /dev 6946 tmpfs 364M 5.0M 359M 2% /run 6947 /dev/mmcblk1p1 57G 21G 36G 37% / 6948 tmpfs 1.8G 0 1.8G 0% /dev/shm 6949 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 6950 tmpfs 1.8G 0 1.8G 0% /sys/fs/cgroup 6951 tmpfs 1.8G 0 1.8G 0% /tmp 6952 /dev/zram1 49M 21M 25M 47% /var/log 6953 6954 ### lsblk: 6955 6956 NAME FSTYPE SIZE MOUNTPOINT UUID 6957 mmcblk0 59.5G 6958 └─mmcblk0p1 ext4 59.5G 83574bbb-e4ac-4398-8436-9962a3c61cdf 6959 mmcblk1 58.2G 6960 └─mmcblk1p1 ext4 57.7G / 51c33730-20c8-4007-8dc5-c3478d176211 6961 mmcblk1boot0 4M 6962 mmcblk1boot1 4M 6963 zram1 50M /var/log 6964 6965 ### zramctl: 6966 6967 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 6968 /dev/zram1 zstd 50M 132K 698B 36K 6 /var/log 6969 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 6970 6971 ### mtab: 6972 6973 /dev/mmcblk1p1 / ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 6974 /dev/mmcblk1p1 /var/log.hdd ext4 rw,noatime,nodiratime,errors=remount-ro,commit=600 0 0 6975 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 6976 6977 ### mmc0:aaaa info: 6978 6979 fwrev: 0x0 6980 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=SH64G MODALIAS=mmc:block 6981 cid: 035344534836344780559b2001014a00 6982 rca: 0xaaaa 6983 csd: 400e0032db790001dbd37f800a404000 6984 manfid: 0x000003 6985 ocr: 0x00200000 6986 preferred_erase_size: 4194304 6987 type: SD 6988 hwrev: 0x8 6989 date: 10/2020 6990 dsr: 0x404 6991 erase_size: 512 6992 oemid: 0x5344 6993 serial: 0x559b2001 6994 ssr: 0000000008000000040090000f05391e000800000001000003000000000000000000000000000000000000000000000000000000000000000000000000000000 6995 scr: 0245848300000000 6996 name: SH64G 6997 6998 ### mmc1:0001 info: 6999 7000 fwrev: 0x0400000000000000 7001 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=CJTD4R MODALIAS=mmc:block 7002 cid: 150100434a54443452042559facb7700 7003 rel_sectors: 0x1 7004 enhanced_rpmb_supported: 0x1 7005 rca: 0x0001 7006 pre_eol_info: 0x01 7007 csd: d02701320f5903fff6dbffef8e404000 7008 manfid: 0x000015 7009 ocr: 0x00200000 7010 preferred_erase_size: 4194304 7011 enhanced_area_offset: 18446744073709551594 7012 raw_rpmb_size_mult: 0x20 7013 type: MMC 7014 hwrev: 0x0 7015 date: 07/2020 7016 prv: 0x4 7017 ffu_capable: 1 7018 dsr: 0x404 7019 erase_size: 524288 7020 life_time: 0x01 0x01 7021 enhanced_area_size: 4294967274 7022 oemid: 0x0100 7023 serial: 0x2559facb 7024 cmdq_en: 0 7025 rev: 0x8 7026 name: CJTD4R 7027 7028 ### Boot system health: 7029 7030 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 7031 14:56:52: 2400/2016MHz 0.16 20% 13% 6% 0% 1% 0% 23.7°C 0/12 7032 14:56:52: 2400/2016MHz 0.16 33% 22% 10% 0% 0% 0% 22.8°C 0/12 7033 14:56:53: 2400/2016MHz 0.16 18% 9% 8% 0% 0% 0% 22.2°C 0/12 7034 14:56:53: 2400/2016MHz 0.23 31% 19% 9% 0% 0% 0% 21.8°C 0/12 7035 14:56:53: 2400/2016MHz 0.23 67% 34% 13% 0% 15% 1% 22.7°C 0/12 7036 7037 ### lsusb: 7038 7039 Bus 002 Device 002: ID 05e3:0620 Genesys Logic, Inc. 7040 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub 7041 Bus 001 Device 004: ID 046d:c31c Logitech, Inc. Keyboard K120 7042 Bus 001 Device 003: ID 275d:0ba6 7043 Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub 7044 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 7045 7046 /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M 7047 |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M 7048 /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M 7049 |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M 7050 |__ Port 1: Dev 3, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M 7051 |__ Port 3: Dev 4, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M 7052 |__ Port 3: Dev 4, If 1, Class=Human Interface Device, Driver=usbhid, 1.5M 7053 7054 ### lspci: 7055 7056 7057 ### Installed packages: 7058 7059 ii armbian-buster-desktop 21.02.2 all Armbian desktop for Debian buster 7060 ii armbian-config 21.02.3 all Armbian configuration utility 7061 ii armbian-firmware-full 21.02.3 all Linux firmware-full 7062 ii hostapd 3:2.9-102~armbian20.05.2+1 arm64 IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator 7063 ii htop 3.1.0-0~armbian20.08.2+1 arm64 interactive processes viewer 7064 ii linux-base 4.6 all Linux image base package 7065 ii linux-buster-root-current-odroidn2 21.02.3 arm64 Armbian tweaks for buster on odroidn2 (current branch) 7066 ii linux-dtb-current-meson64 21.02.3 arm64 Linux DTB, version 5.10.21-meson64 7067 ii linux-image-current-meson64 21.02.3 arm64 Linux kernel, version 5.10.21-meson64 7068 ii linux-libc-dev:arm64 4.19.171-2 arm64 Linux support headers for userspace development 7069 ii linux-u-boot-odroidn2-current 21.02.3 arm64 Uboot loader 2015.01 7070 7071 ### Loaded modules: 7072 7073 Module Size Used by 7074 rfkill 36864 1 7075 cpufreq_powersave 20480 0 7076 cpufreq_conservative 16384 0 7077 snd_soc_hdmi_codec 20480 1 7078 dw_hdmi_i2s_audio 16384 0 7079 joydev 32768 0 7080 ir_nec_decoder 20480 0 7081 panfrost 65536 0 7082 gpu_sched 32768 1 panfrost 7083 rc_odroid 16384 0 7084 meson_ir 16384 0 7085 meson_saradc 24576 0 7086 rc_core 57344 4 ir_nec_decoder,meson_ir,rc_odroid 7087 snd_soc_meson_axg_sound_card 16384 0 7088 snd_soc_meson_card_utils 16384 3 snd_soc_meson_axg_sound_card 7089 snd_soc_meson_g12a_tohdmitx 20480 1 7090 reset_meson_audio_arb 16384 6 7091 snd_soc_meson_axg_frddr 36864 3 7092 snd_soc_meson_axg_toddr 28672 3 7093 meson_gxbb_wdt 20480 0 7094 snd_soc_meson_axg_fifo 20480 2 snd_soc_meson_axg_toddr,snd_soc_meson_axg_frddr 7095 snd_soc_meson_axg_tdmout 24576 2 7096 meson_vdec 73728 0 7097 v4l2_mem2mem 40960 1 meson_vdec 7098 videobuf2_dma_contig 24576 1 meson_vdec 7099 snd_soc_meson_axg_tdmin 24576 4 7100 videobuf2_memops 20480 1 videobuf2_dma_contig 7101 videobuf2_v4l2 32768 2 meson_vdec,v4l2_mem2mem 7102 videobuf2_common 57344 3 meson_vdec,videobuf2_v4l2,v4l2_mem2mem 7103 videodev 278528 4 meson_vdec,videobuf2_v4l2,videobuf2_common,v4l2_mem2mem 7104 snd_soc_meson_g12a_toacodec 16384 1 7105 snd_soc_meson_codec_glue 16384 2 snd_soc_meson_g12a_toacodec,snd_soc_meson_g12a_tohdmitx 7106 meson_dw_hdmi 24576 0 7107 mc 61440 4 videodev,videobuf2_v4l2,videobuf2_common,v4l2_mem2mem 7108 meson_drm 61440 3 meson_dw_hdmi 7109 meson_canvas 16384 2 meson_drm,meson_vdec 7110 dw_hdmi 53248 2 meson_dw_hdmi,dw_hdmi_i2s_audio 7111 drm_kms_helper 245760 5 meson_dw_hdmi,meson_drm,dw_hdmi 7112 display_connector 20480 0 7113 snd_soc_meson_t9015 24576 1 7114 meson_rng 16384 0 7115 snd_soc_meson_axg_tdm_interface 16384 3 snd_soc_meson_axg_sound_card 7116 snd_soc_simple_amplifier 16384 1 7117 cec 73728 2 drm_kms_helper,dw_hdmi 7118 snd_soc_meson_axg_tdm_formatter 16384 3 snd_soc_meson_axg_tdmin,snd_soc_meson_axg_tdm_interface,snd_soc_meson_axg_tdmout 7119 snd_soc_core 221184 15 snd_soc_meson_axg_tdm_formatter,snd_soc_meson_t9015,snd_soc_meson_g12a_toacodec,snd_soc_meson_axg_sound_card,snd_soc_hdmi_codec,snd_soc_meson_g12a_tohdmitx,snd_soc_meson_axg_tdmin,snd_soc_simple_amplifier,snd_soc_meson_axg_tdm_interface,snd_soc_meson_axg_fifo,snd_soc_meson_axg_tdmout,snd_soc_meson_axg_toddr,snd_soc_meson_axg_frddr,snd_soc_meson_card_utils,snd_soc_meson_codec_glue 7120 ac97_bus 16384 1 snd_soc_core 7121 snd_pcm_dmaengine 20480 1 snd_soc_core 7122 drm 561152 10 gpu_sched,meson_dw_hdmi,meson_drm,drm_kms_helper,display_connector,dw_hdmi,panfrost 7123 snd_pcm 122880 7 snd_soc_hdmi_codec,snd_soc_meson_axg_tdm_interface,snd_soc_core,snd_soc_meson_axg_fifo,snd_soc_meson_axg_toddr,snd_soc_meson_codec_glue,snd_pcm_dmaengine 7124 snd_timer 40960 1 snd_pcm 7125 snd 90112 8 snd_soc_hdmi_codec,snd_timer,snd_soc_core,snd_pcm 7126 pwm_fan 20480 0 7127 pwm_gpio 16384 1 7128 drm_panel_orientation_quirks 20480 1 drm 7129 soundcore 16384 1 snd 7130 zram 36864 2 7131 ip_tables 32768 0 7132 x_tables 45056 1 ip_tables 7133 autofs4 45056 2 7134 meson_gxl 20480 0 7135 rtc_meson_vrtc 20480 1 7136 rtc_pcf8563 24576 0 7137 realtek 24576 1 7138 axg_audio 77824 49 7139 sclk_div 16384 1 axg_audio 7140 clk_phase 16384 1 axg_audio 7141 dwmac_generic 16384 0 7142 dwmac_meson8b 16384 0 7143 7144 ### Current system health: 7145 7146 Time big.LITTLE load %cpu %sys %usr %nice %io %irq CPU C.St. 7147 15:08:25: 1000/1000MHz 0.08 1% 0% 0% 0% 0% 0% 23.0°C 0/12 7148 15:08:25: 2400/1000MHz 0.08 1% 1% 0% 0% 0% 0% 22.8°C 0/12 7149 15:08:26: 2400/1000MHz 0.08 1% 1% 0% 0% 0% 0% 23.0°C 0/12 7150 15:08:26: 2400/1000MHz 0.08 2% 1% 1% 0% 0% 0% 23.0°C 0/12 7151 15:08:26: 2400/1000MHz 0.08 1% 1% 0% 0% 0% 0% 23.0°C 0/12 7152 15:08:28: 2400/2016MHz 0.08 1% 0% 1% 0% 0% 0% 38.3°C 0/12 7153 15:08:29: 2400/2016MHz 0.55 100% 0% 99% 0% 0% 0% 39.9°C 0/12 7154 15:08:30: 2400/2016MHz 0.55 63% 0% 62% 0% 0% 0% 27.5°C 0/12 7155 15:08:30: 2400/2016MHz 0.55 2% 1% 0% 0% 0% 0% 26.5°C 0/12 7156 15:08:30: 2400/2016MHz 0.55 1% 1% 0% 0% 0% 0% 25.4°C 0/12 7157 7158 ### resolv.conf 7159 7160 -rw-r--r-- 1 root root 53 Apr 4 21:27 /etc/resolv.conf 7161 # Generated by NetworkManager 7162 nameserver XXX.XXX.1.1 7163 7164 ### Current sysinfo: 7165 7166 Linux 5.10.21-meson64 (odroidn2) 04/05/2021 _aarch64_ (6 CPU) 7167 7168 avg-cpu: %user %nice %system %iowait %steal %idle 7169 1.40 0.00 0.68 0.07 0.00 97.85 7170 7171 Device tps kB_read/s kB_wrtn/s kB_read kB_wrtn 7172 mmcblk0 0.25 6.58 0.00 4660 0 7173 mmcblk0p1 0.20 5.11 0.00 3616 0 7174 mmcblk1 12.86 585.39 20.20 414433 14300 7175 mmcblk1p1 12.70 582.43 20.20 412337 14300 7176 mmcblk1boot1 0.08 0.33 0.00 232 0 7177 mmcblk1boot0 0.08 0.33 0.00 232 0 7178 zram0 0.79 3.15 0.01 2232 4 7179 zram1 0.68 0.62 32.13 440 22744 7180 zram2 0.00 0.00 0.00 0 0 7181 7182 procs -----------------------memory---------------------- ---swap-- -----io---- -system-- --------cpu-------- 7183 r b swpd free buff cache si so bi bo in cs us sy id wa st 7184 0 0 0 2770620 31652 541772 0 0 99 9 114 89 1 1 98 0 0 7185 7186 total used free shared buff/cache available 7187 Mem: 3.5Gi 367Mi 2.6Gi 111Mi 559Mi 2.9Gi 7188 Swap: 1.8Gi 0B 1.8Gi 7189 7190 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 7191 /dev/zram1 zstd 50M 21.1M 2.3M 2.7M 6 /var/log 7192 /dev/zram0 lzo-rle 1.8G 4K 74B 12K 6 [SWAP] 7193 7194 15:08:31 up 11 min, 2 users, load average: 0.55, 0.21, 0.08 7195 7196 [ 1.775695] fuse: init (API version 7.32) 7197 [ 1.776492] integrity: Platform Keyring initialized 7198 [ 1.804290] xor: measuring software checksum speed 7199 [ 1.807124] 8regs : 3476 MB/sec 7200 [ 1.809582] 32regs : 4024 MB/sec 7201 [ 1.812237] arm64_neon : 3719 MB/sec 7202 [ 1.812240] xor: using function: 32regs (4024 MB/sec) 7203 [ 1.812247] Key type asymmetric registered 7204 [ 1.812251] Asymmetric key parser 'x509' registered 7205 [ 1.812285] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) 7206 [ 1.812393] io scheduler mq-deadline registered 7207 [ 1.812397] io scheduler kyber registered 7208 [ 1.812473] io scheduler bfq registered 7209 [ 1.815003] gpio-447 (usb-hub-reset): hogged as output/high 7210 [ 1.818011] EINJ: ACPI disabled. 7211 [ 1.824336] soc soc0: Amlogic Meson G12B (S922X) Revision 29:c (40:2) Detected 7212 [ 1.825741] VCC_3V3: supplied by VDDAO_3V3 7213 [ 1.825775] FLASH_1V8: supplied by VCC_3V3 7214 [ 1.825811] VCC_1V8: supplied by VCC_3V3 7215 [ 1.825849] VDDAO_1V8: supplied by VDDAO_3V3 7216 [ 1.825877] VDDCPU_A: supplied by regulator-dummy 7217 [ 1.826234] VDDCPU_B: supplied by regulator-dummy 7218 [ 1.826945] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled 7219 [ 1.829373] Serial: AMBA driver 7220 [ 1.829666] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 25, base_baud = 1500000) is a meson_uart 7221 [ 1.829759] printk: console [ttyAML0] enabled 7222 [ 1.830271] ffd24000.serial: ttyAML1 at MMIO 0xffd24000 (irq = 33, base_baud = 1500000) is a meson_uart 7223 [ 1.835627] loop: module loaded 7224 [ 1.837548] libphy: Fixed MDIO Bus: probed 7225 [ 1.838620] tun: Universal TUN/TAP device driver, 1.6 7226 [ 1.839290] thunder_xcv, ver 1.0 7227 [ 1.839320] thunder_bgx, ver 1.0 7228 [ 1.839349] nicpf, ver 1.0 7229 [ 1.839923] e1000e: Intel(R) PRO/1000 Network Driver 7230 [ 1.839928] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. 7231 [ 1.839978] igb: Intel(R) Gigabit Ethernet Network Driver 7232 [ 1.839982] igb: Copyright (c) 2007-2014 Intel Corporation. 7233 [ 1.840015] igbvf: Intel(R) Gigabit Virtual Function Network Driver 7234 [ 1.840019] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. 7235 [ 1.840147] sky2: driver version 1.30 7236 [ 1.840525] VFIO - User Level meta-driver version: 0.3 7237 [ 1.841909] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 7238 [ 1.841925] ehci-pci: EHCI PCI platform driver 7239 [ 1.841953] ehci-platform: EHCI generic platform driver 7240 [ 1.842083] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 7241 [ 1.842093] ohci-pci: OHCI PCI platform driver 7242 [ 1.842123] ohci-platform: OHCI generic platform driver 7243 [ 1.842536] usbcore: registered new interface driver usb-storage 7244 [ 1.843834] mousedev: PS/2 mouse device common for all mice 7245 [ 1.844288] i2c /dev entries driver 7246 [ 1.849523] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-0 failed:-17 7247 [ 1.850386] cpufreq: cpufreq_online: CPU2: Running at unlisted initial frequency: 999999 KHz, changing to: 1000000 KHz 7248 [ 1.851033] thermal thermal_zone0: binding zone cpu-thermal with cdev thermal-cpufreq-1 failed:-17 7249 [ 1.851595] sdhci: Secure Digital Host Controller Interface driver 7250 [ 1.851601] sdhci: Copyright(c) Pierre Ossman 7251 [ 1.851767] Synopsys Designware Multimedia Card Interface Driver 7252 [ 1.852140] sdhci-pltfm: SDHCI platform and OF driver helper 7253 [ 1.852499] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq 7254 [ 1.852882] ledtrig-cpu: registered to indicate activity on CPUs 7255 [ 1.853148] meson-sm: secure-monitor enabled 7256 [ 1.853570] hid: raw HID events driver (C) Jiri Kosina 7257 [ 1.853669] usbcore: registered new interface driver usbhid 7258 [ 1.853672] usbhid: USB HID core driver 7259 [ 1.854647] NET: Registered protocol family 10 7260 [ 1.854995] Segment Routing with IPv6 7261 [ 1.855022] NET: Registered protocol family 17 7262 [ 1.855058] 8021q: 802.1Q VLAN Support v1.8 7263 [ 1.855078] Key type dns_resolver registered 7264 [ 1.855328] registered taskstats version 1 7265 [ 1.855334] Loading compiled-in X.509 certificates 7266 [ 1.856692] Loaded X.509 cert 'Build time autogenerated kernel key: 98b5fbd0004968eadd44123544af94c22f57c8e4' 7267 [ 1.858093] zswap: loaded using pool zstd/z3fold 7268 [ 1.858238] Key type ._fscrypt registered 7269 [ 1.858240] Key type .fscrypt registered 7270 [ 1.858242] Key type fscrypt-provisioning registered 7271 [ 1.859256] Btrfs loaded, crc32c=crc32c-generic 7272 [ 1.864389] Key type encrypted registered 7273 [ 1.864400] AppArmor: AppArmor sha1 policy hashing enabled 7274 [ 1.869677] HUB_5V: supplied by 5V 7275 [ 1.869828] USB_PWR_EN: supplied by 5V 7276 [ 1.871272] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2 7277 [ 1.871279] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1 7278 [ 1.873927] dwc2 ff400000.usb: supply vusb_d not found, using dummy regulator 7279 [ 1.873970] dwc2 ff400000.usb: supply vusb_a not found, using dummy regulator 7280 [ 1.874053] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM 7281 [ 1.874549] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 7282 [ 1.874559] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 7283 [ 1.874647] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010 7284 [ 1.874668] xhci-hcd xhci-hcd.0.auto: irq 41, io mem 0xff500000 7285 [ 1.874782] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 7286 [ 1.874785] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 7287 [ 1.874787] usb usb1: Product: xHCI Host Controller 7288 [ 1.874789] usb usb1: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 7289 [ 1.874791] usb usb1: SerialNumber: xhci-hcd.0.auto 7290 [ 1.874952] hub 1-0:1.0: USB hub found 7291 [ 1.874963] hub 1-0:1.0: 2 ports detected 7292 [ 1.875073] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 7293 [ 1.875077] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 7294 [ 1.875082] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed 7295 [ 1.875100] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. 7296 [ 1.875126] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 7297 [ 1.875129] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 7298 [ 1.875130] usb usb2: Product: xHCI Host Controller 7299 [ 1.875132] usb usb2: Manufacturer: Linux 5.10.21-meson64 xhci-hcd 7300 [ 1.875134] usb usb2: SerialNumber: xhci-hcd.0.auto 7301 [ 1.875250] hub 2-0:1.0: USB hub found 7302 [ 1.875257] hub 2-0:1.0: 1 port detected 7303 [ 1.875482] dwc3-meson-g12a ffe09000.usb: switching to Device Mode 7304 [ 1.876734] meson-gx-mmc ffe05000.sd: Got CD GPIO 7305 [ 1.904168] Freeing unused kernel memory: 3328K 7306 [ 1.943678] Run /init as init process 7307 [ 1.943681] with arguments: 7308 [ 1.943684] /init 7309 [ 1.943685] with environment: 7310 [ 1.943687] HOME=/ 7311 [ 1.943688] TERM=linux 7312 [ 1.943689] hdmimode=custombuilt 7313 [ 1.943690] cvbsmode=576cvbs 7314 [ 1.943692] max_freq_a53=1908 7315 [ 1.943693] max_freq_a73=2208 7316 [ 1.943694] voutmode=hdmi 7317 [ 1.943695] modeline=1920,1080,148500,67500,60,1920,2008,2052,2200,1080,1084,1089,1125,1,1,1 7318 [ 1.943696] disablehpd=false 7319 [ 1.943697] cvbscable= 7320 [ 1.943698] overscan=100 7321 [ 2.047772] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found 7322 [ 2.047778] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found 7323 [ 2.047865] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock 7324 [ 2.048304] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37 7325 [ 2.048310] meson8b-dwmac ff3f0000.ethernet: DWMAC1000 7326 [ 2.048313] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported 7327 [ 2.048315] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported 7328 [ 2.048317] meson8b-dwmac ff3f0000.ethernet: COE Type 2 7329 [ 2.048319] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported 7330 [ 2.048320] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported 7331 [ 2.048357] meson8b-dwmac ff3f0000.ethernet: Normal descriptors 7332 [ 2.048359] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled 7333 [ 2.048361] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer 7334 [ 2.048509] libphy: stmmac: probed 7335 [ 2.051551] libphy: mdio_mux: probed 7336 [ 2.070205] meson-vrtc ff8000a8.rtc: registered as rtc1 7337 [ 2.070657] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 7338 [ 2.070880] rtc-pcf8563 1-0051: registered as rtc0 7339 [ 2.072170] rtc-pcf8563 1-0051: low voltage detected, date/time is not reliable. 7340 [ 2.072182] rtc-pcf8563 1-0051: hctosys: unable to read the hardware clock 7341 [ 2.145543] mmc0: new ultra high speed SDR104 SDXC card at address aaaa 7342 [ 2.146046] mmcblk0: mmc0:aaaa SH64G 59.5 GiB 7343 [ 2.150430] mmc1: new HS200 MMC card at address 0001 7344 [ 2.150775] mmcblk0: p1 7345 [ 2.151198] mmcblk1: mmc1:0001 CJTD4R 58.2 GiB 7346 [ 2.151572] mmcblk1boot0: mmc1:0001 CJTD4R partition 1 4.00 MiB 7347 [ 2.151971] mmcblk1boot1: mmc1:0001 CJTD4R partition 2 4.00 MiB 7348 [ 2.152093] mmcblk1rpmb: mmc1:0001 CJTD4R partition 3 4.00 MiB, chardev (242:0) 7349 [ 2.153452] mmcblk1: p1 7350 [ 2.163614] random: fast init done 7351 [ 2.211772] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd 7352 [ 2.236365] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04 7353 [ 2.236371] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 7354 [ 2.236374] usb 2-1: Product: USB3.1 Hub 7355 [ 2.236376] usb 2-1: Manufacturer: GenesysLogic 7356 [ 2.256053] libphy: mdio_mux: probed 7357 [ 2.259390] hub 2-1:1.0: USB hub found 7358 [ 2.259679] hub 2-1:1.0: 4 ports detected 7359 [ 2.359659] usb 1-1: new high-speed USB device number 2 using xhci-hcd 7360 [ 2.509980] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04 7361 [ 2.509985] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 7362 [ 2.509989] usb 1-1: Product: USB2.1 Hub 7363 [ 2.509993] usb 1-1: Manufacturer: GenesysLogic 7364 [ 2.547356] hub 1-1:1.0: USB hub found 7365 [ 2.547579] hub 1-1:1.0: 4 ports detected 7366 [ 2.923650] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd 7367 [ 3.050656] usb 1-1.1: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 7368 [ 3.050661] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 7369 [ 3.050664] usb 1-1.1: Product: USB OPTICAL MOUSE 7370 [ 3.093486] input: USB OPTICAL MOUSE as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.1/1-1.1:1.0/0003:275D:0BA6.0001/input/input0 7371 [ 3.093702] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-1.1/input0 7372 [ 3.195651] usb 1-1.3: new low-speed USB device number 4 using xhci-hcd 7373 [ 3.234735] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) 7374 [ 3.332996] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 7375 [ 3.333006] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 7376 [ 3.333010] usb 1-1.3: Product: USB Keyboard 7377 [ 3.333013] usb 1-1.3: Manufacturer: Logitech 7378 [ 3.408041] systemd[1]: System time before build time, advancing clock. 7379 [ 3.411728] systemd[1]: Inserted module 'autofs4' 7380 [ 3.416471] input: Logitech USB Keyboard as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C31C.0002/input/input1 7381 [ 3.429690] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) 7382 [ 3.429871] systemd[1]: Detected architecture arm64. 7383 [ 3.457278] systemd[1]: Set hostname to <odroidn2>. 7384 [ 3.476298] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input0 7385 [ 3.483299] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input2 7386 [ 3.539916] input: Logitech USB Keyboard System Control as /devices/platform/soc/ffe09000.usb/ff500000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C31C.0003/input/input3 7387 [ 3.540055] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-1.3/input1 7388 [ 3.612625] random: systemd: uninitialized urandom read (16 bytes read) 7389 [ 3.615211] random: systemd: uninitialized urandom read (16 bytes read) 7390 [ 3.615408] systemd[1]: Listening on udev Kernel Socket. 7391 [ 3.615744] random: systemd: uninitialized urandom read (16 bytes read) 7392 [ 3.615916] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 7393 [ 3.616155] systemd[1]: Listening on udev Control Socket. 7394 [ 3.616278] systemd[1]: Listening on initctl Compatibility Named Pipe. 7395 [ 3.616514] systemd[1]: Listening on Journal Audit Socket. 7396 [ 3.616584] systemd[1]: Reached target Remote File Systems. 7397 [ 3.616663] systemd[1]: Reached target System Time Synchronized. 7398 [ 3.664329] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro 7399 [ 3.884092] zram: Added device: zram0 7400 [ 3.884257] zram: Added device: zram1 7401 [ 3.884381] zram: Added device: zram2 7402 [ 3.915701] pwm-gpio pwmgpio: 1 gpio pwms loaded 7403 [ 3.944938] zram0: detected capacity change from 0 to 1904500736 7404 [ 3.978061] meson-drm ff900000.vpu: Queued 2 outputs on vpu 7405 [ 3.981860] mc: Linux media interface: v0.10 7406 [ 3.983557] meson-drm ff900000.vpu: CVBS Output connector not available 7407 [ 3.989190] videodev: Linux video capture interface: v2.00 7408 [ 4.007364] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. 7409 [ 4.011714] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) 7410 [ 4.012343] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver 7411 [ 4.012570] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) 7412 [ 4.012805] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0 7413 [ 4.060191] meson-saradc ff809000.adc: supply vref not found, using dummy regulator 7414 [ 4.078183] panfrost ffe40000.gpu: clock rate = 24000000 7415 [ 4.078231] panfrost ffe40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 7416 [ 4.078752] panfrost ffe40000.gpu: mali-g52 id 0x7212 major 0x0 minor 0x0 status 0x0 7417 [ 4.078757] panfrost ffe40000.gpu: features: 00000000,13de77ff, issues: 00000000,00000400 7418 [ 4.078760] panfrost ffe40000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 7419 [ 4.078763] panfrost ffe40000.gpu: shader_present=0x3 l2_present=0x1 7420 [ 4.093952] [drm] Initialized panfrost 1.1.0 20180908 for ffe40000.gpu on minor 1 7421 [ 4.095686] Registered IR keymap rc-odroid 7422 [ 4.108886] IR NEC protocol handler initialized 7423 [ 4.135744] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0 7424 [ 4.135823] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter 7425 [ 4.135870] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input4 7426 [ 4.136511] meson-ir ff808000.ir: receiver initialized 7427 [ 4.304522] Console: switching to colour frame buffer device 240x67 7428 [ 4.335736] meson-drm ff900000.vpu: [drm] fb0: mesondrmfb frame buffer device 7429 [ 4.369310] axg-sound-card sound: ASoC: no DMI vendor name! 7430 [ 4.979657] Adding 1859860k swap on /dev/zram0. Priority:5 extents:1 across:1859860k SSFS 7431 [ 5.022600] zram1: detected capacity change from 0 to 52428800 7432 [ 7.067679] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard 7433 [ 7.067700] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) 7434 [ 8.081399] systemd-journald[1877]: Received request to flush runtime journal from PID 1 7435 [ 10.219838] random: crng init done 7436 [ 10.219850] random: 7 urandom warning(s) missed due to ratelimiting 7437 [ 11.234265] meson8b-dwmac ff3f0000.ethernet eth0: PHY [0.0:00] driver [RTL8211F Gigabit Ethernet] (irq=42) 7438 [ 11.247426] meson8b-dwmac ff3f0000.ethernet eth0: No Safety Features support found 7439 [ 11.247438] meson8b-dwmac ff3f0000.ethernet eth0: PTP not supported by HW 7440 [ 11.247748] meson8b-dwmac ff3f0000.ethernet eth0: configuring for phy/rgmii link mode 7441 [ 11.761947] broken atomic modeset userspace detected, disabling atomic 7442 [ 13.835681] hdmi-audio-codec hdmi-audio-codec.4.auto: Not able to map channels to speakers (-22) 7443 [ 13.835693] hdmi-audio-codec hdmi-audio-codec.4.auto: ASoC: error at snd_soc_dai_hw_params on i2s-hifi: -22 7444 [ 13.835698] axg-sound-card sound: ASoC: PRE_PMU: be.dai-link-8-playback event failed: -22 7445 [ 33.758786] USB_PWR_EN: disabling 7446 7447 7448 vm.admin_reserve_kbytes = 8192 7449 vm.block_dump = 0 7450 vm.compaction_proactiveness = 20 7451 vm.compact_unevictable_allowed = 1 7452 vm.dirty_background_bytes = 0 7453 vm.dirty_background_ratio = 10 7454 vm.dirty_bytes = 0 7455 vm.dirty_expire_centisecs = 3000 7456 vm.dirty_ratio = 20 7457 vm.dirtytime_expire_seconds = 43200 7458 vm.dirty_writeback_centisecs = 500 7459 vm.extfrag_threshold = 500 7460 vm.hugetlb_shm_group = 0 7461 vm.laptop_mode = 0 7462 vm.legacy_va_layout = 0 7463 vm.lowmem_reserve_ratio = 256 256 32 0 7464 vm.max_map_count = 65530 7465 vm.memory_failure_early_kill = 0 7466 vm.memory_failure_recovery = 1 7467 vm.min_free_kbytes = 45056 7468 vm.min_slab_ratio = 5 7469 vm.min_unmapped_ratio = 1 7470 vm.mmap_min_addr = 4096 7471 vm.mmap_rnd_bits = 18 7472 vm.mmap_rnd_compat_bits = 11 7473 vm.nr_hugepages = 0 7474 vm.nr_hugepages_mempolicy = 0 7475 vm.nr_overcommit_hugepages = 0 7476 vm.numa_stat = 1 7477 vm.numa_zonelist_order = Node 7478 vm.oom_dump_tasks = 1 7479 vm.oom_kill_allocating_task = 0 7480 vm.overcommit_kbytes = 0 7481 vm.overcommit_memory = 0 7482 vm.overcommit_ratio = 50 7483 vm.page-cluster = 0 7484 vm.page_lock_unfairness = 5 7485 vm.panic_on_oom = 0 7486 vm.percpu_pagelist_fraction = 0 7487 vm.stat_interval = 1 7488 vm.swappiness = 100 7489 vm.user_reserve_kbytes = 114979 7490 vm.vfs_cache_pressure = 100 7491 vm.watermark_boost_factor = 15000 7492 vm.watermark_scale_factor = 10 7493 vm.zone_reclaim_mode = 0 7494 7495 ### interrupts: 7496 CPU0 CPU1 CPU2 CPU3 CPU4 CPU5 7497 9: 0 0 0 0 0 0 GICv2 25 Level vgic 7498 11: 15660 15077 31213 34430 276211 26408 GICv2 30 Level arch_timer 7499 12: 0 0 0 0 0 0 GICv2 27 Level kvm guest vtimer 7500 14: 0 0 0 0 0 0 GICv2 40 Level eth0 7501 15: 1548 0 0 0 0 0 GICv2 89 Edge dw_hdmi_top_irq, ff600000.hdmi-tx 7502 21: 204 0 0 0 0 0 GICv2 184 Edge 7503 25: 1 0 0 0 0 0 GICv2 225 Edge ttyAML0 7504 26: 0 0 0 0 0 0 GICv2 228 Edge ff808000.ir 7505 27: 7 0 0 0 0 0 GICv2 232 Edge ff809000.adc 7506 28: 0 0 0 0 0 0 GICv2 76 Edge vdec 7507 29: 0 0 0 0 0 0 GICv2 64 Edge esparserirq 7508 30: 2889 0 0 0 0 0 GICv2 35 Edge meson 7509 31: 11 0 0 0 0 0 GICv2 71 Edge ffd1c000.i2c 7510 32: 0 0 0 0 0 0 GICv2 247 Edge ffd1d000.i2c 7511 34: 1108 0 0 0 0 0 GICv2 222 Edge ffe05000.sd 7512 35: 5624 13564 0 0 0 0 GICv2 223 Edge ffe07000.mmc 7513 36: 1 0 0 0 0 0 GICv2 48 Level ffe09000.usb 7514 37: 0 0 0 0 0 0 GICv2 194 Level panfrost-job 7515 38: 0 0 0 0 0 0 GICv2 193 Level panfrost-mmu 7516 39: 12 0 0 0 0 0 GICv2 192 Level panfrost-gpu 7517 40: 0 0 0 0 0 0 GICv2 63 Level ff400000.usb, ff400000.usb 7518 41: 150 0 863 0 0 0 GICv2 62 Level xhci-hcd:usb1 7519 42: 0 0 0 0 0 0 meson-gpio-irqchip 26 Level 0.0:00 7520 IPI0: 1261 2748 5424 6328 6644 5635 Rescheduling interrupts 7521 IPI1: 3955 3553 4969 6435 3719 3902 Function call interrupts 7522 IPI2: 0 0 0 0 0 0 CPU stop interrupts 7523 IPI3: 0 0 0 0 0 0 CPU stop (for crash dump) interrupts 7524 IPI4: 0 0 0 0 0 0 Timer broadcast interrupts 7525 IPI5: 726 487 1408 842 488 584 IRQ work interrupts 7526 IPI6: 0 0 0 0 0 0 CPU wake-up interrupts 7527 Err: 0 Please upload the whole output above to an online pasteboard service and provide the URL in the forum where you have been asked for this.
  17. Having invested many, many hours getting the video out to work on my recently purchased Orange Pi Zero kit, I'd like to leave this heads up for the next person having trouble with video out. In my case, none of the advice I could find in this forum or elsewhere seemed to make any difference. If you find yourself in a similar situation, here are some things you should know. The latest Armbian images for the OrangePi Zero enable composite video out by default. It should just work. (Well at least the Ubuntu image -- I never actually verified Debian Jesse worked after I fixed my expansion board.) You should NOT need to fiddle with /etc/modules or .fex files. Although that bit of information can be found in other posts on this forum, it took me a while to stumble across it, so I'm calling it out here. Don't trust the expansion board or your AV cable. If you hook everything up and don't get video right away, the first thing to try is connecting your monitor directly to the GND and TV-OUT pins on the 13-pin connector. Regretfully, I only resorted to this after much time spent futzing with other things. In my case, not only was my expansion board borked, but the supposedly Zune/RaspberryPi compatible AV cable I got from Amazon actually had the ground and video swapped on the yellow RCA plug. The expansion board adds a bit of circuitry to the tv-out line, an inductor, two capacitors and a resistor, which I'm guessing is some sort of filter that attempts to "clean up" the video signal. Being that you can hook up video directly to the OrangePi Zero without an expansion board, it would seem this filtering is entirely optional. I happened to notice (while checking continuity with a multitester) that the resistance between the GND and TV-OUT pins on the bare, unpowered OrangePi Zero board was effectively an open circuit, but when the expansion board was installed, it changed to approximately 50 ohms. It seemed to me that all this would accomplish is to pull the composite video signal very close to ground and hold it there. On a hunch, I took an Xacto knife and carefully scraped R359 from the filter circuit off of the expansion board. This did the trick. Now, with a proper AV cable, my monitor could pick up a signal on its CVBS port. I've attached a picture of the expansion board with the location of this resistor circled in red. Maybe I just had a bad resistor, but if you've tried everything else, it may be worth knowing that removing this resistor can't hurt and is worth trying.
  18. @JMCC Thanks for your suggestion. I would write the image to another sdcard ASAP and would get back with the results. So, do you confirm to me that AV out doesn't work on the newest versions? That's a pity... Maybe it's necessary to compile a kernel with the support for it but I don't know from where to begin should this be the case! Just another confirmation. I've found some discordant AV out cable pinouts, the most common to be found being this one: https://descubriendolaorangepi.wordpress.com/2017/01/10/salidas-de-audio-y-video-hdmi-y-rca/ Is it actually the right one? I'd like to rule out issues with the cable otherwise it could well be that everything could be up and running while misleaded by just a wrong cable. Thanks again and have a nice day!
  19. Dear sir balbes150, Im using s905x (2/8gb), and use 'Armbian_20.06.0_Arm-64_bullseye_current_5.7.6_desktop_20200630' build, everything work just fine but no sound from 3.5 audio/rca jack. can you, sir, please activated this? Thank you very much for your hard work. Regards,
  20. RCA video output is currently not supported in mainline kernel (for supported hardware features read the table in this page), there was an experimental implementation for H3 boards but it's very outdated and it no longer works. RCA video works on Android images because they use the "legacy" Allwinner kernel (may have security flaws and other issues).
  21. Видимо, для Armbian (и Ubuntu) RCA не включен, я пробовал специальный "родной" кабель с 4-х контактным джеком. Это прекрасно работает для Android. Поэтому причина неисправности точно в Armbian. Буду искать...
  22. Please explain how can I output video via RCA (audio output and AV on the board)?
  23. I've made a breakout board. The small white IC, is an optocoupler and the non connected cables are for a midi in (but not yet finished) interface. From this breakout board, I will also connect the RCA cinch out. Final goal is to run a zynthian synth on armbian (see https://zynthian.org/)
  24. hi, I'm trying to use an OrangePiPC2 H5 processor on an old TV. I have got to edit the dts file but I dont know what to change to antivate RCA video & audio output. Plz, help me to set RCA port as default or give me links to learn to edit dts, I've seached a lot but found nothing. thx
  25. audio subsystem via rca don't work in mainline. Use hdmi audio or usb audio card.
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines