-
在ubuntu上安装tftp服务器,并配置
#安装 sudo apt-get install tftp-hpa tftpd-hpa sudo apt-get install xinetd #新建一个文件夹用来存放文件 mkdir /home/wzx/tftp sudo chmod 777 /home/wzx/tftp #配置tftp,新建/etcxinetd.d/tftp,并添加下述内容 server tftp { socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.tftpd server_args = -s /home/zuozhongkai/linux/tftpboot/ disable = no per_source = 11 cps = 100 2 flags = IPv4 } #启动tftp服务 sudo service tftpd-hpa start #打开/etc/default/tftpd-hpa 文件,将其修改为如下所示内容 sudo vim /etcdefault/tftpd-hpa # /etc/default/tftpd-hpa TFTP_USERNAME="tftp" TFTP_DIRECTORY="/home/wzx/tftp" TFTP_ADDRESS=":69" TFTP_OPTIONS="-l -c -s" #重启 sudo service tftpd-hpa restart #Copy Linux kernel images to TFTP boot folder from the extracted target root file system <nfs root folder>/boot/: 1.Image-5.4.91-g1af1264b70 (rename to Image in TFTP boot folder) 2.k3-am642-evm.dtb
-
在ubuntu上开启NFS服务器,并配置
#安装
sudo apt-get install nfs-kernel-server rpcbind
#创建nfs文件夹
sudo mkdir /home/wzx/nfs
#配置,并添加/home/wzx//nfs *(rw,sync,no_root_squash)
sudo vim /etc/exports
1. /home/wzx//nfs *(rw,sync,no_root_squash)
#重启
sudo /etc/init.d/nfs-kernel-server restart
#将根文件系统解压到nfs目录
sudo tar xf <AM64x Processor-SDK Linux installation folder>/filesystem/tisdk-default-image-am64xx-evm.tar.xz -C <nfs root folder>
- 启动方式
- a.修改uEnv.txt used for tftp/NFS boot(暂时不能正确挂载并启动):
svrip=192.168.137.2
ipaddr=192.168.137.64
image=Image
rootpath=/home/wzx/nfs/tisdk-default-image-am64xx-evm
fdtfile=k3-am642-evm.dtb
netargs=setenv bootargs console=${console} ${optargs} root=/dev/nfs nfsroot=${serverip}:${rootpath},nolock,v3 rw ip=${ipaddr}:::::eth0
loadoverlay=fdt address ${fdtaddr}; fdt resize 0x100000;
netboot=tftp ${loadaddr} ${image}; tftp ${fdtaddr} ${fdtfile}; run loadoverlay; run netargs; booti ${loadaddr} - ${fdtaddr}
uenvcmd=setenv serverip ${svrip}; setenv ipaddr ${ipaddr}; run netboot
- b.修改bootcmd和bootargs以下命令能够成功挂载NFS,但不停有输出:
setenv bootcmd 'tftp 0x82000000 Image;tftp 0x88000000 k3-am642-evm.dtb;booti 0x82000000 - 0x88000000'
setenv bootargs 'earlyprintk debug console=ttyS2,115200n8 ip=192.168.137.64:::::eth0:off rootwait=1 root=/dev/nfs nfsroot=192.168.137.2:/home/wzx/nfs/,v3,tcp rw'
boot
#异常持续输出
[ 144.839453] systemd-journald[169]: Successfully sent stream file descriptor to service manager.
- c.单步设置,以下命令能够成功挂载NFS:
setenv serverip 192.168.137.2
setenv ipaddr 192.168.137.64
setenv rootpath /home/wzx/nfs
setenv bootargs console=${console} ${optargs} root=/dev/nfs nfsroot=${serverip}:${rootpath},nolock,v3 rw ip=${ipaddr}:::::eth0
tftp ${loadaddr} Image
tftp ${fdtaddr} k3-am642-evm.dtb
booti ${loadaddr} - ${fdtaddr}
mmc启动方式,bootcmd分析:
bootcmd=run findfdt;#--->findfdt=
#if test $board_name = am64x_gpevm; then setenv fdtfile k3-am642-evm.dtb; fi; #执行
#if test $board_name = am64x_skevm; then setenv fdtfile k3-am642-sk.dtb; fi;
#if test $fdtfile = undefined; then echo WARNING: Could not determine device tree to use; fi;
run envboot;#--->envboot=
#mmc dev ${mmcdev}; # 1
#if mmc rescan; then echo SD/MMC found on device ${mmcdev};#1
# if run loadbootscript; then run bootscript;
# else
# if run loadbootenv; then echo Loaded env from ${bootenvfile};run importbootenv;fi;
# if test -n $uenvcmd; then echo Running uenvcmd ...;run uenvcmd;fi;
# fi;
#fi;
run init_${boot}; #mmc
if test ${boot_fit} -eq 1; #0
then run get_fit_${boot};
run get_overlaystring;
run run_fit;
else;
run get_kern_${boot};# get_kern_mmc=load mmc ${bootpart} ${loadaddr} ${bootdir}/${name_kern}
# get_kern_mmc=load mmc 1:2 0x82000000 /boot/Image
run get_fdt_${boot};# load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}
# load mmc 1:2 0x88000000 /boot/k3-am642-evm.dtb
run get_overlay_${boot}; # get_overlay_mmc=
# fdt address ${fdtaddr};fdt resize 0x100000;
# for overlay in $name_overlays;
# do;
# load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && fdt apply ${dtboaddr};
# done;
run run_kern; # run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}
# run_kern=booti 0x82000000 - 0x88000000 # 使用' - '来引导带有设备树但没有初始RAM磁盘的内核。
# booti [<addr> [<initrd>[:<size>]] [<fdt>]]
# <addr>-->address of kernel image, defaults to CONFIG_SYS_LOAD_ADDR.
# <initrd>-->address of the initial RAM disk. Use ‘-‘ to boot a kernel with a device tree but without an initial RAM disk.
# <size>-->size of the initial RAM disk. This parameter must be specified for raw initial RAM disks.
# <fdt>-->address of the device tree.
fi;
错误记录:
tftp 0x82000000 Image
tftp 0x88000000 k3-am642-evm.dtb
booti 0x82000000 - 0x88000000
###输出错误
[ 2.368151] printk: console [ttyS2] disabled
[ 2.372611] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 16, base_baud = 30 00000) is a 8250
[ 2.381382] printk: console [ttyS2] enabled
[ 2.381382] printk: console [ttyS2] enabled
[ 2.389828] printk: bootconsole [ns16550a0] disabled
[ 2.389828] printk: bootconsole [ns16550a0] disabled
[ 2.403990] spi-nor spi0.0: s28hs512t (65536 Kbytes)
[ 2.422596] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
[ 2.467111] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 10 00000
[ 2.476294] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
[ 2.484537] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss vers ion 0x6BA00903, cpsw version 0x6BA80903 Ports: 3 quirks:00000006
[ 2.497465] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.4
[ 2.497471] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
[ 2.498292] pps pps0: new PPS source ptp0
[ 2.498724] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000 000, add_val:1 pps:1
[ 2.500514] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 16
[ 2.535350] am65-cpts 39000000.cpts: CPTS ver 0x4e8a010c, freq:500000000, add _val:1 pps:0
[ 2.544505] k3-j72xx-soc-thermal b00000.temperature-sensor: invalid resource
[ 2.551620] k3-j72xx-soc-thermal: probe of b00000.temperature-sensor failed w ith error -22
[ 2.563414] gpio-mux mux-controller: 2-way mux-controller registered
[ 2.570249] mmc1: CQHCI version 5.10
[ 2.581978] vdd_mmc1: supplied by vsys_3v3
[ 2.594173] debugfs: Directory 'pd:114' with parent 'pm_genpd' already presen t!
[ 2.594197] mmc0: CQHCI version 5.10
[ 2.613587] ALSA device list:
[ 2.615121] mmc1: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64 -bit
[ 2.616583] No soundcards found.
[ 2.654771] mmc0: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64 -bit
[ 2.663366] VFS: Cannot open root device "(null)" or unknown-block(0,0): erro r -6
[ 2.670865] Please append a correct "root=" boot option; here are the availab le partitions:
[ 2.679284] 0100 4096 ram0
[ 2.679288] (driver?)
[ 2.685399] 0101 4096 ram1
[ 2.685403] (driver?)
[ 2.691514] 0102 4096 ram2
[ 2.691517] (driver?)
[ 2.697615] 0103 4096 ram3
[ 2.697618] (driver?)
[ 2.703734] 0104 4096 ram4
[ 2.703737] (driver?)
[ 2.709835] 0105 4096 ram5
[ 2.709838] (driver?)
[ 2.714367] mmc0: new ultra high speed SDR104 SDHC card at address aaaa
[ 2.715973] 0106 4096 ram6
[ 2.722570] (driver?)
[ 2.723728] mmcblk0: mmc0:aaaa SB16G 14.8 GiB
[ 2.726480] 0107 4096 ram7
[ 2.729122] mmc1: Command Queue Engine enabled
[ 2.733116] (driver?)
[ 2.733125] 0108 4096 ram8
[ 2.737981] mmc1: new HS200 MMC card at address 0001
[ 2.741302] (driver?)
[ 2.741315] 0109 4096 ram9
[ 2.743781] mmcblk0: p1 p2
[ 2.747435] (driver?)
[ 2.755534] mmcblk1: mmc1:0001 S0J56X 14.8 GiB
[ 2.758475] 010a 4096 ram10
[ 2.761503] mmcblk1boot0: mmc1:0001 S0J56X partition 1 31.5 MiB
[ 2.763601] (driver?)
[ 2.763610] 010b 4096 ram11
[ 2.768348] mmcblk1boot1: mmc1:0001 S0J56X partition 2 31.5 MiB
[ 2.771953] (driver?)
[ 2.771961] 010c 4096 ram12
[ 2.778092] mmcblk1rpmb: mmc1:0001 S0J56X partition 3 4.00 MiB, chardev (237: 0)
[ 2.780217] (driver?)
[ 2.780227] 010d 4096 ram13
[ 2.780229] (driver?)
[ 2.780240] 010e 4096 ram14
[ 2.789754] mmcblk1: p1
[ 2.789983] (driver?)
[ 2.820709] 010f 4096 ram15
[ 2.820714] (driver?)
[ 2.826907] 1f00 65536 mtdblock0
[ 2.826911] (driver?)
[ 2.833441] b300 15558144 mmcblk0
[ 2.833446] driver: mmcblk
[ 2.840242] b301 137906 mmcblk0p1 47b6d3e0-01
[ 2.840245]
[ 2.847034] b302 15418880 mmcblk0p2 47b6d3e0-02
[ 2.847037]
[ 2.853834] b320 15540224 mmcblk1
[ 2.853838] driver: mmcblk
[ 2.860635] b321 15540190 mmcblk1p1 7d70f57d-5c14-4264-a117-354ab179 f85a
[ 2.860638]
[ 2.869600] Kernel panic - not syncing: VFS: Unable to mount root fs on unkno wn-block(0,0)
[ 2.877851] CPU: 1 PID: 1 Comm: swapper/0 Not tainted 5.10.168-g2c23e6c538 #1
[ 2.884968] Hardware name: Texas Instruments AM642 EVM (DT)
[ 2.890525] Call trace:
[ 2.892976] dump_backtrace+0x0/0x1b0
[ 2.896632] show_stack+0x18/0x38
[ 2.899941] dump_stack+0xe8/0x124
[ 2.903336] panic+0x198/0x360
[ 2.906388] mount_block_root+0x1c4/0x254
[ 2.910388] mount_root+0x10c/0x140
[ 2.913868] prepare_namespace+0x130/0x170
[ 2.917954] kernel_init_freeable+0x26c/0x298
[ 2.922302] kernel_init+0x14/0x114
[ 2.925782] ret_from_fork+0x10/0x30
[ 2.929353] SMP: stopping secondary CPUs
[ 2.933274] Kernel Offset: disabled
[ 2.936753] CPU features: 0x00040002,2000200c
[ 2.941096] Memory Limit: none
[ 2.944150] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) ]---
▒
添加
setenv bootargs 'earlyprintk debug console=ttyS2,115200n8 ip=192.168.137.64:::::eth0:off rootwait=1 root=/dev/nfs nfsroot=192.168.137.2:/home/wzx/nfs/tisdk-default-image-am64xx-evm,v3,tcp rw'
#####
Hit any key to stop autoboot: 0
=> setenv bootargs 'earlyprintk debug console=ttyS2,115200n8 ip=192.168.137.64:::
=> tftp 0x82000000 Image
link up on port 1, speed 1000, full duplex
Using ethernet@8000000port@1 device
TFTP from server 192.168.137.2; our IP address is 192.168.137.64
Filename 'Image'.
Load address: 0x82000000
Loading: #################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#######################T ##########################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#####
1.4 MiB/s
done
Bytes transferred = 19147264 (1242a00 hex)
=> tftp 0x88000000 k3-am642-evm.dtb
link up on port 1, speed 1000, full duplex
Using ethernet@8000000port@1 device
TFTP from server 192.168.137.2; our IP address is 192.168.137.64
Filename 'k3-am642-evm.dtb'.
Load address: 0x88000000
Loading: ####
1.3 MiB/s
done
Bytes transferred = 56196 (db84 hex)
=> booti 0x82000000 - 0x88000000
## Flattened Device Tree blob at 88000000
Booting using the fdt blob at 0x88000000
Loading Device Tree to 000000008ffef000, end 000000008ffffb83 ... OK
Starting kernel ...
I/TC: Secondary CPU 1 initializing
I/TC: Secondary CPU 1 switching to normal world boot
I/TC: Reserved shared memory is enabled
I/TC: Dynamic shared memory is enabled
I/TC: Normal World virtualization support is disabled
I/TC: Asynchronous notifications are disabled
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 5.10.168-g2c23e6c538 (oe-user@oe-host) (aarch64-none-chain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 S
[ 0.000000] Machine model: Texas Instruments AM642 EVM
[ 0.000000] efi: UEFI not found.
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, siz
[ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a0000000, compati
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, siz
[ 0.000000] OF: reserved mem: initialized node r5f-memory@a0100000, compatible
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, siz
[ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a1000000, compati
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, siz
[ 0.000000] OF: reserved mem: initialized node r5f-memory@a1100000, compatible
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, siz
[ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a2000000, compati
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, siz
[ 0.000000] OF: reserved mem: initialized node r5f-memory@a2100000, compatible
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a3000000, siz
[ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a3000000, compati
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a3100000, siz
[ 0.000000] OF: reserved mem: initialized node r5f-memory@a3100000, compatible
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, siz
[ 0.000000] OF: reserved mem: initialized node m4f-dma-memory@a4000000, compati
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, siz
[ 0.000000] OF: reserved mem: initialized node m4f-memory@a4100000, compatible
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff]
[ 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 0x0000000080000000-0x000000009e7fffff]
[ 0.000000] node 0: [mem 0x000000009e800000-0x00000000a57fffff]
[ 0.000000] node 0: [mem 0x00000000a5800000-0x00000000ffffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff]
[ 0.000000] On node 0 totalpages: 524288
[ 0.000000] DMA zone: 8192 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 524288 pages, LIFO batch:63
[ 0.000000] cma: Reserved 512 MiB at 0x00000000dd000000
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.1 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: Trusted OS migration not required
[ 0.000000] psci: SMC Calling Convention v1.2
[ 0.000000] percpu: Embedded 22 pages/cpu s51288 r8192 d30632 u90112
[ 0.000000] pcpu-alloc: s51288 r8192 d30632 u90112 alloc=22*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1
[ 0.000000] Detected VIPT I-cache on CPU0
[ 0.000000] CPU features: detected: ARM erratum 845719
[ 0.000000] CPU features: detected: GIC system register CPU interface
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 516096
[ 0.000000] Kernel command line: earlyprintk debug console=ttyS2,115200n8 ip=19m,v3,tcp rw
[ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, l
[ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, li
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] Memory: 1398792K/2097152K available (11200K kernel code, 1162K rwda
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, 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=256 to nr_cpu_ids=2.
[ 0.000000] Trampoline variant of Tasks RCU enabled.
[ 0.000000] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffi
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[ 0.000000] GICv3: 256 SPIs implemented
[ 0.000000] GICv3: 0 Extended SPIs implemented
[ 0.000000] GICv3: Distributor has no Range Selector support
[ 0.000000] GICv3: 16 PPIs implemented
[ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001840000
[ 0.000000] ITS [mem 0x01820000-0x0182ffff]
[ 0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[ 0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
[ 0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, e
[ 0.000000] ITS: using cache flushing for cmd queue
[ 0.000000] GICv3: using LPI property table @0x0000000080030000
[ 0.000000] GIC: using cache flushing for LPI property table
[ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
[ 0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0
[ 0.000005] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046
[ 0.000369] Console: colour dummy device 80x25
[ 0.000427] Calibrating delay loop (skipped), value calculated using timer freq
[ 0.000444] pid_max: default: 32768 minimum: 301
[ 0.000559] LSM: Security Framework initializing
[ 0.000636] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear
[ 0.000662] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, l
[ 0.002627] rcu: Hierarchical SRCU implementation.
[ 0.002919] Platform MSI: msi-controller@1820000 domain created
[ 0.003223] PCI/MSI: /bus@f4000/interrupt-controller@1800000/msi-controller@182
[ 0.003340] EFI services will not be available.
[ 0.003606] smp: Bringing up secondary CPUs ...
[ 0.012657] Detected VIPT I-cache on CPU1
[ 0.012697] GICv3: CPU1: found redistributor 1 region 0:0x0000000001860000
[ 0.012712] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
[ 0.012775] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.012912] smp: Brought up 1 node, 2 CPUs
[ 0.012938] SMP: Total of 2 processors activated.
[ 0.012948] CPU features: detected: 32-bit EL0 Support
[ 0.012957] CPU features: detected: CRC32 instructions
[ 0.021299] CPU: All CPU(s) started at EL2
[ 0.021328] alternatives: patching kernel code
[ 0.022578] devtmpfs: initialized
[ 0.031035] KASLR disabled due to lack of seed
[ 0.031277] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_
[ 0.031301] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[ 0.048941] pinctrl core: initialized pinctrl subsystem
[ 0.049624] DMI not present or invalid.
[ 0.050400] NET: Registered protocol family 16
[ 0.052355] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[ 0.052528] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic alloca
[ 0.052716] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allo
[ 0.053401] thermal_sys: Registered thermal governor 'step_wise'
[ 0.053409] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.053873] cpuidle: using governor menu
[ 0.054176] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.054275] ASID allocator initialised with 65536 entries
[ 0.084518] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.084541] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.084550] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.084558] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[ 0.085920] cryptd: max_cpu_qlen set to 1000
[ 0.089537] k3-chipinfo 43000014.chipid: Family:AM64X rev:SR1.0 JTAGID[0x0bb380
[ 0.090151] vsys_5v0: supplied by evm_12v0
[ 0.090666] vsys_3v3: supplied by evm_12v0
[ 0.091282] vddb_3v3_display: supplied by vsys_3v3
[ 0.092488] iommu: Default domain type: Translated
[ 0.092925] SCSI subsystem initialized
[ 0.093666] mc: Linux media interface: v0.10
[ 0.093702] videodev: Linux video capture interface: v2.00
[ 0.093797] pps_core: LinuxPPS API ver. 1 registered
[ 0.093805] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giomett
[ 0.093824] PTP clock support registered
[ 0.093871] EDAC MC: Ver: 3.0.0
[ 0.094785] omap-mailbox 29020000.mailbox: omap mailbox rev 0x66fc9100
[ 0.095008] omap-mailbox 29040000.mailbox: omap mailbox rev 0x66fc9100
[ 0.095154] omap-mailbox 29060000.mailbox: omap mailbox rev 0x66fc9100
[ 0.095997] FPGA manager framework
[ 0.096125] Advanced Linux Sound Architecture Driver Initialized.
[ 0.097349] clocksource: Switched to clocksource arch_sys_counter
[ 0.097616] VFS: Disk quotas dquot_6.6.0
[ 0.097681] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.104236] NET: Registered protocol family 2
[ 0.104531] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear
[ 0.106049] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384
[ 0.106107] TCP established hash table entries: 16384 (order: 5, 131072 bytes,
[ 0.106241] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.106490] TCP: Hash tables configured (established 16384 bind 16384)
[ 0.106706] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[ 0.106765] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[ 0.106977] NET: Registered protocol family 1
[ 0.107652] RPC: Registered named UNIX socket transport module.
[ 0.107672] RPC: Registered udp transport module.
[ 0.107679] RPC: Registered tcp transport module.
[ 0.107685] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.107701] NET: Registered protocol family 44
[ 0.107725] PCI: CLS 0 bytes, default 64
[ 0.108573] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters
[ 0.113181] Initialise system trusted keyrings
[ 0.113537] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[ 0.117970] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.118660] NFS: Registering the id_resolver key type
[ 0.118734] Key type id_resolver registered
[ 0.118742] Key type id_legacy registered
[ 0.118818] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 0.118828] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering..
[ 0.119101] 9p: Installing v9fs 9p2000 file system support
[ 0.162495] Key type asymmetric registered
[ 0.162523] Asymmetric key parser 'x509' registered
[ 0.162601] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243
[ 0.162611] io scheduler mq-deadline registered
[ 0.162619] io scheduler kyber registered
[ 0.165201] pinctrl-single 4084000.pinctrl: 33 pins, size 132
[ 0.165788] pinctrl-single f4000.pinctrl: 180 pins, size 720
[ 0.166961] pinctrl-single a40000.timesync-router: 512 pins, size 2048
[ 0.177101] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
[ 0.193830] brd: module loaded
[ 0.201926] loop: module loaded
[ 0.202960] megasas: 07.714.04.00-rc1
[ 0.207815] tun: Universal TUN/TAP device driver, 1.6
[ 0.208613] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[ 0.208627] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[ 0.208691] sky2: driver version 1.30
[ 0.210189] VFIO - User Level meta-driver version: 0.3
[ 0.211491] i2c /dev entries driver
[ 0.213122] sdhci: Secure Digital Host Controller Interface driver
[ 0.213136] sdhci: Copyright(c) Pierre Ossman
[ 0.213756] sdhci-pltfm: SDHCI platform and OF driver helper
[ 0.215109] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.215586] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[ 0.217274] optee: probing for conduit method.
[ 0.217318] optee: revision 3.20 (8e74d476)
[ 0.234048] optee: dynamic shared memory is enabled
[ 0.234520] optee: initialized driver
[ 0.237415] NET: Registered protocol family 17
[ 0.237606] 9pnet: Installing 9P2000 support
[ 0.237699] Key type dns_resolver registered
[ 0.238239] Loading compiled-in X.509 certificates
[ 0.256977] ti-sci 44043000.dmsc: lpm region is required for suspend but not pr
[ 0.257045] ti-sci 44043000.dmsc: ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.
[ 0.307569] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
[ 0.307598] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
[ 0.310032] omap_i2c 20000000.i2c: bus 0 rev0.12 at 100 kHz
[ 0.312181] pca953x 1-0022: supply vcc not found, using dummy regulator
[ 0.312340] pca953x 1-0022: using AI
[ 0.362944] Console: switching to mono frame buffer device 12x2
[ 0.391788] ssd1307fb 1-003c: fb0: Solomon SSD1307 framebuffer device registere
[ 0.392016] omap_i2c 20010000.i2c: bus 1 rev0.12 at 400 kHz
[ 0.393499] omap_i2c 20020000.i2c: bus 2 rev0.12 at 100 kHz
[ 0.394846] omap_i2c 20030000.i2c: bus 3 rev0.12 at 100 kHz
[ 0.395334] ti-sci-intr bus@f4000:bus@4000000:interrupt-controller1: Interrupt
[ 0.395558] ti-sci-intr bus@f4000:interrupt-controller0: Interrupt Router 3 dom
[ 0.395988] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator dom
[ 0.408643] j721e-pcie f102000.pcie: host bridge /bus@f4000/pcie@f102000 ranges
[ 0.408702] j721e-pcie f102000.pcie: IO 0x0068001000..0x0068010fff -> 0x0
[ 0.408727] j721e-pcie f102000.pcie: MEM 0x0068011000..0x006fffffff -> 0x0
[ 0.408751] j721e-pcie f102000.pcie: IB MEM 0x0000000000..0x0fffffffff -> 0x0
[ 1.401649] j721e-pcie f102000.pcie: PCI host bridge to bus 0000:00
[ 1.401671] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 1.401683] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] (bus address
[ 1.401693] pci_bus 0000:00: root bus resource [mem 0x68011000-0x6fffffff]
[ 1.401744] pci 0000:00:00.0: [104c:b010] type 01 class 0x060400
[ 1.401766] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0xfffffffff 64bit pref]
[ 1.401851] pci 0000:00:00.0: supports D1
[ 1.401860] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[ 1.404564] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), recon
[ 1.407045] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 1.407090] pci 0000:00:00.0: BAR 0: no space for [mem size 0x1000000000 64bit
[ 1.407101] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x1000000000 64
[ 1.407113] pci 0000:00:00.0: PCI bridge to [bus 01]
[ 1.407720] pcieport 0000:00:00.0: PME: Signaling with IRQ 44
[ 1.408579] ti-udma 485c0100.dma-controller: Number of rings: 68
[ 1.410038] ti-udma 485c0100.dma-controller: Channels: 24 (bchan: 12, tchan: 6,
[ 1.411896] ti-udma 485c0000.dma-controller: Number of rings: 288
[ 1.420396] ti-udma 485c0000.dma-controller: Channels: 44 (tchan: 29, rchan: 15
[ 1.423927] printk: console [ttyS2] disabled
[ 1.424021] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 16, base_baud = 3000
[ 2.896457] printk: console [ttyS2] enabled
[ 2.904920] spi-nor spi0.0: s28hs512t (65536 Kbytes)
[ 2.923675] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
[ 2.969354] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000
[ 2.978537] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver T
[ 2.986777] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss versio
[ 2.999783] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.4
[ 2.999790] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
[ 3.000580] pps pps0: new PPS source ptp0
[ 3.000964] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:50000000
[ 3.002790] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 16
[ 3.012083] am65-cpts 39000000.cpts: CPTS ver 0x4e8a010c, freq:500000000, add_v
[ 3.046006] k3-j72xx-soc-thermal b00000.temperature-sensor: invalid resource
[ 3.053119] k3-j72xx-soc-thermal: probe of b00000.temperature-sensor failed wit
[ 3.065096] mmc1: CQHCI version 5.10
[ 3.065102] gpio-mux mux-controller: 2-way mux-controller registered
[ 3.073794] vdd_mmc1: supplied by vsys_3v3
[ 3.087368] debugfs: Directory 'pd:114' with parent 'pm_genpd' already present!
[ 3.087427] mmc0: CQHCI version 5.10
[ 3.117940] mmc1: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-b
[ 3.133911] mmc0: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-b
[ 3.151932] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver
[ 3.161289] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxi
[ 3.194595] mmc0: new ultra high speed SDR104 SDHC card at address aaaa
[ 3.202207] mmcblk0: mmc0:aaaa SB16G 14.8 GiB
[ 3.205386] mmcblk0: p1 p2
[ 3.236789] mmc1: Command Queue Engine enabled
[ 3.241268] mmc1: new HS200 MMC card at address 0001
[ 3.247063] mmcblk1: mmc1:0001 S0J56X 14.8 GiB
[ 3.251849] mmcblk1boot0: mmc1:0001 S0J56X partition 1 31.5 MiB
[ 3.257968] mmcblk1boot1: mmc1:0001 S0J56X partition 2 31.5 MiB
[ 3.264122] mmcblk1rpmb: mmc1:0001 S0J56X partition 3 4.00 MiB, chardev (237:0)
[ 3.274710] mmcblk1: p1
[ 13.410242] am65-cpsw-nuss 8000000.ethernet eth0: Link is Up - 1Gbps/Full - flo
[ 13.441356] IP-Config: Guessing netmask 255.255.255.0
[ 13.446407] IP-Config: Complete:
[ 13.449638] device=eth0, hwaddr=f4:84:4c:f9:7d:05, ipaddr=192.168.137.64,
[ 13.460233] host=192.168.137.64, domain=, nis-domain=(none)
[ 13.466233] bootserver=255.255.255.255, rootserver=192.168.137.2, rootpath
[ 13.476073] ALSA device list:
[ 13.486457] No soundcards found.
[ 14.902544] VFS: Mounted root (nfs filesystem) on device 0:20.
[ 14.909627] devtmpfs: mounted
[ 14.914064] Freeing unused kernel memory: 1920K
[ 14.933425] Run /sbin/init as init process
[ 14.937529] with arguments:
[ 14.940486] /sbin/init
[ 14.943192] earlyprintk
[ 14.945981] with environment:
[ 14.949111] HOME=/
[ 14.951467] TERM=linux
[ 14.954170] rootwait=1
[ 16.531837] systemd[1]: System time before build time, advancing clock.
[ 16.880368] NET: Registered protocol family 10
[ 16.891369] Segment Routing with IPv6
[ 17.388194] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SEKMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[ 17.410023] systemd[1]: No virtualization found in DMI
[ 17.415206] systemd[1]: No virtualization found in CPUID
[ 17.420565] systemd[1]: Virtualization XEN not found, /proc/xen does not exist
[ 17.428017] systemd[1]: No virtualization found in /proc/device-tree/*
[ 17.434752] systemd[1]: UML virtualization not found in /proc/cpuinfo.
[ 17.441300] systemd[1]: This platform does not support /proc/sysinfo
[ 17.447659] systemd[1]: Found VM virtualization none
[ 17.452644] systemd[1]: Detected architecture arm64.
[ 17.459545] systemd[1]: Mounting cgroup to /sys/fs/cgroup/net_cls of type cgrou
[ 17.469562] systemd[1]: Mounting cgroup to /sys/fs/cgroup/perf_event of type cg
[ 17.479912] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type c
[ 17.490524] systemd[1]: Mounting cgroup to /sys/fs/cgroup/hugetlb of type cgrou
[ 17.500419] systemd[1]: Mounting cgroup to /sys/fs/cgroup/freezer of type cgrou
[ 17.510213] systemd[1]: Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup
[ 17.519744] systemd[1]: Mounting cgroup to /sys/fs/cgroup/pids of type cgroup w
[ 17.528979] systemd[1]: Mounting cgroup to /sys/fs/cgroup/devices of type cgrou
[ 17.538753] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpuset of type cgroup
[ 17.561795] systemd[1]: Mounting cgroup to /sys/fs/cgroup/memory of type cgroup
Welcome to Arago 2021.09!
[ 17.625882] systemd[1]: Set hostname to <am64xx-evm>.
[ 17.657937] random: systemd: uninitialized urandom read (16 bytes read)
[ 17.664683] systemd[1]: Initializing machine ID from random generator.
[ 17.693167] systemd[1]: Failed to add address 127.0.0.1 to loopback interface:
[ 17.701568] systemd[1]: Failed to add address ::1 to loopback interface: File e
[ 17.711776] systemd[1]: Successfully brought loopback interface up
[ 17.718624] systemd[1]: Setting 'fs/file-max' to '9223372036854775807'.
[ 17.725443] systemd[1]: Setting 'fs/nr_open' to '2147483640'.
[ 17.731246] systemd[1]: Couldn't write fs.nr_open as 2147483640, halving it.
[ 17.738353] systemd[1]: Setting 'fs/nr_open' to '1073741816'.
[ 17.744135] systemd[1]: Successfully bumped fs.nr_open to 1073741816
[ 17.755256] systemd[1]: Found cgroup2 on /sys/fs/cgroup/unified, unified hierar
[ 17.765267] systemd[1]: Found cgroup2 on /sys/fs/cgroup/unified, unified hierar
[ 17.774953] systemd[1]: Unified cgroup hierarchy is located at /sys/fs/cgroup/u
[ 17.795640] systemd[1]: Got EBADF when using BPF_F_ALLOW_MULTI, which indicates
[ 17.805126] systemd[1]: Controller 'cpu' supported: yes
[ 17.810416] systemd[1]: Controller 'cpuacct' supported: yes
[ 17.816014] systemd[1]: Controller 'cpuset' supported: no
[ 17.821455] systemd[1]: Controller 'io' supported: no
[ 17.826541] systemd[1]: Controller 'blkio' supported: yes
[ 17.831952] systemd[1]: Controller 'memory' supported: yes
[ 17.837588] systemd[1]: Controller 'devices' supported: yes
[ 17.843171] systemd[1]: Controller 'pids' supported: yes
[ 17.848488] systemd[1]: Controller 'bpf-firewall' supported: yes
[ 17.854497] systemd[1]: Controller 'bpf-devices' supported: yes
[ 17.860553] systemd[1]: Set up TFD_TIMER_CANCEL_ON_SET timerfd.
[ 17.870095] systemd[1]: Enabling showing of status.
[ 17.880215] systemd[1]: Successfully forked off '(sd-executor)' as PID 149.
[ 17.927941] systemd[149]: Successfully forked off '(direxec)' as PID 150.
[ 17.936238] systemd[149]: Successfully forked off '(direxec)' as PID 151.
[ 17.945122] systemd[149]: Successfully forked off '(direxec)' as PID 152.
[ 17.954022] systemd[149]: Successfully forked off '(direxec)' as PID 153.
[ 17.962884] systemd[149]: Successfully forked off '(direxec)' as PID 154.
[ 17.971594] systemd[149]: Successfully forked off '(direxec)' as PID 155.
[ 17.980465] systemd[149]: Successfully forked off '(direxec)' as PID 156.
[ 17.989195] systemd[149]: Successfully forked off '(direxec)' as PID 157.
[ 17.997838] systemd[149]: Successfully forked off '(direxec)' as PID 158.
[ 18.085063] systemd-fstab-generator[151]: Parsing /etc/fstab...
[ 18.091393] systemd-rc-local-generator[155]: /etc/rc.local does not exist, skip
[ 18.096950] systemd-getty-generator[152]: Automatically adding serial getty for
[ 18.107269] systemd-hibernate-resume-generator[154]: Not running in an initrd,
[ 18.144809] systemd-gpt-auto-generator[153]: Neither root nor /usr file system
[ 18.157637] systemd[149]: /lib/systemd/system-generators/systemd-getty-generato
[ 18.166809] systemd-fstab-generator[151]: Found entry what=/dev/root where=/ ty
[ 18.172686] systemd[149]: /lib/systemd/system-generators/systemd-rc-local-gener
[ 18.187347] systemd[149]: /lib/systemd/system-generators/systemd-hibernate-resu
[ 18.194938] systemd-fstab-generator[151]: Found entry what=proc where=/proc typ
[ 18.197048] systemd[149]: /lib/systemd/system-generators/systemd-debug-generato
[ 18.208675] systemd-fstab-generator[151]: Found entry what=devpts where=/dev/pt
[ 18.216614] systemd[149]: /lib/systemd/system-generators/systemd-run-generator
[ 18.229273] systemd-fstab-generator[151]: Found entry what=usbdevfs where=/proc
[ 18.250653] systemd-fstab-generator[151]: Found entry what=tmpfs where=/run typ
[ 18.264084] systemd-fstab-generator[151]: Found entry what=tmpfs where=/var/vol
[ 18.279453] systemd-fstab-generator[151]: Found entry what=tmpfs where=/media/r
[ 18.299170] systemd-sysv-generator[158]: Native unit for rpcbind.service alread
[ 18.304148] systemd-sysv-generator[158]: Native unit for gplv3-notice.service a
[ 18.333269] systemd-sysv-generator[158]: Native unit for networking.service alr
[ 18.348164] systemd-sysv-generator[158]: Native unit for vsftpd.service already
[ 18.359800] systemd-sysv-generator[158]: Cannot find unit sysrepo.service.
[ 18.372243] systemd-sysv-generator[158]: Native unit for atd.service already ex
[ 18.386537] systemd-sysv-generator[158]: Native unit for snmpd.service already
[ 18.401211] systemd-sysv-generator[158]: Native unit for watchdog.service alrea
[ 18.415106] systemd-sysv-generator[158]: Native unit for alsa-state.service alr
[ 18.427531] systemd-sysv-generator[158]: Cannot find unit dropbear.service.
[ 18.436872] systemd-sysv-generator[158]: Cannot find unit netperf.service.
[ 18.448744] systemd-sysv-generator[158]: Native unit for irqbalanced.service al
[ 18.463835] systemd-sysv-generator[158]: Native unit for ebtables.service alrea
[ 18.475222] systemd-sysv-generator[158]: Native unit for hwclock.service alread
[ 18.488802] systemd-sysv-generator[158]: Native unit for bt-enable.service alre
[ 18.499805] systemd-sysv-generator[158]: Cannot find unit qwindow.service.
[ 18.511050] systemd-sysv-generator[158]: Native unit for crond.service already
[ 18.515170] systemd-sysv-generator[158]: Native unit for run-postinsts.service
[ 18.535036] systemd-sysv-generator[158]: Cannot find unit docker.init.service.
[ 18.544463] systemd-sysv-generator[158]: Cannot find unit netopeer2-server.serv
[ 18.556604] systemd-sysv-generator[158]: Native unit for hostapd.service alread
[ 18.569951] systemd-sysv-generator[158]: Native unit for startwlansta.service a
[ 18.581523] systemd-sysv-generator[158]: Cannot find unit syslog.service.
[ 18.590441] systemd-sysv-generator[158]: Cannot find unit resize_rootfs.service
[ 18.601984] systemd-sysv-generator[158]: Native unit for avahi-daemon.service a
[ 18.613490] systemd-sysv-generator[158]: Native unit for modutils.service alrea
[ 18.627098] systemd-sysv-generator[158]: Native unit for matrix-gui-2.0.service
[ 18.639823] systemd-sysv-generator[158]: Native unit for systemd-udevd.service
[ 18.651157] systemd-sysv-generator[158]: Cannot find unit thermal-zone-init.ser
[ 18.663314] systemd-sysv-generator[158]: Native unit for lighttpd.service alrea
[ 18.678593] systemd-sysv-generator[158]: Native unit for bluetooth.service alre
[ 18.707002] systemd-sysv-generator[158]: Native unit for dbus-1.service already
[ 18.717801] systemd-sysv-generator[158]: Cannot find unit telnetd.service.
[ 18.727055] systemd-sysv-generator[158]: Cannot find unit inetd.busybox.service
[ 18.736406] systemd-sysv-generator[158]: Native unit for nfscommon.service alre
[ 18.762209] systemd-sysv-generator[158]: Native unit for startwlanap.service al
[ 18.778909] systemd-sysv-generator[158]: Ignoring S25watchdog symlink in rc1.d,
[ 18.810636] systemd-sysv-generator[158]: Ignoring S99gplv3-notice symlink in rc
[ 18.821570] systemd-sysv-generator[158]: Ignoring S20bluetooth symlink in rc2.d
[ 18.831924] systemd-sysv-generator[158]: Ignoring S20atd symlink in rc2.d, not
[ 18.841236] systemd-sysv-generator[158]: Ignoring S01networking symlink in rc2.
[ 18.851806] systemd-sysv-generator[158]: Ignoring S21avahi-daemon symlink in rc
[ 18.862791] systemd-sysv-generator[158]: Ignoring S25watchdog symlink in rc2.d,
[ 18.872988] systemd-sysv-generator[158]: Ignoring S12rpcbind symlink in rc2.d,
[ 18.882993] systemd-sysv-generator[158]: Ignoring S56kdump symlink in rc2.d, no
[ 18.892650] systemd-sysv-generator[158]: Ignoring S90snmpd symlink in rc2.d, no
[ 18.902312] systemd-sysv-generator[158]: Ignoring S19nfscommon symlink in rc2.d
[ 18.912661] systemd-sysv-generator[158]: Ignoring S70lighttpd symlink in rc2.d,
[ 18.922864] systemd-sysv-generator[158]: Ignoring S99bt-enable.sh symlink in rc
[ 18.922882] systemd-sysv-generator[158]: Ignoring S20hostapd symlink in rc2.d,
[ 18.922966] systemd-sysv-generator[158]: Ignoring S80vsftpd symlink in rc2.d, n
[ 18.922986] systemd-sysv-generator[158]: Ignoring S20hwclock.sh symlink in rc2.
[ 18.923018] systemd-sysv-generator[158]: Ignoring S02dbus-1 symlink in rc2.d, n
[ 18.923042] systemd-sysv-generator[158]: Ignoring S90crond symlink in rc2.d, no
[ 18.923059] systemd-sysv-generator[158]: Ignoring S20irqbalanced symlink in rc2
[ 18.928724] systemd-sysv-generator[158]: Ignoring S99gplv3-notice symlink in rc
[ 19.009668] systemd-sysv-generator[158]: Ignoring S20bluetooth symlink in rc3.d
[ 19.020019] systemd-sysv-generator[158]: Ignoring S20atd symlink in rc3.d, not
[ 19.029354] systemd-sysv-generator[158]: Ignoring S01networking symlink in rc3.
[ 19.039888] systemd-sysv-generator[158]: Ignoring S21avahi-daemon symlink in rc
[ 19.050767] systemd-sysv-generator[158]: Ignoring S25watchdog symlink in rc3.d,
[ 19.060948] systemd-sysv-generator[158]: Ignoring S12rpcbind symlink in rc3.d,
[ 19.070952] systemd-sysv-generator[158]: Ignoring S56kdump symlink in rc3.d, no
[ 19.080609] systemd-sysv-generator[158]: Ignoring S90snmpd symlink in rc3.d, no
[ 19.090270] systemd-sysv-generator[158]: Ignoring S19nfscommon symlink in rc3.d
[ 19.100619] systemd-sysv-generator[158]: Ignoring S70lighttpd symlink in rc3.d,
[ 19.110804] systemd-sysv-generator[158]: Ignoring S99bt-enable.sh symlink in rc
[ 19.121418] systemd-sysv-generator[158]: Ignoring S20hostapd symlink in rc3.d,
[ 19.131434] systemd-sysv-generator[158]: Ignoring S80vsftpd symlink in rc3.d, n
[ 19.131453] systemd-sysv-generator[158]: Ignoring S20hwclock.sh symlink in rc3.
[ 19.131557] systemd-sysv-generator[158]: Ignoring S02dbus-1 symlink in rc3.d, n
[ 19.131584] systemd-sysv-generator[158]: Ignoring S90crond symlink in rc3.d, no
[ 19.131601] systemd-sysv-generator[158]: Ignoring S20irqbalanced symlink in rc3
[ 19.136744] systemd-sysv-generator[158]: Ignoring S99gplv3-notice symlink in rc
[ 19.197540] systemd-sysv-generator[158]: Ignoring S20bluetooth symlink in rc4.d
[ 19.207895] systemd-sysv-generator[158]: Ignoring S20atd symlink in rc4.d, not
[ 19.217207] systemd-sysv-generator[158]: Ignoring S01networking symlink in rc4.
[ 19.227730] systemd-sysv-generator[158]: Ignoring S21avahi-daemon symlink in rc
[ 19.238608] systemd-sysv-generator[158]: Ignoring S25watchdog symlink in rc4.d,
[ 19.248788] systemd-sysv-generator[158]: Ignoring S12rpcbind symlink in rc4.d,
[ 19.258808] systemd-sysv-generator[158]: Ignoring S56kdump symlink in rc4.d, no
[ 19.268588] systemd-sysv-generator[158]: Ignoring S90snmpd symlink in rc4.d, no
[ 19.278307] systemd-sysv-generator[158]: Ignoring S19nfscommon symlink in rc4.d
[ 19.288666] systemd-sysv-generator[158]: Ignoring S70lighttpd symlink in rc4.d,
[ 19.298847] systemd-sysv-generator[158]: Ignoring S99bt-enable.sh symlink in rc
[ 19.309458] systemd-sysv-generator[158]: Ignoring S20hostapd symlink in rc4.d,
[ 19.319469] systemd-sysv-generator[158]: Ignoring S80vsftpd symlink in rc4.d, n
[ 19.329300] systemd-sysv-generator[158]: Ignoring S20hwclock.sh symlink in rc4.
[ 19.339630] systemd-sysv-generator[158]: Ignoring S90crond symlink in rc4.d, no
[ 19.339670] systemd-sysv-generator[158]: Ignoring S20irqbalanced symlink in rc4
[ 19.345734] systemd-sysv-generator[158]: Ignoring S99gplv3-notice symlink in rc
[ 19.375689] systemd-sysv-generator[158]: Ignoring S20bluetooth symlink in rc5.d
[ 19.386149] systemd-sysv-generator[158]: Ignoring S20atd symlink in rc5.d, not
[ 19.395463] systemd-sysv-generator[158]: Ignoring S01networking symlink in rc5.
[ 19.405989] systemd-sysv-generator[158]: Ignoring S21avahi-daemon symlink in rc
[ 19.416866] systemd-sysv-generator[158]: Ignoring S25watchdog symlink in rc5.d,
[ 19.427044] systemd-sysv-generator[158]: Ignoring S12rpcbind symlink in rc5.d,
[ 19.437053] systemd-sysv-generator[158]: Ignoring S56kdump symlink in rc5.d, no
[ 19.446711] systemd-sysv-generator[158]: Ignoring S90snmpd symlink in rc5.d, no
[ 19.456373] systemd-sysv-generator[158]: Ignoring S19nfscommon symlink in rc5.d
[ 19.466724] systemd-sysv-generator[158]: Ignoring S70lighttpd symlink in rc5.d,
[ 19.476906] systemd-sysv-generator[158]: Ignoring S99bt-enable.sh symlink in rc
[ 19.487530] systemd-sysv-generator[158]: Ignoring S20hostapd symlink in rc5.d,
[ 19.497548] systemd-sysv-generator[158]: Ignoring S80vsftpd symlink in rc5.d, n
[ 19.507380] systemd-sysv-generator[158]: Ignoring S20hwclock.sh symlink in rc5.
[ 19.517662] systemd-sysv-generator[158]: Ignoring S02dbus-1 symlink in rc5.d, n
[ 19.527500] systemd-sysv-generator[158]: Ignoring S90crond symlink in rc5.d, no
[ 19.537160] systemd-sysv-generator[158]: Ignoring S20irqbalanced symlink in rc5
[ 19.550202] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/resize
[ 19.554332] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/dropbe
[ 19.570310] systemd-sysv-generator[158]: Adding Provides: alias 'sshd.service'
[ 19.582174] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/docker
[ 19.591626] systemd-sysv-generator[158]: Adding Provides: alias 'docker.service
[ 19.603718] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/sysrep
[ 19.614329] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/qwindo
[ 19.624811] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/syslog
[ 19.635955] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/inetd.
[ 19.646816] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/telnet
[ 19.657692] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/netper
[ 19.668260] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/netope
[ 19.679192] systemd-sysv-generator[158]: Loading SysV script /etc/init.d/therma
[ 19.693551] systemd[149]: /lib/systemd/system-generators/systemd-sysv-generator
[ 19.702118] systemd[149]: /lib/systemd/system-generators/systemd-gpt-auto-gener
[ 19.710824] systemd[149]: /lib/systemd/system-generators/systemd-fstab-generato
[ 19.719219] systemd[149]: /lib/systemd/system-generators/systemd-system-update-
[ 19.729157] systemd[1]: (sd-executor) succeeded.
[ 19.734011] systemd[1]: Looking for unit files in (higher priority first):
[ 19.740904] systemd[1]: /etc/systemd/system.control
[ 19.745873] systemd[1]: /run/systemd/system.control
[ 19.750840] systemd[1]: /run/systemd/transient
[ 19.755373] systemd[1]: /run/systemd/generator.early
[ 19.760426] systemd[1]: /etc/systemd/system
[ 19.764699] systemd[1]: /etc/systemd/system.attached
[ 19.769752] systemd[1]: /run/systemd/system
[ 19.774025] systemd[1]: /run/systemd/system.attached
[ 19.779085] systemd[1]: /run/systemd/generator
[ 19.783618] systemd[1]: /usr/local/lib/systemd/system
[ 19.788763] systemd[1]: /lib/systemd/system
[ 19.793036] systemd[1]: /usr/lib/systemd/system
[ 19.797655] systemd[1]: /run/systemd/generator.late
[ 19.865494] systemd[1]: unit_file_build_name_map: alias: /etc/systemd/system/db
[ 19.876660] systemd[1]: unit_file_build_name_map: linked unit file: /etc/system
[ 19.887508] systemd[1]: unit_file_build_name_map: normal unit file: /etc/system
[ 19.897558] systemd[1]: unit_file_build_name_map: linked unit file: /etc/system
[ 19.908268] systemd[1]: unit_file_build_name_map: normal unit file: /etc/system
[ 19.918676] systemd[1]: unit_file_build_name_map: linked unit file: /etc/system
[ 19.929644] systemd[1]: unit_file_build_name_map: linked unit file: /etc/system
[ 19.954051] systemd[1]: unit_file_build_name_map: alias: /etc/systemd/system/db
[ 19.956189] systemd[1]: unit_file_build_name_map: alias: /etc/systemd/system/db
[ 19.956414] systemd[1]: unit_file_build_name_map: linked unit file: /etc/system
[ 19.957653] systemd[1]: unit_file_build_name_map: alias: /etc/systemd/system/db
[ 19.957720] systemd[1]: unit_file_build_name_map: normal unit file: /etc/system
[ 19.984660] systemd[1]: unit_file_build_name_map: alias: /etc/systemd/system/de
[ 20.029873] systemd[1]: unit_file_build_name_map: alias: /etc/systemd/system/ct
[ 20.042345] systemd[1]: unit_file_build_name_map: alias: /etc/systemd/system/db
[ 20.055522] systemd[1]: unit_file_build_name_map: normal unit file: /run/system
[ 20.065203] systemd[1]: unit_file_build_name_map: normal unit file: /run/system
[ 20.075127] systemd[1]: unit_file_build_name_map: normal unit file: /run/system
[ 20.085057] systemd[1]: unit_file_build_name_map: normal unit file: /run/system
[ 20.159707] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.159746] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.159769] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.159789] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.159810] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.159831] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.159928] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.159951] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.159972] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.159992] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.160014] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.160037] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.160058] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.160161] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.160180] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.160199] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.161767] systemd[1]: unit_file_build_name_map: alias: /lib/systemd/system/ru
[ 20.171985] systemd[1]: unit_file_build_name_map: alias: /lib/systemd/system/ru
[ 20.340881] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.353046] systemd[1]: unit_file_build_name_map: alias: /lib/systemd/system/db
[ 20.365664] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.376028] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.386387] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.395700] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.405709] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.415553] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.425648] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.435486] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.444717] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.455420] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.466892] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.478121] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.487619] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.497041] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.507142] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.517765] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.527514] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.538480] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.547534] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.556675] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.566595] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.576599] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.586115] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.596298] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.607265] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.616579] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.626507] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.635654] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.646182] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.656190] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.666636] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.675865] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.685362] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.694674] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.705787] systemd[1]: unit_file_build_name_map: alias: /lib/systemd/system/ru
[ 20.716176] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.726200] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.738431] systemd[1]: unit_file_build_name_map: alias: /lib/systemd/system/db
[ 20.751550] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.760697] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.770969] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.780804] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.791164] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.800827] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.810582] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.820332] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.830510] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.840122] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.850845] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.860948] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.870177] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.879235] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.889158] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.901978] systemd[1]: unit_file_build_name_map: alias: /lib/systemd/system/ru
[ 20.912531] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.923066] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.933349] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.943547] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.953012] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.963195] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.973386] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.983393] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 20.992878] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.001931] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.011334] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.020647] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.030834] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.041368] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.050686] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.060084] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.069397] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.078883] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.089407] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.099846] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.108998] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.118310] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.127456] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.137290] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.146689] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.156871] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.166799] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.176461] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.186036] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.197255] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.206482] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.215973] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.227209] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.236956] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.247744] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.256884] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.266720] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.276206] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.286480] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.295967] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.305717] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.315213] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.324352] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.333839] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.343932] systemd[1]: unit_file_build_name_map: normal unit file: /lib/system
[ 21.591269] systemd[1]: var-log.mount: Failed to load configuration: No such fi
[ 21.600109] systemd[1]: var-log-wtmp.mount: Failed to load configuration: No su
[ 21.609773] systemd[1]: auditd.service: Failed to load configuration: No such f
[ 21.636595] systemd[1]: /etc/systemd/system/systemd-udevd.service:22: Support f
[ 21.651488] systemd[1]: /etc/systemd/system/systemd-udevd.service:23: Support f
[ 21.666281] systemd[1]: /etc/systemd/system/systemd-udevd.service:24: Support f
[ 21.680753] systemd[1]: /etc/systemd/system/systemd-udevd.service:25: Support f
[ 21.694967] systemd[1]: /etc/systemd/system/systemd-udevd.service:26: Support f
[ 21.709157] systemd[1]: /etc/systemd/system/systemd-udevd.service:27: Support f
[ 21.723770] systemd[1]: /etc/systemd/system/systemd-udevd.service:28: Support f
[ 21.738582] systemd[1]: /etc/systemd/system/systemd-udevd.service:29: Support f
[ 21.771109] systemd[1]: run-udev.mount: Failed to load configuration: No such f
[ 21.779955] systemd[1]: run-udev-control.mount: Failed to load configuration: N
[ 21.804832] systemd[1]: unit_file_find_fragment: systemd-timesyncd.service has
[ 21.819556] systemd[1]: /lib/systemd/system/systemd-timesyncd.service:17: Suppo
[ 21.834208] systemd[1]: /lib/systemd/system/systemd-timesyncd.service:18: Suppo
[ 21.849451] systemd[1]: /lib/systemd/system/systemd-timesyncd.service:31: Suppo
[ 21.864596] systemd[1]: /lib/systemd/system/systemd-timesyncd.service:32: Suppo
[ 21.879299] systemd[1]: /lib/systemd/system/systemd-timesyncd.service:33: Suppo
[ 21.893821] systemd[1]: /lib/systemd/system/systemd-timesyncd.service:34: Suppo
[ 21.908405] systemd[1]: /lib/systemd/system/systemd-timesyncd.service:37: Suppo
[ 21.923535] systemd[1]: /lib/systemd/system/systemd-timesyncd.service:38: Suppo
[ 21.938499] systemd[1]: /lib/systemd/system/systemd-timesyncd.service:39: Suppo
[ 21.955280] systemd[1]: var-tmp.mount: Failed to load configuration: No such fi
[ 21.964080] systemd[1]: var-lib.mount: Failed to load configuration: No such fi
[ 21.972788] systemd[1]: var-lib-systemd.mount: Failed to load configuration: No
[ 21.982212] systemd[1]: var-lib-systemd-timesync.mount: Failed to load configur
[ 21.992389] systemd[1]: run-systemd-timesync.mount: Failed to load configuratio
[ 22.044644] systemd[1]: var-lib-systemd-random\x2dseed.mount: Failed to load co
[ 22.072711] systemd[1]: var-log-journal.mount: Failed to load configuration: No
[ 22.101254] systemd[1]: run-systemd-ask\x2dpassword.mount: Failed to load confi
[ 22.115466] systemd[1]: /lib/systemd/system/systemd-ask-password-console.servic
[ 22.161330] systemd[1]: unit_file_find_fragment: rescue.target has alias runlev
[ 22.185704] systemd[1]: unit_file_find_fragment: runlevel5.target has alias gra
[ 22.239487] systemd[1]: unit_file_find_fragment: systemd-networkd.service has a
[ 22.253972] systemd[1]: /lib/systemd/system/systemd-networkd.service:17: Suppor
[ 22.268467] systemd[1]: /lib/systemd/system/systemd-networkd.service:18: Suppor
[ 22.283595] systemd[1]: /lib/systemd/system/systemd-networkd.service:27: Suppor
[ 22.298680] systemd[1]: /lib/systemd/system/systemd-networkd.service:28: Suppor
[ 22.313291] systemd[1]: /lib/systemd/system/systemd-networkd.service:29: Suppor
[ 22.327731] systemd[1]: /lib/systemd/system/systemd-networkd.service:30: Suppor
[ 22.342221] systemd[1]: /lib/systemd/system/systemd-networkd.service:33: Suppor
[ 22.357265] systemd[1]: /lib/systemd/system/systemd-networkd.service:34: Suppor
[ 22.372144] systemd[1]: /lib/systemd/system/systemd-networkd.service:35: Suppor
[ 22.388587] systemd[1]: run-systemd-netif.mount: Failed to load configuration:
[ 22.415454] systemd[1]: unit_file_find_fragment: dropbear.service has alias ssh
[ 22.425191] systemd[1]: networking.target: Failed to load configuration: No suc
[ 22.435712] systemd[1]: cgconfig.service: Failed to load configuration: No such
[ 22.444770] systemd[1]: display-manager.service: Failed to load configuration:
[ 22.454388] systemd[1]: unit_file_find_fragment: multi-user.target has alias ru
[ 22.463103] systemd[1]: unit_file_find_fragment: multi-user.target has alias ru
[ 22.471809] systemd[1]: unit_file_find_fragment: multi-user.target has alias ru
[ 22.480358] systemd[1]: unit_file_find_fragment: multi-user.target has alias de
[ 22.567731] systemd[1]: unit_file_find_fragment: systemd-resolved.service has a
[ 22.582317] systemd[1]: /lib/systemd/system/systemd-resolved.service:18: Suppor
[ 22.596743] systemd[1]: /lib/systemd/system/systemd-resolved.service:19: Suppor
[ 22.611838] systemd[1]: /lib/systemd/system/systemd-resolved.service:31: Suppor
[ 22.626932] systemd[1]: /lib/systemd/system/systemd-resolved.service:32: Suppor
[ 22.641562] systemd[1]: /lib/systemd/system/systemd-resolved.service:33: Suppor
[ 22.656004] systemd[1]: /lib/systemd/system/systemd-resolved.service:34: Suppor
[ 22.670498] systemd[1]: /lib/systemd/system/systemd-resolved.service:37: Suppor
[ 22.685542] systemd[1]: /lib/systemd/system/systemd-resolved.service:38: Suppor
[ 22.700412] systemd[1]: /lib/systemd/system/systemd-resolved.service:39: Suppor
[ 22.716879] systemd[1]: run-systemd-resolve.mount: Failed to load configuration
[ 22.726648] systemd[1]: unit_file_find_fragment: systemd-logind.service has ali
[ 22.741542] systemd[1]: /lib/systemd/system/systemd-logind.service:26: Support
[ 22.755801] systemd[1]: /lib/systemd/system/systemd-logind.service:27: Support
[ 22.770790] systemd[1]: /lib/systemd/system/systemd-logind.service:39: Support
[ 22.785687] systemd[1]: /lib/systemd/system/systemd-logind.service:40: Support
[ 22.800154] systemd[1]: /lib/systemd/system/systemd-logind.service:41: Support
[ 22.814571] systemd[1]: /lib/systemd/system/systemd-logind.service:42: Support
[ 22.828975] systemd[1]: /lib/systemd/system/systemd-logind.service:46: Support
[ 22.843866] systemd[1]: /lib/systemd/system/systemd-logind.service:47: Support
[ 22.843946] systemd[1]: /lib/systemd/system/systemd-logind.service:48: Support
[ 22.846847] systemd[1]: run-systemd-sessions.mount: Failed to load configuratio
[ 22.846947] systemd[1]: run-systemd-seats.mount: Failed to load configuration:
[ 22.847028] systemd[1]: run-systemd-inhibit.mount: Failed to load configuration
[ 22.847135] systemd[1]: var-lib-systemd-linger.mount: Failed to load configurat
[ 22.847215] systemd[1]: run-systemd-users.mount: Failed to load configuration:
[ 22.847296] systemd[1]: run-systemd-shutdown.mount: Failed to load configuratio
[ 22.853059] systemd[1]: run-dbus.mount: Failed to load configuration: No such f
[ 22.944592] systemd[1]: run-dbus-system_bus_socket.mount: Failed to load config
[ 22.971279] systemd[1]: /lib/systemd/system/systemd-ask-password-wall.service:1
[ 23.017717] systemd[1]: syslog.target: Failed to load configuration: No such fi
[ 23.033214] systemd[1]: /lib/systemd/system/startwlansta.service:7: Unknown key
[ 23.049677] systemd[1]: /lib/systemd/system/startwlanap.service:7: Unknown key
[ 23.074656] systemd[1]: var-run.mount: Failed to load configuration: No such fi
[ 23.083476] systemd[1]: var-run-rpcbind.mount: Failed to load configuration: No
[ 23.100322] systemd[1]: run-rpcbind.sock.mount: Failed to load configuration: N
[ 23.126659] systemd[1]: weston.service: Failed to load configuration: No such f
[ 23.149243] systemd[1]: /lib/systemd/system/irqbalanced.service:6: Unknown key
[ 23.161054] systemd[1]: /lib/systemd/system/irqbalanced.service:14: Support for
[ 23.176666] systemd[1]: run-irqbalance.mount: Failed to load configuration: No
[ 23.199322] systemd[1]: etc.mount: Failed to load configuration: No such file o
[ 23.207757] systemd[1]: etc-init.d.mount: Failed to load configuration: No such
[ 23.224065] systemd[1]: Skipping overridden file '/run/systemd/generator/getty.
[ 23.254384] systemd[1]: plymouth-quit-wait.service: Failed to load configuratio
[ 23.269736] systemd[1]: unit_file_find_fragment: getty@tty1.service has alias a
[ 23.292917] systemd[1]: firewalld.service: Failed to load configuration: No suc
[ 23.304782] systemd[1]: /lib/systemd/system/docker.socket:6: ListenStream= refeunit file accordingly.
[ 23.325543] systemd[1]: run-docker.sock.mount: Failed to load configuration: No
[ 23.392027] systemd[1]: unit_file_find_fragment: avahi-daemon.service has alias
[ 23.407861] systemd[1]: connman.service: Failed to load configuration: No such
[ 23.421871] systemd[1]: run-avahi\x2ddaemon.mount: Failed to load configuration
[ 23.431693] systemd[1]: run-avahi\x2ddaemon-socket.mount: Failed to load config
[ 23.572470] systemd[1]: var-lib-systemd-timers.mount: Failed to load configurat
[ 23.585599] systemd[1]: /lib/systemd/system/logrotate.service:15: Support for o
[ 23.600120] systemd[1]: /lib/systemd/system/logrotate.service:21: Support for o
[ 23.680118] systemd[1]: cryptsetup.target: Failed to load configuration: No suc
[ 23.693641] systemd[1]: plymouth-start.service: Failed to load configuration: N
[ 23.708639] systemd[1]: sys.mount: Failed to load configuration: No such file o
[ 23.717137] systemd[1]: sys-kernel.mount: Failed to load configuration: No such
[ 23.739070] systemd[1]: sys-fs.mount: Failed to load configuration: No such fil
[ 23.747764] systemd[1]: sys-fs-fuse.mount: Failed to load configuration: No suc
[ 23.816995] systemd[1]: run-systemd-journal-syslog.mount: Failed to load config
[ 23.839391] systemd[1]: run-systemd-journal-dev\x2dlog.mount: Failed to load co
[ 23.886910] systemd[1]: run-initctl.mount: Failed to load configuration: No suc
[ 23.900055] systemd[1]: /lib/systemd/system/systemd-initctl.service:11: Support
[ 23.922319] systemd[1]: run-systemd-coredump.mount: Failed to load configuratio
[ 23.937745] systemd[1]: media.mount: Failed to load configuration: No such file
[ 24.007356] systemd[1]: Using notification socket /run/systemd/notify
[ 24.014270] systemd[1]: Successfully created private D-Bus server.
[ 24.020521] systemd[1]: Invoking unit coldplug() handlers…
[ 24.026276] systemd[1]: init.scope changed dead -> running
[ 24.031906] systemd[1]: -.mount: Changed dead -> mounted
[ 24.037482] systemd[1]: system.slice changed dead -> active
[ 24.043226] systemd[1]: -.slice changed dead -> active
[ 24.048463] systemd[1]: Invoking unit catchup() handlers…
[ 24.054145] systemd[1]: Activating default unit: default.target
[ 24.060098] systemd[1]: multi-user.target: Trying to enqueue job multi-user.tar
[ 24.068915] systemd[1]: Added job multi-user.target/start to transaction.
[ 24.075711] systemd[1]: Pulling in basic.target/start from multi-user.target/st
[ 24.083282] systemd[1]: Added job basic.target/start to transaction.
[ 24.089642] systemd[1]: Pulling in sysinit.target/start from basic.target/start
[ 24.096963] systemd[1]: Added job sysinit.target/start to transaction.
[ 24.103496] systemd[1]: Pulling in run-postinsts.service/start from sysinit.tar
[ 24.111589] systemd[1]: Added job run-postinsts.service/start to transaction.
[ 24.118729] systemd[1]: Pulling in system.slice/start from run-postinsts.servic
[ 24.126654] systemd[1]: Added job system.slice/start to transaction.
[ 24.133012] systemd[1]: Pulling in -.slice/start from system.slice/start
[ 24.139716] systemd[1]: Added job -.slice/start to transaction.
[ 24.145649] systemd[1]: Pulling in systemd-machine-id-commit.service/start from
[ 24.154802] systemd[1]: Added job systemd-machine-id-commit.service/start to tr
[ 24.163009] systemd[1]: Pulling in system.slice/start from systemd-machine-id-c
[ 24.171982] systemd[1]: Pulling in shutdown.target/stop from systemd-machine-id
[ 24.181150] systemd[1]: Added job shutdown.target/stop to transaction.
[ 24.187691] systemd[1]: Pulling in sys-fs-fuse-connections.mount/start from sys
[ 24.196478] systemd[1]: Added job sys-fs-fuse-connections.mount/start to transa
[ 24.204319] systemd[1]: Pulling in -.mount/start from sys-fs-fuse-connections.m
[ 24.212500] systemd[1]: Added job -.mount/start to transaction.
[ 24.218424] systemd[1]: Pulling in system.slice/start from -.mount/start
[ 24.225130] systemd[1]: Pulling in system.slice/start from sys-fs-fuse-connecti
[ 24.233744] systemd[1]: Pulling in ldconfig.service/start from sysinit.target/s
[ 24.241406] systemd[1]: Added job ldconfig.service/start to transaction.
[ 24.248117] systemd[1]: Pulling in system.slice/start from ldconfig.service/sta
[ 24.255609] systemd[1]: Pulling in shutdown.target/stop from ldconfig.service/s
[ 24.263271] systemd[1]: Pulling in systemd-hwdb-update.service/start from sysin
[ 24.271882] systemd[1]: Added job systemd-hwdb-update.service/start to transact
[ 24.279542] systemd[1]: Pulling in system.slice/start from systemd-hwdb-update.
[ 24.287981] systemd[1]: Pulling in shutdown.target/stop from systemd-hwdb-updat
[ 24.296595] systemd[1]: Pulling in systemd-update-done.service/start from sysin
[ 24.305223] systemd[1]: Added job systemd-update-done.service/start to transact
[ 24.312888] systemd[1]: Pulling in system.slice/start from systemd-update-done.
[ 24.321340] systemd[1]: Pulling in shutdown.target/stop from systemd-update-don
[ 24.329953] systemd[1]: Pulling in systemd-udevd.service/start from sysinit.tar
[ 24.338045] systemd[1]: Added job systemd-udevd.service/start to transaction.
[ 24.345183] systemd[1]: Pulling in system.slice/start from systemd-udevd.servic
[ 24.353103] systemd[1]: Pulling in systemd-udevd-control.socket/start from syst
[ 24.362414] systemd[1]: Added job systemd-udevd-control.socket/start to transac
[ 24.370165] systemd[1]: Pulling in -.mount/start from systemd-udevd-control.soc
[ 24.378257] systemd[1]: Pulling in system.slice/start from systemd-udevd-contro
[ 24.386785] systemd[1]: Pulling in initrd-udevadm-cleanup-db.service/stop from
[ 24.397046] systemd[1]: Added job initrd-udevadm-cleanup-db.service/stop to tra
[ 24.405139] systemd[1]: Pulling in systemd-udevd-kernel.socket/start from syste
[ 24.414358] systemd[1]: Added job systemd-udevd-kernel.socket/start to transact
[ 24.422017] systemd[1]: Pulling in system.slice/start from systemd-udevd-kernel
[ 24.430462] systemd[1]: Pulling in initrd-udevadm-cleanup-db.service/stop from
[ 24.440637] systemd[1]: Pulling in initrd-udevadm-cleanup-db.service/stop from
[ 24.450291] systemd[1]: Pulling in systemd-journal-catalog-update.service/start
[ 24.459857] systemd[1]: Added job systemd-journal-catalog-update.service/start
[ 24.468472] systemd[1]: Pulling in system.slice/start from systemd-journal-cata
[ 24.477868] systemd[1]: Pulling in shutdown.target/stop from systemd-journal-ca
[ 24.487435] systemd[1]: Pulling in systemd-tmpfiles-setup-dev.service/start fro
[ 24.496658] systemd[1]: Added job systemd-tmpfiles-setup-dev.service/start to t
[ 24.504924] systemd[1]: Pulling in system.slice/start from systemd-tmpfiles-set
[ 24.513971] systemd[1]: Pulling in shutdown.target/stop from systemd-tmpfiles-s
[ 24.523190] systemd[1]: Pulling in swap.target/start from sysinit.target/start
[ 24.530417] systemd[1]: Added job swap.target/start to transaction.
[ 24.536706] systemd[1]: Pulling in shutdown.target/stop from swap.target/start
[ 24.543932] systemd[1]: Pulling in sys-kernel-debug.mount/start from sysinit.ta
[ 24.552111] systemd[1]: Added job sys-kernel-debug.mount/start to transaction.
[ 24.559341] systemd[1]: Pulling in -.mount/start from sys-kernel-debug.mount/st
[ 24.566914] systemd[1]: Pulling in system.slice/start from sys-kernel-debug.mou
[ 24.574925] systemd[1]: Pulling in systemd-journal-flush.service/start from sys
[ 24.583711] systemd[1]: Added job systemd-journal-flush.service/start to transa
[ 24.591544] systemd[1]: Pulling in -.mount/start from systemd-journal-flush.ser
[ 24.599723] systemd[1]: Pulling in systemd-journald.service/start from systemd-
[ 24.609375] systemd[1]: Added job systemd-journald.service/start to transaction
[ 24.616774] systemd[1]: Pulling in systemd-journald.socket/start from systemd-j
[ 24.625913] systemd[1]: Added job systemd-journald.socket/start to transaction.
[ 24.640549] random: systemd: uninitialized urandom read (16 bytes read)
[ OK ] Created slice system-getty.slice.
[ 24.669610] random: systemd: uninitialized urandom read (16 bytes read)
[ OK ] Created slice system-serial\x2dgetty.slice.
[ 24.697618] random: systemd: uninitialized urandom read (16 bytes read)
[ OK ] Created slice system-syslog\x2dng.slice.
[ OK ] Created slice User and Session Slice.
[ OK ] Started Dispatch Password …ts to Console Directory Watch.
[ OK ] Started Forward Password R…uests to Wall Directory Watch.
[ OK ] Reached target Paths.
[ OK ] Reached target Remote File Systems.
[ OK ] Reached target Slices.
[ OK ] Reached target Swap.
[ OK ] Listening on RPCbind Server Activation Socket.
[ OK ] Reached target RPC Port Mapper.
[ OK ] Listening on Process Core Dump Socket.
[ OK ] Listening on initctl Compatibility Named Pipe.
[ OK ] Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket.
[ OK ] Listening on Network Service Netlink Socket.
[ OK ] Listening on udev Control Socket.
[ OK ] Listening on udev Kernel Socket.
Mounting Huge Pages File System...
Mounting POSIX Message Queue File System...
Mounting Kernel Debug File System...
Mounting Temporary Directory (/tmp)...
Starting Create list of st…odes for the current kernel...
Starting RPC Bind...
Starting Journal Service...
Starting Load Kernel Modules...
Starting Remount Root and Kernel File Systems...
Starting udev Coldplug all Devices...
[FAILED] Failed to mount Huge Pages File System.
See 'systemctl status dev-hugepages.mount' for details.
[FAILED] Failed to mount POSIX Message Queue File System.
See 'systemctl status dev-mqueue.mount' for details.
[FAILED] Failed to mount Kernel Debug File System.
See 'systemctl status sys-kernel-debug.mount' for details.
[FAILED] Failed to mount Temporary Directory (/tmp).
See 'systemctl status tmp.mount' for details.
[DEPEND] Dependency failed for Network Time Synchronization.
[DEPEND] Dependency failed for Login Service.
[DEPEND] Dependency failed for Network Name Resolution.
[ OK ] Started Create list of sta… nodes for the current kernel.
[ 25.754673] random: systemd: uninitialized urandom read (16 bytes read)
[ OK ] Reached target Host and Network Name Lookups.
[ 25.777751] random: systemd: uninitialized urandom read (16 bytes read)
[ OK ] Reached target System Time Set.
[ 25.801903] random: systemd: uninitialized urandom read (16 bytes read)
[ OK ] Reached target System Time Synchronized.
[ 26.052210] systemd-journald[170]: Found cgroup2 on /sys/fs/cgroup/unified, uni
[ 26.109496] systemd-journald[170]: Journal effective settings seal=no compress=
[ 26.124808] systemd-journald[170]: Fixed min_use=16.0M max_use=64.0M max_size=8
[ 26.137173] systemd-journald[170]: Reserving 14563 entries in hash table.
[FAILED] Failed to start Remount Root and [ 26.147335] systemd-journald[170]: Va
Kernel File Systems.
[ 26.157242] systemd-journald[170]: Vacuuming done, freed 0B of archived journal
See 'systemctl status systemd-remount-fs.service' for details.[ 26.172268] syste
[ 26.269657] cryptodev: loading out-of-tree module taints kernel.
Starting Create System Users...
[ 26.287988] cryptodev: driver 1.10 loaded.
[ OK ] Started RPC Bind.
[ OK ] Started Load Kernel Modules.
[ 26.331500] systemd-journald[170]: systemd-journald running as pid 170
Mounting Kernel Configuration File System.[ 26.346935] systemd-journald
..
[ 26.356246] systemd-journald[170]: Sent WATCHDOG=1 notification.
[ 26.367225] systemd-journald[170]: Successfully sent stream file descriptor to
Starting Apply Kernel Variables...
[ 26.379018] systemd-journald[170]: Successfully sent stream file descriptor to
[ OK ] Started Journal Service.
[ 26.396285] systemd-journald[170]: Successfully sent stream file descriptor to
[ 26.408755] systemd-journald[170]: Successfully sent stream file descriptor to
[ 26.422407] systemd-journald[170]: Successfully sent stream file descriptor to
[ 26.435697] systemd-journald[170]: Successfully sent stream file descriptor to
Starting Flush Journal to Persistent Storage 26.446825] systemd-journal
0m...
[ 26.462500] systemd-journald[170]: Successfully sent stream file descriptor to
[ 26.474208] systemd-journald[170]: Successfully sent stream file descriptor to
[FAILED] Failed to mount Kernel Configurat[ 26.485952] systemd-journald[170]: Su
ion File System.
[ 26.505870] systemd-journald[170]: Successfully sent stream file descriptor to
See 'systemctl status sys-kernel-config.mount' for details.
[ 26.517095] systemd-journald[170]: Successfully sent stream file descriptor to
[ 26.536851] systemd-journald[170]: Successfully sent stream file descriptor to
[ 26.569121] systemd-journald[170]: Successfully sent stream file descriptor to
[ 26.616032] systemd-journald[170]: n/a: New incoming connection.
[ 26.622318] systemd-journald[170]: varlink-22: varlink: setting state idle-serv
[ 26.630590] systemd-journald[170]: varlink-22: New incoming message: {"method":
[ 26.642831] systemd-journald[170]: varlink-22: varlink: changing state idle-ser
[ 26.652878] systemd-journald[170]: Received client request to flush runtime jou
[ 26.668010] systemd-journald[170]: Vacuuming...
[ 26.674141] systemd-journald[170]: Vacuuming done, freed 0B of archived journal
[ 26.688855] systemd-journald[170]: varlink-22: Sending message: {"parameters":{
[ 26.697603] systemd-journald[170]: varlink-22: varlink: changing state processi
[ 26.707954] systemd-journald[170]: varlink-22: varlink: changing state processe
[ 26.720632] systemd-journald[170]: varlink-22: varlink: changing state idle-ser
[ 26.730712] systemd-journald[170]: varlink-22: varlink: changing state pending-
[ 26.730731] systemd-journald[170]: varlink-22: varlink: changing state processi
[ OK ] Started Flush Journal to Persistent Storage.
[ OK ] Started Apply Kernel Variables.
[ OK ] Started udev Coldplug all Devices.
[ 26.934597] random: systemd: uninitialized urandom read (16 bytes read)
Starting udev Wait for Complete Device Initial[ 26.954272] random: syst
ization...
[ 26.967434] systemd-journald[170]: Successfully sent stream file descriptor to
[ OK ] Started Create System Users.
[ 26.998814] random: systemd: uninitialized urandom read (16 bytes read)
Starting Create Static Device Nodes in /dev 27.014833] systemd-journald
m...
[ OK ] Started Create Static Device Nodes in /dev.
[ OK ] Reached target Local File Systems (Pre).
Mounting /media/ram...[ 27.327590] systemd-journald[170]: Successfully
Mounting /var/volatile...
[ 27.363851] systemd-journald[170]: Successfully sent stream file descriptor to
Starting udev Kernel Device Manager...
[ 27.391623] systemd-journald[170]: Successfully sent stream file descriptor to
[FAILED] Failed to mount /media/ram.
See 'systemctl status media-ram.mount' for details.
[DEPEND] Dependency failed for Local File Systems.
[FAILED] Failed to mount /var/volatile.
See 'systemctl status var-volatile.mount' for details.
[DEPEND] Dependency failed for Bind mount volatile /var/lib.
[DEPEND] Dependency failed for Bind mount volatile /var/cache.
[DEPEND] Dependency failed for Bind mount volatile /srv.
[DEPEND] Dependency failed for Bind mount volatile /var/spool.
[ OK ] Stopped Dispatch Password …ts to Console Directory Watch.
[ OK ] Stopped Forward Password R…uests to Wall Directory Watch.
[ OK ] Reached target Timers.
[ OK ] Reached target Network (Pre).
[ OK ] Reached target Login Prompts.
Starting Synchronize System and HW clocks.[ 27.654961] systemd-journald
..
Starting Load/Save Random Seed...
[ 27.687616] systemd-journald[170]: Successfully sent stream file descriptor to
[ OK ] Reached target Sockets.
[ OK ] Started Emergency Shell.
[ OK ] Reached target Emergency Mode.
Starting Rebuild Dynamic Linker Cache...
[ 27.782731] systemd-journald[170]: Successfully sent stream file descriptor to
Starting Create Volatile Files and Directories[ 27.804253] systemd-jour
...
[FAILED] Failed to start Synchronize System and HW clocks.
See 'systemctl status sync-clocks.service' for details.
[ 28.049366] random: crng init done
[ 28.052787] random: 67 urandom warning(s) missed due to ratelimiting
[ OK ] Started Load/Save Random Seed.
[ OK ] Started udev Kernel Device Manager.
Starting Network Service...
[ 28.503091] systemd-journald[170]: Successfully sent stream file descriptor to
Mounting Kernel Configuration File System...
[ 29.397004] systemd-journald[170]: Successfully sent stream file descriptor to
[FAILED] Failed to mount Kernel Configuration File System.
See 'systemctl status sys-kernel-config.mount' for details.
[ 29.723195] 93xx46 spi1.0: 16-bit eeprom
[ 29.771326] CAN device driver interface
[ OK ] Created slice system-systemd\x2dbacklight.slice.
Starting Load/Save Screen …ess of backlight:[ 29.807415] systemd-journa
ssd1307fb0...
[ OK ] Started Network Service.
[ OK ] Reached target Network.
[ OK ] Started NFS status monitor for NFSv2/3 locking..
Starting Wait for Network to be Configured[ 29.992991] systemd-journald
...
[ OK ] Started Load/Save Screen B…tness of backlight:ssd1307fb0.
[ 30.034318] systemd-journald[170]: Successfully sent stream file descriptor to
[ 30.275768] davinci_mdio 300b2400.mdio: Configuring MDIO in manual mode
[ 30.317519] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-me
[ 30.330180] davinci_mdio 300b2400.mdio: davinci mdio revision 1.7, bus freq 100
[ 30.410790] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
[ 30.425287] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
[ 30.457537] remoteproc remoteproc0: 5000000.m4fss is available
[ 30.757983] platform 78000000.r5f: configured R5F for remoteproc mode
[ 30.765569] m_can_platform 20701000.can: m_can device registered (irq=36, versi
[ 30.773878] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory
[ 30.786752] m_can_platform 20711000.can: m_can device registered (irq=38, versi
[ OK ] Started Create Volatile Files and D[ 30.812989] davinci_mdio 300b2400.m
irectories.
[ 30.822565] remoteproc remoteproc1: 78000000.r5f is available
[ 30.847198] remoteproc remoteproc0: powering up 5000000.m4fss
[ 30.853593] remoteproc remoteproc0: Booting fw image am64-mcu-m4f0_0-fw, size 8
Starting Run pending postinsts...
[ 30.881001] systemd-journald[170]: Successfully sent stream file descriptor to
[ 30.891161] remoteproc0#vdev0buffer: assigned reserved memory node m4f-dma-mem
[ 30.904689] virtio_rpmsg_bus virtio0: rpmsg host is online
[ 30.915728] remoteproc0#vdev0buffer: registered virtio0 (type 7)
Starting Rebuild Journal Catalog...[ 30.945804] remoteproc remoteproc0:
Starting Update UTMP about System Boot/Shutdow[ 30.975458] systemd-jour
n...
[ 30.986269] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0
[ 30.995545] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
[ 31.022060] systemd-journald[170]: Successfully sent stream file descriptor to
[ 31.031763] platform 78200000.r5f: configured R5F for remoteproc mode
[ 31.031791] remoteproc remoteproc1: powering up 78000000.r5f
[ 31.044605] remoteproc remoteproc1: Booting fw image am64-main-r5f0_0-fw, size
[ 31.132900] platform 78200000.r5f: assigned reserved memory node r5f-dma-memory
[ 31.132906] remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-mem
[ 31.133664] virtio_rpmsg_bus virtio1: rpmsg host is online
[ 31.141257] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
[ 31.153593] remoteproc1#vdev0buffer: registered virtio1 (type 7)
[ 31.171099] remoteproc remoteproc1: remote processor 78000000.r5f is now up
[ 31.212723] remoteproc remoteproc2: 78200000.r5f is available
[ 31.265150] remoteproc remoteproc2: powering up 78200000.r5f
[ 31.271147] remoteproc remoteproc2: Booting fw image am64-main-r5f0_1-fw, size
[ 31.288398] platform 78400000.r5f: configured R5F for remoteproc mode
[ 31.296353] remoteproc2#vdev0buffer: assigned reserved memory node r5f-dma-mem
[ 31.307161] virtio_rpmsg_bus virtio2: rpmsg host is online
[ 31.314621] remoteproc2#vdev0buffer: registered virtio2 (type 7)
[ 31.321473] platform 78400000.r5f: assigned reserved memory node r5f-dma-memory
[ 31.330877] remoteproc remoteproc2: remote processor 78200000.r5f is now up
[ 31.332231] remoteproc remoteproc3: 78400000.r5f is available
[ 31.338137] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xe
[ 31.363647] remoteproc remoteproc5: 30034000.pru is available
[ OK ] Started Update UTMP about System Bo[ 31.370260] remoteproc remoteproc6:
ot/Shutdown.
[ 31.374182] platform 78600000.r5f: configured R5F for remoteproc mode
[ 31.382148] remoteproc remoteproc7: 3000a000.txpru is available
[ 31.396439] remoteproc remoteproc8: 30038000.pru is available
Starting Update UTMP about System Runlevel Cha[ 31.408138] systemd-jour
nges...
[ 31.408498] remoteproc remoteproc9: 30006000.rtu is available
[ 31.425492] remoteproc remoteproc10: 3000c000.txpru is available
[ 31.432642] remoteproc remoteproc11: 300b4000.pru is available
[ 31.454047] remoteproc remoteproc12: 30084000.rtu is available
[ 31.454850] platform 78600000.r5f: assigned reserved memory node r5f-dma-memory
[ 31.460682] remoteproc remoteproc13: 3008a000.txpru is available
[ 31.475261] remoteproc remoteproc14: 300b8000.pru is available
[ 31.482110] remoteproc remoteproc15: 30086000.rtu is available
[ 31.494325] remoteproc remoteproc4: 78600000.r5f is available
[ 31.495749] remoteproc remoteproc16: 3008c000.txpru is available
[ 31.846829] remoteproc remoteproc3: powering up 78400000.r5f
[ 31.852576] remoteproc remoteproc3: Booting fw image am64-main-r5f1_0-fw, size
[ 31.870491] remoteproc3#vdev0buffer: assigned reserved memory node r5f-dma-mem
[ 31.885870] virtio_rpmsg_bus virtio3: rpmsg host is online
[ 31.887012] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0xe
[ 31.891517] remoteproc3#vdev0buffer: registered virtio3 (type 7)
[ 31.906622] remoteproc remoteproc3: remote processor 78400000.r5f is now up
[ 31.971798] remoteproc remoteproc4: powering up 78600000.r5f
[ 31.977951] remoteproc remoteproc4: Booting fw image am64-main-r5f1_1-fw, size
[ 31.997657] remoteproc4#vdev0buffer: assigned reserved memory node r5f-dma-mem
[ 32.013822] virtio_rpmsg_bus virtio4: rpmsg host is online
[ 32.026679] remoteproc4#vdev0buffer: registered virtio4 (type 7)
[ 32.036171] remoteproc remoteproc4: remote processor 78600000.r5f is now up
[ 32.049784] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0xe
[ OK ] Started Update UTMP about System Runlevel Changes.
[ OK ] Started Rebuild Journal Catalog.
You are in emergency mode. After logging in, type "journalctl -xb" to view
system logs, "systemctl reboot" to reboot, "systemctl default" or "exit"
to boot into default mode.
Press Enter for maintenance
(or press Control-D to continue): [ 38.256649] TI DP83869 300b2400.mdio:0f: atta
[ 38.273925] icssg-prueth icssg1-eth: TI PRU ethernet driver initialized: single
[ 39.351656] usbcore: registered new interface driver usbfs
[ 39.535826] usbcore: registered new interface driver hub
[ 39.689020] usbcore: registered new device driver usb
[ 41.771727] systemd-journald[170]: Successfully sent stream file descriptor to
[ 42.010058] systemd-journald[170]: Successfully sent stream file descriptor to
[ 42.087943] systemd-journald[170]: Successfully sent stream file descriptor to
[ 42.214909] systemd-journald[170]: Successfully sent stream file descriptor to
[ 42.246971] systemd-journald[170]: Successfully sent stream file descriptor to
[ 42.765113] systemd-journald[170]: Successfully sent stream file descriptor to
[ 42.844523] systemd-journald[170]: Successfully sent stream file descriptor to
[ 42.873418] systemd-journald[170]: Successfully sent stream file descriptor to
[ 43.025018] systemd-journald[170]: Successfully sent stream file descriptor to
sh-5.0#
sh-5.0#
sh-5.0# root
sh: root: command not found
sh-5.0# ls
sh-5.0# [ 151.354096] systemd-journald[170]: Sent WATCHDOG=1 notification.
[ 211.354075] systemd-journald[170]: Sent WATCHDOG=1 notification.
[ 302.049834] systemd-journald[170]: Sent WATCHDOG=1 notification.
[ 391.354081] systemd-journald[170]: Sent WATCHDOG=1 notification.
[ 494.561893] systemd-journald[170]: Sent WATCHDOG=1 notification.
[ 571.354072] systemd-journald[170]: Sent WATCHDOG=1 notification.
[ 664.291857] systemd-journald[170]: Sent WATCHDOG=1 notification.
[ 751.354124] systemd-journald[170]: Sent WATCHDOG=1 notification.