We have created a board based on the RZ/V2M processor. The only change we made compared to the RZV2M EVK is that we swapped the DDR data pins. We also made the necessary changes to the bootloader sources to accommodate these modifications. I am able to boot Linux without any issues.
Environment variable as below
bootsd=run bootargs_sd;fatload mmc 0:1 ${loadaddr} ${kernel};fatload mmc 0:1 ${fdt_addr} ${fdt_file};booti ${loadaddr} - ${fdt_addr}
For the next step, I need to integrate the ISP interface with the board. In order to bring up the ISP, I modified the boot environment variables according to the ISP integration guide provided by Renesas. Also included the core1_firmware.bin in SD card's primary partition.
bootsd=run bootargs_sd;fatload mmc 0:1 ${core1addr} ${core1_firmware};fatload mmc 0:1 ${loadaddr} ${kernel};fatload mmc 0:1 ${fdt_addr} ${fdt_file};wakeup_a53core1 ${core1_vector};booti ${loadaddr} - ${fdt_addr}
However, after making those modifications, the kernel is getting stuck, and I’m not receiving any debug prints after starting the kernel.
/******* Insert Screen short of the boot console ***************************/
My question is: do we need to make any modifications to the ISP firmware? If not, why is this behavior occurring?I am attaching the printenv output along with this for your reference.
baudrate=115200 bootargs=root=/dev/nfs rw nfsroot=192.168.0.2:/nfs/rzv2m,nfsvers=3 ip=192.168.0.1:192.168.0.2::255.255.255.0:rzv2m:eth0 bootargs_nfs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:/nfs/rzv2m,nfsvers=3 ip=${ipaddr}:${serverip}::${netmask}:rzv2m:eth0 bootargs_sd=setenv bootargs root=/dev/mmcblk0p2 rootwait rootfstype=ext4 rw bootcmd=run bootsd bootdelay=3 bootnfs=run bootargs_nfs;tftp ${loadaddr} ${kernel};tftp ${fdt_addr} ${fdt_file};booti ${loadaddr} - ${fdt_addr} bootsd=run bootargs_sd;fatload mmc 0:1 ${core1addr} ${core1_firmware};fatload mmc 0:1 ${loadaddr} ${kernel};fatload mmc 0:1 ${fdt_addr} ${fdt_file};wakeup_a53core1 ${core1_vector};booti ${loadaddr} - ${fdt_addr} core1_firmware=core1_firmware.bin core1_vector=0x02000000 core1addr=0x02000000 ethaddr=02:11:22:33:44:55 fdt_addr=0x180000000 fdt_file=r9a09g011gbg-evaluation-board.dtb fdt_high=0x180000000 fdtcontroladdr=7fe53b00 fileaddr=2000000 filesize=14fd670 gatewayip=192.168.0.1 ipaddr=192.168.1.11 kernel=Image-rzv2m.bin loadaddr=0x180080000 netmask=255.255.255.0 rtos=core1_uart.bin serverip=192.168.1.10 stderr=serial stdin=serial stdout=serial ver=U-Boot 2021.10 (May 31 2023 - 08:04:36 +0000) for RZ/V2M Linux Package VLP V3.0.4 Environment size: 1229/131068 bytes
Hi Anzal,If you are using the RZ/V2M ISP Support Package Version1.4.8 Product Version for AR1335, then you need to make sure you are using the latest VLP and DRP-AI support package:• Related Packages1. RZ/V Verified Linux Package v3.0.6(RTK0EF0045Z0024AZJ-v3.0.6.zip2. RZ/V2M DRP-AI Support Package Version.7.50Kind Regards.
But the same image is working on RZV2M Evk. The only change is in bootloader ddr config and dts
Hi anzal,Please try to enable earlycon in your kernel to enable early console messages.Add the parameter earlycon in your bootargs or change bootargs_sd :setenv bootargs_sd "setenv bootargs root=/dev/mmcblk0p2 rootwait earlycon rootfstype=ext4 rw"Also, you need to configure the stdout-path in your device tree according to your setup Take as a reference from the EVK's Kind Regards.
Hi PT_Renesas,
i enabled earlycon there are no additional debug info than that of the image i posted above. Please provide any other solutions
Hi anzal,Can you please try to boot without the ISP's package bootargs to make sure the earlycon is configured correctly?You will see messages as below:[ 0.000000] earlycon: scif0 at MMIO 0x000000001004b800 (options '115200n8')[ 0.000000] printk: bootconsole [scif0] enabledKind Regards.
its seems earlycon is not configured correctly. what might be the issue here? is the serial interface scif0?
FYI i am using same dts as the evk since i dont have any changes in SCIF
Hi anzal,I shared with you a wrong dts file.Please make sure your board using this device tree file.Logically, if you remove the earlycon parameter from boot arguments(in u-boot) you will see messages like below:[ 0.000000] earlycon: scif0 at MMIO 0x000000001004b800 (options '115200n8')[ 0.000000] printk: bootconsole [scif0] enabledKind Regards.
I removed the earlycon parameter from the uboot. I didnt get the following messages
PT_Renesas said:[ 0.000000] earlycon: scif0 at MMIO 0x000000001004b800 (options '115200n8')[ 0.000000] printk: bootconsole [scif0] enabled
Hi anzal,It's not mandatory to be exactly the same, but if you see the string earlycon, then it is enabled.You mentioned that : The only change is in bootloader ddr config and dtsAnd then :FYI i am using same dts as the evk since i dont have any changes in SCIF.Can you please make it clear?Kind Regards.
i can attach the dts for you
// SPDX-License-Identifier: GPL-2.0 /* * Device Tree Source for the RZ/V2M evaluation-board platform * * Copyright (C) 2023 Renesas Electronics Corp. */ /dts-v1/; #include "r9a09g011gbg.dtsi" #include <dt-bindings/gpio/gpio.h> #include "r9a09g011gbg_reserved-memory.dtsi" #include "r9a09g011gbg_drp-ai.dtsi" #include "r9a09g011gbg_isp.dtsi" / { model = "Renesas EVK based on r9a09g011gbg"; compatible = "renesas,r9a09g011gbg"; aliases { serial0 = &uart0; //changed uart0 mmc0 = &sdhi0; mmc1 = &eMM; }; chosen { bootargs = "earlycon=uart,mmio32,0xA4040000,115200n8 console=ttyS0,115200n8 loglevel=8 vmalloc=384M root=/dev/mmcblk0p2 rootwait rootfstype=ext3 rw; rodata=off ip=dhcp"; stdout-path = "serial0:115200n8"; }; memory@180000000 { device_type = "memory"; reg = <0x1 0x80000000 0x0 0x7FC00000>; }; vcc_sdhi0: regulator-vcc-sdhi0 { compatible = "regulator-fixed"; regulator-name = "SDHI0 Vcc"; regulator-min-microvolt = <3300000>; regulator-max-microvolt = <3300000>; regulator-always-on; regulator-boot-on; }; vccq_sdhi0: regulator-vccq-sdhi0 { compatible = "regulator-fixed"; regulator-name = "SDHI0 VccQ"; regulator-min-microvolt = <1800000>; //calixto regulator-max-microvolt = <1800000>; //calixto regulator-always-on; regulator-boot-on; }; reg_1p8v: regulator0 { compatible = "regulator-fixed"; regulator-name = "fixed-1.8V"; regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>; regulator-boot-on; regulator-always-on; }; reg_3p3v: regulator1 { compatible = "regulator-fixed"; regulator-name = "fixed-3.3V"; regulator-min-microvolt = <3300000>; regulator-max-microvolt = <3300000>; regulator-boot-on; regulator-always-on; }; }; &cpg { cpg-non-set-div; }; /* used cpg(clock pulse generator) */ &extal_clk { clock-frequency = <48000000>; }; /* used watch dog timer */ /*&wdt0 { status = "okay"; timeout-sec = <60>; };*/ &xhci0 { memory-region = <&global_cma>; status = "okay"; }; &usb3_peri0 { companion = <&xhci0>; status = "okay"; //renesas,usb-role-switch; //changed }; &pfc { status = "okay"; pinctrl-names = "default"; csi4_pins: csi@4 { groups = "csi4rw"; function = "csi"; }; i2c2_pins: i2c@2 { groups = "i2c2"; function = "i2c"; }; }; &csi4{ status = "okay"; slavedev4: spi@0 { compatible = "rzv2m,slavedev"; reg = <0>; spi-max-frequency = <25000000>; spi-cpha; spi-cpol; }; }; &i2c0 { clock-frequency = <100000>; status = "okay"; clock-generator@68 { compatible = "idt,9fgv0241"; reg = <0x68>; }; }; &i2c2 { pinctrl-0 = <&i2c2_pins>; pinctrl-names = "default"; clock-frequency = <100000>; status = "okay"; }; &uart0 { status = "okay"; //disable }; //Added //&uart1 { // status = "okay"; //}; &sdhi0 { //psc-pins = <0>; status = "okay"; }; &eMM { status = "okay"; }; &avb { status = "disable"; //okay }; &pwm8 { status = "okay"; }; &pwm9 { status = "okay"; }; &pwm10 { status = "okay"; }; &pwm11 { status = "okay"; }; &pwm12 { status = "okay"; }; &pwm13 { status = "okay"; }; &pwm14 { status = "okay"; }; &tim8 { status = "okay"; }; &tim9 { status = "okay"; }; &tim10 { status = "okay"; }; &tim11 { status = "okay"; }; &tim12 { status = "okay"; }; &tim13 { status = "okay"; }; &tim14 { status = "okay"; }; &tim15 { status = "okay"; }; &tim16 { status = "okay"; }; &tim17 { status = "okay"; }; &tim18 { status = "okay"; }; &tim19 { status = "okay"; }; &tim20 { status = "okay"; }; &tim21 { status = "okay"; }; &tim22 { status = "okay"; }; &tim23 { status = "okay"; };
Hi anzal,Try to add these variables into your bootargs_sd:
setenv bootargs_sd "setenv bootargs earlycon=uart,mmio32,0xA4040000,115200n8 console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rootfstype=ext4 rw"
Yes made that change and earlycon is successfully enabled. Now what to do?
U-Boot 2021.10 (May 31 2023 - 08:04:36 +0000) for RZ/V2M Linux Package VLP V3.0.4 Model: RZ/V2M DRAM: 4 GiB MMC: sd@85000000: 0, sd@85020000: 1 Loading Environment from MMC... OK In: serial Out: serial Err: serial Net: No ethernet found. Hit any key to stop autoboot: 0 21213696 bytes read in 983 ms (20.6 MiB/s) 22724 bytes read in 3 ms (7.2 MiB/s) Moving Image from 0x180080000 to 0x180200000, end=1816b0000 ## Flattened Device Tree blob at 180000000 Booting using the fdt blob at 0x180000000 Loading Device Tree to 000000017fff7000, end 000000017ffff8c3 ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.10.175-cip29-arm64-renesas-g61296df4ff1e-dirty (calixto-systems@calixtosystems-HP-Notebook) (aarch64-poky-linux-gcc (GCC) 8.3.0, GNU ld (GNU Binutils) 2.31.1) #7 SMP PREEMPT Fri Oct 4 14:31:00 IST 2024 [ 0.000000] Machine model: Renesas EVK based on r9a09g011gbg [ 0.000000] earlycon: uart0 at MMIO32 0x00000000a4040000 (options '115200n8') [ 0.000000] printk: bootconsole [uart0] enabled [ 0.000000] efi: UEFI not found. [ 0.000000] Reserved memory: created CMA memory pool at 0x00000001b8000000, size 128 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma@1B8000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created CMA memory pool at 0x00000001ff800000, size 4 MiB [ 0.000000] OF: reserved mem: initialized node image_buf@0, compatible id shared-dma-pool [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000180000000-0x00000001ffbfffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000180000000-0x00000001ffbfffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000180000000-0x00000001ffbfffff] [ 0.000000] percpu: Embedded 31 pages/cpu s88600 r8192 d30184 u126976 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 515088 [ 0.000000] Kernel command line: earlycon=uart,mmio32,0xA4040000,115200n8 console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rootfstype=ext4 rw [ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 1372236K/2093056K available (11904K kernel code, 1964K rwdata, 3708K rodata, 3008K init, 396K bss, 585652K reserved, 135168K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU event tracing is enabled. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Adjusting CPU interface base to 0x000000008202f000 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] arch_timer: 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.000005] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.008334] random: get_random_bytes called from start_kernel+0x368/0x514 with crng_init=0 [ 0.016924] Console: colour dummy device 80x25 [ 0.021505] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.032006] pid_max: default: 32768 minimum: 301 [ 0.036880] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.044457] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.053224] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.053375] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.053499] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.053597] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.053702] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.053800] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.053900] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.054000] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.054112] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.054230] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.054314] rcu: Hierarchical SRCU implementation. [ 0.142846] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.142939] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.143773] Detected Renesas RZ/V2M (r9a09g011gbg) [ 0.165437] EFI services will not be available. [ 0.170122] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.170209] smp: Bringing up secondary CPUs ... [ 0.183212] smp: Brought up 1 node, 1 CPU [ 0.187312] SMP: Total of 1 processors activated. [ 0.192128] CPU features: detected: 32-bit EL0 Support [ 0.197385] CPU features: detected: CRC32 instructions [ 0.202644] CPU features: detected: 32-bit EL1 Support [ 0.217768] CPU: All CPU(s) started at EL2 [ 0.221989] alternatives: patching kernel code [ 0.227891] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.228155] devtmpfs: initialized [ 0.244159] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.244295] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.244422] random: get_random_bytes called from setup_net+0x60/0x210 with crng_init=0 [ 0.270696] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.280671] futex hash table entries: 256 (order: 2, 16384 bytes, linear) [ 0.291516] pinctrl core: initialized pinctrl subsystem [ 0.297781] DMI not present or invalid. [ 0.302000] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302025] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302040] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302055] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302073] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302088] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302103] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302117] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302132] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302146] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302160] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302175] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302193] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302208] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302223] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302237] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302251] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302266] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302280] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302295] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302312] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302327] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302342] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302356] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302370] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302384] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302399] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302413] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302432] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302447] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302462] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302477] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 0.302492] NET: Registered protocol family 16 [ 0.609107] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.610490] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations [ 0.626118] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.634093] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.642272] audit: initializing netlink subsys (disabled) [ 0.647847] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.648504] thermal_sys: Registered thermal governor 'step_wise' [ 0.656884] audit: type=2000 audit(0.308:1): state=initialized audit_enabled=0 res=1 [ 0.671083] cpuidle: using governor menu [ 0.675292] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.682281] ASID allocator initialised with 65536 entries [ 0.687821] random: get_random_bytes called from kcmp_cookies_init+0x24/0x58 with crng_init=0 [ 0.715913] PFC_RZV2M b6250000.pin-controller: Init external interrupt controller success. [ 0.724386] PFC_RZV2M b6250000.pin-controller: RZ/V pin controller successfully registered [ 0.741970] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.742152] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.742364] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.742461] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.774505] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.781367] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.788223] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.795246] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.795449] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.795577] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.795761] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.795931] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.796059] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.796188] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.796321] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.796448] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.796580] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.796708] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.796835] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.796963] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.797108] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.797183] cryptd: max_cpu_qlen set to 1000 [ 0.918605] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.918717] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.918857] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.918987] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.919117] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.919251] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.919453] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.919619] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 0.990355] PFC_RZV2M b6250000.pin-controller: 20 GPIO nodes are registered [ 1.000578] iommu: Default domain type: Translated [ 1.006247] vgaarb: loaded [ 1.009319] SCSI subsystem initialized [ 1.013291] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 1.022037] usbcore: registered new interface driver usbfs [ 1.027688] usbcore: registered new interface driver hub [ 1.033151] usbcore: registered new device driver usb [ 1.038924] mc: Linux media interface: v0.10 [ 1.043322] videodev: Linux video capture interface: v2.00 [ 1.049000] pps_core: LinuxPPS API ver. 1 registered [ 1.054075] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]> [ 1.063447] PTP clock support registered [ 1.067728] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 1.067982] Advanced Linux Sound Architecture Driver Initialized. [ 1.083081] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 1.083407] clocksource: Switched to clocksource arch_sys_counter [ 2.080485] VFS: Disk quotas dquot_6.6.0 [ 2.084577] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 2.098472] NET: Registered protocol family 2 [ 2.103004] random: get_random_u32 called from neigh_hash_alloc+0x6c/0xc8 with crng_init=0 [ 2.103034] random: get_random_u32 called from neigh_hash_alloc+0x6c/0xc8 with crng_init=0 [ 2.103048] random: get_random_u32 called from neigh_hash_alloc+0x6c/0xc8 with crng_init=0 [ 2.103061] random: get_random_u32 called from neigh_hash_alloc+0x6c/0xc8 with crng_init=0 [ 2.103225] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 2.145592] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.145846] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.145914] random: get_random_u32 called from rt_genid_init+0x20/0x40 with crng_init=0 [ 2.145991] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 2.179791] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 2.188055] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) [ 2.195795] TCP: Hash tables configured (established 16384 bind 16384) [ 2.202619] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 2.209522] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 2.216963] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 2.217007] NET: Registered protocol family 1 [ 2.230976] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.231111] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.231219] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.256491] RPC: Registered named UNIX socket transport module. [ 2.262547] RPC: Registered udp transport module. [ 2.267358] RPC: Registered tcp transport module. [ 2.272169] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 2.278763] PCI: CLS 0 bytes, default 64 [ 2.283529] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 2.292269] kvm [1]: IPA Size Limit: 40 bits [ 2.297369] kvm [1]: vgic interrupt IRQ9 [ 2.301480] kvm [1]: Hyp mode initialized successfully [ 2.307116] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.307290] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.324187] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.324304] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.324432] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.324558] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.325607] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.325730] workingset: timestamp_bits=46 max_order=19 bucket_order=0 [ 2.381603] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 2.387883] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.388413] NFS: Registering the id_resolver key type [ 2.402049] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 2.402066] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 2.402083] Key type id_resolver registered [ 2.422730] Key type id_legacy registered [ 2.426929] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 2.433788] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 2.441380] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc. [ 2.448085] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 2.448107] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 2.448332] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 2.474757] io scheduler mq-deadline registered [ 2.479428] io scheduler kyber registered [ 2.485767] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.495982] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.496100] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.496202] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.496302] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.496403] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.496842] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 2.497373] rzv2m-pcie 85030000.pcie: host bridge /soc/pcie@85030000 ranges: [ 2.554833] rzv2m-pcie 85030000.pcie: MEM 0x00c0000000..0x00c01fffff -> 0x00c0000000 [ 2.563224] rzv2m-pcie 85030000.pcie: MEM 0x00c0300000..0x00c82fffff -> 0x00c0300000 [ 2.571618] rzv2m-pcie 85030000.pcie: IB MEM 0x0180000000..0x01ffffffff -> 0x0180000000 [ 3.391413] rzv2m-pcie 85030000.pcie: PCIe link down [ 3.437785] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 3.445996] printk: console [ttyS0] disabled [ 3.450517] a4040000.serial: ttyS0 at MMIO 0xa4040000 (irq = 65, base_baud = 3000000) is a R8ARZV2M16750 [ 3.460319] printk: console [ttyS0] enabled [ 3.460319] printk: console [ttyS0] enabled [ 3.468807] printk: bootconsole [uart0] disabled [ 3.468807] printk: bootconsole [uart0] disabled [ 3.478561] SuperH (H)SCI(F) driver initialized [ 3.493504] loop: module loaded [ 3.498363] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 3.498882] rzv2m_csi a4020200.spi: probed [ 3.512437] tun: Universal TUN/TAP device driver, 1.6 [ 3.517746] CAN device driver interface [ 3.521930] e1000e: Intel(R) PRO/1000 Network Driver [ 3.526946] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 3.533262] VFIO - User Level meta-driver version: 0.3 [ 3.538523] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 3.538699] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 3.553532] ehci-pci: EHCI PCI platform driver [ 3.558053] ehci-platform: EHCI generic platform driver [ 3.563446] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 3.569674] ohci-pci: OHCI PCI platform driver [ 3.574188] ohci-platform: OHCI generic platform driver [ 3.579926] xhci-hcd 85060000.usb: xHCI Host Controller [ 3.585201] xhci-hcd 85060000.usb: new USB bus registered, assigned bus number 1 [ 3.592672] xhci-hcd 85060000.usb: USB bus 1 deregistered [ 3.598360] usbcore: registered new interface driver usb-storage [ 3.605254] mousedev: PS/2 mouse device common for all mice [ 3.610934] usbcore: registered new interface driver usbtouchscreen [ 3.617402] i2c /dev entries driver [ 3.621640] rzv2m-i2c a4030000.i2c: probed [ 3.626449] rzv2m-i2c a4030100.i2c: probed [ 3.632322] rzv2m_poweroff_reset a3700000.poweroff-reset: RZ/V2M poweroff-reset driver registered [ 3.642637] renesas_sdhi_internal_dmac 85000000.sd: Got CD GPIO [ 3.648701] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 3.649150] ledtrig-cpu: registered to indicate activity on CPUs [ 3.665460] usbcore: registered new interface driver usbhid [ 3.671077] usbhid: USB HID core driver [ 3.675929] a4000400.timer:probed [ 3.679677] a4000480.timer:probed [ 3.683338] a4000500.timer:probed [ 3.687422] a4000580.timer:probed [ 3.691138] a4000600.timer:probed [ 3.694806] a4000680.timer:probed [ 3.698477] a4000700.timer:probed [ 3.702192] a4000780.timer:probed [ 3.705956] a4000800.timer:probed [ 3.709652] a4000880.timer:probed [ 3.713171] renesas_sdhi_internal_dmac 85020000.sd: mmc1 base at 0x0000000085020000, max clock rate 200 MHz [ 3.723157] renesas_sdhi_internal_dmac 85000000.sd: mmc0 base at 0x0000000085000000, max clock rate 50 MHz [ 3.733300] a4000900.timer:probed [ 3.737077] a4000980.timer:probed [ 3.741565] a4000a00.timer:probed [ 3.745341] a4000a80.timer:probed [ 3.749083] a4000b00.timer:probed [ 3.752848] a4000b80.timer:probed [ 3.758464] NET: Registered protocol family 10 [ 3.763147] random: get_random_u32 called from neigh_hash_alloc+0x6c/0xc8 with crng_init=0 [ 3.763171] random: get_random_u32 called from neigh_hash_alloc+0x6c/0xc8 with crng_init=0 [ 3.763184] random: get_random_u32 called from neigh_hash_alloc+0x6c/0xc8 with crng_init=0 [ 3.763198] random: get_random_u32 called from neigh_hash_alloc+0x6c/0xc8 with crng_init=0 [ 3.796856] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 3.797285] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 3.797414] Segment Routing with IPv6 [ 3.818712] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 3.825272] NET: Registered protocol family 17 [ 3.829816] can: controller area network core [ 3.834344] NET: Registered protocol family 29 [ 3.838848] can: raw protocol [ 3.841892] can: broadcast manager protocol [ 3.846143] can: netlink gateway - max_hops=1 [ 3.850731] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 3.850752] Key type dns_resolver registered [ 3.863310] random: get_random_bytes called from init_oops_id+0x38/0x58 with crng_init=0 [ 3.871765] registered taskstats version 1 [ 3.875955] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 3.875986] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 3.876019] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 3.908166] mmc0: new high speed SDHC card at address 0001 [ 3.914021] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 3.928160] ALSA device list: [ 3.931169] No soundcards found. [ 3.935738] mmcblk0: mmc0:0001 SD32G 28.9 GiB [ 3.941641] mmcblk0: p1 p2 [ 3.947306] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 3.962782] mmc1: new HS200 MMC card at address 0001 [ 3.968102] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 3.968524] mmcblk1: mmc1:0001 016G01 14.5 GiB [ 3.981508] mmcblk1boot0: mmc1:0001 016G01 partition 1 8.00 MiB [ 3.987639] mmcblk1boot1: mmc1:0001 016G01 partition 2 8.00 MiB [ 3.993775] mmcblk1rpmb: mmc1:0001 016G01 partition 3 4.00 MiB, chardev (243:0) [ 4.263497] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 4.264065] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 4.286138] EXT4-fs (mmcblk0p2): recovery complete [ 4.295855] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null) [ 4.304064] VFS: Mounted root (ext4 filesystem) on device 179:2. [ 4.311848] devtmpfs: mounted [ 4.316689] Freeing unused kernel memory: 3008K [ 4.321368] Run /sbin/init as init process [ 4.339156] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 4.339193] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 4.339212] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 4.339287] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 4.380599] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 4.380622] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 4.380656] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 4.816349] systemd[1]: System time before build time, advancing clock. [ 4.861912] systemd[1]: systemd 244 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) [ 4.883788] systemd[1]: Detected architecture arm64. Welcome to Poky (Yocto Project Reference Distro) 3.1.21 (dunfell)! [ 4.920450] systemd[1]: Set hostname to <rzv2m>. [ 4.933250] random: get_random_u32 called from bucket_table_alloc.isra.33+0x68/0x158 with crng_init=0 [ 4.951235] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 4.962695] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 4.963307] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 4.981210] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 4.981749] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 4.982701] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 4.982722] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 4.982741] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 4.982783] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 4.982897] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 4.982917] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 4.982942] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 5.058646] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 5.059199] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 5.076172] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 5.076759] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 5.077275] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 5.105575] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.105611] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 5.105630] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.105674] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.105793] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.105813] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 5.105838] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 5.106702] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.106723] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 5.106738] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.106772] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.106857] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.106874] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 5.106895] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 5.231916] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.231953] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 5.231972] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.232015] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.270307] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.270354] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 5.270383] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 5.297506] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.297539] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 5.297557] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.297599] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.297703] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.297723] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 5.349552] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 5.364476] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.364514] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 5.364533] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.364576] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.364716] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.364735] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 5.364761] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 5.426386] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.426423] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 5.426442] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.426482] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.461763] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.461797] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 5.461816] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.462575] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.462597] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 5.462624] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 5.515590] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.515626] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 5.515643] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.515699] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.516603] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 5.516746] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.516767] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 5.516792] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 5.518868] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 5.518903] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 5.518933] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 5.874144] systemd[1]: Configuration file /lib/systemd/system/watchdog.service is marked executable. Please remove executable permission bits. Proceeding anyway. [ 6.054988] random: systemd: uninitialized urandom read (16 bytes read) [ 6.061964] systemd[1]: system-getty.slice: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. [ 6.074417] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) [ 6.086137] systemd[1]: Created slice system-getty.slice. [ OK ] Created slice system-getty.slice. [ 6.107599] random: systemd: uninitialized urandom read (16 bytes read) [ 6.115689] systemd[1]: Created slice system-serial\x2dgetty.slice. [ OK ] Created slice system-serial\x2dgetty.slice. [ 6.139620] random: systemd: uninitialized urandom read (16 bytes read) [ 6.147532] systemd[1]: Created slice User and Session Slice. [ OK ] Created slice User and Session Slice. [ 6.171611] random: systemd: uninitialized urandom read (16 bytes read) [ 6.178602] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password …ts to Console Directory Watch. [ 6.203544] random: systemd: uninitialized urandom read (16 bytes read) [ 6.210468] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ OK ] Started Forward Password R…uests to Wall Directory Watch. [ 6.235649] random: systemd: uninitialized urandom read (16 bytes read) [ 6.242385] systemd[1]: Reached target Host and Network Name Lookups. [ OK ] Reached target Host and Network Name Lookups. [ 6.263516] random: systemd: uninitialized urandom read (16 bytes read) [ 6.270252] systemd[1]: Reached target Paths. [ OK ] Reached target Paths. [ 6.291535] random: systemd: uninitialized urandom read (16 bytes read) [ 6.298255] systemd[1]: Reached target Remote File Systems. [ OK ] Reached target Remote File Systems. [ 6.319519] random: systemd: uninitialized urandom read (16 bytes read) [ 6.326237] systemd[1]: Reached target Slices. [ OK ] Reached target Slices. [ 6.347542] random: systemd: uninitialized urandom read (16 bytes read) [ 6.354263] systemd[1]: Reached target Swap. [ OK ] Reached target Swap. [ 6.375606] random: systemd: uninitialized urandom read (16 bytes read) [ 6.384047] systemd[1]: Listening on Syslog Socket. [ OK ] Listening on Syslog Socket. [ 6.403597] random: systemd: uninitialized urandom read (16 bytes read) [ 6.410633] systemd[1]: Listening on initctl Compatibility Named Pipe. [ OK ] Listening on initctl Compatibility Named Pipe. [ 6.431954] random: systemd: uninitialized urandom read (16 bytes read) [ 6.439047] systemd[1]: Listening on Journal Audit Socket. [ OK ] Listening on Journal Audit Socket. [ 6.459584] random: systemd: uninitialized urandom read (16 bytes read) [ 6.466743] systemd[1]: Listening on Journal Socket (/dev/log). [ OK ] Listening on Journal Socket (/dev/log). [ 6.487614] random: systemd: uninitialized urandom read (16 bytes read) [ 6.494803] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 6.515941] random: systemd: uninitialized urandom read (16 bytes read) [ 6.525522] systemd[1]: Listening on Network Service Netlink Socket. [ OK ] Listening on Network Service Netlink Socket. [ 6.547641] random: systemd: uninitialized urandom read (16 bytes read) [ 6.554933] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 6.575625] random: systemd: uninitialized urandom read (16 bytes read) [ 6.582665] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 6.604106] random: systemd: uninitialized urandom read (16 bytes read) [ 6.613637] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 6.614951] systemd[1]: Mounting Huge Pages File System... [ 6.631732] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.631765] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.631780] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.631794] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.631883] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.631898] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.631912] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.642000] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 6.642028] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 6.642046] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 6.642094] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 6.708295] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 6.708326] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 6.708353] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 Mounting Huge Pages File System... [ 6.772006] random: systemd: uninitialized urandom read (16 bytes read) [ 6.781406] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 6.782684] systemd[1]: Mounting POSIX Message Queue File System... [ 6.800176] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.800288] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.801920] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 6.801946] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 6.801964] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 6.802006] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 6.802128] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 6.802148] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 6.802171] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 Mounting POSIX Message Queue File System... [ 6.896104] random: systemd: uninitialized urandom read (16 bytes read) [ 6.905527] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 6.906809] systemd[1]: Mounting Kernel Debug File System... Mounting Kernel Debug File System... [ 6.924384] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.924417] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.924431] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.924525] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.924540] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.924554] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.924568] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.924581] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.924595] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.924608] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 6.925889] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 6.925913] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 6.925932] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 6.925975] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 6.926099] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 6.926118] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 6.926141] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 7.066231] random: systemd: uninitialized urandom read (16 bytes read) [ 7.076677] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 7.077964] systemd[1]: Mounting Temporary Directory (/tmp)... Mounting Temporary Directory (/tmp)... [ 7.098741] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.098850] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.117321] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. [ 7.128998] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 7.138413] random: systemd: uninitialized urandom read (16 bytes read) [ 7.148963] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 7.150584] systemd[1]: Starting Journal Service... Starting Journal Service...[ 7.165097] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.165134] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 7.165153] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.165210] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.165415] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.165435] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 7.165460] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 7.230089] random: systemd: uninitialized urandom read (16 bytes read) [ 7.239559] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 7.241160] systemd[1]: Starting Load Kernel Modules... Starting Load Kernel Modules...[ 7.257209] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.257243] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.257257] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.257321] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.257336] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.257350] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.257364] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.257378] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.257391] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.333767] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.333805] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 7.333824] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.333871] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.334666] random: systemd: uninitialized urandom read (16 bytes read) [ 7.378608] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 7.389116] systemd[1]: Starting Remount Root and Kernel File Systems... Starting Remount Root and Kernel File Systems random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.397198] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 7.397229] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [0m... [ 7.433620] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.433707] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.433723] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.460092] random: systemd: uninitialized urandom read (16 bytes read) [ 7.469416] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 7.470945] systemd[1]: Starting udev Coldplug all Devices... Starting udev Coldplug all Devices...[ 7.487355] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.487392] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 7.510772] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.510806] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.510874] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.510890] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.545347] random: get_random_bytes called from generate_random_uuid+0x1c/0x50 with crng_init=0 [ 7.547076] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.547109] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 7.547127] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.547179] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.591353] random: systemd: uninitialized urandom read (16 bytes read) [ 7.601299] systemd[1]: Mounted Huge Pages File System. [ OK ] Mounted Huge Pages File System. [ 7.615378] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.624893] systemd[1]: Mounted POSIX Message Queue File System. [ OK ] Mounted POSIX Message Queue File Sy[ 7.632363] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.634411] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.634437] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 7.634508] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 stem. [ 7.673940] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.673965] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 7.673993] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 7.704649] systemd[1]: Mounted Kernel Debug File System. [ OK ] Mounted Kernel Debug File System 7.713042] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.713080] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 7.713108] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 m. [ 7.742860] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.742898] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 7.742917] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.742971] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.743150] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.743170] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 7.743195] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 7.802742] systemd[1]: Mounted Temporary Directory (/tmp). [ OK ] Mounted Temporary Directory (/tmp). [ 7.815747] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 7.885673] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 7.896184] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 7.897167] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 7.898080] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 7.944782] systemd[1]: Started Journal Service. [ OK ] Started Journal Service. [ 7.956029] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 7.976430] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 7.992904] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.992941] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 7.992960] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.992999] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 7.993116] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 7.993135] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 7.993159] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 8.123759] random: systemd-journal: uninitialized urandom read (16 bytes read) [FAILED] Failed to start Load Kernel Modules. [ 8.150375] random: systemd-journal: uninitialized urandom read (16 bytes read) See 'systemctl status systemd-modules-load.service' for details.[ 8.165495] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 8.174251] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 8.182470] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 8.192227] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 8.206523] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.206556] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.206625] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.206640] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.240264] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 8.250884] random: systemd: uninitialized urandom read (16 bytes read) [ 8.261035] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Mounting Kernel Configuration File System.[ 8.274908] random: systemd-journal: uninitialized urandom read (16 bytes read) .. [ 8.285646] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.285679] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.285772] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.287158] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.287183] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 8.287202] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.287246] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.287375] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.287394] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 8.362632] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.362655] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 8.362672] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.362707] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.362813] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.362832] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 8.362856] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 8.429794] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.429832] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 8.429850] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.429891] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.430010] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.430030] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 8.430054] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 8.494996] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null) [ 8.502745] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.502782] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 8.502800] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.502843] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.502964] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.502984] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 8.503008] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 8.573415] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.573453] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 8.573472] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.573522] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.573713] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.573733] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 8.573757] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 8.735926] random: systemd: uninitialized urandom read (16 bytes read) [ 8.751751] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 8.786246] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Starting Apply Kernel Variables...[ 8.800956] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.801043] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.801705] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 8.829054] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.829092] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 8.829111] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.829160] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.829996] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.830020] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 8.830055] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ OK ] Started Remount Root and Kernel File Systems. [ OK ] Mounted Kernel Configuration File System. [ 8.930609] random: systemd: uninitialized urandom read (16 bytes read) [ 8.939951] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Starting Flush Journal to Persistent Storage 8.953824] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.953911] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.953926] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 8.953941] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 0m... [ 8.990742] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 8.990775] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 8.990794] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 8.990843] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 9.024948] random: systemd: uninitialized urandom read (16 bytes read) [ 9.034166] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Starting Create Static Device Nodes in /dev... [ 9.047738] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.047826] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.051296] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 9.077810] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 9.077845] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 9.077874] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 9.107906] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 9.107943] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 9.107961] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 9.108015] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 9.108627] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 9.155966] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 9.156003] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 9.156032] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 9.254873] systemd-journald[89]: Received client request to flush runtime journal. [ OK ] Started Apply Kernel Variables. [ OK ] Started Flush Journal to Persistent Storage. [ OK ] Started Create Static Device Nodes in /dev. [ 9.360340] random: systemd: uninitialized urandom read (16 bytes read) [ OK ] Reached target Local File Systems (Pre). [ 9.391860] random: systemd: uninitialized urandom read (16 bytes read) [ 9.409700] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Mounting /var/volatile... [ 9.424531] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.424643] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.424660] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.426031] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 9.426057] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 9.426076] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 9.426119] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 9.426245] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 9.426264] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 9.426287] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 9.510936] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 9.675768] random: systemd: uninitialized urandom read (16 bytes read) [ 9.700914] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 9.714256] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 9.715245] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.715326] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.715341] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.715355] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.769656] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 9.769693] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 9.769711] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 9.769761] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 Starting udev Kernel Device Manager... [ 9.810461] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 9.810491] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 9.810531] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ OK ] Started udev Coldplug all Devices. [ OK ] Mounted /var/volatile. [ 9.880485] random: systemd: uninitialized urandom read (16 bytes read) [ 9.890915] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Starting udev Wait for Complete Device Initial[ 9.906745] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.906779] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.906849] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.906865] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 ization... [ 9.941759] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 9.952577] random: systemd: uninitialized urandom read (16 bytes read) [ 9.962874] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Starting Load/Save Random Seed...[ 9.978840] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.978927] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.978943] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 9.978958] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 10.013337] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 10.021789] random: systemd: uninitialized urandom read (16 bytes read) [ OK ] Reached target Local File Systems. [ 10.032019] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 10.032147] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 10.032167] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 10.032225] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 10.032452] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 10.032564] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 10.032591] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 10.094961] random: systemd: uninitialized urandom read (16 bytes read) [ 10.104208] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Starting Create Volatile Files and Directories... [ 10.119417] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 10.119525] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 10.119597] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 10.121045] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 10.121074] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 10.121092] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 10.121139] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 10.121266] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 10.121285] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 10.121308] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 10.206716] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 10.224433] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 10.224471] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 10.224490] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 10.224537] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 10.261650] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 10.261688] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 10.261716] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ OK ] Started Create Volatile Files and Directories. [ 10.465601] random: systemd: uninitialized urandom read (16 bytes read) [ 10.494991] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Starting Network Time Synchronization...[ 10.545250] random: systemd-journal: uninitialized urandom read (16 bytes read) [ 10.555775] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 10.555850] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 10.596404] random: systemd: uninitialized urandom read (16 bytes read) [ 10.617135] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 10.618275] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 10.619269] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 [ 10.674215] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=0 Starting Update UTMP about System Boot/Shutdow[ 10.688784] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 n... [ 10.688817] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 10.688888] random: get_random_bytes called from key_alloc+0x294/0x488 with crng_init=0 [ 10.689601] random: systemd-journal: uninitialized urandom read (16 bytes read) [ OK ] Started udev Kernel Device Manager. [ 10.728378] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 10.728410] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=0 [ 10.728428] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 10.728485] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=0 [ 10.728650] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=0 [ 10.728670] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=0 [ 10.728694] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=0 [ 10.971964] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=1 [ 10.973035] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=1 [ 10.973832] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=1 [ 10.974559] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=1 [ 10.975369] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=1 [ 11.089228] random: systemd: uninitialized urandom read (16 bytes read) [ OK ] Started Update UTMP about System Boot/Shutdown. [ 11.220820] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=1 [ 11.221738] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=1 [ 11.222507] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=1 [ 11.353340] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=1 [ 11.353360] random: get_random_u64 called from randomize_stack_top+0x44/0x80 with crng_init=1 [ 11.353373] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=1 [ 11.353414] random: get_random_u64 called from arch_mmap_rnd+0x48/0x70 with crng_init=1 [ 11.423028] random: get_random_u32 called from arch_align_stack+0x44/0x60 with crng_init=1 [ 11.423049] random: get_random_bytes called from load_elf_binary+0xd4c/0x1780 with crng_init=1 [ 11.423074] random: get_random_u64 called from randomize_page+0x44/0x68 with crng_init=1 [ OK ] Started Network Time Synchronizatio[ 11.534980] random: get_random_u64 called from copy_process+0x310/0x1818 with crng_init=1 n. [ 11.556178] random: systemd: uninitialized urandom read (16 bytes read) [ OK ] Reached target System Time Set. [ 11.587675] random: systemd: uninitialized urandom read (16 bytes read) [ OK ] Reached target System Time Synchronized. [ 11.617608] random: get_random_bytes called from __ip_select_ident+0x70/0x78 with crng_init=1 [ 12.075462] random: crng init done [ OK ] Started Load/Save Random Seed. [ OK ] Started udev Wait for Complete Device Initialization. [ OK ] Started Hardware RNG Entropy Gatherer Daemon. [ OK ] Reached target System Initialization. [ OK ] Started Daily apt download activities. [ OK ] Started Daily Cleanup of Temporary Directories. [ OK ] Reached target Timers. [ OK ] Listening on D-Bus System Message Bus Socket. Starting sshd.socket. [ OK ] Listening on sshd.socket. [ OK ] Reached target Sockets. [ OK ] Reached target Basic System. Starting Modem Manager... [ OK ] Started Kernel Logging Service. [ OK ] Started System Logging Service. Starting Comctl daemon... [ OK ] Started D-Bus System Message Bus. Starting IPv6 Packet Filtering Framework... Starting IPv4 Packet Filtering Framework... Starting Telephony service... Starting rng-tools.service... Starting Login Service... [ OK ] Started VIN initializing setting. [ OK ] Started WatchdogTimer. [ OK ] Started IPv6 Packet Filtering Framework. [ OK ] Started IPv4 Packet Filtering Framework. [ OK ] Started rng-tools.service. [ 16.156597] audit: type=1701 audit(1600598649.340:2): auid=4294967295 uid=0 gid=0 ses=4294967295 pid=132 comm="comctld" exe="/usr/bin/comctld" sig=11 res=1 [ OK ] Started Telephony service. [ OK ] Reached target Network (Pre). Starting Connection service... Starting Network Service... [FAILED] Failed to start Comctl daemon. See 'systemctl status comctld.service' for details. [ OK ] Stopped Comctl daemon. Starting Comctl daemon... [ OK ] Started Modem Manager. [ OK ] Started Network Service. [ OK ] Started Connection service. [ OK ] Reached target Network. Starting Permit User Sessions... Starting Target Communication Framework agent... [ OK ] Started Login Service. [ OK ] Started Permit User Sessions. [ OK ] Started Comctl daemon. [ OK ] Started Getty on tty1. [ OK ] Started Serial Getty on ttyS0. [ OK ] Reached target Login Prompts. [ OK ] Started Target Communication Framework agent. [ OK ] Reached target Multi-User System. Starting Hostname Service... Starting Update UTMP about System Runlevel Changes... Starting WPA supplicant... [ OK ] Started Update UTMP about System Runlevel Changes. [ OK ] Started WPA supplicant. [ OK ] Started Hostname Service. Poky (Yocto Project Reference Distro) 3.1.21 rzv2m ttyS0 BSP: RZV2M/RZV2M Evaluation Board Kit/3.0.4 LSI: RZV2M Version: 3.0.4 rzv2m login: