From Fedora Project Wiki
(Update information about u-boot source code)
(How to remove console from grub config)
Line 139: Line 139:
When edit is done press ctrl+x.
When edit is done press ctrl+x.


==== Persistent grub changes ====
When you boot and login you can remove default console setting by editing /boot/grub2/grub.cfg file to stop to deal with this incorrect setting.


=== Linux boot ===
=== Linux boot ===

Revision as of 12:10, 30 April 2021

Xilinx ZynqMP

Xilinx ZynqMP is quad core Cortex a53 based SoC. For more information please look at https://www.xilinx.com/products/silicon-devices/soc/zynq-ultrascale-mpsoc.html

ZynqMP boards are supported by Fedora aarch64. As of Fedora 35 (Rawhide image), you can install to SD by the following command

xzcat Fedora-Minimal-Rawhide-20210408.n.0.aarch64.raw.xz| sudo dd status=progress bs=4M of=/dev/mmcblk0

U-Boot setting

If you want to also boot the board from SD card it is good to do some additional steps. The easiest way is to build the latest U-Boot from U-Boot source code by

export DEVICE_TREE=zynqmp-zcu104-revC
make xilinx_zynqmp_virt_defconfig
make -j

Note: using u-boot (sha1: f3a0d2c1af630cc09a34c2159aa2dfa12b831762) with this patch applied on the top http://patchwork.ozlabs.org/project/uboot/patch/20210428135401.22365-1-peng.fan@oss.nxp.com/ (soon it will be in master branch).

PMUFW configuration

In case of that you also pointed to a PMU firmware and a PMU config object file via Kconfig macros

CONFIG_PMUFW_INIT_FILE="pmu.bin"
CONFIG_ZYNQMP_SPL_PM_CFG_OBJ_FILE="pmu_obj.bin"

you can directly copy boot.bin(spl/boot.bin) and u-boot.itb files directly to the first fat partitions on SD card.

SD card preparation

Also it is good practice (till U-Boot starts to support EFI partition with type 0x6 not just 0xef) to change the first partition from 0x6 to 0xef type which will ensure that U-Boot is capable to save efi variables.

$ sudo fdisk /dev/sdb

Welcome to fdisk (util-linux 2.31.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.


Command (m for help): p
Disk /dev/sdb: 14.9 GiB, 15931539456 bytes, 31116288 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xb5cb726c

Device     Boot   Start      End Sectors  Size Id Type
/dev/sdb1  *       2048  1230847 1228800  600M  6 FAT16
/dev/sdb2       1230848  3327999 2097152    1G 83 Linux
/dev/sdb3       3328000 12582911 9254912  4.4G 83 Linux

Command (m for help): t
Partition number (1-3, default 3): 1
Hex code (type L to list all codes): 0xef

Changed type of partition 'FAT16' to 'EFI (FAT-12/16/32)'.

Command (m for help): p
Disk /dev/sdb: 14.9 GiB, 15931539456 bytes, 31116288 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xb5cb726c

Device     Boot   Start      End Sectors  Size Id Type
/dev/sdb1  *       2048  1230847 1228800  600M ef EFI (FAT-12/16/32)
/dev/sdb2       1230848  3327999 2097152    1G 83 Linux
/dev/sdb3       3328000 12582911 9254912  4.4G 83 Linux

Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

Bootloader boot

After power up you should get

U-Boot SPL 2021.07-rc1-00161-g755b48c50cd1 (Apr 30 2021 - 13:08:36 +0200)
PMUFW:  v1.1
Loading new PMUFW cfg obj (2024 bytes)
Silicon version:        3
EL Level:       EL3
Chip ID:        zu7e
Multiboot:      0
Trying to boot from MMC2
spl: could not initialize mmc. error: -19
Trying to boot from MMC1
spl_load_image_fat_os: error reading image u-boot.bin, err - -2
NOTICE:  ATF running on XCZU7EG/EV/silicon v4/RTL5.1 at 0xfffea000
NOTICE:  BL31: v2.2(release):xilinx-v2020.2.2-k26
NOTICE:  BL31: Built : 11:51:16, Apr 21 2021


U-Boot 2021.07-rc1-00161-g755b48c50cd1 (Apr 30 2021 - 13:08:36 +0200)

Model: ZynqMP ZCU104 RevC
Board: Xilinx ZynqMP
DRAM:  2 GiB
PMUFW:  v1.1
EL Level:       EL2
Chip ID:        zu7e
WDT:   Started with servicing (60s timeout)
NAND:  0 MiB
MMC:   mmc@ff170000: 0
Loading Environment from FAT... *** Error - No Valid Environment Area found
*** Warning - bad env area, using default environment

In:    serial
Out:   serial
Err:   serial
Bootmode: LVL_SHFT_SD_MODE1
Reset reason:   EXTERNAL 
Net:   
ZYNQ GEM: ff0e0000, mdio bus ff0e0000, phyaddr 12, interface rgmii-id
eth0: ethernet@ff0e0000
Scanning disk mmc@ff170000.blk...
Found 4 disks
Hit any key to stop autoboot:  0 

Grub changes

When autoboot expires grub will start and shows you two options for boot

      Fedora (5.12.0-0.rc6.20210407git2d743660786e.185.fc35.aarch64) 35 (Rawhide Prerelease)                                                          
      UEFI Firmware Settings

Point to the first option and press key 'e' to edit kernel boot arguments where you add proper console setting (removing console setting should also work) Example configuration:

linux ($root)/vmlinuz-5.12.0-0.rc6.20210407git2d743660786e.185.fc35.aarch64 root=UUID=3315eb57-4bcd-4e83-80c5-c261a1a83625 ro console=ttyPS0,115200

When edit is done press ctrl+x.

Persistent grub changes

When you boot and login you can remove default console setting by editing /boot/grub2/grub.cfg file to stop to deal with this incorrect setting.

Linux boot

After this you should be able to see full bootlog like this:

EFI stub: Booting Linux Kernel...
EFI stub: EFI_RNG_PROTOCOL unavailable
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services and installing virtual address map...
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.12.0-0.rc6.20210407git2d743660786e.185.fc35.aarch64 (mockbuild@buildvm-a64-06.iad2.fedoraproject.org) (gcc (GCC) 11.0.1 20210405 (Red Hat 11.0.1-0), GNU ld version 2.36.1-8.fc35) #1 SMP Wed Apr 7 20:38:16 UTC 2021
[    0.000000] Machine model: ZynqMP ZCU104 RevC
[    0.000000] efi: EFI v2.80 by Das U-Boot
[    0.000000] efi: ESRT=0x77e08040 RTPROP=0x77e06040 SMBIOS=0x77e02000 MEMRESERVE=0x77c89040 
[    0.000000] esrt: Reserving ESRT space from 0x0000000077e08040 to 0x0000000077e08050.
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x000000007fffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x7fb6e3c0-0x7fb84fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000000000-0x000000007fffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000077c9bfff]
[    0.000000]   node   0: [mem 0x0000000077c9c000-0x0000000077c9dfff]
[    0.000000]   node   0: [mem 0x0000000077c9e000-0x0000000077c9efff]
[    0.000000]   node   0: [mem 0x0000000077c9f000-0x0000000077c9ffff]
[    0.000000]   node   0: [mem 0x0000000077ca0000-0x0000000077df8fff]
[    0.000000]   node   0: [mem 0x0000000077df9000-0x0000000077dfffff]
[    0.000000]   node   0: [mem 0x0000000077e00000-0x0000000077e01fff]
[    0.000000]   node   0: [mem 0x0000000077e02000-0x0000000077e02fff]
[    0.000000]   node   0: [mem 0x0000000077e03000-0x0000000077e04fff]
[    0.000000]   node   0: [mem 0x0000000077e05000-0x0000000077e06fff]
[    0.000000]   node   0: [mem 0x0000000077e07000-0x0000000077e08fff]
[    0.000000]   node   0: [mem 0x0000000077e09000-0x0000000077e0afff]
[    0.000000]   node   0: [mem 0x0000000077e0b000-0x0000000077e0bfff]
[    0.000000]   node   0: [mem 0x0000000077e0c000-0x0000000077e10fff]
[    0.000000]   node   0: [mem 0x0000000077e11000-0x0000000077e11fff]
[    0.000000]   node   0: [mem 0x0000000077e12000-0x0000000077e12fff]
[    0.000000]   node   0: [mem 0x0000000077e13000-0x0000000077e13fff]
[    0.000000]   node   0: [mem 0x0000000077e14000-0x0000000077e14fff]
[    0.000000]   node   0: [mem 0x0000000077e15000-0x0000000077e16fff]
[    0.000000]   node   0: [mem 0x0000000077e17000-0x0000000077e17fff]
[    0.000000]   node   0: [mem 0x0000000077e18000-0x000000007fe9ffff]
[    0.000000]   node   0: [mem 0x000000007fea0000-0x000000007feaffff]
[    0.000000]   node   0: [mem 0x000000007feb0000-0x000000007fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000007fffffff]
[    0.000000] cma: Reserved 64 MiB at 0x0000000079000000
[    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.1
[    0.000000] percpu: Embedded 481 pages/cpu s1931032 r8192 d30952 u1970176
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516096
[    0.000000] Policy zone: DMA
[    0.000000] Kernel command line: BOOT_IMAGE=(hd0,msdos2)/vmlinuz-5.12.0-0.rc6.20210407git2d743660786e.185.fc35.aarch64 root=UUID=3315eb57-4bcd-4e83-80c5-c261a1a83625 ro console=ttyPS0,115200
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 1881252K/2097152K available (16448K kernel code, 4774K rwdata, 10904K rodata, 8640K init, 24064K bss, 150364K reserved, 65536K cma-reserved)
[    0.000000] random: get_random_u64 called from kmem_cache_open+0x30/0x340 with crng_init=0
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] kmemleak: Kernel memory leak detector disabled
[    0.000000] ftrace: allocating 51382 entries in 201 pages
[    0.000000] ftrace: allocated 201 pages with 4 groups
[    0.000000] Running RCU self tests
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu:     RCU lockdep checking is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=4096 to nr_cpu_ids=4.
[    0.000000] rcu:     RCU callback double-/use-after-free debug enabled.
[    0.000000]  Trampoline variant of Tasks RCU enabled.
[    0.000000]  Rude variant of Tasks RCU enabled.
[    0.000000]  Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GIC: Adjusting CPU interface base to 0x00000000f902f000
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] arch_timer: cp15 timer(s) running at 99.99MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171015c6fb, max_idle_ns: 440795203665 ns
[    0.000001] sched_clock: 56 bits at 99MHz, resolution 10ns, wraps every 4398046511101ns
[    0.000594] Console: colour dummy device 80x25
[    0.000756] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000781] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000805] ... MAX_LOCK_DEPTH:          48
[    0.000828] ... MAX_LOCKDEP_KEYS:        8192
[    0.000852] ... CLASSHASH_SIZE:          4096
[    0.000875] ... MAX_LOCKDEP_ENTRIES:     32768
[    0.000899] ... MAX_LOCKDEP_CHAINS:      65536
[    0.000922] ... CHAINHASH_SIZE:          32768
[    0.000945]  memory used by lock dependency info: 6877 kB
[    0.000969]  memory used for stack traces: 4224 kB
[    0.000992]  per task-struct memory footprint: 2688 bytes
[    0.001298] Calibrating delay loop (skipped), value calculated using timer frequency.. 199.99 BogoMIPS (lpj=999989)
[    0.001342] pid_max: default: 32768 minimum: 301
[    0.001699] LSM: Security Framework initializing
[    0.001817] Yama: becoming mindful.
[    0.001911] SELinux:  Initializing.
[    0.002216] LSM support for eBPF active
[    0.002538] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.002579] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.011946] Running RCU-tasks wait API self tests
[    0.121896] rcu: Hierarchical SRCU implementation.
[    0.128791] Remapping and enabling EFI services.
[    0.131034] smp: Bringing up secondary CPUs ...
[    0.134737] Detected VIPT I-cache on CPU1
[    0.134828] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.139289] Detected VIPT I-cache on CPU2
[    0.139348] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.143503] Detected VIPT I-cache on CPU3
[    0.143557] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.144360] smp: Brought up 1 node, 4 CPUs
[    0.144464] SMP: Total of 4 processors activated.
[    0.144495] CPU features: detected: 32-bit EL0 Support
[    0.144527] CPU features: detected: CRC32 instructions
[    0.144559] CPU features: detected: 32-bit EL1 Support
[    0.145311] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching
[    0.188362] CPU: All CPU(s) started at EL2
[    0.188439] Callback from call_rcu_tasks_trace() invoked.
[    0.188707] alternatives: patching kernel code
[    0.194990] devtmpfs: initialized
[    0.232588] Callback from call_rcu_tasks_rude() invoked.
[    0.252976] Registered cp15_barrier emulation handler
[    0.253039] Registered setend emulation handler
[    0.253099] KASLR disabled due to lack of seed
[    0.282690] DMA-API: preallocated 65536 debug entries
[    0.282742] DMA-API: debugging enabled by kernel config
[    0.282775] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.282847] futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
[    0.346465] pinctrl core: initialized pinctrl subsystem
[    0.350110] Callback from call_rcu_tasks() invoked.
[    0.351719] 
[    0.351749] *************************************************************
[    0.351779] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.351808] **                                                         **
[    0.351837] **  IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL  **
[    0.351865] **                                                         **
[    0.351894] ** This means that this kernel is built to expose internal **
[    0.351923] ** IOMMU data structures, which may compromise security on **
[    0.351952] ** your system.                                            **
[    0.351980] **                                                         **
[    0.352009] ** If you see this message and you are not debugging the   **
[    0.352037] ** kernel, report this immediately to your vendor!         **
[    0.352066] **                                                         **
[    0.352095] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.352124] *************************************************************
[    0.353415] SMBIOS 3.0 present.
[    0.353456] DMI:  , BIOS 2021.07-rc1-00161-g755b48c50cd1 04/30/2021
[    0.355799] NET: Registered protocol family 16
[    0.401654] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    0.402676] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.404355] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.404919] audit: initializing netlink subsys (disabled)
[    0.405937] audit: type=2000 audit(0.400:1): state=initialized audit_enabled=0 res=1
[    0.411249] thermal_sys: Registered thermal governor 'fair_share'
[    0.411276] thermal_sys: Registered thermal governor 'step_wise'
[    0.411312] thermal_sys: Registered thermal governor 'user_space'
[    0.411693] cpuidle: using governor menu
[    0.412486] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.412905] ASID allocator initialised with 65536 entries
[    0.415544] Serial: AMBA PL011 UART driver
[    0.577743] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.577790] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.577822] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.577854] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    1.016870] cryptomgr_test (44) used greatest stack depth: 13232 bytes left
[    1.148760] cryptomgr_test (45) used greatest stack depth: 13184 bytes left
[    1.158427] cryptomgr_test (54) used greatest stack depth: 12768 bytes left
[    1.168036] cryptd: max_cpu_qlen set to 1000
[    1.218363] alg: No test for 842 (842-generic)
[    1.218862] alg: No test for 842 (842-scomp)
[    1.223836] kworker/u8:0 (77) used greatest stack depth: 12528 bytes left
[    1.228650] cryptomgr_test (74) used greatest stack depth: 11808 bytes left
[    1.257982] raid6: skip pq benchmark and using algorithm neonx8
[    1.258029] raid6: using neon recovery algorithm
[    1.260011] ACPI: Interpreter disabled.
[    1.264433] iommu: Default domain type: Translated 
[    1.266230] vgaarb: loaded
[    1.269618] SCSI subsystem initialized
[    1.271750] usbcore: registered new interface driver usbfs
[    1.272042] usbcore: registered new interface driver hub
[    1.272279] usbcore: registered new device driver usb
[    1.273470] pps_core: LinuxPPS API ver. 1 registered
[    1.273503] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.273600] PTP clock support registered
[    1.274515] EDAC MC: Ver: 3.0.0
[    1.278339] Registered efivars operations
[    1.280296] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
[    1.286965] NetLabel: Initializing
[    1.286998] NetLabel:  domain hash size = 128
[    1.287028] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.287369] NetLabel:  unlabeled traffic allowed by default
[    1.290904] clocksource: Switched to clocksource arch_sys_counter
[    2.030171] VFS: Disk quotas dquot_6.6.0
[    2.030477] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.033252] pnp: PnP ACPI: disabled
[    2.087165] NET: Registered protocol family 2
[    2.090476] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 90112 bytes, linear)
[    2.091151] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    2.092472] TCP bind hash table entries: 16384 (order: 8, 1310720 bytes, linear)
[    2.094278] TCP: Hash tables configured (established 16384 bind 16384)
[    2.095416] MPTCP token hash table entries: 2048 (order: 5, 196608 bytes, linear)
[    2.095908] UDP hash table entries: 1024 (order: 5, 196608 bytes, linear)
[    2.096321] UDP-Lite hash table entries: 1024 (order: 5, 196608 bytes, linear)
[    2.097469] NET: Registered protocol family 1
[    2.097575] NET: Registered protocol family 44
[    2.097625] PCI: CLS 0 bytes, default 64
[    2.099042] Trying to unpack rootfs image as initramfs...
[    4.967803] Freeing initrd memory: 36928K
[    4.970426] hw perfevents: no interrupt-affinity property for /pmu, guessing.
[    4.972360] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    4.973175] kvm [1]: IPA Size Limit: 40 bits
[    4.999931] kvm [1]: vgic interrupt IRQ9
[    5.000558] kvm [1]: Hyp mode initialized successfully
[    5.553178] Initialise system trusted keyrings
[    5.553592] Key type blacklist registered
[    5.554387] workingset: timestamp_bits=37 max_order=19 bucket_order=0
[    5.639041] zbud: loaded
[    5.704366] NET: Registered protocol family 38
[    5.704522] xor: measuring software checksum speed
[    5.708733]    8regs           :  2358 MB/sec
[    5.712384]    32regs          :  2790 MB/sec
[    5.716568]    arm64_neon      :  2373 MB/sec
[    5.716599] xor: using function: 32regs (2790 MB/sec)
[    5.716657] Key type asymmetric registered
[    5.716728] Asymmetric key parser 'x509' registered
[    5.716913] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    5.717757] io scheduler mq-deadline registered
[    5.717794] io scheduler kyber registered
[    5.719201] io scheduler bfq registered
[    5.727813] atomic64_test: passed
[    5.803716] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    5.873807] msm_serial: driver initialized
[    5.884885] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    5.897324] libphy: Fixed MDIO Bus: probed
[    5.900718] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.900817] ehci-pci: EHCI PCI platform driver
[    5.901747] usbcore: registered new interface driver usbserial_generic
[    5.902002] usbserial: USB Serial support registered for generic
[    5.903049] mousedev: PS/2 mouse device common for all mice
[    5.912135] device-mapper: uevent: version 1.0.3
[    5.914629] device-mapper: ioctl: 4.44.0-ioctl (2021-02-01) initialised: dm-devel@redhat.com
[    5.924513] ledtrig-cpu: registered to indicate activity on CPUs
[    5.928642] zynqmp_firmware_probe Platform Management API v1.1
[    5.928680] zynqmp_firmware_probe Trustzone version v1.0
[    6.000682] zynqmp_clk_mux_get_parent() getparent failed for clock: lpd_wdt, ret = -22
[    6.003747] hid: raw HID events driver (C) Jiri Kosina
[    6.004804] usbcore: registered new interface driver usbhid
[    6.004837] usbhid: USB HID core driver
[    6.013948] drop_monitor: Initializing network drop monitor service
[    6.014450] Initializing XFRM netlink socket
[    6.019374] NET: Registered protocol family 10
[    6.151425] Segment Routing with IPv6
[    6.151475] RPL Segment Routing with IPv6
[    6.151690] mip6: Mobile IPv6
[    6.151736] NET: Registered protocol family 17
[    6.155148] registered taskstats version 1
[    6.155455] Loading compiled-in X.509 certificates
[    6.160429] Loaded X.509 cert 'Fedora kernel signing key: 2fc12179f8de138763c06d7663a41ebf58cf6e50'
[    6.166287] zswap: loaded using pool lzo/zbud
[    6.168746] debug_vm_pgtable: [debug_vm_pgtable         ]: Validating architecture page table helpers
[    6.173357] Key type ._fscrypt registered
[    6.173397] Key type .fscrypt registered
[    6.173432] Key type fscrypt-provisioning registered
[    6.187979] Btrfs loaded, crc32c=crc32c-generic, assert=on, zoned=yes
[    6.652051] Key type encrypted registered
[    6.652376] ima: No TPM chip found, activating TPM-bypass!
[    6.652555] ima: Allocated hash algorithm: sha256
[    6.652752] ima: No architecture policies found
[    6.653325] evm: Initialising EVM extended attributes:
[    6.653357] evm: security.selinux
[    6.653387] evm: security.ima
[    6.653416] evm: security.capability
[    6.653445] evm: HMAC attrs: 0x1
[    6.833833] ff000000.serial: ttyPS0 at MMIO 0xff000000 (irq = 40, base_baud = 6249999) is a xuartps
[    8.370388] printk: console [ttyPS0] enabled
[    8.381427] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 41, base_baud = 6249999) is a xuartps
[    8.443709] zynqmp_pll_disable() clock disable failed for dpll_int, ret = -13
[    8.514534] Freeing unused kernel memory: 8640K
[    8.583624] Checked W+X mappings: passed, no W+X pages found
[    8.589325] rodata_test: all tests were successful
[    8.594248] Run /init as init process
[    8.680327] systemd[1]: System time before build time, advancing clock.
[    8.769081] systemd[1]: systemd v248-2.fc35 running in system mode. (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    8.806053] systemd[1]: Detected architecture arm64.
[    8.811150] systemd[1]: Running in initial RAM disk.

Welcome to Fedora 35 (Rawhide Prerelease) dracut-053-1.fc35 (Initramfs)!

[    8.852224] systemd[1]: No hostname configured, using default hostname.
[    8.860714] systemd[1]: Hostname set to <fedora>.
[    8.868045] random: systemd: uninitialized urandom read (16 bytes read)
[    8.875837] systemd[1]: Initializing machine ID from random generator.
[   10.103566] systemd[1]: Queued start job for default target Initrd Default Target.
[   10.114596] random: systemd: uninitialized urandom read (16 bytes read)
[   10.123268] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[   10.161473] random: systemd: uninitialized urandom read (16 bytes read)
[   10.168228] systemd[1]: Reached target Local Encrypted Volumes.
[  OK  ] Reached target Local Encrypted Volumes.
[   10.201586] random: systemd: uninitialized urandom read (16 bytes read)
[   10.208334] systemd[1]: Reached target Paths.
[  OK  ] Reached target Paths.
[   10.241589] systemd[1]: Reached target Slices.
[  OK  ] Reached target Slices.
[   10.271495] systemd[1]: Reached target Swap.
[  OK  ] Reached target Swap.
[   10.301497] systemd[1]: Reached target Timers.
[  OK  ] Reached target Timers.
[   10.334335] systemd[1]: Listening on Journal Audit Socket.
[  OK  ] Listening on Journal Audit Socket.
[   10.374328] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   10.414871] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   10.444845] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   10.484146] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   10.521795] systemd[1]: Reached target Sockets.
[  OK  ] Reached target Sockets.
[   10.608635] systemd[1]: Starting Create list of static device nodes for the current kernel...
         Starting Create list of st…odes for the current kernel...
[   10.652650] systemd[1]: Condition check resulted in Memstrack Anylazing Service being skipped.
[   10.705292] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[   10.754395] systemd[1]: Condition check resulted in Load Kernel Modules being skipped.
[   10.792999] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[   10.847635] systemd[1]: Starting Setup Virtual Console...
         Starting Setup Virtual Console...
[   10.922195] systemd[1]: Finished Create list of static device nodes for the current kernel.
[  OK  ] Finished Create list of st… nodes for the current kernel.
[   10.973167] audit: type=1130 audit(1617667202.290:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   10.977072] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[   11.034582] audit: type=1130 audit(1617667202.350:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Finished Apply Kernel Variables.
[   11.101724] audit: type=1130 audit(1617667202.420:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting Create Static Device Nodes in /dev...
[  OK  ] Finished Create Static Device Nodes in /dev.
[   11.345997] audit: type=1130 audit(1617667202.660:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Finished Setup Virtual Console.
[   11.891909] audit: type=1130 audit(1617667203.210:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting dracut ask for additional cmdline parameters...
[  OK  ] Finished dracut ask for additional cmdline parameters.
[   12.291760] audit: type=1130 audit(1617667203.610:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline-ask comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting dracut cmdline hook...
[  OK  ] Finished dracut cmdline hook.
[   14.152686] audit: type=1130 audit(1617667205.470:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting dracut pre-udev hook...
[   14.663259] alua: device handler registered
[   14.750445] emc: device handler registered
[   14.837256] rdac: device handler registered
[  OK  ] Finished dracut pre-udev hook.
[   15.261769] audit: type=1130 audit(1617667206.580:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   15.288406] audit: type=1334 audit(1617667206.600:10): prog-id=6 op=LOAD
[   15.295380] audit: type=1334 audit(1617667206.610:11): prog-id=7 op=LOAD
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Started Rule-based Manager for Device Events and Files.
         Starting dracut pre-trigger hook...
[  OK  ] Finished dracut pre-trigger hook.
[   17.402124] kauditd_printk_skb: 2 callbacks suppressed
[   17.402138] audit: type=1130 audit(1617667208.720:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting Coldplug All udev Devices...
[**    ] (1 of 2) A start job is running for…80c5-c261a1a83625 (10s / no limit)
[   20.295958] xilinx-zynqmp-dma fd500000.dma: ZynqMP DMA driver Probe success
[   20.334639] xilinx-zynqmp-dma fd510000.dma: ZynqMP DMA driver Probe success
[   20.354318] xilinx-zynqmp-dma fd520000.dma: ZynqMP DMA driver Probe success
[   20.374491] xilinx-zynqmp-dma fd530000.dma: ZynqMP DMA driver Probe success
[   20.403191] xilinx-zynqmp-dma fd540000.dma: ZynqMP DMA driver Probe success
[   20.405108] ahci-ceva fd0c0000.ahci: supply ahci not found, using dummy regulator
[   20.424103] xilinx-zynqmp-dpdma fd4c0000.dma-controller: Xilinx DPDMA engine is probed
[   20.424553] xilinx-zynqmp-dma fd550000.dma: ZynqMP DMA driver Probe success
[   20.454472] xilinx-zynqmp-dma fd560000.dma: ZynqMP DMA driver Probe success
[   20.474495] xilinx-zynqmp-dma fd570000.dma: ZynqMP DMA driver Probe success
[   20.483431] ahci-ceva fd0c0000.ahci: supply phy not found, using dummy regulator
[  OK  ] Finished Coldplug All udev Dev[   20.537252] pca953x 0-0020: supply vcc not found, using dummy regulator
ices.
[   20.553364] sdhci: Secure Digital Host Controller Interface driver
[   20.554042] ahci-ceva fd0c0000.ahci: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl platform mode
[   20.559572] sdhci: Copyright(c) Pierre Ossman
[   20.568625] ahci-ceva fd0c0000.ahci: flags: 64bit ncq sntf pm clo only pmp fbs pio slum part ccc sds apst 
[   20.570841] rtc_zynqmp ffa60000.rtc: registered as rtc0
[   20.571675] pca953x 0-0020: using no AI
[   20.595770] rtc_zynqmp ffa60000.rtc: setting system clock to 2021-04-30T07:36:14 UTC (1619768174)
[   20.605689] audit: type=1130 audit(1619768174.500:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   20.608141] cdns-i2c ff030000.i2c: 400 kHz mmio ff030000 irq 33
[   20.627898] sdhci-pltfm: SDHCI platform and OF driver helper
         Starting dracut initqueue hook...
[   20.663854] scsi host0: ahci-ceva
[   20.679370] scsi host1: ahci-ceva
[   20.714389] mmc0: SDHCI controller on ff170000.mmc [ff170000.mmc] using ADMA 64-bit
         Starting Wait for udev To …plete Device Initialization...
[   20.734882] ata1: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x100 irq 38
[   20.743847] ata2: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x180 irq 38
[   20.765773] mmc0: new high speed SDHC card at address e624
[   20.862271] zynqmp-aes firmware:zynqmp-firmware:zynqmp-aes: will run requests pump with realtime priority
[   21.084364] ata2: SATA link down (SStatus 0 SControl 330)
[   21.090454] ata1: SATA link down (SStatus 0 SControl 330)
[   21.758195] mmcblk0: mmc0:e624 SL16G 14.8 GiB 
[   21.778963]  mmcblk0: p1 p2 p3
[   21.795516] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[   21.805789] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
[   21.820848] xhci-hcd xhci-hcd.1.auto: hcc params 0x0238f625 hci version 0x100 quirks 0x0000000002010810
[   21.830587] xhci-hcd xhci-hcd.1.auto: irq 46, io mem 0xfe200000
[   21.841477] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.12
[   21.850251] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   21.858639] usb usb1: Product: xHCI Host Controller
[   21.863902] usb usb1: Manufacturer: Linux 5.12.0-0.rc6.20210407git2d743660786e.185.fc35.aarch64 xhci-hcd
[   21.863925] usb usb1: SerialNumber: xhci-hcd.1.auto
[   21.871255] hub 1-0:1.0: USB hub found
[   21.884684] hub 1-0:1.0: 1 port detected
[   21.899642] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[   21.908592] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
[   21.918236] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[   21.927062] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.12
[   21.935544] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   21.942946] usb usb2: Product: xHCI Host Controller
[   21.947913] usb usb2: Manufacturer: Linux 5.12.0-0.rc6.20210407git2d743660786e.185.fc35.aarch64 xhci-hcd
[   21.957615] usb usb2: SerialNumber: xhci-hcd.1.auto
[   21.966811] hub 2-0:1.0: USB hub found
[   21.971296] hub 2-0:1.0: 1 port detected
[   22.068400] random: fast init done
[  OK  ] Found device /dev/disk/by-…7-4bcd-4e83-80c5-c261a1a83625.
[  OK  ] Reached target Initrd Root Device.
[  OK  ] Finished Wait for udev To Complete Device Initialization.
[   22.791940] audit: type=1130 audit(1619768176.690:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting Device-Mapper Multipath Device Controller...
[  OK  ] Finished dracut initqueue hook.
[   22.921946] audit: type=1130 audit(1619768176.820:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Started Device-Mapper Multipath Device Controller.
[   22.981992] audit: type=1130 audit(1619768176.880:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=multipathd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Reached target Local File Systems (Pre).
[  OK  ] Reached target Local File Systems.
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote Encrypted Volumes.
[  OK  ] Reached target Remote File Systems.
         Starting dracut pre-mount hook...
         Starting Create Volatile Files and Directories...
[  OK  ] Finished dracut pre-mount hook.
[   23.472038] audit: type=1130 audit(1619768177.370:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mount comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting File System Check…4bcd-4e83-80c5-c261a1a83625...
[  OK  ] Finished Create Volatile Files and Directories.
[   23.601853] audit: type=1130 audit(1619768177.500:20): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Reached target System Initialization.
[  OK  ] Reached target Basic System.
[  OK  ] Finished File System Check…7-4bcd-4e83-80c5-c261a1a83625.
[   23.912701] audit: type=1130 audit(1619768177.810:21): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Mounting /sysroot...
[   24.116772] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[   24.134579] mount (543) used greatest stack depth: 11616 bytes left
[  OK  ] Mounted /sysroot.
[  OK  ] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[   24.374544] audit: type=1334 audit(1619768178.270:22): prog-id=8 op=UNLOAD
[   24.382884] audit: type=1334 audit(1619768178.270:23): prog-id=7 op=UNLOAD
[   24.389912] audit: type=1334 audit(1619768178.270:24): prog-id=6 op=UNLOAD
[   24.397057] audit: type=1334 audit(1619768178.280:25): prog-id=5 op=UNLOAD
[   24.694321] systemd-fstab-g (551) used greatest stack depth: 11120 bytes left
[  OK  ] Finished Reload Configuration from the Real Root.
[  OK  ] Reached target Initrd File Systems.
[  OK  ] Reached target Initrd Default Target.
         Starting dracut mount hook...
[  OK  ] Finished dracut mount hook.
         Starting dracut pre-pivot and cleanup hook...
[   27.326226] dracut-pre-pivot[586]: 27.319190 | /etc/multipath.conf does not exist, blacklisting all devices.
[   27.370723] dracut-pre-pivot[586]: 27.319699 | You can run "/sbin/mpathconf --enable" to create
[   27.401118] dracut-pre-pivot[586]: 27.319850 | /etc/multipath.conf. See man mpathconf(8) for more details
[  OK  ] Finished dracut pre-pivot and cleanup hook.
         Starting Cleaning Up and Shutting Down Daemons...
[  OK  ] Stopped target Remote Encrypted Volumes.
[  OK  ] Stopped target Timers.
[  OK  ] Stopped dracut pre-pivot and cleanup hook.
[   27.852382] kauditd_printk_skb: 12 callbacks suppressed
[   27.852397] audit: type=1131 audit(1619768181.750:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Stopped target Initrd Default Target.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Initrd Root Device.
[  OK  ] Stopped target Paths.
[   27.984096] systemd-udevd (473) used greatest stack depth: 10256 bytes left
[  OK  ] Stopped target Remote File Systems.
[  OK  ] Stopped target Remote File Systems (Pre).
[  OK  ] Stopped target Slices.
[  OK  ] Stopped target Sockets.
[  OK  ] Stopped target System Initialization.
[  OK  ] Stopped target Swap.
[  OK  ] Stopped dracut mount hook.
[   28.252338] audit: type=1131 audit(1619768182.150:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-mount comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Stopped dracut pre-mount hook.
[   28.302559] audit: type=1131 audit(1619768182.200:40): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mount comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Stopped target Local Encrypted Volumes.
[  OK  ] Stopped Dispatch Password …ts to Console Directory Watch.
[  OK  ] Stopped dracut initqueue hook.
[   28.422428] audit: type=1131 audit(1619768182.320:41): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Stopped Apply Kernel Variables.
[   28.482415] audit: type=1131 audit(1619768182.380:42): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Stopped Create Volatile Files and Directories.
[   28.552637] audit: type=1131 audit(1619768182.450:43): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Stopped target Local File Systems.
[  OK  ] Stopped target Local File Systems (Pre).
         Stopping Device-Mapper Multipath Device Controller...
[  OK  ] Finished Cleaning Up and Shutting Down Daemons.
[   28.791832] audit: type=1130 audit(1619768182.690:44): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-cleanup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   28.812400] audit: type=1131 audit(1619768182.690:45): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-cleanup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Stopped Device-Mapper Multipath Device Controller.
[   28.975486] audit: type=1131 audit(1619768182.870:46): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=multipathd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Stopped Wait for udev To Complete Device Initialization.
[   29.031647] audit: type=1131 audit(1619768182.930:47): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Stopped Coldplug All udev Devices.
[  OK  ] Stopped dracut pre-trigger hook.
         Stopping Rule-based Manage…for Device Events and Files...
[  OK  ] Stopped Rule-based Manager for Device Events and Files.
[  OK  ] Closed udev Control Socket.
[  OK  ] Closed udev Kernel Socket.
[  OK  ] Stopped dracut pre-udev hook.
[  OK  ] Stopped dracut cmdline hook.
[  OK  ] Stopped dracut ask for additional cmdline parameters.
         Starting Cleanup udev Database...
[  OK  ] Stopped Create Static Device Nodes in /dev.
[  OK  ] Stopped Create list of sta… nodes for the current kernel.
[  OK  ] Stopped Setup Virtual Console.
[  OK  ] Finished Cleanup udev Database.
[  OK  ] Reached target Switch Root.
         Starting Switch Root...
[   30.203092] systemd-journald[272]: Received SIGTERM from PID 1 (systemd).
[   33.539856] SELinux:  Class anon_inode not defined in policy.
[   33.545837] SELinux: the above unknown classes and permissions will be allowed
[   33.766928] SELinux:  policy capability network_peer_controls=1
[   33.773054] SELinux:  policy capability open_perms=1
[   33.778034] SELinux:  policy capability extended_socket_class=1
[   33.784047] SELinux:  policy capability always_check_network=0
[   33.789899] SELinux:  policy capability cgroup_seclabel=1
[   33.795365] SELinux:  policy capability nnp_nosuid_transition=1
[   33.801364] SELinux:  policy capability genfs_seclabel_symlinks=0
[   34.883583] kauditd_printk_skb: 18 callbacks suppressed
[   34.883598] audit: type=1403 audit(1619768188.780:66): auid=4294967295 ses=4294967295 lsm=selinux res=1
[   34.930099] systemd[1]: Successfully loaded SELinux policy in 2.597401s.
[   35.054078] systemd[1]: RTC configured in localtime, applying delta of -240 minutes to system time.
[   35.692029] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 406.932ms.
[   35.776548] systemd[1]: systemd v248-2.fc35 running in system mode. (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[   35.813514] systemd[1]: Detected architecture arm64.

Welcome to Fedora 35 (Rawhide Prerelease)!

[   35.889412] systemd[1]: Initializing machine ID from random generator.
[   35.897572] systemd[1]: Installed transient /etc/machine-id file.
[   35.981791] audit: type=1334 audit(1619782589.878:67): prog-id=15 op=LOAD
[   35.988678] audit: type=1334 audit(1619782589.878:68): prog-id=15 op=UNLOAD
[   35.995865] audit: type=1334 audit(1619782589.878:69): prog-id=16 op=LOAD
[   36.002810] audit: type=1334 audit(1619782589.878:70): prog-id=16 op=UNLOAD
[   40.902083] random: crng init done
[   40.905758] random: 6 urandom warning(s) missed due to ratelimiting
[   41.111842] zram: Added device: zram0
[   42.602237] audit: type=1334 audit(1619782596.498:71): prog-id=17 op=LOAD
[   42.609354] audit: type=1334 audit(1619782596.498:72): prog-id=18 op=LOAD
[   42.616306] audit: type=1334 audit(1619782596.508:73): prog-id=19 op=LOAD
[   42.673240] audit: type=1131 audit(1619782596.568:74): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   42.691771] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   42.716916] systemd[1]: Stopped Switch Root.
[  OK  ] Stopped Switch Root.
[   42.749639] audit: type=1334 audit(1619782596.638:75): prog-id=17 op=UNLOAD
[   42.785196] audit: type=1130 audit(1619782596.678:76): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   42.789544] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[   42.807247] audit: type=1131 audit(1619782596.678:77): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   42.825974] systemd[1]: Created slice system-getty.slice.
[  OK  ] Created slice system-getty.slice.
[   42.880292] systemd[1]: Created slice system-modprobe.slice.
[  OK  ] Created slice system-modprobe.slice.
[   42.930325] systemd[1]: Created slice system-serial\x2dgetty.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[   42.980271] systemd[1]: Created slice system-sshd\x2dkeygen.slice.
[  OK  ] Created slice system-sshd\x2dkeygen.slice.
[   43.031009] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[   43.080391] systemd[1]: Created slice system-systemd\x2dzram\x2dsetup.slice.
[  OK  ] Created slice system-systemd\x2dzram\x2dsetup.slice.
[   43.133395] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   43.175017] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[   43.214678] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[   43.259517] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[  OK  ] Set up automount Arbitrary…s File System Automount Point.
[   43.301658] systemd[1]: Stopped target Switch Root.
[  OK  ] Stopped target Switch Root.
[   43.331345] systemd[1]: Stopped target Initrd File Systems.
[  OK  ] Stopped target Initrd File Systems.
[   43.371365] systemd[1]: Stopped target Initrd Root File System.
[  OK  ] Stopped target Initrd Root File System.
[   43.411528] systemd[1]: Reached target Paths.
[  OK  ] Reached target Paths.
[   43.441384] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   43.481399] systemd[1]: Reached target Slices.
[  OK  ] Reached target Slices.
[   43.511462] systemd[1]: Reached target Local Verity Integrity Protected Volumes.
[  OK  ] Reached target Local Verity Integrity Protected Volumes.
[   43.557484] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[  OK  ] Listening on Device-mapper event daemon FIFOs.
[   43.603424] systemd[1]: Listening on LVM2 poll daemon socket.
[  OK  ] Listening on LVM2 poll daemon socket.
[   43.644739] systemd[1]: Listening on multipathd control socket.
[  OK  ] Listening on multipathd control socket.
[   43.696702] systemd[1]: Listening on Process Core Dump Socket.
[  OK  ] Listening on Process Core Dump Socket.
[   43.734027] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[   43.780319] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   43.826697] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   43.868041] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[   43.946402] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[   44.015656] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[   44.086163] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[   44.155879] systemd[1]: Mounting Kernel Trace File System...
         Mounting Kernel Trace File System...
[   44.223251] systemd[1]: Starting Create list of static device nodes for the current kernel...
         Starting Create list of st…odes for the current kernel...
[   44.290164] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
         Starting Monitoring of LVM…meventd or progress polling...
[   44.362330] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[   44.422047] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[   44.482901] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[   44.518106] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[   44.528115] systemd[1]: Stopped Journal Service.
[  OK  ] Stopped Journal Service.
[   44.561912] audit: type=1130 audit(1619782598.458:78): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   44.591985] audit: type=1131 audit(1619782598.458:79): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   44.601668] fuse: init (API version 7.33)
[   44.610481] systemd[1]: Starting Journal Service...
[   44.617850] audit: type=1334 audit(1619782598.478:80): prog-id=20 op=LOAD
         Starting Journal Service...
[   44.683075] systemd[1]: Condition check resulted in Load Kernel Modules being skipped.
[   44.720076] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[   44.772457] systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
[   44.810123] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[   44.881890] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[   44.925864] systemd[1]: sysroot.mount: Deactivated successfully.
[   44.942548] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null). Quota mode: none.
[   44.978943] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Trace File System.
[  OK  ] Finished Create list of st… nodes for the current kernel.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module fuse.
[  OK  ] Finished Remount Root and Kernel File Systems.
[  OK  ] Finished Apply Kernel Variables.
         Mounting FUSE Control File System...
         Mounting Kernel Configuration File System...
         Starting Rebuild Hardware Database...
         Starting Flush Journal to Persistent Storage...
         Starting Load/Save Random Seed...
         Starting Create System Users...
[   46.078365] systemd-journald[628]: Received client request to flush runtime journal.
[  OK  ] Mounted FUSE Control File System.
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Finished Create System Users.
         Starting Create Static Device Nodes in /dev...
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Finished Coldplug All udev Devices.
[   48.251761] kauditd_printk_skb: 21 callbacks suppressed
[   48.251776] audit: type=1130 audit(1619782602.148:100): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting Wait for udev To …plete Device Initialization...
[  OK  ] Finished Rebuild Hardware Database.
[   51.531930] audit: type=1130 audit(1619782605.428:101): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hwdb-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   51.557421] audit: type=1334 audit(1619782605.448:102): prog-id=23 op=LOAD
[   51.565322] audit: type=1334 audit(1619782605.458:103): prog-id=24 op=LOAD
[   51.572433] audit: type=1334 audit(1619782605.468:104): prog-id=25 op=LOAD
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Started Rule-based Manager for Device Events and Files.
[   52.152565] audit: type=1130 audit(1619782606.048:105): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting Load Kernel Module configfs...
[  OK  ] Finished Load Kernel Module configfs.
[   53.552365] audit: type=1130 audit(1619782607.448:106): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   53.581073] audit: type=1131 audit(1619782607.448:107): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   53.754922] EDAC MC: ECC not enabled
[   53.792032] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
[   53.923599] lima fd4b0000.gpu: get bus clk failed -2
[   53.959501] lima: probe of fd4b0000.gpu failed with error -2
[   53.995664] CAN device driver interface
[   54.190824] libphy: MACB_mii_bus: probed
[   54.247053] i2c i2c-0: Added multiplexed i2c bus 1
[   54.268995] i2c i2c-0: Added multiplexed i2c bus 2
[   54.289014] FPGA manager framework
[   54.295548] macb ff0e0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0e0000 irq 31 (00:0a:35:04:eb:93)
[   54.326710] i2c i2c-0: Added multiplexed i2c bus 3
[   54.367200] i2c i2c-0: Added multiplexed i2c bus 4
[   54.373098] i2c i2c-0: Added multiplexed i2c bus 5
[   54.379016] i2c i2c-0: Added multiplexed i2c bus 6
[   54.393842] i2c i2c-0: Added multiplexed i2c bus 7
[   54.399791] i2c i2c-0: Added multiplexed i2c bus 8
[   54.427537] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
[   54.461039] of-fpga-region fpga-full: FPGA Region probed
[   54.491040] pca954x 0-0074: registered 8 multiplexed busses for I2C switch pca9548
[   54.518084] [drm] Initialized zynqmp-dpsub 1.0.0 20130509 for fd4a0000.display on minor 0
[  OK  ] Found device /dev/zram0.
         Starting Create swap on /dev/zram0...
[   54.939139] zram0: detected capacity change from 0 to 3983360
[  OK  ] Finished Create swap on /dev/zram0.
[   55.313620] audit: type=1130 audit(1619782609.208:108): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-zram-setup@zram0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Activating swap Compressed Swap on /dev/zram0...
[  OK  ] Finished Monitoring of LVM… dmeventd or progress polling.
[   55.512385] audit: type=1130 audit(1619782609.408:109): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   55.523202] Adding 1991676k swap on /dev/zram0.  Priority:100 extents:1 across:1991676k SSFS
[  OK  ] Activated swap Compressed Swap on /dev/zram0.
[  OK  ] Reached target Swap.
         Mounting Temporary Directory (/tmp)...
[   55.764874] zynqmp-dpsub fd4a0000.display: [drm] Cannot find any crtc or sizes
[   55.775173] zynqmp-dpsub fd4a0000.display: ZynqMP DisplayPort Subsystem driver probed
[  OK  ] Mounted Temporary Directory (/tmp).
[   56.065536] at24 1-0054: supply vcc not found, using dummy regulator
[   56.099106] ina2xx 4-0040: power monitor ina226 (Rshunt = 5000 uOhm)
[   56.114386] at24 1-0054: 1024 byte 24c08 EEPROM, writable, 1 bytes/write
[   56.123631] spi-nor spi0.0: found mt25qu512a, expected m25p80
[   56.184700] spi-nor spi0.0: mt25qu512a (65536 Kbytes)
[   56.299824] 4 fixed-partitions partitions found on MTD device spi0.0
[   56.306848] Creating 4 MTD partitions on "spi0.0":
[   56.321230] 0x000000000000-0x000000100000 : "qspi-fsbl-uboot"
[   56.343412] 0x000000100000-0x000000600000 : "qspi-linux"
[   56.355032] 0x000000600000-0x000000620000 : "qspi-device-tree"
[   56.364239] 0x000000620000-0x000000c00000 : "qspi-rootfs"
[  OK  ] Finished Wait for udev To Complete Device Initialization.
[   57.547561] audit: type=1130 audit(1619782611.438:110): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting Activation of DM RAID sets...
[   58.443223] audit: type=1334 audit(1619782612.338:111): prog-id=25 op=UNLOAD
[   58.450430] audit: type=1334 audit(1619782612.338:112): prog-id=24 op=UNLOAD
[   58.457702] audit: type=1334 audit(1619782612.338:113): prog-id=23 op=UNLOAD
[   58.465002] audit: type=1334 audit(1619782612.348:114): prog-id=22 op=UNLOAD
[   58.472282] audit: type=1334 audit(1619782612.348:115): prog-id=21 op=UNLOAD
[   60.833796] kauditd_printk_skb: 1 callbacks suppressed
[   60.833810] audit: type=1334 audit(1619782614.728:117): prog-id=26 op=LOAD
[   60.846083] audit: type=1334 audit(1619782614.728:118): prog-id=27 op=LOAD
[   60.853181] audit: type=1334 audit(1619782614.738:119): prog-id=28 op=LOAD
[   60.908292] audit: type=1334 audit(1619782614.798:120): prog-id=29 op=LOAD
[   60.915426] audit: type=1334 audit(1619782614.808:121): prog-id=30 op=LOAD
[   60.922488] audit: type=1334 audit(1619782614.818:122): prog-id=31 op=LOAD
[  OK  ] Finished Activation of DM RAID sets.
[   61.112854] audit: type=1130 audit(1619782615.008:123): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dmraid-activation comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Reached target Local Encrypted Volumes.
[   61.151071] audit: type=1131 audit(1619782615.008:124): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dmraid-activation comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Reached target Local File Systems (Pre).
         Starting File System Check…1241-4ab6-bbe9-5b78fc482b58...
         Starting File System Check…/dev/disk/by-uuid/C31B-14E3...
[  OK  ] Finished File System Check…f-1241-[   61.796558] audit: type=1130 audit(1619782615.688:125): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck@dev-disk-by\x2duuid-342b40df\x2d1241\x2d4ab6\x2dbbe9\x2d5b78fc482b58 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
4ab6-bbe9-5b78fc482b58.
         Mounting /boot...
[   61.927751] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[  OK  ] Finished File System Check…n /dev/disk/by-uuid/C31B-14E3.
[   62.032028] audit: type=1130 audit(1619782615.928:126): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck@dev-disk-by\x2duuid-C31B\x2d14E3 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Mounted /boot.
         Mounting /boot/efi...
[  OK  ] Mounted /boot/efi.
[  OK  ] Reached target Local File Systems.
         Starting Restore /run/initramfs on shutdown...
         Starting Rebuild Dynamic Linker Cache...
         Starting Commit a transient machine-id on disk...
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Restore /run/initramfs on shutdown.
[  OK  ] Finished Create Volatile Files and Directories.
         Starting Security Auditing Service...
         Starting Rebuild Journal Catalog...
         Starting Userspace Out-Of-Memory (OOM) Killer...
         Starting Network Name Resolution...
[  OK  ] Started Userspace Out-Of-Memory (OOM) Killer.
[  OK  ] Finished Rebuild Journal Catalog.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Host and Network Name Lookups.
[  OK  ] Finished Commit a transient machine-id on disk.
[  OK  ] Started Security Auditing Service.
         Starting Update UTMP about System Boot/Shutdown...
