OSDZU3 PetaLinux Application Note Part 2 – 2024.2

1.

Introduction

This is the second part of the OSDZU3 Peta Linux App Note. If you have not already done so please review Part 1 before starting this app note.

2.

Installing PetaLinux

Petalinux 2024.2 is supported on Ubuntu versions – 22.04.3 LTS, 22.04.4 LTS and 22.04.5 LTS

Known issues and required packages for Petalinux 2024.2 are outlined in the release notes here: https://adaptivesupport.amd.com/s/article/000037095?language=en_US

1. To install all the packages that PetaLinux needs, use the following command:

				
					sudo apt-get install iproute2 gawk python3 python build-essential gcc git make net-tools libncurses5-dev tftpd zlib1g-dev libssl-dev flex bison libselinux1 gnupg wget git-core diffstat chrpath socat xterm autoconf libtool tar unzip texinfo zlib1g-dev gcc-multilib automake zlib1g:i386 screen pax gzip cpio python3-pip python3-pexpect xz-utils debianutils iputils-ping python3-git python3-jinja2 libegl1-mesa libsdl1.2-dev pylint3
				
			

Binaries for all versions of Petalinux are located here:

https://www.xilinx.com/support/download/index.html/content/xilinx/en/downloadNav/embedded-design-tools/archive.html

Download PetaLinux 2024.2 from this link(AMD login is required):

https://www.xilinx.com/support/download/index.html/content/xilinx/en/downloadNav/embedded-design-tools/2024-2.html

2. Add execution permissions for PetaLinux Installer file

				
					chmod 755 ./petalinux-v2024.2-11062026-installer.run
				
			

3. Install PetaLinux by running the installer file

				
					./petalinux-v2024.2-11062026-installer.run
				
			

4. To start PetaLinux, you need to source the settings.sh

				
					source <path-to-installed-PetaLinux>/settings.sh
				
			

If you do not have one of the supported OSes listed above, you can run Petalinux in a docker container as outlined in the next section.

3.

Starting a PetaLinux project

1. To create a new PetaLinux project for OSDZU3:

				
					petalinux-create project --template zynqMP --name <PROJECT_NAME>
				
			

2. For example:

				
					petalinux-create project --template zynqMP --name osdzu3-ref
				
			

3. 1 folder will be created:

				
					petalinux@octavo-ubuntu22:/home/octavo/octavo/osdzu3/pet_app/proj$ ls
osdzu3-ref  
				
			

4. Change directory to project folder

				
					cd osdzu3-ref
				
			

5. Import hardware configuration generated from Vivado (.xsa file)

				
					petalinux-config --get-hw-description ../osdzu3_ref_hw_wrapper.xsa
				
			

../osdzu3_ref_hw_wrapper.xsa is pointing to the .xsa file created at the end of the previous part of the application note. If you have a different file name, you will need to change this input.

This will open the menuconfig system that you can use to further customize various part of the PetaLinux image:

Use navigation keys of your keyboard and exit the menuconfig.

4.

Building a minimal image for OSDZU3-REF

To build a basic image for OSDZU3-REF, we need the following changes to PetaLinux config:

  1. We need to add the SD card card detect pin configuration to the device tree used by PetaLinux to make it aware that MIO45 is being used as card detect for SD1 interface and it is active HIGH
  2. Tell PetaLinux that the rootfilesystem type is ext4
  3. Tell PetaLinux that the root mount partition is /dev/mmcblk2p2 (SD card’s 2nd partition)

To accomplish the above tasks, we need to navigate through the PetaLinux menuconfig and edit PetaLinux user device tree.

1. First, to set rootfilesystem to type ext4, navigate to Image Packaging Configuration → Root Filesystem type and set it to EXT4 (SD/eMMC/SATA/USB) as shown below:

2. To set the root device, go to Image Packaging Configuration → Device node of SD device and set it to /dev/mmcblk1p2

3. This is what the resulting configuration changes in PetaLinux menuconfig will look like:

4. To configure the SD card detect pin, you need to edit the user device tree include file. A meta layer that allows user configuration of PetaLinux is located in /project-spec/meta-user/. You will need to add the following device tree snippet at the end of the file /project-spec/meta-user/recipes-bsp/device-tree/files/system-user.dtsi

				
					/* Since CD is inverted, use as GPIO (active high) */
&sdhci1 {
    cd-gpios = <&gpio 45 0>;

    /* 3.3V IO is limited to 50 MHz per TRM */
    max-frequency = <50000000>;
    no-1-8-v;
};
				
			
5.

Alternate setup: Using OSDZU3-REF BSP

You can also import pre-configured BSP settings of OSDZU3-REF in to a new PetaLinux project instead of creating a project from scratch. This will allow you to setup a build for OSDZU3-REF that enables all the features of the board such as the LVDS display, SATA etc.

Download OSDZU3-REF Board Support Package from Octavo Systems: https://octavosystems.com/files/osdzu3-ref-bsp-2024-2-2-1-1/

1. Create a Petalinux project from bsp file:

				
					petalinux-create -t project -n osdzu3-ref -s <path_to_osdzu3-ref-2024.2.bsp
				
			

Notice: When using the OSDZU3-REF BSP to initialize the Petalinux project, it is recommended to use the OSDZU3-REF hardware configuration file (.xsa) exported from OSDZU3-REF Vivado project.

6.

When using OSDZU3-REF XSA (from OSDZU3-REF Vivado 2024.2 project)

Instead of the hardware configuration file generated from part #1 of this application note, you may decide to use a file generated from OSDZU3-REF Vivado project available here: https://octavosystems.com/files/osdzu3-ref-vivado-project-2024-2-2-1-1/. In this case, it is recommended to use the OSDZU3-REF BSP file to start your petalinux project as the BSP file initializes configuration for a number of PL peripheral instantiations.

If you want to build the minimal Petalinux image instead of OSDZU3-REF BSP based image while using the OSDZU3-REF XSA file, you will need to add the following device tree snippet to /project-spec/meta-user/recipes-bsp/device-tree/files/system-user.dtsi

				
					&amba_pl {
	status="disabled";
};
				
			

1. The above snippet disables the PL device tree nodes that are auto-generated when using OSDZU3-REF based XSA. This way, you won’t need to enable all the drivers required for the PL peripherals in your Petalinux project and do not have to setup custom device trees to initialize these peripherals properly. The OSDZU3-REF Petalinux BSP takes care of the customization needed to bring up the PL peripherals correctly.

7.

Building the image

That is the end of all the PetaLinux configuration that needs to be done for OSDZU3-REF to boot a minimal image.

1. Build the PetaLinux image

				
					petalinux-build
				
			

This will trigger the PetaLinux image build. This may take a long time to complete.

2. Package PetaLinux to generate BOOT.BIN:

				
					petalinux-package boot --u-boot --fpga --force
				
			

Option description:

  • boot – Create BOOT.BIN
  • u-boot – Include u-boot
  • fpga – include bitstream

3. Generate an SD card disk image:

				
					petalinux-package wic
				
			

4. If you are using the BSP file to initialize the petalinux project, you may see an error when you run ‘petalinux-package wic’. The error will look something like this:

				
					octavo@octavo-ubuntu22:~/octavo/osdzu3/2026/pet_ref_dev/osdzu3_ref$ petalinux-package wic
[INFO] Sourcing build environment
[INFO] Extracting rootfs, This may take time!
[INFO] Creating wic image
[INFO] wic create /home/octavo/osdzu3/osdzu3_ref/build/rootfs.wks --rootfs-dir /home/octavo/osdzu3/osdzu3_ref/build/wic/rootfs --bootimg-dir /home/octavo/osdzu3/osdzu3_ref/images/linux --kernel-dir /home/octavo/osdzu3/osdzu3_ref/images/linux --outdir  /home/octavo/osdzu3/osdzu3_ref/build/wic/wic-tmp -n /home/octavo/osdzu3/osdzu3_ref/build/tmp/work/cortexa72-cortexa53-xilinx-linux/wic-tools/1.0/recipe-sysroot-native 
INFO: Creating image(s)...

WARNING: bootloader config not specified, using defaults

ERROR: Actual rootfs size (4463236 kB) is larger than allowed size 4194304 kB
[ERROR] Command wic create /home/octavo/osdzu3/osdzu3_ref/build/rootfs.wks --rootfs-dir /home/octavo/osdzu3/osdzu3_ref/build/wic/rootfs --bootimg-dir /home/octavo/osdzu3/osdzu3_ref/images/linux --kernel-dir /home/octavo/osdzu3/osdzu3_ref/images/linux --outdir  /home/octavo/osdzu3/osdzu3_ref/build/wic/wic-tmp -n /home/octavo/osdzu3/osdzu3_ref/build/tmp/work/cortexa72-cortexa53-xilinx-linux/wic-tools/1.0/recipe-sysroot-native failed
				
			

5. The above error indicates that the size of the rootfs generated by the project is larger than specified in the default .wks file that petalinux uses to format the sd card image. In order to resolve this, you can use a customized rootfs.wks file located in [project folder]/project-spec/meta-octavo-osdzu3/wic/. The following is the modified petalinux-package command using this .wks file:

				
					petalinux-package wic --wks project-spec/meta-octavo-osdzu3/wic/rootfs.wks
				
			

6. The image generated by PetaLinux will be available here:

				
					<PetaLinux project path>/images/linux/petalinux-sdimage.wic
				
			
8.

Booting the minimal image

1. To boot the image that was created, you will need to insert an SD card into the Host PC and flash the SD card with the image. Use the “dd” command to flash the image:

				
					dd if=<PetaLinux project path>/images/linux/petalinux-sdimage.wic of=/dev/<SD card device name> bs=10M conv=fdatasync status=progress
				
			

2. Example command can look like this:

				
					dd if=petalinux-sdimage.wic of=/dev/mmcblk0 bs=10M conv=fdatasync status=progress
				
			

After the SD card is flashed, insert the SD card into the MicroSD card slot of OSDZU3-REF(J1).

3. Connect OSDZU3-REF’s UART output(J4) to the host using a MicroUSB cable. This UART interface has 2 ports that appear as /dev/ttyUSBx, with x being [0-1] or higher. Console output should be on the higher port, example /dev/ttyUSB1. Suggestion is to open all UART interfaces that the cable initiates:

				
					sudo picocom -b 115200 /dev/ttyUSB0
sudo picocom -b 115200 /dev/ttyUSB1
				
			

4. Connect 12V power supply to the board via J14 and flip the switch S2 to ON position. The board will output the following boot log:

				
					Zynq MP First Stage Boot Loader 
Release 2024.2   Nov  5 2024  -  07:20:48

U-Boot 2024.01 (Oct 24 2024 - 10:42:51 +0000)

CPU:   ZynqMP
Silicon: v3
Chip:  zu3eg
Board: Xilinx ZynqMP
DRAM:  2 GiB
PMUFW:	v1.1
EL Level:	EL2
Secure Boot:	not authenticated, not encrypted
Core:  41 devices, 24 uclasses, devicetree: board
NAND:  0 MiB
MMC:   mmc@ff160000: 0, mmc@ff170000: 1
Loading Environment from FAT... *** Error - No Valid Environment Area found
*** Warning - bad env area, using default environment

In:    serial
Out:   serial,vidconsole
Err:   serial,vidconsole
Bootmode: SD_MODE1
Reset reason:	EXTERNAL 
Net:   
ZYNQ GEM: ff0e0000, mdio bus ff0e0000, phyaddr 4, interface rgmii-id

Warning: ethernet@ff0e0000 (eth0) using random MAC address - 4a:fa:0d:02:e9:67
eth0: ethernet@ff0e0000
scanning bus for devices...
SATA link 0 timeout.
Target spinup took 0 ms.
AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
flags: 64bit ncq pm clo only pmp fbss pio slum part ccc apst 
  Device 0: (1:0) Vendor: ATA Prod.: KINGSTON SA400S3 Rev: 0320
            Type: Hard Disk
            Capacity: 228936.5 MB = 223.5 GB (468862128 x 512)
starting USB...
No working controllers found
Hit any key to stop autoboot:  0 
switch to partitions #0, OK
mmc1 is current device
Scanning mmc 1:1...
Found U-Boot script /boot.scr
3833 bytes read in 13 ms (287.1 KiB/s)
## Executing script at 20000000
Trying to load boot images from mmc1
25020928 bytes read in 1684 ms (14.2 MiB/s)
## Flattened Device Tree blob at 00100000
   Booting using the fdt blob at 0x100000
Working FDT set to 100000
   Loading Device Tree to 0000000077bcc000, end 0000000077bdad1b ... OK
Working FDT set to 77bcc000

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 6.6.40-xilinx-g2b7f6f70a62a (oe-user@oe-host) (aarch64-xilinx-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP Tue Oct 29 11:52:30 UTC 2024
[    0.000000] KASLR disabled due to lack of seed
[    0.000000] Machine model: xlnx,zynqmp
[    0.000000] earlycon: cdns0 at MMIO 0x00000000ff000000 (options '115200n8')
[    0.000000] printk: bootconsole [cdns0] enabled
[    0.000000] efi: UEFI not found.
[    0.000000] Zone ranges:
[    0.000000]   DMA32    [mem 0x0000000000000000-0x000000007fefffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x000000007fefffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000007fefffff]
[    0.000000] On node 0, zone DMA32: 256 pages in unavailable ranges
[    0.000000] cma: Reserved 256 MiB at 0x0000000067a00000 on node -1
[    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.4
[    0.000000] percpu: Embedded 19 pages/cpu s37864 r8192 d31768 u77824
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Kernel command line: earlycon console=ttyPS0,115200 root=/dev/mmcblk1p2 ro rootwait
[    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] Built 1 zonelists, mobility grouping on.  Total pages: 515844
[    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    0.000000] software IO TLB: area num 4.
[    0.000000] software IO TLB: mapped [mem 0x0000000079700000-0x000000007d700000] (64MB)
[    0.000000] Memory: 1702196K/2096128K available (15680K kernel code, 1074K rwdata, 4580K rodata, 2944K init, 467K bss, 131788K reserved, 262144K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    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=4.
[    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=4
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GIC: Adjusting CPU interface base to 0x00000000f902f000
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] arch_timer: cp15 timer(s) running at 99.99MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0x1ffffffffffffff max_cycles: 0x171015c90f, max_idle_ns: 440795203080 ns
[    0.000001] sched_clock: 57 bits at 100MHz, resolution 10ns, wraps every 4398046511101ns
[    0.008381] Console: colour dummy device 80x25
[    0.012561] Calibrating delay loop (skipped), value calculated using timer frequency.. 199.99 BogoMIPS (lpj=399996)
[    0.022972] pid_max: default: 32768 minimum: 301
[    0.027707] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.034985] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.044579] rcu: Hierarchical SRCU implementation.
[    0.047600] rcu: 	Max phase no-delay instances is 1000.
[    0.053160] EFI services will not be available.
[    0.057562] smp: Bringing up secondary CPUs ...
[    0.062334] Detected VIPT I-cache on CPU1
[    0.062411] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.062913] Detected VIPT I-cache on CPU2
[    0.062962] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.063402] Detected VIPT I-cache on CPU3
[    0.063449] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.063503] smp: Brought up 1 node, 4 CPUs
[    0.097530] SMP: Total of 4 processors activated.
[    0.102229] CPU features: detected: 32-bit EL0 Support
[    0.107362] CPU features: detected: CRC32 instructions
[    0.112561] CPU: All CPU(s) started at EL2
[    0.116587] alternatives: applying system-wide alternatives
[    0.124194] devtmpfs: initialized
[    0.131868] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.136003] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.151435] pinctrl core: initialized pinctrl subsystem
[    0.152029] DMI not present or invalid.
[    0.155567] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.161880] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    0.167922] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.175791] audit: initializing netlink subsys (disabled)
[    0.181260] audit: type=2000 audit(0.120:1): state=initialized audit_enabled=0 res=1
[    0.181758] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.195733] ASID allocator initialised with 65536 entries
[    0.201227] Serial: AMBA PL011 UART driver
[    0.216409] Modules: 26528 pages in range for non-PLT usage
[    0.216420] Modules: 518048 pages in range for PLT usage
[    0.217107] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.228441] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.234706] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.241490] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.247756] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.254540] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.260805] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.267590] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.341937] raid6: neonx8   gen()  2077 MB/s
[    0.410006] raid6: neonx4   gen()  2029 MB/s
[    0.478072] raid6: neonx2   gen()  1946 MB/s
[    0.546142] raid6: neonx1   gen()  1664 MB/s
[    0.614224] raid6: int64x8  gen()  1297 MB/s
[    0.682277] raid6: int64x4  gen()  1432 MB/s
[    0.750353] raid6: int64x2  gen()  1283 MB/s
[    0.818432] raid6: int64x1  gen()   945 MB/s
[    0.818473] raid6: using algorithm neonx8 gen() 2077 MB/s
[    0.890520] raid6: .... xor() 1517 MB/s, rmw enabled
[    0.890566] raid6: using neon recovery algorithm
[    0.895002] iommu: Default domain type: Translated
[    0.899241] iommu: DMA domain TLB invalidation policy: strict mode
[    0.905672] SCSI subsystem initialized
[    0.909345] usbcore: registered new interface driver usbfs
[    0.914659] usbcore: registered new interface driver hub
[    0.919970] usbcore: registered new device driver usb
[    0.925094] mc: Linux media interface: v0.10
[    0.929283] videodev: Linux video capture interface: v2.00
[    0.934761] pps_core: LinuxPPS API ver. 1 registered
[    0.939698] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.948842] PTP clock support registered
[    0.952767] EDAC MC: Ver: 3.0.0
[    0.956183] scmi_core: SCMI protocol bus registered
[    0.960902] zynqmp-ipi-mbox mailbox@ff9905c0: Registered ZynqMP IPI mbox with TX/RX channels.
[    0.969731] FPGA manager framework
[    0.972804] Advanced Linux Sound Architecture Driver Initialized.
[    0.979280] Bluetooth: Core ver 2.22
[    0.982335] NET: Registered PF_BLUETOOTH protocol family
[    0.987631] Bluetooth: HCI device and connection manager initialized
[    0.993984] Bluetooth: HCI socket layer initialized
[    0.998853] Bluetooth: L2CAP socket layer initialized
[    1.003905] Bluetooth: SCO socket layer initialized
[    1.009234] clocksource: Switched to clocksource arch_sys_counter
[    1.015091] VFS: Disk quotas dquot_6.6.0
[    1.018808] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.031864] NET: Registered PF_INET protocol family
[    1.032060] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    1.040177] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    1.047049] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.054774] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.062799] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    1.070643] TCP: Hash tables configured (established 16384 bind 16384)
[    1.076609] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.083257] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.090472] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.096407] RPC: Registered named UNIX socket transport module.
[    1.101927] RPC: Registered udp transport module.
[    1.106621] RPC: Registered tcp transport module.
[    1.111318] RPC: Registered tcp-with-tls transport module.
[    1.116799] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.123246] PCI: CLS 0 bytes, default 64
[    1.128664] Initialise system trusted keyrings
[    1.131720] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    1.138580] NFS: Registering the id_resolver key type
[    1.143107] Key type id_resolver registered
[    1.147260] Key type id_legacy registered
[    1.151276] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    1.157954] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    1.165592] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    1.208575] NET: Registered PF_ALG protocol family
[    1.208628] xor: measuring software checksum speed
[    1.216771]    8regs           :  2313 MB/sec
[    1.221109]    32regs          :  2313 MB/sec
[    1.225763]    arm64_neon      :  2162 MB/sec
[    1.225804] xor: using function: 32regs (2313 MB/sec)
[    1.230610] Key type asymmetric registered
[    1.234700] Asymmetric key parser 'x509' registered
[    1.239605] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    1.246969] io scheduler mq-deadline registered
[    1.251487] io scheduler kyber registered
[    1.255513] io scheduler bfq registered
[    1.300615] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.303030] Serial: AMBA driver
[    1.311436] brd: module loaded
[    1.315490] loop: module loaded
[    1.320590] CAN device driver interface
[    1.321343] usbcore: registered new interface driver asix
[    1.324188] usbcore: registered new interface driver ax88179_178a
[    1.330287] usbcore: registered new interface driver cdc_ether
[    1.336118] usbcore: registered new interface driver net1080
[    1.341773] usbcore: registered new interface driver cdc_subset
[    1.347685] usbcore: registered new interface driver zaurus
[    1.353268] usbcore: registered new interface driver cdc_ncm
[    1.358910] usbcore: registered new interface driver r8153_ecm
[    1.364981] VFIO - User Level meta-driver version: 0.3
[    1.370482] usbcore: registered new interface driver uas
[    1.375187] usbcore: registered new interface driver usb-storage
[    1.381178] usbcore: registered new device driver onboard-usb-dev
[    1.388466] rtc_zynqmp ffa60000.rtc: registered as rtc0
[    1.392493] rtc_zynqmp ffa60000.rtc: setting system clock to 1970-01-01T00:00:04 UTC (4)
[    1.400617] i2c_dev: i2c /dev entries driver
[    1.406654] usbcore: registered new interface driver uvcvideo
[    1.411130] Bluetooth: HCI UART driver ver 2.3
[    1.415011] Bluetooth: HCI UART protocol H4 registered
[    1.420138] Bluetooth: HCI UART protocol BCSP registered
[    1.425463] Bluetooth: HCI UART protocol LL registered
[    1.430576] Bluetooth: HCI UART protocol ATH3K registered
[    1.435987] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    1.442280] Bluetooth: HCI UART protocol Intel registered
[    1.447644] Bluetooth: HCI UART protocol QCA registered
[    1.452872] usbcore: registered new interface driver bcm203x
[    1.458529] usbcore: registered new interface driver bpa10x
[    1.464092] usbcore: registered new interface driver bfusb
[    1.469577] usbcore: registered new interface driver btusb
[    1.475075] usbcore: registered new interface driver ath3k
[    1.480623] EDAC MC: ECC not enabled
[    1.484506] sdhci: Secure Digital Host Controller Interface driver
[    1.490261] sdhci: Copyright(c) Pierre Ossman
[    1.494608] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.500743] ledtrig-cpu: registered to indicate activity on CPUs
[    1.506475] SMCCC: SOC_ID: ID = jep106:0049:0000 Revision = 0x14710093
[    1.512878] zynqmp_firmware_probe Platform Management API v1.1
[    1.518656] zynqmp_firmware_probe Trustzone version v1.0
[    1.554190] securefw securefw: securefw probed
[    1.554405] xilinx_ecdsa xilinx_ecdsa.0: ECDSA is not supported on the platform
[    1.560709] zynqmp-aes zynqmp-aes.0: will run requests pump with realtime priority
[    1.568566] usbcore: registered new interface driver usbhid
[    1.573555] usbhid: USB HID core driver
[    1.580260] ARM CCI_400_r1 PMU driver probed
[    1.580906] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    1.590377] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
[    1.596269] usbcore: registered new interface driver snd-usb-audio
[    1.602884] pktgen: Packet Generator for packet performance testing. Version: 2.75
[    1.610579] Initializing XFRM netlink socket
[    1.613878] NET: Registered PF_INET6 protocol family
[    1.619502] Segment Routing with IPv6
[    1.622469] In-situ OAM (IOAM) with IPv6
[    1.626441] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    1.632705] NET: Registered PF_PACKET protocol family
[    1.637324] NET: Registered PF_KEY protocol family
[    1.642109] can: controller area network core
[    1.646474] NET: Registered PF_CAN protocol family
[    1.651231] can: raw protocol
[    1.654190] can: broadcast manager protocol
[    1.658369] can: netlink gateway - max_hops=1
[    1.662803] Bluetooth: RFCOMM TTY layer initialized
[    1.667593] Bluetooth: RFCOMM socket layer initialized
[    1.672732] Bluetooth: RFCOMM ver 1.11
[    1.676463] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    1.681765] Bluetooth: BNEP filters: protocol multicast
[    1.686988] Bluetooth: BNEP socket layer initialized
[    1.691944] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.697866] Bluetooth: HIDP socket layer initialized
[    1.702861] 8021q: 802.1Q VLAN Support v1.8
[    1.707185] 9pnet: Installing 9P2000 support
[    1.711295] Key type dns_resolver registered
[    1.715658] NET: Registered PF_VSOCK protocol family
[    1.729574] registered taskstats version 1
[    1.729617] Loading compiled-in X.509 certificates
[    1.742590] Btrfs loaded, zoned=no, fsverity=no
[    1.742837] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
[    2.524261] ff000000.serial: ttyPS0 at MMIO 0xff000000 (irq = 23, base_baud = 6249999) is a xuartps
[    2.533355] printk: console [ttyPS0] enabled
[    2.533355] printk: console [ttyPS0] enabled
[    2.537659] printk: bootconsole [cdns0] disabled
[    2.537659] printk: bootconsole [cdns0] disabled
[    2.547431] ff010000.serial: ttyPS2 at MMIO 0xff010000 (irq = 24, base_baud = 6249999) is a xuartps
[    2.560541] of-fpga-region fpga-region: FPGA Region probed
[    2.572093] xilinx-zynqmp-dpdma fd4c0000.dma-controller: Xilinx DPDMA engine is probed
[    2.580255] xilinx-psgtr fd400000.phy: Invalid reference clock number 1
[    2.586871] zynqmp-display fd4a0000.display: failed to get PHY lane 0
[    2.593343] zynqmp-display: probe of fd4a0000.display failed with error -22
[    2.600667] ahci-ceva fd0c0000.ahci: supply ahci not found, using dummy regulator
[    2.608258] ahci-ceva fd0c0000.ahci: supply phy not found, using dummy regulator
[    2.615710] ahci-ceva fd0c0000.ahci: supply target not found, using dummy regulator
[    2.623465] ahci-ceva fd0c0000.ahci: ceva,p0-cominit-params property not defined
[    2.630956] ahci-ceva: probe of fd0c0000.ahci failed with error -22
[    2.642551] spi_master spi0: cannot find modalias for /axi/spi@ff0f0000/flash@0
[    2.649886] spi_master spi0: Failed to create SPI device for /axi/spi@ff0f0000/flash@0
[    2.808816] macb ff0e0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0e0000 irq 45 (4a:fa:0d:02:e9:67)
[    2.819110] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
[    2.825712] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
[    2.832246] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
[    2.838784] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
[    2.862593] cdns-i2c ff030000.i2c: can't get pinctrl, bus recovery not supported
[    2.870441] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    2.875943] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
[    2.883708] cdns-i2c ff030000.i2c: 400 kHz mmio ff030000 irq 48
[    2.883713] xhci-hcd xhci-hcd.1.auto: hcc params 0x0238f625 hci version 0x100 quirks 0x0000008002000010
[    2.890114] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
[    2.899033] xhci-hcd xhci-hcd.1.auto: irq 49, io mem 0xfe200000
[    2.906552] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
[    2.912266] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    2.919943] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1099999 KHz, changing to: 1099989 KHz
[    2.924842] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
[    2.924865] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[    2.940099] sdhci-arasan ff170000.mmc: Got CD GPIO
[    2.942836] of_cfs_init
[    2.942884] of_cfs_init: OK
[    2.943027] clk: Disabling unused clocks
[    2.943682] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    2.944510] ALSA device list:
[    2.944516]   No soundcards found.
[    2.969248] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
[    2.972166] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.981560] mmc1: SDHCI controller on ff170000.mmc [ff170000.mmc] using ADMA 64-bit
[    2.986194] usb usb1: Product: xHCI Host Controller
[    2.986206] usb usb1: Manufacturer: Linux 6.6.40-xilinx-g2b7f6f70a62a xhci-hcd
[    3.013181] usb usb1: SerialNumber: xhci-hcd.1.auto
[    3.019141] hub 1-0:1.0: USB hub found
[    3.022950] hub 1-0:1.0: 1 port detected
[    3.027506] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.030014] mmc1: new high speed SDHC card at address aaaa
[    3.035820] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    3.041822] mmcblk1: mmc1:aaaa SE32G 29.7 GiB
[    3.049384] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.057820]  mmcblk1: p1 p2
[    3.060954] usb usb2: Product: xHCI Host Controller
[    3.068627] usb usb2: Manufacturer: Linux 6.6.40-xilinx-g2b7f6f70a62a xhci-hcd
[    3.075861] usb usb2: SerialNumber: xhci-hcd.1.auto
[    3.081420] hub 2-0:1.0: USB hub found
[    3.085207] hub 2-0:1.0: 1 port detected
[    3.092645] mmc0: new HS200 MMC card at address 0001
[    3.098429] mmcblk0: mmc0:0001 MW2816 14.6 GiB
[    3.105308] mmcblk0boot0: mmc0:0001 MW2816 4.00 MiB
[    3.111914] mmcblk0boot1: mmc0:0001 MW2816 4.00 MiB
[    3.118353] mmcblk0rpmb: mmc0:0001 MW2816 4.00 MiB, chardev (240:0)
[    3.217284] EXT4-fs (mmcblk1p2): orphan cleanup on readonly fs
[    3.225885] EXT4-fs (mmcblk1p2): mounted filesystem d84f13c5-f086-47d0-b886-44d86ee65b40 ro with ordered data mode. Quota mode: none.
[    3.238012] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
[    3.247314] devtmpfs: mounted
[    3.251751] Freeing unused kernel memory: 2944K
[    3.256449] Run /sbin/init as init process
[    3.313276] usb 1-1: new high-speed USB device number 2 using xhci-hcd
[    3.529774] usb 1-1: New USB device found, idVendor=058f, idProduct=6387, bcdDevice= 0.02
[    3.538000] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.545154] usb 1-1: Product: Mass Storage
[    3.549266] usb 1-1: Manufacturer: Generic
[    3.553374] usb 1-1: SerialNumber: 5092A72D
[    3.559437] usb-storage 1-1:1.0: USB Mass Storage device detected
[    3.566229] scsi host0: usb-storage 1-1:1.0
[    3.737398] systemd[1]: System time before build time, advancing clock.
[    3.790761] systemd[1]: systemd 255.4^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    3.822659] systemd[1]: Detected architecture arm64.

Welcome to PetaLinux 2024.2+release-S11061705 (scarthgap)!

[    3.847871] systemd[1]: Hostname set to <osdzu3-ref>.
[    3.864311] systemd[1]: Initializing machine ID from random generator.
[    3.871076] systemd[1]: Installed transient /etc/machine-id file.
[    4.696036] systemd[1]: Queued start job for default target Multi-User System.
[    4.731615] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[    4.755826] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[    4.779702] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[    4.803122] systemd[1]: Created slice User and Session Slice.
[    4.806502] scsi 0:0:0:0: Direct-Access     Generic  Flash Disk       8.01 PQ: 0 ANSI: 6
[  OK  ] Created slice User and Session Slice[    4.820419] sd 0:0:0:0: [sda] 61440000 512-byte logical blocks: (31.5 GB/29.3 GiB)
.
[    4.831066] sd 0:0:0:0: [sda] Write Protect is off
[    4.836350] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    4.846426] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.854675]  sda: sda1
[  OK  ] Started Dispatch Password Requests t[    4.857452] sd 0:0:0:0: [sda] Attached SCSI removable disk
o Console Directory Watch.
[    4.877770] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password Requests to Wall Directory Watch.
[    4.901486] systemd[1]: Expecting device /dev/disk/by-label/boot...
         Expecting device /dev/disk/by-label/boot...
[    4.925617] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[    4.941452] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[    4.961452] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[    4.977465] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[    4.994732] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[    5.017444] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[    5.041302] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[    5.057869] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[    5.082826] systemd[1]: Listening on Journal Audit Socket.
[  OK  ] Listening on Journal Audit Socket.
[    5.106052] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[    5.130239] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[    5.146494] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[    5.170373] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    5.194025] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    5.218167] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[    5.269736] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[    5.313777] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[    5.326209] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[    5.346281] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[    5.367053] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[    5.396373] systemd[1]: Starting Create List of Static Device Nodes...
         Starting Create List of Static Device Nodes...
[    5.424206] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[    5.448948] systemd[1]: Starting Load Kernel Module dm_mod...
         Starting Load Kernel Module dm_mod...
[    5.462402] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[    5.484895] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[    5.537991] systemd[1]: Starting Load Kernel Module loop...
         Starting Load Kernel Module loop...
[    5.566750] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[    5.591719] systemd[1]: Starting File System Check on Root Device...
         Starting File System Check on Root Device..[    5.600313] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
.
[    5.617316] systemd[1]: systemd-journald.service: (This warning is only shown for the first unit using IP firewalling.)
[    5.634441] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    5.661520] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[    5.676307] systemd[1]: Starting Generate network units from Kernel command line...
         Starting Generate network units from Kernel command line...
[    5.694523] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[    5.731777] systemd[1]: Mounted Huge Pages File System.
[    5.738952] systemd[1]: Mounted POSIX Message Queue File System.

[  OK  ] Mounted POSIX Message Queue File Sys[    5.750347] systemd[1]: Started RPC Bind.
tem.
[  OK  ] Started RPC Bind.
[    5.760674] systemd[1]: Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Debug File System[    5.774587] systemd[1]: Mounted Temporary Directory /tmp.
.
[  OK  ] Mounted Temporary Directory /tmp[    5.784259] systemd[1]: Finished Create List of Static Device Nodes.
.
[  OK  ] Finished Create List of Static Devi[    5.796283] systemd[1]: modprobe@configfs.service: Deactivated successfully.
ce Nodes.
[    5.808243] systemd[1]: Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module configfs[    5.817461] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
.
[    5.829136] systemd[1]: Finished Load Kernel Module dm_mod.
[    5.829173] openvswitch: Open vSwitch switching datapath
[  OK  ] Finished Load Kernel Module dm_mod    5.842582] systemd[1]: modprobe@drm.service: Deactivated successfully.
0m.
[    5.852475] systemd-journald[223]: Collecting audit messages is enabled.
[    5.854199] systemd[1]: Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module drm.[    5.868058] systemd[1]: modprobe@fuse.service: Deactivated successfully.

[    5.879781] systemd[1]: Finished Load Kernel Module fuse.
[  OK  ] Finished Load Kernel Module fuse[    5.887998] systemd[1]: modprobe@loop.service: Deactivated successfully.
.
[    5.899659] systemd[1]: Finished Load Kernel Module loop.
[  OK  ] Finished Load Kernel Module loop.
[    5.931527] systemd[1]: Finished File System Check on Root Device.
[  OK  ] Finished File System Check on Root Device.
[    5.955282] systemd[1]: Finished Load Kernel Modules.
[  OK  ] Finished Load Kernel Modules.
[    5.975743] systemd[1]: Finished Generate network units from Kernel command line.
[  OK  ] Finished Generate network units from Kernel command line.
[    6.003697] systemd[1]: Reached target Preparation for Network.
[  OK  ] Reached target Preparation for Network.
[    6.069717] systemd[1]: Mounting NFSD configuration filesystem...
         Mounting NFSD configuration filesystem...
[    6.094331] systemd[1]: FUSE Control File System was skipped because of an unmet condition check (ConditionPathExists=/sys/fs/fuse/connections).
[    6.112673] systemd[1]: Mounting Kernel Configuration File System...
         Mounting Kernel Configuration File System...
[    6.143358] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[    6.165722] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[    6.181351] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[    6.206427] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
         Starting Create Static Device Nodes in /dev gracefully...
[    6.249186] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[    6.268260] EXT4-fs (mmcblk1p2): re-mounted d84f13c5-f086-47d0-b886-44d86ee65b40 r/w. Quota mode: none.
[  OK  ] Mounted NFSD configuration filesystem.
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Remount Root and Kernel File Systems.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Create Static Device Nodes in /dev gracefully.
         Starting Flush Journal to Persistent Storage...
         Starting Create System Users...
[    6.511141] systemd-journald[223]: Received client request to flush runtime journal.
[  OK  ] Finished Flush Journal to Persistent Storage.
         Starting User Database Manager...
[  OK  ] Started User Database Manager.
[  OK  ] Finished Create System Users.
         Starting Create Static Device Nodes in /dev...
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Preparation for Local File Systems.
         Mounting /var/volatile...
         Starting Rule-based Manager for Device Events and Files...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save OS Random Seed...
[  OK  ] Started Rule-based Manager for Device Events and Files.
         Starting Network Configuration...
[  OK  ] Finished Coldplug All udev Devices.
[    8.253347] random: crng init done
[    8.277516] macb ff0e0000.ethernet end0: renamed from eth0
[  OK  ] Finished Load/Save OS Random Seed.
[    8.590994] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    8.897487] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    8.923506] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    8.933545] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    8.942284] cfg80211: failed to load regulatory.db
[  OK  ] Started Network Configuration.
[*     ] A start job is running for /dev/disk/by-label/boot (6s / 1min 30s)
[   11.193713] macb ff0e0000.ethernet end0: PHY [ff0e0000.ethernet-ffffffff:04] driver [Qualcomm Atheros AR8035] (irq=POLL)
[   11.204654] macb ff0e0000.ethernet end0: configuring for phy/rgmii-id link mode
[   11.213954] pps pps0: new PPS source ptp0
[  OK  ] Found device /dev/disk/by-label/boot.
[  OK  ] Created slice Slice /system/systemd-fsck.
[  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
         Mounting /boot...
         Starting File System Check on /dev/sda1...
         Starting Virtual Console Setup...
[  OK  ] Mounted /boot.
[  OK  ] Finished Virtual Console Setup.
[  OK  ] Finished File System Check on /dev/sda1.
         Mounting /run/media/sda1...
[  OK  ] Mounted /run/media/sda1.
[  OK  ] Reached target Local File Systems.
         Starting Rebuild Dynamic Linker Cache...
         Starting Commit a transient machine-id on disk...
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Commit a transient machine-id on disk.
[  OK  ] Finished Create Volatile Files and Directories.
         Starting Rebuild Journal Catalog...
         Starting Network Name Resolution...
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Rebuild Dynamic Linker Cache.
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Finished Rebuild Journal Catalog.
         Starting Update is Completed...
[  OK  ] Finished Update is Completed.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Time Set.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
[  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.
         Starting sshd.socket...
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started System Logging Service.
         Starting D-Bus System Message Bus...
         Starting User Login Management...
         Starting Permit User Sessions...
         Starting Target Communication Framework agent...
         Starting OpenSSH Key Generation...
[  OK  ] Finished Permit User Sessions.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on ttyPS0.
[  OK  ] Reached target Login Prompts.
[  OK  ] Started Target Communication Framework agent.
[  OK  ] Started User Login Management.
[  OK  ] Reached target Multi-User System.
         Starting Record Runlevel Change in UTMP...
[  OK  ] Finished Record Runlevel Change in UTMP.
[  OK  ] Finished OpenSSH Key Generation.

********************************************************************************************
The PetaLinux source code and images provided/generated are for demonstration purposes only.
Please refer to https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/2741928025/Moving+from+PetaLinux+to+Production+Deployment
for more details.
********************************************************************************************
PetaLinux 2024.2+release-S11061705 osdzu3-ref ttyPS0

osdzu3-ref login: 
				
			
Conclusion

In this app note, we covered how to use Vivado to create a hardware platform for OSDZU3-REF, how to import it into a new PetaLinux project and how to generate a minimal image that will boot on OSDZU3-REF board.

Revision NumberRevision DateChangesAuthor
103/03/2026Initial releaseNeeraj Dantu
203/03/2026Added introduction section referencing Part 1. Numbered all procedural steps. Added revision history section per review comments.Neeraj Dantu
Related Products

Table of Contents

Determine Your OSDZU3-REF Revision

There has been multiple revisions to the OSDZU3-REF and some of the documentation is for specific revisions.

The revision of your OSDZU3-REF is printed under the fan next to the Octavo Systems logo.  See the image below.

If there are multiple versions of a document make sure you select the one that matches your revision.

Document Change Notifications