Hi Corey,

Attached the machine file patch for vpk120 board. With you should be able to boot without initramfs bundled. Below is the steps you need to follow.

Mark let me know if you have any comments on patch.

$ cd sources/meta-xilinx

$ git am 0001-vpk120-versal-Add-new-machine-conf-file-for-VPK120-b.patch

# unset INITRAMFS configurations,

$ MACHINE=vpk120-versal bitbake petalinux-image-minimal

QEMU testing:

$ MACHINE=vpk120-versal bitbake runqemu nographic


HW JTAG testing:

Copy images from ${DEPLOY_DIR}

$ cp ${DEPLOY_DIR}/BOOT-vpk120-versal-<timestamp>.bin BOOT.bin

$ cp ${DEPLOY_DIR}/u-boot-zynq-scr--1.0-r0-<timestamp>.scr boot.scr

$ cp ${DEPLOY_DIR}/Image--5.15.36+git0+<SRCREV>-r0.0-vpk120-versal-<timestamp>.bin Image

$ cp ${DEPLOY_DIR}/petalinux-image-minimal-vpk120-versal-<timestamp>.rootfs.cpio.gz.u-boot rootfs.cpio.gz.u-boot

Launch xsct and run below commands.

xsct% set image_dir "<ABSOLUTE_PATH_TO_VPK120_IMAGES>"
xsct% connect -url TCP:<hw_server_host_name>:3121
xsct% targets -set -nocase -filter {name =~ "*PMC*"}
xsct% puts stderr "INFO: Downloading BIN file: $image_dir/BOOT.bin"
xsct% device program "$image_dir/BOOT.bin"
xsct% targets -set -nocase -filter {name =~ "*A72*#0"}
xsct% stop
xsct% targets -set -nocase -filter {name =~ "*Versal*"}
xsct% puts stderr "INFO: Downloading Kernel Image file: $image_dir/Image at 0x00200000"
xsct% dow -data  "$image_dir/Image" 0x00200000
xsct% puts stderr "INFO: Downloading Rootfs file: $image_dir/rootfs.cpio.gz.u-boot at 0x04000000"
xsct% dow -data  "$image_dir/rootfs.cpio.gz.u-boot" 0x04000000
xsct% puts stderr "INFO: Downloading U-boot boot script file: $image_dir/boot.scr at 0x20000000"
xsct% dow -data  "$image_dir/boot.scr" 0x20000000
xsct% targets -set -nocase -filter {name =~ "*A72*#0"}
xsct% con
xsct% exit

Thanks,

Sandeep

On 1/30/2023 11:08 AM, Gundlupet Raju, Sandeep wrote:

On 1/30/2023 10:58 AM, Thompson, Corey via lists.yoctoproject.org wrote:
Hi.

I am aware that there isn't a vpk120 machine configuration in 2022.x, so
I provided a machine config for it in my minimal working example that is
similar to what we use at my organization.

Is there any update available here?  Perhaps some workaround that we
could put in our layer to deal with it until this has better support in
2023.1?  As I mentioned earlier, having to change our local.conf to
build without initramfs for QEMU, but with initramfs for the real VPK120
board is a bit of a burden on our development workflow.

[Sandeep]: We just got everything up and running for 2023.1 internal development vpk120 machine conf a week ago. We will provide a workaround patch for 2022.2 asap once I tested on QEMU and HW.

Thanks,

Sandeep


Thanks,
Corey


On Tue, Jan 10, 2023 at 05:06:22PM -0700, Gundlupet Raju, Sandeep wrote:
Hi Corey,

In 2022.x Yocto we don't have a vpk120 machine configuration file, this is something we have planned to add in 2023.1. But still you should be able to
use versal-generic machine conf file with below configs and run it on
qemu/hw.

HDF_BASE = "file://"
HDF_PATH = "/<ABSOLUTE_PATH_TO_XSA>/vpk120.xsa"

# Versal PLM Variables
YAML_SERIAL_CONSOLE_STDIN:pn-plm-firmware =
"versal_cips_0_pspmc_0_psv_sbsauart_0"
YAML_SERIAL_CONSOLE_STDOUT:pn-plm-firmware =
"versal_cips_0_pspmc_0_psv_sbsauart_0"

# Versal Device-tree Variables
YAML_CONSOLE_DEVICE_CONFIG:pn-device-tree =
"versal_cips_0_pspmc_0_psv_sbsauart_0"
YAML_DT_BOARD_FLAGS = "{BOARD versal-vpk120-reva}"

$ MACHINE=versal-generic bitbake core-image-minimal

I will take a look on this issue.

Thanks,

Sandeep

On 1/10/2023 2:36 PM, Thompson, Corey via lists.yoctoproject.org wrote:
Hello.

I'm having trouble with runqemu (for the VPK120 Versal evaluation board) after updating from rel-v2022.1_update2 to rel-v2022.2.  I see there has been a lot of refactoring in this area between the two releases, and now
it looks like there is an attempt to boot using the initramfs-bundled
kernel if there is one.  However, when I use runqemu with these options, I see nothing happen.  I never see the PLMFW run, no kernel boots, QEMU
simply appears to hang until I terminate it.

I realize that I can work around the issue by setting
INITRAMFS_IMAGE_BUNDLE="0", but the problem is that we want to be able
to use the same config that we use to generate hardware images, and this
is the configuration that we prefer to use for our hardware targets.

I've put together a minimum working example to try to illustrate the
issue.  You can find it at this link; instructions are in the README.

https://urldefense.com/v3/__https://github.com/cmtptr/corey-build__;!!OSsGDw!MRnAYtme997qx-Cs3ZR89mLkqVUpKc1h7PmJ-5GTOBzCvNy_EMHq2FxrFxBEayHG8GnUjeBclxyJvADSqRWwabE$ [github[.]com]

Any pointers here would be greatly appreciated.

Thanks,
Corey






From 1b72cdd527b454610dcc0593ec8ae8ddc3adb810 Mon Sep 17 00:00:00 2001
From: Sandeep Gundlupet Raju <[email protected]>
Date: Mon, 6 Feb 2023 12:50:26 -0700
Subject: [meta-xilinx][2022.2][PATCH] vpk120-versal: Add new machine conf file
 for VPK120 board

Add new machine conf file for VPK120 evaluation board.

Signed-off-by: Sandeep Gundlupet Raju <[email protected]>
---
 .../conf/machine/vpk120-versal.conf           | 47 +++++++++++++++++++
 1 file changed, 47 insertions(+)
 create mode 100644 meta-xilinx-bsp/conf/machine/vpk120-versal.conf

diff --git a/meta-xilinx-bsp/conf/machine/vpk120-versal.conf 
b/meta-xilinx-bsp/conf/machine/vpk120-versal.conf
new file mode 100644
index 00000000..f7d89f11
--- /dev/null
+++ b/meta-xilinx-bsp/conf/machine/vpk120-versal.conf
@@ -0,0 +1,47 @@
+#@TYPE: Machine
+#@NAME: vpk120-versal
+#@DESCRIPTION: Machine configuration for the VPK120 evaluation board.
+
+#### Preamble
+MACHINEOVERRIDES =. "${@['', 'vpk120-versal:']['vpk120-versal' 
!='${MACHINE}']}"
+#### Regular settings follow
+
+# Variables that changes based on hw design or board specific requirement must 
be
+# defined before calling the required inclusion file else pre-expansion value
+# defined in versal-generic.conf will be set. This issue fixed in 2023.1 but 
for
+# 2022.2 we need a machine override for all YAML configuration.
+
+# Yocto device-tree variables
+YAML_CONSOLE_DEVICE_CONFIG:vpk120-versal:pn-device-tree ?= 
"versal_cips_0_pspmc_0_psv_sbsauart_0"
+YAML_DT_BOARD_FLAGS:vpk120-versal ?= "{BOARD versal-vpk120-reva}"
+
+# Yocto arm-trusted-firmware(TF-A) variables
+ATF_CONSOLE:vpk120-versal ?= "pl011"
+TFA_BL33_LOAD ?= "0x8000000"
+EXTRA_OEMAKE:append:pn-arm-trusted-firmware = " 
PRELOADED_BL33_BASE=${TFA_BL33_LOAD}"
+
+# Yocto PLM variables
+YAML_SERIAL_CONSOLE_STDIN:vpk120-versal:pn-plm-firmware ?= 
"versal_cips_0_pspmc_0_psv_sbsauart_0"
+YAML_SERIAL_CONSOLE_STDOUT:vpk120-versal:pn-plm-firmware ?= 
"versal_cips_0_pspmc_0_psv_sbsauart_0"
+
+# Yocto KERNEL Variables
+UBOOT_ENTRYPOINT  ?= "0x200000"
+UBOOT_LOADADDRESS ?= "0x200000"
+
+# vpk120-versal Serial Console 
+SERIAL_CONSOLES:vpk120-versal ?= "115200;ttyAMA0"
+YAML_SERIAL_CONSOLE_BAUDRATE:vpk120-versal ?= "115200"
+
+# VPK120 board uses Versal Premium device hence use versal generic machine
+# inclusion and set SOC_VARIANT to premium.
+SOC_VARIANT = "premium"
+
+# Required generic machine inclusion
+require conf/machine/versal-generic.conf
+
+QEMU_HW_DTB_PS =  "${QEMU_HW_DTB_PATH}/board-versal-ps-vpk120.dtb"
+QEMU_HW_DTB_PMC = "${QEMU_HW_DTB_PATH}/board-versal-pmc-virt.dtb"
+
+#### No additional settings should be after the Postamble
+#### Postamble
+PACKAGE_EXTRA_ARCHS:append = "${@['', 'vpk120_versal']['vpk120-versal' != 
'${MACHINE}']}"
-- 
2.25.1

0.189]Platform
 Version: v2.0 PMC: v2.0, PS: v2.0

[0.255]BOOTMODE: 0x0, MULTIBOOT: 0x0

[0.309]****************************************

[0.542]Non Secure Boot
[3.408]PLM Initialization Time 

[3.459]***********Boot PDI Load: Started***********

[3.521]Loading PDI from SBI

[3.569]Monolithic/Master Device

[3.665]0.118 ms: PDI initialization time

[3.723]+++Loading Image#: 0x1, Name: lpd, Id: 0x04210002

[3.792]---Loading Partition#: 0x1, Id: 0xC
[54.842] 50.962 ms for Partition#: 0x1, Size: 2832 Bytes

[59.787]---Loading Partition#: 0x2, Id: 0x0
[103.604] 39.880 ms for Partition#: 0x2, Size: 65440 Bytes

PSM Firmware version: 2022.2 [Build: Dec  6 2022 13:30:02 ] 
[111.379]+++Loading Image#: 0x2, Name: pl_cfi, Id: 0x18700000

[116.828]---Loading Partition#: 0x3, Id: 0x3
[709.707] 588.853 ms for Partition#: 0x3, Size: 838096 Bytes

[712.250]---Loading Partition#: 0x4, Id: 0x5
[1356.077] 639.805 ms for Partition#: 0x4, Size: 878032 Bytes

[1358.737]+++Loading Image#: 0x3, Name: fpd, Id: 0x0420C003

[1364.003]---Loading Partition#: 0x5, Id: 0x8
[1368.533] 0.421 ms for Partition#: 0x5, Size: 1488 Bytes

[1373.534]+++Loading Image#: 0x4, Name: default_subsys, Id: 0x1C000000

[1379.466]---Loading Partition#: 0x6, Id: 0x0
[1400.401] 16.826 ms for Partition#: 0x6, Size: 28080 Bytes

[1402.858]---Loading Partition#: 0x7, Id: 0x0
[1445.626] 38.659 ms for Partition#: 0x7, Size: 63440 Bytes

[1448.083]---Loading Partition#: 0x8, Id: 0x0
[2154.008] 701.815 ms for Partition#: 0x8, Size: 1001040 Bytes

NOT1CE.  ATF ru**ing on XilPnx Versal Silicon
*****

[2161.454]251615.986 ms: ROM Time
[2164.457]Total PLM Boot Time 

INFO:    BL31: GET_HANDOFF_PARAMS call success=0
INFO:    BL31: fsbl-atf handover success 0.
NOTICE:  BL31: Secure code at 0x0
NOTICE:  BL31: Non secure code at 0x8000000
NOTICE:  BL31: v2.6(debug):xlnx_rebase_v2.6_2022.1_update3-18-g0897efd45
NOTICE:  BL31: Built : 03:55:03, Sep  9 2022
INFO:    GICv3 with legacy support detected.
INFO:    ARM GICv3 driver initialized in EL3
INFO:    Maximum SPI INTID supported: 191
INFO:    BL31: Initializing runtime services
WARNING: BL31: cortex_a72: CPU workaround for 859971 was missing!
WARNING: BL31: cortex_a72: CPU workaround for 1319367 was missing!
INFO:    BL31: cortex_a72: CPU workaround for cve_2017_5715 was applied
INFO:    BL31: cortex_a72: CPU workaround for cve_2018_3639 was applied
INFO:    BL31: Preparing for EL3 exit to normal world
INFO:    Entry point address = 0x8000000
INFO:    SPSR = 0x3c9


U-Boot 2022.01 (Jan 20 2023 - 13:12:44 +0000)

CPU:   Versal
Silicon: v2
Model: Xilinx Versal vpk120 Eval board revA
DRAM:  8 GiB
EL Level:       EL2
MMC:   mmc@f1050000: 0
Loading Environment from nowhere... OK
In:    serial@ff000000
Out:   serial@ff000000
Err:   serial@ff000000
Bootmode: JTAG_MODE
Net:   FEC: can't find phy-handle

ZYNQ GEM: ff0c0000, mdio bus ff0c0000, phyaddr 1, interface rgmii-id

Warning: ethernet@ff0c0000 (eth0) using random MAC address - da:69:52:58:a1:16
eth0: ethernet@ff0c0000
Hit any key to stop autoboot:  5  4  3  2  1  0 
JTAG: Trying to boot script at 20000000
## Executing script at 20000000
Trying to load boot images from jtag
## Loading init Ramdisk from Legacy Image at 04000000 ...
   Image Name:   petalinux-image-minimal-vpk120-v
   Image Type:   AArch64 Linux RAMDisk Image (uncompressed)
   Data Size:    51200475 Bytes = 48.8 MiB
   Load Address: 00000000
   Entry Point:  00000000
   Verifying Checksum ... OK
## Flattened Device Tree blob at 00001000
   Booting using the fdt blob at 0x001000
   Loading Ramdisk to 7adf2000, end 7dec61db ... OK
   Loading Device Tree to 000000007ade8000, end 000000007adf1dad ... OK

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd083]
[    0.000000] Linux version 5.15.36-xilinx-v2022.2 (oe-user@oe-host) 
(aarch64-xilinx-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 
SMP Wed Dec 21 09:01:42 UTC 2022
[    0.000000] Machine model: Xilinx Versal vpk120 Eval board revA
[    0.000000] earlycon: pl11 at MMIO32 0x00000000ff000000 (options '115200n8')
[    0.000000] printk: bootconsole [pl11] enabled
[    0.000000] efi: UEFI not found.
[    0.000000] Zone ranges:
[    0.000000]   DMA32    [mem 0x0000000000000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000097fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x000000007fffffff]
[    0.000000]   node   0: [mem 0x0000000800000000-0x000000097fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000097fffffff]
[    0.000000] cma: Reserved 256 MiB at 0x000000006ac00000
[    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: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 18 pages/cpu s34776 r8192 d30760 u73728
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Spectre-v2
[    0.000000] CPU features: detected: Spectre-BHB
[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064384
[    0.000000] Kernel command line: console=ttyAMA0 
earlycon=pl011,mmio32,0xFF000000,115200n8 clk_ignore_unused root=/dev/ram0 rw
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 
bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 
bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 
0x0000000066c00000-0x000000006ac00000] (64MB)
[    0.000000] Memory: 7828768K/8388608K available (13696K kernel code, 982K 
rwdata, 3804K rodata, 2112K init, 572K bss, 297696K reserved, 262144K 
cma-reserved)
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=16 to nr_cpu_ids=2.
[    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=2
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 160 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000f9080000
[    0.000000] ITS [mem 0xf9020000-0xf903ffff]
[    0.000000] ITS@0x00000000f9020000: allocated 65536 Devices @800080000 
(flat, esz 8, psz 64K, shr 0)
[    0.000000] ITS: using cache flushing for cmd queue
[    0.000000] GICv3: using LPI property table @0x0000000800030000
[    0.000000] GIC: using cache flushing for LPI property table
[    0.000000] GICv3: CPU0: using allocated LPI pending table 
@0x0000000800040000
[    0.000000] random: get_random_bytes called from start_kernel+0x474/0x6d8 
with crng_init=0
[    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff 
max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
[    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 
4398046511100ns
[    0.008376] Console: colour dummy device 80x25
[    0.012871] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 200.00 BogoMIPS (lpj=400000)
[    0.023394] pid_max: default: 32768 minimum: 301
[    0.028216] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, 
linear)
[    0.035872] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 
bytes, linear)
[    0.044657] rcu: Hierarchical SRCU implementation.
[    0.049594] Platform MSI: gic-its@f9020000 domain created
[    0.055088] PCI/MSI: /axi/interrupt-controller@f9000000/gic-its@f9020000 
domain created
[    0.063208] EFI services will not be available.
[    0.067845] smp: Bringing up secondary CPUs ...
[    0.072717] Detected PIPT I-cache on CPU1
[    0.072739] GICv3: CPU1: found redistributor 1 region 0:0x00000000f90a0000
[    0.072748] GICv3: CPU1: using allocated LPI pending table 
@0x0000000800050000
[    0.072771] CPU1: Booted secondary processor 0x0000000001 [0x410fd083]
[    0.072816] smp: Brought up 1 node, 2 CPUs
[    0.101766] SMP: Total of 2 processors activated.
[    0.106501] CPU features: detected: 32-bit EL0 Support
[    0.111674] CPU features: detected: CRC32 instructions
[    0.116884] CPU: All CPU(s) started at EL2
[    0.121023] alternatives: patching kernel code
[    0.126086] devtmpfs: initialized
[    0.132440] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, 
max_idle_ns: 7645041785100000 ns
[    0.142281] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.151212] pinctrl core: initialized pinctrl subsystem
[    0.156790] DMI not present or invalid.
[    0.160806] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.167394] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.174683] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic 
allocations
[    0.182781] audit: initializing netlink subsys (disabled)
[    0.188278] audit: type=2000 audit(0.120:1): state=initialized 
audit_enabled=0 res=1
[    0.188521] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.202947] ASID allocator initialised with 65536 entries
[    0.208464] Serial: AMBA PL011 UART driver
[    0.221672] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.228431] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.235187] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.241949] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.764253] cryptd: max_cpu_qlen set to 1000
[    0.782023] DRBG: Continuing without Jitter RNG
[    0.868626] raid6: neonx8   gen()  3974 MB/s
[    0.940968] raid6: neonx8   xor()  2912 MB/s
[    1.013310] raid6: neonx4   gen()  4102 MB/s
[    1.085649] raid6: neonx4   xor()  3017 MB/s
[    1.157987] raid6: neonx2   gen()  3609 MB/s
[    1.230325] raid6: neonx2   xor()  2781 MB/s
[    1.302668] raid6: neonx1   gen()  2794 MB/s
[    1.375008] raid6: neonx1   xor()  2261 MB/s
[    1.447346] raid6: int64x8  gen()  2129 MB/s
[    1.519680] raid6: int64x8  xor()  1286 MB/s
[    1.592025] raid6: int64x4  gen()  2381 MB/s
[    1.664363] raid6: int64x4  xor()  1353 MB/s
[    1.736705] raid6: int64x2  gen()  2240 MB/s
[    1.809048] raid6: int64x2  xor()  1203 MB/s
[    1.881401] raid6: int64x1  gen()  1708 MB/s
[    1.953741] raid6: int64x1  xor()   896 MB/s
[    1.958042] raid6: using algorithm neonx4 gen() 4102 MB/s
[    1.963481] raid6: .... xor() 3017 MB/s, rmw enabled
[    1.968482] raid6: using neon recovery algorithm
[    1.973417] iommu: Default domain type: Translated 
[    1.978338] iommu: DMA domain TLB invalidation policy: strict mode 
[    1.984803] SCSI subsystem initialized
[    1.988670] usbcore: registered new interface driver usbfs
[    1.994208] usbcore: registered new interface driver hub
[    1.999576] usbcore: registered new device driver usb
[    2.004710] mc: Linux media interface: v0.10
[    2.009023] videodev: Linux video capture interface: v2.00
[    2.014574] pps_core: LinuxPPS API ver. 1 registered
[    2.019580] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo 
Giometti <[email protected]>
[    2.028791] PTP clock support registered
[    2.032755] EDAC MC: Ver: 3.0.0
[    2.036153] zynqmp-ipi-mbox mailbox@ff3f0440: Registered ZynqMP IPI mbox 
with TX/RX channels.
[    2.044863] FPGA manager framework
[    2.048360] Advanced Linux Sound Architecture Driver Initialized.
[    2.054717] Bluetooth: Core ver 2.22
[    2.058328] NET: Registered PF_BLUETOOTH protocol family
[    2.063683] Bluetooth: HCI device and connection manager initialized
[    2.070089] Bluetooth: HCI socket layer initialized
[    2.075004] Bluetooth: L2CAP socket layer initialized
[    2.080099] Bluetooth: SCO socket layer initialized
[    2.085242] clocksource: Switched to clocksource arch_sys_counter
[    2.091479] VFS: Disk quotas dquot_6.6.0
[    2.095461] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.105232] NET: Registered PF_INET protocol family
[    2.110440] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, 
linear)
[    2.120393] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 
65536 bytes, linear)
[    2.129061] TCP established hash table entries: 65536 (order: 7, 524288 
bytes, linear)
[    2.137334] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, 
linear)
[    2.145359] TCP: Hash tables configured (established 65536 bind 65536)
[    2.152022] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    2.158989] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, 
linear)
[    2.166455] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.172470] RPC: Registered named UNIX socket transport module.
[    2.178449] RPC: Registered udp transport module.
[    2.183193] RPC: Registered tcp transport module.
[    2.187934] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    2.194433] PCI: CLS 0 bytes, default 64
[    2.198505] Trying to unpack rootfs image as initramfs...
[    2.205707] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters 
available
[    3.870550] Freeing initrd memory: 50000K
[    3.916683] Initialise system trusted keyrings
[    3.921261] workingset: timestamp_bits=46 max_order=21 bucket_order=0
[    3.928229] NFS: Registering the id_resolver key type
[    3.933341] Key type id_resolver registered
[    3.937552] Key type id_legacy registered
[    3.941601] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    3.948352] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver 
Registering...
[    3.955808] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    3.990925] NET: Registered PF_ALG protocol family
[    3.995762] xor: measuring software checksum speed
[    4.002326]    8regs           :  5695 MB/sec
[    4.008168]    32regs          :  6761 MB/sec
[    4.014208]    arm64_neon      :  5972 MB/sec
[    4.018597] xor: using function: 32regs (6761 MB/sec)
[    4.023687] Key type asymmetric registered
[    4.027815] Asymmetric key parser 'x509' registered
[    4.032760] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 
244)
[    4.040222] io scheduler mq-deadline registered
[    4.044786] io scheduler kyber registered
[    4.065682] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    4.072696] Serial: AMBA driver
[    4.076261] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    4.085194] brd: module loaded
[    4.090410] loop: module loaded
[    4.094063] mtdoops: mtd device (mtddev=name/number) must be supplied
[    4.102285] tun: Universal TUN/TAP device driver, 1.6
[    4.107447] CAN device driver interface
[    4.111569] usbcore: registered new interface driver asix
[    4.117039] usbcore: registered new interface driver ax88179_178a
[    4.123196] usbcore: registered new interface driver cdc_ether
[    4.129077] usbcore: registered new interface driver net1080
[    4.134794] usbcore: registered new interface driver cdc_subset
[    4.140769] usbcore: registered new interface driver zaurus
[    4.146404] usbcore: registered new interface driver cdc_ncm
[    4.152447] usbcore: registered new interface driver uas
[    4.157824] usbcore: registered new interface driver usb-storage
[    4.164030] i2c_dev: i2c /dev entries driver
[    4.169166] usbcore: registered new interface driver uvcvideo
[    4.175199] Bluetooth: HCI UART driver ver 2.3
[    4.179680] Bluetooth: HCI UART protocol H4 registered
[    4.184855] Bluetooth: HCI UART protocol BCSP registered
[    4.190214] Bluetooth: HCI UART protocol LL registered
[    4.195386] Bluetooth: HCI UART protocol ATH3K registered
[    4.200831] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    4.207168] Bluetooth: HCI UART protocol Intel registered
[    4.212613] Bluetooth: HCI UART protocol QCA registered
[    4.217899] usbcore: registered new interface driver bcm203x
[    4.223617] usbcore: registered new interface driver bpa10x
[    4.229248] usbcore: registered new interface driver bfusb
[    4.234789] usbcore: registered new interface driver btusb
[    4.240342] usbcore: registered new interface driver ath3k
[    4.245989] EDAC ZynqMP-OCM: ECC not enabled - Disabling EDAC driver
[    4.252623] sdhci: Secure Digital Host Controller Interface driver
[    4.258860] sdhci: Copyright(c) Pierre Ossman
[    4.263250] sdhci-pltfm: SDHCI platform and OF driver helper
[    4.269093] ledtrig-cpu: registered to indicate activity on CPUs
[    4.275231] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    4.281826] zynqmp_firmware_probe Platform Management API v1.0
[    4.287712] zynqmp_firmware_probe Trustzone version v1.0
[    4.293535] xlnx_event_manager xlnx_event_manager: SGI 15 Registered over ATF
[    4.300736] xlnx_event_manager xlnx_event_manager: Xilinx Event Management 
driver probed
[    4.354524] securefw securefw: securefw probed

[    4.359275] usbcore: registered new interface driver usbhid
[    4.364896] usbhid: USB HID core driver
[    4.369660] sysmon f1270000.sysmon: Successfully registered Versal Sysmon
[    4.376793] ARM CCI_500 PMU driver probed
[    4.377143] fpga_manager fpga0: Xilinx Versal FPGA Manager registered
[    4.388011] pktgen: Packet Generator for packet performance testing. 
Version: 2.75
[    4.396700] Initializing XFRM netlink socket
[    4.401052] NET: Registered PF_INET6 protocol family
[    4.406382] Segment Routing with IPv6
[    4.410086] In-situ OAM (IOAM) with IPv6
[    4.414093] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    4.420301] NET: Registered PF_PACKET protocol family
[    4.425405] NET: Registered PF_KEY protocol family
[    4.430246] can: controller area network core
[    4.434655] NET: Registered PF_CAN protocol family
[    4.439478] can: raw protocol
[    4.442467] can: broadcast manager protocol
[    4.446680] can: netlink gateway - max_hops=1
[    4.451139] Bluetooth: RFCOMM TTY layer initialized
[    4.456066] Bluetooth: RFCOMM socket layer initialized
[    4.461255] Bluetooth: RFCOMM ver 1.11
[    4.465031] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    4.470384] Bluetooth: BNEP filters: protocol multicast
[    4.475653] Bluetooth: BNEP socket layer initialized
[    4.480658] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    4.486622] Bluetooth: HIDP socket layer initialized
[    4.491643] 8021q: 802.1Q VLAN Support v1.8
[    4.495950] 9pnet: Installing 9P2000 support
[    4.500265] Key type dns_resolver registered
[    4.504639] registered taskstats version 1
[    4.508770] Loading compiled-in X.509 certificates
[    4.514508] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
[    4.526955] ff000000.serial: ttyAMA0 at MMIO 0xff000000 (irq = 32, base_baud 
= 0) is a SBSA
[    4.535408] printk: console [ttyAMA0] enabled
[    4.535408] printk: console [ttyAMA0] enabled
[    4.544144] printk: bootconsole [pl11] disabled
[    4.544144] printk: bootconsole [pl11] disabled
[    4.553494] of-fpga-region fpga: FPGA Region probed
[    4.559657] xilinx-zynqmp-dma ffa80000.dma: ZynqMP DMA driver Probe success
[    4.566809] xilinx-zynqmp-dma ffa90000.dma: ZynqMP DMA driver Probe success
[    4.573942] xilinx-zynqmp-dma ffaa0000.dma: ZynqMP DMA driver Probe success
[    4.581073] xilinx-zynqmp-dma ffab0000.dma: ZynqMP DMA driver Probe success
[    4.588203] xilinx-zynqmp-dma ffac0000.dma: ZynqMP DMA driver Probe success
[    4.595330] xilinx-zynqmp-dma ffad0000.dma: ZynqMP DMA driver Probe success
[    4.602463] xilinx-zynqmp-dma ffae0000.dma: ZynqMP DMA driver Probe success
[    4.609593] xilinx-zynqmp-dma ffaf0000.dma: ZynqMP DMA driver Probe success
[    4.616975] spi-nor spi0.0: found n25q00a, expected m25p80
[    4.622820] spi-nor spi0.0: n25q00a (262144 Kbytes)
[    4.627707] 1 fixed-partitions partitions found on MTD device spi0.0
[    4.634053] Creating 1 MTD partitions on "spi0.0":
[    4.638836] 0x000000000000-0x000008000000 : "spi0-flash0"
[    4.645117] macb ff0c0000.ethernet: Not enabling partial store and forward
[    4.654246] macb ff0c0000.ethernet eth0: Cadence GEM rev 0x0107010b at 
0xff0c0000 irq 24 (da:69:52:58:a1:16)
[    4.664925] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[    4.670421] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus 
number 1
[    4.678154] xhci-hcd xhci-hcd.0.auto: hcc params 0x0238fe65 hci version 
0x110 quirks 0x0000000000010810
[    4.687568] xhci-hcd xhci-hcd.0.auto: irq 50, io mem 0xfe200000
[    4.693685] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, 
bcdDevice= 5.15
[    4.701954] usb usb1: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[    4.709180] usb usb1: Product: xHCI Host Controller
[    4.714053] usb usb1: Manufacturer: Linux 5.15.36-xilinx-v2022.2 xhci-hcd
[    4.720839] usb usb1: SerialNumber: xhci-hcd.0.auto
[    4.726030] hub 1-0:1.0: USB hub found
[    4.729792] hub 1-0:1.0: 1 port detected
[    4.733930] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[    4.739420] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus 
number 2
[    4.747072] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[    4.753665] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, 
bcdDevice= 5.15
[    4.761928] usb usb2: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[    4.769147] usb usb2: Product: xHCI Host Controller
[    4.774018] usb usb2: Manufacturer: Linux 5.15.36-xilinx-v2022.2 xhci-hcd
[    4.780797] usb usb2: SerialNumber: xhci-hcd.0.auto
[    4.785874] hub 2-0:1.0: USB hub found
[    4.789638] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
[    4.797474] rtc_zynqmp f12a0000.rtc: registered as rtc0
[    4.802705] rtc_zynqmp f12a0000.rtc: setting system clock to 
2018-03-12T17:24:43 UTC (1520875483)
[    4.811897] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 26
[    4.818161] cdns-i2c ff030000.i2c: 400 kHz mmio ff030000 irq 27
[    4.824437] cpufreq: cpufreq_online: CPU0: Running at unlisted initial 
frequency: 1399998 KHz, changing to: 1199999 KHz
[    4.838192] of_cfs_init
[    4.840650] of_cfs_init: OK
[    4.843504] clk: Not disabling unused clocks
[    4.848238] ALSA device list:
[    4.851201]   No soundcards found.
[    4.867058] mmc0: SDHCI controller on f1050000.mmc [f1050000.mmc] using ADMA 
64-bit
[    4.875330] Freeing unused kernel memory: 2112K
[    4.879974] Run /init as init process
[    4.890641] systemd[1]: System time before build time, advancing clock.
[    4.899844] systemd[1]: systemd 249.7+ running in system mode (+PAM -AUDIT 
-SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID 
-CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 
-PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD +XKBCOMMON +UTMP 
+SYSVINIT default-hierarchy=hybrid)
[    4.930032] systemd[1]: Detected architecture arm64.

Welcome to PetaLinux 2022.2_dev (honister)!

[    4.969417] systemd[1]: Hostname set to <yocto-vpk120-versal-20222>.
[    4.975882] random: systemd: uninitialized urandom read (16 bytes read)
[    4.982520] systemd[1]: Initializing machine ID from random generator.
[    5.020125] systemd-sysv-generator[209]: SysV service 
'/etc/init.d/nfsserver' lacks a native systemd unit file. Automatically 
generating a unit file for compatibility. Please update package to include a 
native systemd unit file, in order to make it more safe and robust.
[    5.044175] systemd-sysv-generator[209]: SysV service 
'/etc/init.d/nfscommon' lacks a native systemd unit file. Automatically 
generating a unit file for compatibility. Please update package to include a 
native systemd unit file, in order to make it more safe and robust.
[    5.068337] systemd-sysv-generator[209]: SysV service 
'/etc/init.d/inetd.busybox' lacks a native systemd unit file. Automatically 
generating a unit file for compatibility. Please update package to include a 
native systemd unit file, in order to make it more safe and robust.
[    5.093109] systemd-sysv-generator[209]: SysV service '/etc/init.d/dropbear' 
lacks a native systemd unit file. Automatically generating a unit file for 
compatibility. Please update package to include a native systemd unit file, in 
order to make it more safe and robust.
[    5.128617] mmc0: new high speed SDHC card at address aaaa
[    5.134511] mmcblk0: mmc0:aaaa SB16G 14.8 GiB 
[    5.143030]  mmcblk0: p1
[    5.217956] systemd[1]: Queued start job for default target Multi-User 
System.
[    5.225791] random: systemd: uninitialized urandom read (16 bytes read)
[    5.244823] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[    5.265387] random: systemd: uninitialized urandom read (16 bytes read)
[    5.272936] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[    5.294204] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[    5.314135] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[    5.333482] systemd[1]: Started Dispatch Password Requests to Console 
Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory 
Watch.
[    5.357423] systemd[1]: Started Forward Password Requests to Wall Directory 
Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory 
Watch.
[    5.381406] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[    5.397325] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[    5.421474] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[    5.441396] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[    5.457705] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[    5.477337] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[    5.497534] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[    5.517436] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[    5.537638] systemd[1]: Listening on Journal Audit Socket.
[  OK  ] Listening on Journal Audit Socket.
[    5.557504] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[    5.577550] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[    5.597627] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[    5.617554] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    5.637491] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    5.657495] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[    5.679195] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[    5.699118] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[    5.723179] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[    5.741509] systemd[1]: Condition check resulted in Kernel Trace File System 
being skipped.
[    5.751820] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[    5.769472] systemd[1]: Condition check resulted in Create List of Static 
Device Nodes being skipped.
[    5.780891] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[    5.803622] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[    5.823318] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[    5.843380] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[    5.861387] systemd[1]: Condition check resulted in File System Check on 
Root Device being skipped.
[    5.870886] systemd[1]: Condition check resulted in Load Kernel Modules 
being skipped.
[    5.880540] systemd[1]: Mounting NFSD configuration filesystem...
         Mounting NFSD configuration filesystem...
[    5.903300] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[    5.927348] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[    5.947338] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[    5.968227] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[    5.985749] systemd[1]: Mounted Huge Pages File System.
[  OK  ] Mounted Huge Pages File System.
[    6.009676] systemd[1]: Mounted POSIX Message Queue File System.
[  OK  ] Mounted POSIX Message Queue File System.
[    6.033733] systemd[1]: Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Debug[    6.041258] usb 1-1: new 
high-speed USB device number 2 using xhci-hcd
 File System.
[    6.061543] systemd[1]: Mounted Temporary Directory /tmp.
[  OK  ] Mounted Temporary Directory /tmp.
[    6.081821] systemd[1]: [email protected]: Deactivated successfully.
[    6.089792] systemd[1]: Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module configfs.
[    6.109868] systemd[1]: [email protected]: Deactivated successfully.
[    6.117460] systemd[1]: Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module drm.
[    6.137981] systemd[1]: [email protected]: Deactivated successfully.
[    6.145561] systemd[1]: Finished Load Kernel Module fuse.
[  OK  ] Finished Load Kernel Module fuse.
[    6.165580] systemd[1]: proc-fs-nfsd.mount: Mount process exited, 
code=exited, status=32/n/a
[    6.174178] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'.
[    6.182127] systemd[1]: Failed to mount NFSD configuration filesystem.
[FAILED] Failed to mount NFSD configuration 
filesystem.
[    6.201544] usb 1-1: New USB device found, idVendor=0781, idProduct=5567, 
bcdDevice= 1.00
[    6.209724] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    6.216853] usb 1-1: Product: Cruzer Blade
[    6.220941] usb 1-1: Manufacturer: SanDisk
[    6.225028] usb 1-1: SerialNumber: 4C530000210130209104
[    6.230779] usb-storage 1-1:1.0: USB Mass Storage device detected
[    6.237060] scsi host0: usb-storage 1-1:1.0
See 'systemctl status proc-fs-nfsd.mount' for details.
[    6.253297] systemd[1]: Dependency failed for NFS Mount Daemon.
[DEPEND] Dependency failed for NFS Mount Daemon.
[    6.273282] systemd[1]: Dependency failed for NFS server and services.
[DEPEND] Dependency failed for NFS server and 
services.
[    6.297297] systemd[1]: nfs-server.service: Job nfs-server.service/start 
failed with result 'dependency'.
[    6.306894] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start 
failed with result 'dependency'.
[    6.317745] systemd[1]: Finished Remount Root and Kernel File Systems.
[  OK  ] Finished Remount Root and Kernel File Systems.
[    6.338567] systemd[1]: Finished Apply Kernel Variables.
[  OK  ] Finished Apply Kernel Variables.
[    6.359351] systemd[1]: Condition check resulted in FUSE Control File System 
being skipped.
[    6.369842] systemd[1]: Mounting Kernel Configuration File System...
         Mounting Kernel Configuration File System...
[    6.389700] systemd[1]: Condition check resulted in Rebuild Hardware 
Database being skipped.
[    6.398339] systemd[1]: Condition check resulted in Platform Persistent 
Storage Archival being skipped.
[    6.410083] systemd[1]: Starting Create System Users...
         Starting Create System Users...
[    6.423656] systemd[1]: Mounted Kernel Configuration File System.
[  OK  ] Mounted Kernel Configuration File System.
[    6.450851] systemd[1]: Finished Create System Users.
[  OK  ] Finished Create System Users.
[    6.471764] systemd[1]: Starting Create Static Device Nodes in /dev...
         Starting Create Static Device Nodes in /dev...
[    6.502688] systemd[1]: Finished Create Static Device Nodes in /dev.
[  OK  ] Finished Create Static Device Nodes in /dev.
[    6.525641] systemd[1]: Reached target Preparation for Local File Systems.
[  OK  ] Reached target Preparation for Local File 
Systems.
[    6.551368] systemd[1]: Mounting /var/volatile...
         Mounting /var/volatile...
[    6.571858] systemd[1]: Started Entropy Daemon based on the HAVEGE algorithm.
[  OK  ] Started Entropy Daemon based on the HAVEGE 
algorithm.
[    6.593858] systemd[1]: systemd-journald.service: unit configures an IP 
firewall, but the local system does not support BPF/cgroup firewalling.
[    6.606787] systemd[1]: (This warning is only shown for the first unit using 
IP firewalling.)
[    6.617880] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    6.632270] systemd[1]: Starting Rule-based Manager for Device Events and 
Files...
         Starting Rule-based Manage…for Device Events and Files...
[    6.664032] systemd[1]: Finished Coldplug All udev Devices.
[  OK  ] Finished Coldplug All udev Devices.
[    6.693783] systemd[1]: Mounted /var/volatile.
[  OK  ] Mounted /var/volatile.
[    6.713800] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Started Rule-based Manager for Device Events and 
Files.
         Starting Flush Journal to Persistent Storage...
[    6.769077] systemd-journald[242]: Received client request to flush runtime 
journal.
         Starting Network Configuration...
         Starting Load/Save Random Seed...
[  OK  ] Reached target Local File Systems.
         Starting Rebuild Dynamic Linker Cache...
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Rebuild Dynamic Linker Cache.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Create Volatile Files and Directories.
         Starting Rebuild Journal Catalog...
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Started Network Configuration.
[    7.113545] random: fast init done
         Starting Network Name Resolution...
[    7.158043] macb ff0c0000.ethernet eth0: PHY [ff0c0000.ethernet-ffffffff:01] 
driver [TI DP83867] (irq=POLL)
[    7.167854] macb ff0c0000.ethernet eth0: configuring for phy/rgmii-id link 
mode
[  OK  ] Finished Rebuild Journal Catalog[    7.215439] 
pps pps0: new PPS source ptp0
.
[    7.224774] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
[    7.274042] scsi 0:0:0:0: Direct-Access     SanDisk  Cruzer Blade     1.00 
PQ: 0 ANSI: 6
[    7.292870] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 
GB/14.3 GiB)
[    7.315847] sd 0:0:0:0: [sda] Write Protect is off
[    7.341280] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, 
doesn't support DPO or FUA
[    7.385490]  sda: sda1
[    7.395577] sd 0:0:0:0: [sda] Attached SCSI removable disk
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Time Set.
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill 
Watch.
         Starting Update is Completed...
[  OK  ] Finished Update is Completed.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Listening on dropbear.socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started System Logging Service.
[  OK  ] Started D-Bus System Message Bus.
         Starting LSB: NFS support for both client and server...
         Starting User Login Management...
[  OK  ] Started Network Name Resolution.
[  OK  ] Started LSB: NFS support for both client and 
server.
[    8.252036] random: crng init done
[    8.255458] random: 7 urandom warning(s) missed due to ratelimiting
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Started User Login Management.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting inetd.busybox.service...
[  OK  ] Started NFS status monitor for NFSv2/3 
locking..
         Starting LSB: Kernel NFS server support...
         Starting Permit User Sessions...
         Starting Target Communication Framework agent...
[  OK  ] Started inetd.busybox.service.
[FAILED] Failed to start LSB: Kernel NFS server 
support.
See 'systemctl status nfsserver.service' for details.
[  OK  ] Finished Permit User Sessions.
[  OK  ] Started Target Communication Framework agent.
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on ttyAMA0.
[  OK  ] Reached target Login Prompts.
[  OK  ] Reached target Multi-User System.
         Starting Record Runlevel Change in UTMP...
[  OK  ] Finished Record Runlevel Change in UTMP.


PetaLinux 2022.2_dev yocto-vpk120-versal-20222 ttyAMA0

yocto-vpk120-versal-20222 login: [   10.282544] macb ff0c0000.ethernet eth0: 
Link is Up - 1Gbps/Full - flow control tx
[   10.290141] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready


yocto-vpk120-versal-20222 login: petalinux

You are required to change your password immediately (administrator enforced).
New password: 
Retype new password: 
[   22.360071] audit: type=1006 audit(1637342385.464:2): pid=310 uid=0 
old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
[   22.372611] audit: type=1300 audit(1637342385.464:2): arch=c00000b7 
syscall=64 success=yes exit=4 a0=8 a1=ffffd201f0c0 a2=4 a3=ffff89a676b0 items=0 
ppid=1 pid=310 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 
fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/lib/systemd/systemd" key=(null)
[   22.399138] audit: type=1327 audit(1637342385.464:2): proctitle="(systemd)"
78yocto-vpk120-versal-20222:~$ 
yocto-vpk120-versal-20222:~$ sudo s      ifconfig 
eth0      Link encap:Ethernet  HWaddr DA:69:52:58:A1:16  
          inet addr:10.10.70.1  Bcast:10.10.70.255  Mask:255.255.255.0
          inet6 addr: fe80::d869:52ff:fe58:a116/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:12 errors:0 dropped:0 overruns:0 frame:0
          TX packets:36 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:1624 (1.5 KiB)  TX bytes:3860 (3.7 KiB)
          Interrupt:24 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:6 errors:0 dropped:0 overruns:0 frame:0
          TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:400 (400.0 B)  TX bytes:400 (400.0 B)

yocto-vpk120-versal-20222:~$ sudo su

We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:

    #1) Respect the privacy of others.
    #2) Think before you type.
    #3) With great power comes great responsibility.


Password: 
yocto-vpk120-versal-20222:/home/petalinux# halt

Session terminated, terminating         Stopping Session c1 of User 
petalinux...
[  OK  ] Removed slice Slice /system/modprobe.
[  OK  ] Stopped target Multi-User System.
[  OK  ] Stopped target Login Prompts.
[  OK  ] Stopped target Host and Network Name Lookups.
[  OK  ] Stopped target System Time Set.
[  OK  ] Stopped target Timer Units.
[  OK  ] Stopped Daily Cleanup of Temporary Directories.
[  OK  ] Closed Load/Save RF Kill Switch Status /dev/rfkill 
Watch.
         Stopping Kernel Logging Service...
         Stopping System Logging Service...
         Stopping Getty on tty1...
         Stopping inetd.busybox.service...
         Stopping Serial Getty on ttyAMA0...
         Stopping Load/Save Random Seed...
         Stopping Target Communication Framework agent...
[  OK  ] Stopped Kernel Logging Service.
[  OK  ] Stopped System Logging Service.
[  OK  ] Stopped Target Communication Framework agent.
[  OK  ] Stopped Getty on tty1.
[  OK  ] Stopped Serial Getty on ttyAMA0.
[  OK  ] Stopped inetd.busybox.service.
[  OK  ] Stopped Load/Save Random Seed.
[  OK  ] Stopped Session c1 of User petalinux.
[  OK  ] Removed slice Slice /system/getty.
[  OK  ] Removed slice Slice /system/serial-getty.
         Stopping LSB: NFS support for both client and server...
         Stopping User Login Management...
         Stopping User Manager for UID 1000...
[  OK  ] Stopped User Manager for UID 1000.
[  OK  ] Stopped LSB: NFS support for both client and 
server.
[  OK  ] Stopped target RPC Port Mapper.
         Stopping User Runtime Directory /run/user/1000...
[  OK  ] Unmounted /run/user/1000.
[  OK  ] Stopped User Login Management.
[  OK  ] Stopped User Runtime Directory /run/user/1000.
[  OK  ] Removed slice User Slice of UID 1000.
         Stopping D-Bus System Message Bus...
         Stopping Permit User Sessions...
[  OK  ] Stopped D-Bus System Message Bus.
[  OK  ] Stopped Permit User Sessions.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Network.
[  OK  ] Stopped target Path Units.
[  OK  ] Stopped Dispatch Password …ts to Console Directory 
Watch.
[  OK  ] Stopped Forward Password R…uests to Wall Directory 
Watch.
[  OK  ] Stopped target Remote File Systems.
[  OK  ] Stopped target Slice Units.
[  OK  ] Removed slice User and Session Slice.
[  OK  ] Stopped target Socket Units.
[  OK  ] Closed D-Bus System Message Bus Socket.
[  OK  ] Closed dropbear.socket.
[  OK  ] Stopped target System Initialization.
[  OK  ] Closed Syslog Socket.
         Stopping Network Name Resolution...
         Stopping Network Time Synchronization...
[  OK  ] Stopped Update is Completed.
[  OK  ] Stopped Rebuild Dynamic Linker Cache.
[  OK  ] Stopped Rebuild Journal Catalog.
         Stopping Record System Boot/Shutdown in UTMP...
[  OK  ] Stopped Network Name Resolution.
         Stopping Network Configuration...
[  OK  ] Stopped Record System Boot/Shutdown in UTMP.
[  OK  ] Stopped Network Configuration.
[  OK  ] Closed Network Service Netlink Socket.
[  OK  ] Stopped Apply Kernel Variables.
[  OK  ] Stopped Network Time Synchronization.
[  OK  ] Stopped Create Volatile Files and Directories.
[  OK  ] Stopped target Local File Systems.
         Unmounting /run/credentials/systemd-sysusers.service...
         Unmounting Temporary Directory /tmp...
         Unmounting /var/volatile...
[  OK  ] Unmounted 
/run/credentials/systemd-sysusers.service.
[  OK  ] Unmounted Temporary Directory /tmp.
[  OK  ] Unmounted /var/volatile.
[  OK  ] Stopped target Preparation for Local File 
Systems.
[  OK  ] Stopped target Swaps.
[  OK  ] Reached target Unmount All Filesystems.
[  OK  ] Stopped Create Static Device Nodes in /dev.
[  OK  ] Stopped Create System Users.
[  OK  ] Stopped Remount Root and Kernel File Systems.
[  OK  ] Reached target System Shutdown.
[  OK  ] Reached target Late Shutdown Services.
         Starting System Halt...
[   44.726578] systemd-shutdown[1]: Syncing filesystems and block devices.
[   44.733548] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[   44.747350] systemd-journald[242]: Received SIGTERM from PID 1 
(systemd-shutdow).
[   44.755358] audit: type=1335 audit(1637342407.864:3): pid=242 uid=0 
auid=4294967295 tty=(none) ses=4294967295 comm="systemd-journal" 
exe="/lib/systemd/systemd-journald" nl-mcgrp=1 op=disconnect res=1
[   44.782530] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[   44.793636] systemd-shutdown[1]: Unmounting file systems.
[   44.800172] [347]: Remounting '/' read-only in with options '(null)'.
[   44.806954] systemd-shutdown[1]: All filesystems unmounted.
[   44.813143] systemd-shutdown[1]: Deactivating swaps.
[   44.818229] systemd-shutdown[1]: All swaps deactivated.
[   44.823456] systemd-shutdown[1]: Detaching loop devices.
[   44.830658] systemd-shutdown[1]: All loop devices detached.
[   44.836325] systemd-shutdown[1]: Stopping MD devices.
[   44.841630] systemd-shutdown[1]: All MD devices stopped.
[   44.846945] systemd-shutdown[1]: Detaching DM devices.
[   44.852192] systemd-shutdown[1]: All DM devices detached.
[   44.857593] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD 
devices and DM devices detached.
[   44.868358] systemd-shutdown[1]: Syncing filesystems and block devices.
[   44.875151] systemd-shutdown[1]: Halting system.
[   44.882402] reboot: System halted
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#5145): 
https://lists.yoctoproject.org/g/meta-xilinx/message/5145
Mute This Topic: https://lists.yoctoproject.org/mt/96633802/21656
Group Owner: [email protected]
Unsubscribe: https://lists.yoctoproject.org/g/meta-xilinx/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to