[  OK  ] Finished Update UTMP about System Boot/Shutdown.
[  OK  ] Finished Rebuild Dynamic Linker Cache.
         Starting Update is Completed...
[  OK  ] Finished Update is Completed.
[  OK  ] Reached target System Initialization.
[  OK  ] Started dnf makecache --timer.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Started Weekly RAID setup health check.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Started daily update of the root trust anchor for DNSSEC.
[  OK  ] Reached target Timers.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Listening on SSSD Kerberos…ache Manager responder socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting NTP client/server...
         Starting firewalld - dynamic firewall daemon...
         Starting Initial Setup configuration program...
         Starting OpenSSH ecdsa Server Key Generation...
         Starting OpenSSH ed25519 Server Key Generation...
         Starting OpenSSH rsa Server Key Generation...
         Starting System Security Services Daemon...
         Starting Home Area Manager...
[  OK  ] Started NTP client/server.
[   87.037614] macb ff0e0000.ethernet eth0: PHY [ff0e0000.ethernet-ffffffff:0c] driver [TI DP83867] (irq=POLL)
[   87.048170] macb ff0e0000.ethernet eth0: configuring for phy/rgmii-id link mode
[   87.081912] pps pps0: new PPS source ptp0
[   87.087677] macb ff0e0000.ethernet: gem-ptp-timer ptp clock registered.
[   91.221317] macb ff0e0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control tx
[   91.229632] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[  125.713437] fbcon: Taking over console
================================================================================
================================================================================

1) [x] Language settings                 2) [x] Time settings
       (English (United States))                (US/Eastern timezone)
3) [x] Network configuration             4) [x] Root password
       (Wired (eth0) connected)                 (Disabled. Set password to
                                                enable root account.)
5) [ ] User creation
       (No user will be created)


Please make a selection from the above ['c' to continue, 'q' to quit, 'r' to
refresh]: 
4
================================================================================
================================================================================

Root password

Please select new root password. You will have to type it twice.


Password: 
Password (confirm): 

================================================================================
================================================================================

1) [x] Language settings                 2) [x] Time settings
       (English (United States))                (US/Eastern timezone)
3) [x] Network configuration             4) [x] Root password
       (Wired (eth0) connected)                 (Password is set.)
5) [ ] User creation
       (No user will be created)


Please make a selection from the above ['c' to continue, 'q' to quit, 'r' to
refresh]: 
2
================================================================================
================================================================================
Time settings

Timezone: US/Eastern

NTP servers:
2.fedora.pool.ntp.org (status: working)

1) Change timezone
2) Configure NTP servers


Please make a selection from the above ['c' to continue, 'h' to help, 'q' to
quit, 'r' to refresh]: 
1
================================================================================
================================================================================
Timezone settings

Available regions
1) Europe                  5) Antarctica              9) Indian
2) Asia                    6) Pacific                 10) Arctic
3) America                 7) Australia               11) US
4) Africa                  8) Atlantic                12) Etc


Please select the timezone. Use numbers or type names directly ['b' to go back
to region list, 'c' to continue, 'q' to quit, 'r' to refresh]: 
1
================================================================================
================================================================================

Timezone settings

Available timezones in region Europe
1) Amsterdam               21) Kaliningrad            41) San_Marino
2) Andorra                 22) Kiev                   42) Sarajevo
3) Astrakhan               23) Kirov                  43) Saratov
4) Athens                  24) Lisbon                 44) Simferopol
5) Belgrade                25) Ljubljana              45) Skopje
6) Berlin                  26) London                 46) Sofia
7) Bratislava              27) Luxembourg             47) Stockholm
8) Brussels                28) Madrid                 48) Tallinn
9) Bucharest               29) Malta                  49) Tirane
10) Budapest               30) Mariehamn              50) Ulyanovsk
11) Busingen               31) Minsk                  51) Uzhgorod
12) Chisinau               32) Monaco                 52) Vaduz
13) Copenhagen             33) Moscow                 53) Vatican
14) Dublin                 34) Oslo                   54) Vienna
15) Gibraltar              35) Paris                  55) Vilnius
16) Guernsey               36) Podgorica              56) Volgograd
17) Helsinki               37) Prague                 57) Warsaw
18) Isle_of_Man            38) Riga                   58) Zagreb
19) Istanbul               39) Rome                   59) Zaporozhye
20) Jersey                 40) Samara                 60) Zurich

Please select the timezone. Use numbers or type names directly ['b' to go back
to region list, 'c' to continue, 'q' to quit, 'r' to refresh]: 
37
================================================================================
================================================================================

1) [x] Language settings                 2) [x] Time settings
       (English (United States))                (Europe/Prague timezone)
3) [x] Network configuration             4) [x] Root password
       (Wired (eth0) connected)                 (Password is set.)
5) [ ] User creation
       (No user will be created)


Please make a selection from the above ['c' to continue, 'q' to quit, 'r' to
refresh]: 
q
================================================================================
================================================================================
Question

            Are you sure you want to quit the configuration process?
            You might end up with unusable system if you do.


Please respond 'yes' or 'no': 
yes
[  OK  ] Finished Initial Setup configuration program.
[  OK  ] Reached target Login Prompts (Pre).
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on ttyPS0.
[  OK  ] Reached target Login Prompts.
[  OK  ] Reached target Multi-User System.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Finished Update UTMP about System Runlevel Changes.

Fedora 35 (Rawhide Prerelease)
Kernel 5.12.0-0.rc6.20210407git2d743660786e.185.fc35.aarch64 on an aarch64 (ttyPS0)

zcu104-fedora login: root
Password: 
[root@zcu104-fedora ~]#