PXE Setup for Jetson AGX Orin with Jetpack 6.0

Hi all,
I am testing using a PXE server to image a Jetson AGX Orin.

I get to the grub menu, select my entry, and receive an approximately 5 second dash/prompt screen, after selecting the entry , it gets stuck and the output is as follows:

EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services...


I have followed the guide here: Flashing Support — NVIDIA Jetson Linux Developer Guide 1 documentation

I have confirmed that the PXE server does connect, assign an IP address, boot into grub, and present my custom menu.

I am using grubnetaa64.efi.signed downloaded from the ubuntu website. The Image and initrd files are from the nvidia_sdk/JetPack_6.0_Linux_JETSON_AGX_ORIN_TARGETS/Linux_for_Tegra/rootfs/boot/
Below are my configuration files, which are modified from the guide

cat /etc/dhcp/dhcpd.conf 
# dhcpd.conf
#
# Sample configuration file for ISC dhcpd
#
# Attention: If /etc/ltsp/dhcpd.conf exists, that will be used as
# configuration file instead of this file.
#

# option definitions common to all supported networks...
option domain-name "example.org";
option domain-name-servers ns1.example.org, ns2.example.org;

default-lease-time 600;
max-lease-time 7200;

# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
ddns-update-style none;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
#authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
#log-facility local7;

# No service will be given on this subnet, but declaring it helps the 
# DHCP server to understand the network topology.

#subnet 10.152.187.0 netmask 255.255.255.0 {
#}

# This is a very basic subnet declaration.

#subnet 10.254.239.0 netmask 255.255.255.224 {
#  range 10.254.239.10 10.254.239.20;
#  option routers rtr-239-0-1.example.org, rtr-239-0-2.example.org;
#}

# This declaration allows BOOTP clients to get dynamic addresses,
# which we don't really recommend.

#subnet 10.254.239.32 netmask 255.255.255.224 {
#  range dynamic-bootp 10.254.239.40 10.254.239.60;
#  option broadcast-address 10.254.239.31;
#  option routers rtr-239-32-1.example.org;
#}
subnet 192.168.100.0 netmask 255.255.255.0 {
  range 192.168.100.10 192.168.100.30;
option subnet-mask 255.255.255.0;
option routers 192.168.100.1;
  option broadcast-address 192.168.100.255;
next-server 192.168.100.100;
filename "efi/grubnetaa64.efi.signed";
option root-path "/var/lib/tftpboot/";
#  option routers rtr-239-32-1.example.org;
}
# A slightly different configuration for an internal subnet.
#subnet 10.5.5.0 netmask 255.255.255.224 {
#  range 10.5.5.26 10.5.5.30;
#  option domain-name-servers ns1.internal.example.org;
#  option domain-name "internal.example.org";
#  option subnet-mask 255.255.255.224;
#  option routers 10.5.5.1;
#  option broadcast-address 10.5.5.31;
#  default-lease-time 600;
#  max-lease-time 7200;
#}

# Hosts which require special configuration options can be listed in
# host statements.   If no address is specified, the address will be
# allocated dynamically (if possible), but the host-specific information
# will still come from the host declaration.

#host passacaglia {
#  hardware ethernet 0:0:c0:5d:bd:95;
#  filename "vmunix.passacaglia";
#  server-name "toccata.example.com";
#}

# Fixed IP addresses can also be specified for hosts.   These addresses
# should not also be listed as being available for dynamic assignment.
# Hosts for which fixed IP addresses have been specified can boot using
# BOOTP or DHCP.   Hosts for which no fixed address is specified can only
# be booted with DHCP, unless there is an address range on the subnet
# to which a BOOTP client is connected which has the dynamic-bootp flag
# set.
#host fantasia {
#  hardware ethernet 08:00:07:26:c0:a5;
#  fixed-address fantasia.example.com;
#}

# You can declare a class of clients and then do address allocation
# based on that.   The example below shows a case where all clients
# in a certain class get addresses on the 10.17.224/24 subnet, and all
# other clients get addresses on the 10.0.29/24 subnet.

#class "foo" {
#  match if substring (option vendor-class-identifier, 0, 4) = "SUNW";
#}

#shared-network 224-29 {
#  subnet 10.17.224.0 netmask 255.255.255.0 {
#    option routers rtr-224.example.org;
#  }
#  subnet 10.0.29.0 netmask 255.255.255.0 {
#    option routers rtr-29.example.org;
#  }
#  pool {
#    allow members of "foo";
#    range 10.17.224.10 10.17.224.250;
#  }
#  pool {
#    deny members of "foo";
#    range 10.0.29.10 10.0.29.230;
#  }
#}

cat /etc/default/tftpd-hpa 
# /etc/default/tftpd-hpa

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/var/lib/tftpboot"
TFTP_ADDRESS=":69"
TFTP_OPTIONS="--secure"

cat /etc/xinetd.d/tftp 
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /var/lib/tftpboot
disable = no
}


cat /etc/exports 
# /etc/exports: the access control list for filesystems which may be exported
#		to NFS clients.  See exports(5).
#
# Example for NFSv2 and NFSv3:
# /srv/homes       hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
#
# Example for NFSv4:
# /srv/nfs4        gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)
# /srv/nfs4/homes  gss/krb5i(rw,sync,no_subtree_check)
#
/home/ee/nfsroot *(rw,sync,no_subtree_check,no_root_squash)

tree /var/lib/tftpboot/
/var/lib/tftpboot/
├── efi
│   └── grubnetaa64.efi.signed
├── grub
│   ├── grub.cfg
│   └── grub.cfg.bak
├── Image
└── initrd


cat /var/lib/tftpboot/grub/grub.cfg
set timeout_style=menu
set timeout=5

menuentry "Jetson" {
      linux /Image root=/dev/nfs rw netdevwait ip=:::::eth0:on nfsroot=192.168.100.100:/home/ee/nfsroot fbcon=map:0 net.ifnames=0  console=ttyTCU0,115200 firmware_class.path=/etc/firmware fbcon=map:0 net.ifnames=0
      initrd /initrd
}

I build rootfs according to the guide here: Root File System — NVIDIA Jetson Linux Developer Guide 1 documentation

$ sudo ./nv_build_samplefs.sh --abi aarch64 --distro ubuntu --flavor minimal --version jammy
 ls /home/ee/nfsroot/
bin   dev  home  media  opt   root  sbin  sys  usr
boot  etc  lib   mnt    proc  run   srv   tmp  var

The video below demonstrates the process

Perhaps I have overlooked something else? Any help would be greatly appreciated.

Hi,

Can you try if you can mount the rootfs folder via NFS on other PC?
Or if the desktop flavor rootfs make any difference.

Hi DaveYYY,

I tested nfs in a virtual machine. Seems to work fine.

sudo mount -t nfs 192.168.100.100:/home/ee/nfsroot /mnt/rootfs
df -h
Filesystem                        Size  Used Avail Use% Mounted on
tmpfs                             391M  1.5M  390M   1% /run
/dev/sda3                          48G   15G   31G  33% /
tmpfs                             2.0G     0  2.0G   0% /dev/shm
tmpfs                             5.0M  4.0K  5.0M   1% /run/lock
/dev/sda2                         512M  6.1M  506M   2% /boot/efi
tmpfs                             391M  112K  391M   1% /run/user/1000
192.168.100.100:/home/ee/nfsroot  468G  402G   43G  91% /mnt/rootfs
ls /mnt/rootfs/
bin   dev  home  media  opt   root  sbin  sys  usr
boot  etc  lib   mnt    proc  run   srv   tmp  var

Then I used the following command to build rootfs, but it was still stuck at the above position and I couldn’t enter the system.

$ sudo ./nv_build_samplefs.sh --abi aarch64 --distro ubuntu --flavor desktop --version jammy

Then I tried to download the Sample Root Filesystem from the official website: Jetson Linux | NVIDIA Developer
https://developer.nvidia.com/downloads/embedded/l4t/r36_release_v3.0/release/tegra_linux_sample-root-filesystem_r36.3.0_aarch64.tbz2

It didn’t work either.
Below is the output after mounting nfs on virtual machine.

ll /mnt/rootfs/
total 80
drwxr-xr-x  18 root root  4096  6月 13 13:59 ./
drwxr-xr-x   3 root root  4096  6月 13 11:37 ../
lrwxrwxrwx   1 root root     7  2月 18  2023 bin -> usr/bin/
drwxr-xr-x   2 root root  4096  4月 18  2022 boot/
drwxr-xr-x   2 root root  4096  2月 18  2023 dev/
drwxr-xr-x 135 root root 12288  4月  9 13:17 etc/
drwxr-xr-x   2 root root  4096  4月 18  2022 home/
lrwxrwxrwx   1 root root     7  2月 18  2023 lib -> usr/lib/
drwxr-xr-x   2 root root  4096  2月 18  2023 media/
drwxr-xr-x   2 root root  4096  2月 18  2023 mnt/
drwxr-xr-x   2 root root  4096  2月 18  2023 opt/
drwxr-xr-x   2 root root  4096  4月 18  2022 proc/
drwx------   3 root root  4096  3月 22  2023 root/
drwxr-xr-x  18 root root  4096 10月  4  2023 run/
lrwxrwxrwx   1 root root     8  2月 18  2023 sbin -> usr/sbin/
drwxr-xr-x   2 root root  4096 12月  1  2022 snap/
drwxr-xr-x   2 root root  4096  2月 18  2023 srv/
drwxr-xr-x   2 root root  4096  4月 18  2022 sys/
drwxrwxrwt   2 root root  4096  4月  9 13:15 tmp/
drwxr-xr-x  11 root root  4096  2月 18  2023 usr/
drwxr-xr-x  14 root root  4096  3月 22  2023 var/


If I don’t enter Setup, it will print the following information, with an additional line Loaded initrd from LINUX_EFI_INITRD_MEDIA_GUID device path

Jetson System firmware version 36.3.0-gcid-36191598 date 2024-05-06T16:58:59+00:
00
ESC   to enter Setup.
F11   to enter Boot Manager Menu.
Enter to continue boot.
......L4TLauncher: Attempting Direct Boot
EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Loaded initrd from LINUX_EFI_INITRD_MEDIA_GUID device path
EFI stub: Exiting boot services...
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd421]
[    0.000000] Linux version 5.15.136-tegra (buildbrain@mobile-u64-6367-d8000) (aarch64-buildroot-linux-gnu-gcc.br_real (Buildroot 2022.08) 11.3.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT Mon May 6 09:56:39 PDT 2024 ()
[    0.000000] Machine model: NVIDIA Jetson AGX Orin Developer Kit
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: RTPROP=0x827fbf198 SMBIOS=0xffff0000 SMBIOS 3.0=0x827990000 MEMATTR=0x821a31018 ESRT=0x8219e7d18 RNG=0x8155a0018 MEMRESERVE=0x8160fdc18
[    0.000000] random: crng init done
[    0.000000] secureboot: Secure boot disabled
[    0.000000] esrt: Reserving ESRT space from 0x00000008219e7d18 to 0x00000008219e7d50.
[    0.000000] Reserved memory: created CMA memory pool at 0x0000000805000000, size 256 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x0000000833ffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x828c7d800-0x828c7ffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000000833ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x00000000fffdffff]
[    0.000000]   node   0: [mem 0x00000000fffe0000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x0000000818a3dfff]
[    0.000000]   node   0: [mem 0x0000000818a3e000-0x0000000818b9bfff]
[    0.000000]   node   0: [mem 0x0000000818b9c000-0x000000082607ffff]
[    0.000000]   node   0: [mem 0x0000000826080000-0x0000000827fbffff]
[    0.000000]   node   0: [mem 0x0000000827fc0000-0x000000082c5fffff]
[    0.000000]   node   0: [mem 0x000000082c600000-0x000000082c7fffff]
[    0.000000]   node   0: [mem 0x000000082c800000-0x000000082cd6ffff]
[    0.000000]   node   0: [mem 0x000000082d700000-0x000000082d7fffff]
[    0.000000]   node   0: [mem 0x0000000832000000-0x0000000833ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000833ffffff]
[    0.000000] On node 0, zone Normal: 2448 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 18432 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 29 pages/cpu s80408 r8192 d30184 u118784
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: Address authentication (architected algorithm)
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: Spectre-BHB

The output that gets stuck does not have the line. Is this a problem?

What else can I try?

Hi,

It looks like more a issue of GRUB itself instead of the entire PXE boot workflow.
Can you please follow this guide to test if booting locally from eMMC with GRUB works?
https://docs.nvidia.com/jetson/archives/r36.3/DeveloperGuide/SD/Bootloader/UEFI.html#grub-support

I tried it once, and after rebooting, it reported error:
no suitable video mode found.
I skipped step 8 because it said optional.
Because I am not familiar with some commands, maybe there is something wrong with my operation. I will re-flash and try again later.

I followed steps 1 to 9 of Grub support strictly. The final result is:

An error message was displayed during the startup process: error: no such device: root.
It seems that I did not enter the system in the end, but I can use some commands.

What else can I try?


Jetson System firmware version 36.3.0-gcid-36191598 date 2024-05-06T16:58:59+00:
00
ESC   to enter Setup.
F11   to enter Boot Manager Menu.
Enter to continue boot.
......























                             GNU GRUB  version 2.06

 /----------------------------------------------------------------------------\
 |*Jetson Linux                                                               |
 | System restart                                                             |
 | UEFI Firmware Settings                                                     |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 \----------------------------------------------------------------------------/

      Use the ^ and v keys to select which entry is highlighted.
      Press enter to boot the selected OS, `e' to edit the commands
      before booting or `c' for a command-line. ESC to return previous
      menu.


Booting Jetson Linux...
error: no such device: root.

Press any key to continue...
EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services...
▒▒debugfs initialized
▒▒I/TC: Reserved shared memory is disabled
I/TC: Dynamic shared memory is enabled
I/TC: Normal World virtualization support is disabled
I/TC: Asynchronous notifications are disabled
▒▒[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd421]
[    0.000000] Linux version 5.15.136-tegra (buildbrain@mobile-u64-6367-d8000) (aarch64-buildroot-linux-gnu-gcc.br_real (Buildroot 2022.08) 11.3.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT Mon May 6 09:56:39 PDT 2024 ()
[    0.000000] Machine model: NVIDIA Jetson AGX Orin Developer Kit
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: RTPROP=0x827fbf198 SMBIOS=0xffff0000 SMBIOS 3.0=0x827990000 MEMATTR=0x821a31018 ESRT=0x8223a1c98 RNG=0x810480018 MEMRESERVE=0x81879aa18
[    0.000000] random: crng init done
[    0.000000] secureboot: Secure boot disabled
[    0.000000] esrt: Reserving ESRT space from 0x00000008223a1c98 to 0x00000008223a1cd0.
[    0.000000] Reserved memory: created CMA memory pool at 0x0000000800000000, size 256 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x0000000833ffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x828c7f800-0x828c81fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000000833ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x00000000fffdffff]
[    0.000000]   node   0: [mem 0x00000000fffe0000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x0000000818a3dfff]
[    0.000000]   node   0: [mem 0x0000000818a3e000-0x0000000818b9bfff]
[    0.000000]   node   0: [mem 0x0000000818b9c000-0x000000082607ffff]
[    0.000000]   node▒▒WARNING: clock_disable: clk_power_ungate on gated domain 35 for gpusysclk
▒▒   0: [mem 0x0000000826080000-0x0000000827fbffff]
[    0.000000]   node   0: [mem 0x0000000827fc0000-0x000000082c5fffff]
[    0.000000]   node   0: [mem 0x000000082c600000-0x000000082c7fffff]
[    0.000000]   node   0: [mem 0x000000082c800000-0x000000082cd6ffff]
[    0.000000] ▒▒WARNING: clock_disable: clk_power_ungate on gated domain 35 for gpc1clk
▒▒  node   0: [mem 0x000000082d700000-0x000000082d7fffff]
[    0.000000]   node   0: [mem 0x0000000832000000-0x0000000833ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000833ffffff]
[    0.000000] On node 0, zone Normal: 2448 pages in unavailable ranges
[    0.000000] On ▒▒WARNING: clock_disable: clk_power_ungate on gated domain 35 for gpc0clk
▒▒node 0, zone Normal: 18432 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] ▒▒WARNING: clock_disable: clk_power_ungate on gated domain 34 for dla1_core
▒▒percpu: Embedded 29 pages/cpu s80408 r8192 d30184 u118784
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: Address authentication (architected algorithm)
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] ▒▒WARNING: clock_disable: clk_power_ungate on gated domain 34 for nafll_dla1_core
▒▒CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: Spectre-BHB
[    0.000000] CPU features: kernel page table isolati▒▒WARNING: clock_disable: clk_power_ungate on gated domain 34 for dla1_falcon
▒▒on forced ON by KASLR
[    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
[    0.000000] alternatives: patching kernel code
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 7930224
[    0.000000] Policy zone: Normal
[    0.000000] Kernel▒▒WARNING: clock_disable: clk_power_ungate on gated domain 34 for nafll_dla1_falcon
▒▒ command line: BOOT_IMAGE=/boot/Image
[    0.000000] Unknown kernel command line parameters "BOOT_IMAGE=/boot/Image", will be passed to user space.
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash t▒▒WARNING: clock_disable: clk_power_ungate on gated domain 34 for dla0_core
▒▒able entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000fbfe0000-0x00000000fffe0000] (64MB)
[    0.000000] Memory: 31152476K/32225728K available (▒▒WARNING: clock_disable: clk_power_ungate on gated domain 34 for nafll_dla0_core
▒▒19712K kernel code, 4056K rwdata, 9968K rodata, 7680K init, 529K bss, 811108K reserved, 262144K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] trace event string verifier disabled
[    0.000000] rcu: Preemptible hierarchic▒▒WARNING: clock_disable: clk_power_ungate on gated domain 34 for dla0_falcon
▒▒al RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[    0.000000]  Trampoline variant of Tasks RCU enabled.
[    0.000000]  Rude variant of Tasks RCU enabled.
[    0.00▒▒WARNING: clock_disable: clk_power_ungate on gated domain 34 for nafll_dla0_falcon
▒▒0000]         Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 960 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000f440000
[    0.000000] arch_timer: cp15 timer(s) running at 31.25MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    0.000001] sched_clock: 56 bits at 31MHz, resolution 32ns, wraps every 4398046511088ns
[    0.000547] Console: colour dummy device 80x25
[    0.000568] printk: console [tty0] enabled
[    0.000695] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=125000)
[    0.000712] pid_max: default: 32768 minimum: 301
[    0.000784] LSM: Security Framework initializing
[    0.000829] Yama: becoming mindful.
[    0.000870] SELinux:  Initializing.
[    0.001118] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.001252] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.003932] rcu: Hierarchical SRCU implementation.
[    0.008062] Tegra Revision: A01 SKU: 210 CPU Process: 0 SoC Process: 0
[    0.008452] Remapping and enabling EFI services.
[    0.009570] smp: Bringing up secondary CPUs ...
[    0.010396] Detected PIPT I-cache on CPU1
[    0.010497] GICv3: CPU1: found redistributor 100 region 0:0x000000000f460000
[    0.010564] CPU1: Booted secondary processor 0x0000000100 [0x410fd421]
[    0.011303] Detected PIPT I-cache on CPU2
[    0.011315] GICv3: CPU2: found redistributor 200 region 0:0x000000000f480000
[    0.011339] CPU2: Booted secondary processor 0x0000000200 [0x410fd421]
[    0.011995] Detected PIPT I-cache on CPU3
[    0.012007] GICv3: CPU3: found redistributor 300 region 0:0x000000000f4a0000
[    0.012024] CPU3: Booted secondary processor 0x0000000300 [0x410fd421]
[    0.014741] Detected PIPT I-cache on CPU4
[    0.014774] GICv3: CPU4: found redistributor 20000 region 0:0x000000000f540000
[    0.014805] CPU4: Booted secondary processor 0x0000020000 [0x410fd421]
[    0.015522] Detected PIPT I-cache on CPU5
[    0.015536] GICv3: CPU5: found redistributor 20100 region 0:0x000000000f560000
[    0.015554] CPU5: Booted secondary processor 0x0000020100 [0x410fd421]
[    0.016201] Detected PIPT I-cache on CPU6
[    0.016216] GICv3: CPU6: found redistributor 20200 region 0:0x000000000f580000
[    0.016240] CPU6: Booted secondary processor 0x0000020200 [0x410fd421]
[    0.016901] Detected PIPT I-cache on CPU7
[    0.016914] GICv3: CPU7: found redistributor 20300 region 0:0x000000000f5a0000
[    0.016933] CPU7: Booted secondary processor 0x0000020300 [0x410fd421]
[    0.017003] smp: Brought up 1 node, 8 CPUs
[    0.017012] SMP: Total of 8 processors activated.
[    0.017018] CPU features: detected: 32-bit EL0 Support
[    0.017020] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.017024] CPU features: detected: Common not Private translations
[    0.017025] CPU features: detected: CRC32 instructions
[    0.017026] CPU features: detected: Data cache clean to Point of Persistence
[    0.017028] CPU features: detected: Generic authentication (architected algorithm)
[    0.017029] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.017031] CPU features: detected: LSE atomic instructions
[    0.017033] CPU features: detected: Privileged Access Never
[    0.017035] CPU features: detected: RAS Extension Support
[    0.017040] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.069256] CPU: All CPU(s) started at EL2
[    0.074340] devtmpfs: initialized
[    0.098411] KASLR enabled
[    0.098586] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.098615] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.103514] pinctrl core: initialized pinctrl subsystem
[    0.104532] SMBIOS 3.6.0 present.
[    0.104543] DMI: NVIDIA NVIDIA Jetson AGX Orin Developer Kit/Jetson, BIOS 36.3.0-gcid-36191598 05/06/2024
[    0.105143] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.107103] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.107469] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.107801] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.107853] audit: initializing netlink subsys (disabled)
[    0.107991] audit: type=2000 audit(0.104:1): state=initialized audit_enabled=0 res=1
[    0.109759] thermal_sys: Registered thermal governor 'step_wise'
[    0.109764] thermal_sys: Registered thermal governor 'user_space'
[    0.109764] thermal_sys: Registered thermal governor 'power_allocator'
[    0.114613] cpuidle: using governor menu
[    0.114737] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.114842] ASID allocator initialised with 32768 entries
[    0.116915] Serial: AMBA PL011 UART driver
[    0.128380] 31d0000.serial: ttyAMA0 at MMIO 0x31d0000 (irq = 118, base_baud = 0) is a SBSA
[    0.140048] platform bpmp: Fixing up cyclic dependency with 2c60000.external-memory-controller
[    0.149238] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.149246] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.149247] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.149248] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.150144] cryptd: max_cpu_qlen set to 1000
[    0.151915] ACPI: Interpreter disabled.
[    0.153960] iommu: Default domain type: Translated
[    0.153966] iommu: DMA domain TLB invalidation policy: strict mode
[    0.154310] SCSI subsystem initialized
[    0.154505] vgaarb: loaded
[    0.154680] usbcore: registered new interface driver usbfs
[    0.154701] usbcore: registered new interface driver hub
[    0.154716] usbcore: registered new device driver usb
[    0.155137] pps_core: LinuxPPS API ver. 1 registered
[    0.155143] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.155153] PTP clock support registered
[    0.155237] EDAC MC: Ver: 3.0.0
[    0.156297] Registered efivars operations
[    0.156908] FPGA manager framework
[    0.156978] Advanced Linux Sound Architecture Driver Initialized.
[    0.157777] clocksource: Switched to clocksource arch_sys_counter
[    0.193397] VFS: Disk quotas dquot_6.6.0
[    0.193459] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.193681] pnp: PnP ACPI: disabled
[    0.196740] NET: Registered PF_INET protocol family
[    0.197285] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.199642] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.199705] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.199744] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.199976] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.201274] TCP: Hash tables configured (established 262144 bind 65536)
[    0.201501] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.201569] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.201835] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.202266] RPC: Registered named UNIX socket transport module.
[    0.202273] RPC: Registered udp transport module.
[    0.202276] RPC: Registered tcp transport module.
[    0.202278] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.202297] PCI: CLS 0 bytes, default 64
[    0.202556] Unpacking initramfs...
[    0.211151] hw perfevents: enabled with armv8_cortex_a78 PMU driver, 7 counters available
[    0.211476] kvm [1]: IPA Size Limit: 48 bits
[    0.211515] kvm [1]: GICv3: no GICV resource entry
[    0.211524] kvm [1]: disabling GICv2 emulation
[    0.211545] kvm [1]: GIC system register CPU interface enabled
[    0.211631] kvm [1]: vgic interrupt IRQ9
[    0.211802] kvm [1]: VHE mode initialized successfully
[    0.215061] Initialise system trusted keyrings
[    0.215215] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[    0.218688] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.219090] NFS: Registering the id_resolver key type
[    0.219119] Key type id_resolver registered
[    0.219122] Key type id_legacy registered
[    0.219185] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.219199] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.219220] ntfs: driver 2.1.32 [Flags: R/O].
[    0.219447] 9p: Installing v9fs 9p2000 file system support
[    0.231506] Key type asymmetric registered
[    0.231513] Asymmetric key parser 'x509' registered
[    0.231601] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.231611] io scheduler mq-deadline registered
[    0.231620] io scheduler kyber registered
[    0.243278] EINJ: ACPI disabled.
[    0.256139] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.258075] SuperH (H)SCI(F) driver initialized
[    0.258422] msm_serial: driver initialized
[    0.259048] printk: console [ttyTCU0] enabled
[    0.259977] arm-smmu 8000000.iommu: probing hardware configuration...
[    0.259983] arm-smmu 8000000.iommu: SMMUv2 with:
[    0.259992] arm-smmu 8000000.iommu:  stage 1 translation
[    0.259995] arm-smmu 8000000.iommu:  stage 2 translation
[    0.259996] arm-smmu 8000000.iommu:  nested translation
[    0.260001] arm-smmu 8000000.iommu:  stream matching with 128 register groups
[    0.260006] arm-smmu 8000000.iommu:  128 context banks (0 stage-2 only)
[    0.260031] arm-smmu 8000000.iommu:  Supported page sizes: 0x61311000
[    0.260035] arm-smmu 8000000.iommu:  Stage-1: 48-bit VA -> 48-bit IPA
[    0.260036] arm-smmu 8000000.iommu:  Stage-2: 48-bit IPA -> 48-bit PA
[    0.261068] arm-smmu 10000000.iommu: probing hardware configuration...
[    0.261070] arm-smmu 10000000.iommu: SMMUv2 with:
[    0.261073] arm-smmu 10000000.iommu:         stage 1 translation
[    0.261075] arm-smmu 10000000.iommu:         stage 2 translation
[    0.261076] arm-smmu 10000000.iommu:         nested translation
[    0.261080] arm-smmu 10000000.iommu:         stream matching with 128 register groups
[    0.261083] arm-smmu 10000000.iommu:         128 context banks (0 stage-2 only)
[    0.261094] arm-smmu 10000000.iommu:         Supported page sizes: 0x61311000
[    0.261096] arm-smmu 10000000.iommu:         Stage-1: 48-bit VA -> 48-bit IPA
[    0.261100] arm-smmu 10000000.iommu:         Stage-2: 48-bit IPA -> 48-bit PA
[    0.261449] arm-smmu 12000000.iommu: probing hardware configuration...
[    0.261451] arm-smmu 12000000.iommu: SMMUv2 with:
[    0.261453] arm-smmu 12000000.iommu:         stage 1 translation
[    0.261453] arm-smmu 12000000.iommu:         stage 2 translation
[    0.261455] arm-smmu 12000000.iommu:         nested translation
[    0.261458] arm-smmu 12000000.iommu:         stream matching with 128 register groups
[    0.261460] arm-smmu 12000000.iommu:         128 context banks (0 stage-2 only)
[    0.261464] arm-smmu 12000000.iommu:         Supported page sizes: 0x61311000
[    0.261465] arm-smmu 12000000.iommu:         Stage-1: 48-bit VA -> 48-bit IPA
[    0.261466] arm-smmu 12000000.iommu:         Stage-2: 48-bit IPA -> 48-bit PA
[    0.270340] loop: module loaded
[    0.271206] megasas: 07.717.02.00-rc1
[    0.275323] tun: Universal TUN/TAP device driver, 1.6
[    0.275863] thunder_xcv, ver 1.0
[    0.275888] thunder_bgx, ver 1.0
[    0.275914] nicpf, ver 1.0
[    0.276776] hclge is initializing
[    0.276805] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    0.276812] hns3: Copyright (c) 2017 Huawei Corporation.
[    0.276854] e1000: Intel(R) PRO/1000 Network Driver
[    0.276860] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    0.276889] e1000e: Intel(R) PRO/1000 Network Driver
[    0.276895] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    0.276921] igb: Intel(R) Gigabit Ethernet Network Driver
[    0.276928] igb: Copyright (c) 2007-2014 Intel Corporation.
[    0.276949] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    0.276955] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    0.277184] sky2: driver version 1.30
[    0.277865] VFIO - User Level meta-driver version: 0.3
[    0.279269] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.279281] ehci-pci: EHCI PCI platform driver
[    0.279308] ehci-platform: EHCI generic platform driver
[    0.279389] ehci-orion: EHCI orion driver
[    0.279455] ehci-exynos: EHCI Exynos driver
[    0.279523] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.279545] ohci-pci: OHCI PCI platform driver
[    0.279577] ohci-platform: OHCI generic platform driver
[    0.279651] ohci-exynos: OHCI Exynos driver
[    0.280102] usbcore: registered new interface driver usb-storage
[    0.281954] i2c_dev: i2c /dev entries driver
[    0.283234] pps pps0: new PPS source ktimer
[    0.283240] pps pps0: ktimer PPS source registered
[    0.283248] pps_ldisc: PPS line discipline registered
[    0.285417] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[    0.287321] sdhci: Secure Digital Host Controller Interface driver
[    0.287328] sdhci: Copyright(c) Pierre Ossman
[    0.287791] Synopsys Designware Multimedia Card Interface Driver
[    0.288403] sdhci-pltfm: SDHCI platform and OF driver helper
[    0.289529] ledtrig-cpu: registered to indicate activity on CPUs
[    0.290492] SMCCC: SOC_ID: ID = jep106:036b:0234 Revision = 0x00000401
[    0.291065] tegra-bpmp bpmp: Adding to iommu group 0
[    0.292623] tegra-bpmp bpmp: firmware: 2aafe334513692db071c-3b0e1a33cf8
[    0.389124] Freeing initrd memory: 11456K
[    3.093745] clocksource: tsc: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    3.093791] clocksource: osc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 49772407460 ns
[    3.093794] clocksource: usec: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275 ns
[    3.094007] hid: raw HID events driver (C) Jiri Kosina
[    3.094385] usbcore: registered new interface driver usbhid
[    3.094388] usbhid: USB HID core driver
[    3.099442] optee: probing for conduit method.
[    3.099490] optee: revision 3.22 (e7b5ff3f)
[    3.159277] optee: dynamic shared memory is enabled
[    3.159542] optee: initialized driver
[    3.162852] usbcore: registered new interface driver snd-usb-audio
[    3.164624] NET: Registered PF_PACKET protocol family
[    3.164859] 9pnet: Installing 9P2000 support
[    3.164965] Key type dns_resolver registered
[    3.166150] printk: console [ttyTCU0]: printing thread started
[    3.167239] printk: console [tty0]: printing thread started
[    3.167312] Loading compiled-in X.509 certificates
[    3.180442] Loaded X.509 cert 'Build time autogenerated kernel key: dbaa37291f9eb1704a33bc5cf19ca9266fdea8e6'
[    3.208762] gpio-394 (camera-control-output-low): hogged as output/low
[    3.208801] gpio-397 (camera-control-output-low): hogged as output/low
[    3.208822] gpio-487 (camera-control-output-low): hogged as output/low
[    3.208838] gpio-486 (camera-control-output-low): hogged as output/low
[    3.213057] tegra-gpcdma 2600000.dma-controller: Adding to iommu group 1
[    3.215352] tegra-gpcdma 2600000.dma-controller: GPC DMA driver register 31 channels
[    3.217939] serial-tegra 3100000.serial: RX in PIO mode
[    3.217947] serial-tegra 3100000.serial: TX in PIO mode
[    3.218065] 3100000.serial: ttyTHS1 at MMIO 0x3100000 (irq = 112, base_baud = 0) is a TEGRA_UART
[    3.219989] serial-tegra 3110000.serial: RX in PIO mode
[    3.219995] serial-tegra 3110000.serial: TX in PIO mode
[    3.220083] 3110000.serial: ttyTHS2 at MMIO 0x3110000 (irq = 207, base_baud = 0) is a TEGRA_UART
[    3.223317] tegra_rtc c2a0000.rtc: registered as rtc1
[    3.223328] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
[    3.223831] tegra-i2c 3160000.i2c: Adding to iommu group 1
[    3.227516] tegra-i2c 3180000.i2c: Adding to iommu group 1
[    3.229991] tegra-i2c 3190000.i2c: Adding to iommu group 1
[    3.232156] tegra-i2c 31b0000.i2c: Adding to iommu group 1
[    3.234263] tegra-i2c 31c0000.i2c: Adding to iommu group 1
[    3.236370] tegra-i2c 31e0000.i2c: Adding to iommu group 1
[    3.238796] tegra-i2c c240000.i2c: Adding to iommu group 1
[    3.240772] tegra-i2c c250000.i2c: Adding to iommu group 1
[    3.261615] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 2009000 KHz, changing to: 2035200 KHz
[    3.265444] cpufreq: cpufreq_online: CPU4: Running at unlisted initial frequency: 2006000 KHz, changing to: 2035200 KHz
[    3.267992] sdhci-tegra 3460000.mmc: Adding to iommu group 2
[    3.268925] sdhci-tegra 3400000.mmc: Adding to iommu group 3
[    3.269787] irq: IRQ234: trimming hierarchy from :bus@0:pmc@c360000
[    3.269845] irq: IRQ235: trimming hierarchy from :bus@0:interrupt-controller@f400000-1
[    3.269884] irq: IRQ236: trimming hierarchy from :bus@0:pmc@c360000
[    3.269946] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    3.672201] ALSA device list:
[    3.672206]   No soundcards found.
[    3.674433] mmc0: CQHCI version 5.10
[    3.676794] sdhci-tegra 3400000.mmc: Got CD GPIO
[    3.710728] mmc0: SDHCI controller on 3460000.mmc [3460000.mmc] using ADMA 64-bit
[    3.724217] irq: IRQ237: trimming hierarchy from :bus@0:interrupt-controller@f400000-1
[    3.725555] mmc1: SDHCI controller on 3400000.mmc [3400000.mmc] using ADMA 64-bit
[    3.726455] Freeing unused kernel memory: 7680K
[    3.726516] Run /init as init process
[    3.737999] Checking overlayfs setting...
[    3.745671] Overlayfs is disabled...
[    3.819493] mmc0: Command Queue Engine enabled
[    3.819508] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    3.819777] mmcblk0: mmc0:0001 G1M15M 59.3 GiB
[    3.824382]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15
[    3.826046] mmcblk0boot0: mmc0:0001 G1M15M 31.5 MiB
[    3.826429] mmcblk0boot1: mmc0:0001 G1M15M 31.5 MiB
[    3.826767] mmcblk0rpmb: mmc0:0001 G1M15M 4.00 MiB, chardev (511:0)
insmod /lib/modules/5.15.136-tegra/kernel/drivers/thermal/tegra/tegra-bpmp-thermal.ko
insmod /lib/modules/5.15.136-tegra/kernel/drivers/pwm/pwm-tegra.ko
insmod /lib/modules/5.15.136-tegra/kernel/drivers/hwmon/pwm-fan.ko
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
bash-5.1# [    7.163026] No root-device: Mount failed
[   33.757954] VDD_3V3_PCIE: disabling
[   33.757968] VDD_12V_PCIE: disabling






bash-5.1#
bash-5.1#
bash-5.1# ls
bin  dev  etc  init  lib  mnt  proc  root  sbin  sys  tmp  usr  var
bash-5.1#




How did you setup GRUB?
How does your config file look like?
We verifeid locally on one of our AGX Orin and made sure GRUB alone should boot correctly.

I checked the PXE output log on ttyTCU0 and found that I had entered the system, but not on the other serial port.



Jetson System firmware version 36.3.0-gcid-36191598 date 2024-05-06T16:58:59+00:
00
ESC   to enter Setup.
F11   to enter Boot Manager Menu.
Enter to continue boot.
.
/------------------------------------------------------------------------------\
|                                Boot Manager                                  |
\------------------------------------------------------------------------------/

                                                         Device Path :
   Boot Manager Menu                                     VenHw(1E5A432C-0466-4D
                                                         31-B009-D4D9239271D3)/
   Ubuntu                                                MemoryMapped(0xB,0x680
   UEFI eMMC Device                                      0000,0x680FFFF)/MAC(48
   UEFI PXEv4 (MAC:48B02DD397CF)                         B02DD397CF,0x1)/IPv4(0
   UEFI PXEv6 (MAC:48B02DD397CF)                         .0.0.0,0x0,DHCP,0.0.0.
   UEFI HTTPv4 (MAC:48B02DD397CF)                        0,0.0.0.0,0.0.0.0)
   UEFI HTTPv6 (MAC:48B02DD397CF)
   UEFI Shell

   Use the <^> and <v> keys to choose a boot option,
   the <Enter> key to select a boot option, and the
   <Esc> key to exit the Boot Manager Menu.
                                                                                ▒I/TC: WARNING: Test UEFI variable auth key is being used !

/------------------------------------------------------------------------------\
|                                                                              |
| ^v=Move Highlight       <Enter>=Select Entry      Esc=Exit                   |
\------------------------------------------------------------------------------/























>>Start PXE over IPv4.
  Station IP address is 192.168.100.13

  Server IP address is 192.168.100.100
  NBP filename is efi/grubnetaa64.efi.signed
  NBP filesize is 1533816 Bytes
 Downloading NBP file...

  NBP file downloaded successfully.





































                             GNU GRUB  version 2.04

 /----------------------------------------------------------------------------\
 |*Jetson                                                                     |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 \----------------------------------------------------------------------------/

      Use the ^ and v keys to select which entry is highlighted.
      Press enter to boot the selected OS, `e' to edit the commands
      before booting or `c' for a command-line.


EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services...
▒▒debugfs initialized
▒▒I/TC: Reserved shared memory is disabled
I/TC: Dynamic shared memory is enabled
I/TC: Normal World virtualization support is disabled
I/TC: Asynchronous notifications are disabled
▒▒[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd421]
[    0.000000] Linux version 5.15.136-tegra (buildbrain@mobile-u64-6367-d8000) (aarch64-buildroot-linux-gnu-gcc.br_real (Buildroot 2022.08) 11.3.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT Mon May 6 09:56:39 PDT 2024 ()
[    0.000000] Machine model: NVIDIA Jetson AGX Orin Developer Kit
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: RTPROP=0x827fbf198 SMBIOS=0xffff0000 SMBIOS 3.0=0x827990000 MEMATTR=0x821a31018 ESRT=0x821178818 RNG=0x7aec20018 MEMRESERVE=0x818a37d98
[    0.000000] random: crng init done
[    0.000000] secureboot: Secure boot disabled
[    0.000000] esrt: Reserving ESRT space from 0x0000000821178818 to 0x0000000821178850.
[    0.000000] Reserved memory: created CMA memory pool at 0x0000000808000000, size 256 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x0000000833ffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x828c7d800-0x828c7ffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000000833ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x00000000fffdffff]
[    0.000000]   node   0: [mem 0x00000000fffe0000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x0000000818a3dfff]
[    0.000000]   node   0: [mem 0x0000000818a3e000-0x0000000818b9bfff]
[    0.000000]   node   0: [mem 0x0000000818b9c000-0x000000082607ffff]
[    0.000000]   node   0: [mem 0x0000000826080000-0x0000000827fbffff]
[    0.000000]   node   0: [mem 0x0000000827fc0000-0x000000082c5fffff]
[    0.000000]   node   0: [mem 0x000000082c600000-0x000000082c7fffff]
[    0.000000]   node   0: [mem 0x000000082c800000-0x000000082cd6ffff]
[    0.000000]   node   0: [mem 0x000000082d700000-0x000000082d7fffff]
[    0.000000]   node   0: [mem 0x0000000832000000-0x0000000833ffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000833ffffff]
[    0.000000] On node 0, zone Normal: 2448 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 18432 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 29 pages/cpu s80408 r8192 d30184 u118784
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: Address authentication (architected algorithm)
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: Spectre-BHB
[    0.000000] CPU features: kernel page table isolation forced ON by KASLR
[    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
[    0.000000] alternatives: patching kernel code
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 7930224
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/Image root=/dev/nfs rw netdevwait ip=:::::eth0:on nfsroot=192.168.100.100:/home/ee/nfsroot fbcon=map:0 net.ifnames=0 console=ttyTCU0,115200 firmware_class.path=/etc/firmware fbcon=map:0 net.ifnames=0
[    0.000000] Unknown kernel command line parameters "netdevwait BOOT_IMAGE=/Image", will be passed to user space.
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000fbfe0000-0x00000000fffe0000] (64MB)
[    0.000000] Memory: 31153492K/32225728K available (19712K kernel code, 4056K rwdata, 9968K rodata, 7680K init, 529K bss, 810092K reserved, 262144K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] trace event string verifier disabled
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[    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 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 960 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000f440000
[    0.000000] arch_timer: cp15 timer(s) running at 31.25MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    0.000003] sched_clock: 56 bits at 31MHz, resolution 32ns, wraps every 4398046511088ns
[    0.000609] Console: colour dummy device 80x25
[    0.000774] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=125000)
[    0.000791] pid_max: default: 32768 minimum: 301
[    0.000865] LSM: Security Framework initializing
[    0.000913] Yama: becoming mindful.
[    0.000951] SELinux:  Initializing.
[    0.001205] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.001333] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.004377] rcu: Hierarchical SRCU implementation.
[    0.008985] Tegra Revision: A01 SKU: 210 CPU Process: 0 SoC Process: 0
[    0.009388] Remapping and enabling EFI services.
[    0.010574] smp: Bringing up secondary CPUs ...
[    0.011452] Detected PIPT I-cache on CPU1
[    0.011568] GICv3: CPU1: found redistributor 100 region 0:0x000000000f460000
[    0.011678] CPU1: Booted secondary processor 0x0000000100 [0x410fd421]
[    0.012509] Detected PIPT I-cache on CPU2
[    0.012526] GICv3: CPU2: found redistributor 200 region 0:0x000000000f480000
[    0.012552] CPU2: Booted secondary processor 0x0000000200 [0x410fd421]
[    0.013205] Detected PIPT I-cache on CPU3
[    0.013218] GICv3: CPU3: found redistributor 300 region 0:0x000000000f4a0000
[    0.013240] CPU3: Booted secondary processor 0x0000000300 [0x410fd421]
[    0.015936] Detected PIPT I-cache on CPU4
[    0.015973] GICv3: CPU4: found redistributor 20000 region 0:0x000000000f540000
[    0.016007] CPU4: Booted secondary processor 0x0000020000 [0x410fd421]
[    0.016759] Detected PIPT I-cache on CPU5
[    0.016774] GICv3: CPU5: found redistributor 20100 region 0:0x000000000f560000
[    0.016801] CPU5: Booted secondary processor 0x0000020100 [0x410fd421]
[    0.017468] Detected PIPT I-cache on CPU6
[    0.017482] GICv3: CPU6: found redistributor 20200 region 0:0x000000000f580000
[    0.017507] CPU6: Booted secondary processor 0x0000020200 [0x410fd421]
[    0.018196] Detected PIPT I-cache on CPU7
[    0.018212] GICv3: CPU7: found redistributor 20300 region 0:0x000000000f5a0000
[    0.018228] CPU7: Booted secondary processor 0x0000020300 [0x410fd421]
[    0.018301] smp: Brought up 1 node, 8 CPUs
[    0.018308] SMP: Total of 8 processors activated.
[    0.018315] CPU features: detected: 32-bit EL0 Support
[    0.018317] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.018325] CPU features: detected: Common not Private translations
[    0.018327] CPU features: detected: CRC32 instructions
[    0.018328] CPU features: detected: Data cache clean to Point of Persistence
[    0.018331] CPU features: detected: Generic authentication (architected algorithm)
[    0.018333] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.018334] CPU features: detected: LSE atomic instructions
[    0.018336] CPU features: detected: Privileged Access Never
[    0.018338] CPU features: detected: RAS Extension Support
[    0.018344] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.070917] CPU: All CPU(s) started at EL2
[    0.076330] devtmpfs: initialized
[    0.099344] KASLR enabled
[    0.099567] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.099599] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.104615] pinctrl core: initialized pinctrl subsystem
[    0.105685] SMBIOS 3.6.0 present.
[    0.105697] DMI: NVIDIA NVIDIA Jetson AGX Orin Developer Kit/Jetson, BIOS 36.3.0-gcid-36191598 05/06/2024
[    0.106294] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.108373] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.108750] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.109090] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.109160] audit: initializing netlink subsys (disabled)
[    0.109322] audit: type=2000 audit(0.108:1): state=initialized audit_enabled=0 res=1
[    0.111186] thermal_sys: Registered thermal governor 'step_wise'
[    0.111190] thermal_sys: Registered thermal governor 'user_space'
[    0.111191] thermal_sys: Registered thermal governor 'power_allocator'
[    0.116056] cpuidle: using governor menu
[    0.116268] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.116396] ASID allocator initialised with 32768 entries
[    0.118650] Serial: AMBA PL011 UART driver
[    0.130735] 31d0000.serial: ttyAMA0 at MMIO 0x31d0000 (irq = 118, base_baud = 0) is a SBSA
[    0.142812] platform bpmp: Fixing up cyclic dependency with 2c60000.external-memory-controller
[    0.152353] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.152360] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.152361] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.152362] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.153326] cryptd: max_cpu_qlen set to 1000
[    0.155102] ACPI: Interpreter disabled.
[    0.157234] iommu: Default domain type: Translated
[    0.157241] iommu: DMA domain TLB invalidation policy: strict mode
[    0.157616] SCSI subsystem initialized
[    0.157851] vgaarb: loaded
[    0.158055] usbcore: registered new interface driver usbfs
[    0.158084] usbcore: registered new interface driver hub
[    0.158104] usbcore: registered new device driver usb
[    0.158536] pps_core: LinuxPPS API ver. 1 registered
[    0.158542] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.158551] PTP clock support registered
[    0.158628] EDAC MC: Ver: 3.0.0
[    0.159964] Registered efivars operations
[    0.160616] FPGA manager framework
[    0.160700] Advanced Linux Sound Architecture Driver Initialized.
[    0.161669] clocksource: Switched to clocksource arch_sys_counter
[    0.198094] VFS: Disk quotas dquot_6.6.0
[    0.198158] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.198374] pnp: PnP ACPI: disabled
[    0.201347] NET: Registered PF_INET protocol family
[    0.201913] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.204325] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.204365] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.204400] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.204615] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.206013] TCP: Hash tables configured (established 262144 bind 65536)
[    0.206249] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.206320] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.206602] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.207054] RPC: Registered named UNIX socket transport module.
[    0.207058] RPC: Registered udp transport module.
[    0.207059] RPC: Registered tcp transport module.
[    0.207060] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.207079] PCI: CLS 0 bytes, default 64
[    0.207364] Unpacking initramfs...
[    0.215009] hw perfevents: enabled with armv8_cortex_a78 PMU driver, 7 counters available
[    0.215345] kvm [1]: IPA Size Limit: 48 bits
[    0.215382] kvm [1]: GICv3: no GICV resource entry
[    0.215390] kvm [1]: disabling GICv2 emulation
[    0.215412] kvm [1]: GIC system register CPU interface enabled
[    0.215505] kvm [1]: vgic interrupt IRQ9
[    0.215675] kvm [1]: VHE mode initialized successfully
[    0.219338] Initialise system trusted keyrings
[    0.219476] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[    0.223563] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.224055] NFS: Registering the id_resolver key type
[    0.224094] Key type id_resolver registered
[    0.224097] Key type id_legacy registered
[    0.224159] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.224176] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.224207] ntfs: driver 2.1.32 [Flags: R/O].
[    0.224446] 9p: Installing v9fs 9p2000 file system support
[    0.236376] Key type asymmetric registered
[    0.236384] Asymmetric key parser 'x509' registered
[    0.236473] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.236481] io scheduler mq-deadline registered
[    0.236488] io scheduler kyber registered
[    0.248348] EINJ: ACPI disabled.
[    0.261839] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.263802] SuperH (H)SCI(F) driver initialized
[    0.264153] msm_serial: driver initialized
[    0.264873] printk: console [ttyTCU0] enabled
[    0.265811] arm-smmu 8000000.iommu: probing hardware configuration...
[    0.265816] arm-smmu 8000000.iommu: SMMUv2 with:
[    0.265826] arm-smmu 8000000.iommu:  stage 1 translation
[    0.265831] arm-smmu 8000000.iommu:  stage 2 translation
[    0.265831] arm-smmu 8000000.iommu:  nested translation
[    0.265837] arm-smmu 8000000.iommu:  stream matching with 128 register groups
[    0.265840] arm-smmu 8000000.iommu:  128 context banks (0 stage-2 only)
[    0.265859] arm-smmu 8000000.iommu:  Supported page sizes: 0x61311000
[    0.265862] arm-smmu 8000000.iommu:  Stage-1: 48-bit VA -> 48-bit IPA
[    0.265864] arm-smmu 8000000.iommu:  Stage-2: 48-bit IPA -> 48-bit PA
[    0.266884] arm-smmu 10000000.iommu: probing hardware configuration...
[    0.266887] arm-smmu 10000000.iommu: SMMUv2 with:
[    0.266891] arm-smmu 10000000.iommu:         stage 1 translation
[    0.266892] arm-smmu 10000000.iommu:         stage 2 translation
[    0.266893] arm-smmu 10000000.iommu:         nested translation
[    0.266896] arm-smmu 10000000.iommu:         stream matching with 128 register groups
[    0.266899] arm-smmu 10000000.iommu:         128 context banks (0 stage-2 only)
[    0.266905] arm-smmu 10000000.iommu:         Supported page sizes: 0x61311000
[    0.266906] arm-smmu 10000000.iommu:         Stage-1: 48-bit VA -> 48-bit IPA
[    0.266907] arm-smmu 10000000.iommu:         Stage-2: 48-bit IPA -> 48-bit PA
[    0.267256] arm-smmu 12000000.iommu: probing hardware configuration...
[    0.267260] arm-smmu 12000000.iommu: SMMUv2 with:
[    0.267263] arm-smmu 12000000.iommu:         stage 1 translation
[    0.267263] arm-smmu 12000000.iommu:         stage 2 translation
[    0.267265] arm-smmu 12000000.iommu:         nested translation
[    0.267269] arm-smmu 12000000.iommu:         stream matching with 128 register groups
[    0.267272] arm-smmu 12000000.iommu:         128 context banks (0 stage-2 only)
[    0.267277] arm-smmu 12000000.iommu:         Supported page sizes: 0x61311000
[    0.267279] arm-smmu 12000000.iommu:         Stage-1: 48-bit VA -> 48-bit IPA
[    0.267280] arm-smmu 12000000.iommu:         Stage-2: 48-bit IPA -> 48-bit PA
[    0.276319] loop: module loaded
[    0.277412] megasas: 07.717.02.00-rc1
[    0.281738] tun: Universal TUN/TAP device driver, 1.6
[    0.282321] thunder_xcv, ver 1.0
[    0.282347] thunder_bgx, ver 1.0
[    0.282374] nicpf, ver 1.0
[    0.283223] hclge is initializing
[    0.283253] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    0.283261] hns3: Copyright (c) 2017 Huawei Corporation.
[    0.283301] e1000: Intel(R) PRO/1000 Network Driver
[    0.283306] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    0.283339] e1000e: Intel(R) PRO/1000 Network Driver
[    0.283345] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    0.283374] igb: Intel(R) Gigabit Ethernet Network Driver
[    0.283380] igb: Copyright (c) 2007-2014 Intel Corporation.
[    0.283403] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    0.283411] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    0.283641] sky2: driver version 1.30
[    0.284334] VFIO - User Level meta-driver version: 0.3
[    0.285870] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.285883] ehci-pci: EHCI PCI platform driver
[    0.285906] ehci-platform: EHCI generic platform driver
[    0.285979] ehci-orion: EHCI orion driver
[    0.286042] ehci-exynos: EHCI Exynos driver
[    0.286113] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.286160] ohci-pci: OHCI PCI platform driver
[    0.286190] ohci-platform: OHCI generic platform driver
[    0.286263] ohci-exynos: OHCI Exynos driver
[    0.286681] usbcore: registered new interface driver usb-storage
[    0.288552] i2c_dev: i2c /dev entries driver
[    0.289877] pps pps0: new PPS source ktimer
[    0.289886] pps pps0: ktimer PPS source registered
[    0.289897] pps_ldisc: PPS line discipline registered
[    0.292120] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[    0.294144] sdhci: Secure Digital Host Controller Interface driver
[    0.294150] sdhci: Copyright(c) Pierre Ossman
[    0.294628] Synopsys Designware Multimedia Card Interface Driver
[    0.295265] sdhci-pltfm: SDHCI platform and OF driver helper
[    0.296425] ledtrig-cpu: registered to indicate activity on CPUs
[    0.297503] SMCCC: SOC_ID: ID = jep106:036b:0234 Revision = 0x00000401
[    0.298043] tegra-bpmp bpmp: Adding to iommu group 0
[    0.299482] tegra-bpmp bpmp: firmware: 2aafe334513692db071c-3b0e1a33cf8
[    0.394489] Freeing initrd memory: 11456K
[    1.759115] clocksource: tsc: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    1.759131] clocksource: osc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 49772407460 ns
[    1.759135] clocksource: usec: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275 ns
[    1.759301] hid: raw HID events driver (C) Jiri Kosina
[    1.759678] usbcore: registered new interface driver usbhid
[    1.759683] usbhid: USB HID core driver
[    1.763377] optee: probing for conduit method.
[    1.763431] optee: revision 3.22 (e7b5ff3f)
[    1.822833] optee: dynamic shared memory is enabled
[    1.823074] optee: initialized driver
[    1.825637] usbcore: registered new interface driver snd-usb-audio
[    1.827338] NET: Registered PF_PACKET protocol family
[    1.827576] 9pnet: Installing 9P2000 support
[    1.827677] Key type dns_resolver registered
[    1.828592] printk: console [ttyTCU0]: printing thread started
[    1.828743] Loading compiled-in X.509 certificates
[    1.842319] Loaded X.509 cert 'Build time autogenerated kernel key: dbaa37291f9eb1704a33bc5cf19ca9266fdea8e6'
[    1.870482] gpio-394 (camera-control-output-low): hogged as output/low
[    1.870518] gpio-397 (camera-control-output-low): hogged as output/low
[    1.870538] gpio-487 (camera-control-output-low): hogged as output/low
[    1.870554] gpio-486 (camera-control-output-low): hogged as output/low
[    1.876547] tegra-gpcdma 2600000.dma-controller: Adding to iommu group 1
[    1.878643] tegra-gpcdma 2600000.dma-controller: GPC DMA driver register 31 channels
[    1.881013] serial-tegra 3100000.serial: RX in PIO mode
[    1.881020] serial-tegra 3100000.serial: TX in PIO mode
[    1.881137] 3100000.serial: ttyTHS1 at MMIO 0x3100000 (irq = 112, base_baud = 0) is a TEGRA_UART
[    1.882951] serial-tegra 3110000.serial: RX in PIO mode
[    1.882958] serial-tegra 3110000.serial: TX in PIO mode
[    1.883058] 3110000.serial: ttyTHS2 at MMIO 0x3110000 (irq = 207, base_baud = 0) is a TEGRA_UART
[    1.886201] tegra_rtc c2a0000.rtc: registered as rtc1
[    1.886209] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
[    1.886637] tegra-i2c 3160000.i2c: Adding to iommu group 1
[    1.890301] tegra-i2c 3180000.i2c: Adding to iommu group 1
[    1.894134] tegra-i2c 3190000.i2c: Adding to iommu group 1
[    1.898373] tegra-i2c 31b0000.i2c: Adding to iommu group 1
[    1.900717] tegra-i2c 31c0000.i2c: Adding to iommu group 1
[    1.902488] tegra-i2c 31e0000.i2c: Adding to iommu group 1
[    1.904543] tegra-i2c c240000.i2c: Adding to iommu group 1
[    1.906288] tegra-i2c c250000.i2c: Adding to iommu group 1
[    1.929651] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 2007000 KHz, changing to: 2035200 KHz
[    1.932632] cpufreq: cpufreq_online: CPU4: Running at unlisted initial frequency: 2009000 KHz, changing to: 2035200 KHz
[    1.935605] sdhci-tegra 3460000.mmc: Adding to iommu group 2
[    1.936735] sdhci-tegra 3400000.mmc: Adding to iommu group 3
[    1.937620] irq: IRQ234: trimming hierarchy from :bus@0:pmc@c360000
[    1.937693] irq: IRQ235: trimming hierarchy from :bus@0:interrupt-controller@f400000-1
[    1.937752] irq: IRQ236: trimming hierarchy from :bus@0:pmc@c360000
[    1.937809] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    1.942567] sdhci-tegra 3400000.mmc: Got CD GPIO
[    1.948189] mmc0: CQHCI version 5.10
[    1.984379] mmc0: SDHCI controller on 3460000.mmc [3460000.mmc] using ADMA 64-bit
[    1.989174] irq: IRQ237: trimming hierarchy from :bus@0:interrupt-controller@f400000-1
[    1.990030] mmc1: SDHCI controller on 3400000.mmc [3400000.mmc] using ADMA 64-bit
[    2.094970] mmc0: Command Queue Engine enabled
[    2.094977] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    2.095625] mmcblk0: mmc0:0001 G1M15M 59.3 GiB
[    2.100393]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15
[    2.105201] mmcblk0boot0: mmc0:0001 G1M15M 31.5 MiB
[    2.105591] mmcblk0boot1: mmc0:0001 G1M15M 31.5 MiB
[    2.106131] mmcblk0rpmb: mmc0:0001 G1M15M 4.00 MiB, chardev (511:0)
▒▒WARNING: clock_disable: clk_power_ungate on gated domain 35 for gpusysclk
WARNING: clock_disable: clk_power_ungate on gated domain 35 for gpc1clk
WARNING: clock_disable: clk_power_ungate on gated domain 35 for gpc0clk
WARNING: clock_disable: clk_power_ungate on gated domain 34 for dla1_core
WARNING: clock_disable: clk_power_ungate on gated domain 34 for nafll_dla1_core
WARNING: clock_disable: clk_power_ungate on gated domain 34 for dla1_falcon
WARNING: clock_disable: clk_power_ungate on gated domain 34 for nafll_dla1_falcon
WARNING: clock_disable: clk_power_ungate on gated domain 34 for dla0_core
WARNING: clock_disable: clk_power_ungate on gated domain 34 for nafll_dla0_core
WARNING: clock_disable: clk_power_ungate on gated domain 34 for dla0_falcon
WARNING: clock_disable: clk_power_ungate on gated domain 34 for nafll_dla0_falcon
▒▒[   14.656809] ALSA device list:
[   14.656814]   No soundcards found.
[   14.657775] Freeing unused kernel memory: 7680K
[   14.657840] Run /init as init process
[   14.667566] Checking overlayfs setting...
[   14.677114] Overlayfs is disabled...
[   14.681926] Root device found: nfs
insmod /lib/modules/5.15.136-tegra/kernel/drivers/thermal/tegra/tegra-bpmp-thermal.ko
insmod /lib/modules/5.15.136-tegra/kernel/drivers/pwm/pwm-tegra.ko
insmod /lib/modules/5.15.136-tegra/kernel/drivers/hwmon/pwm-fan.ko
insmod /lib/modules/5.15.136-tegra/updates/drivers/net/ethernet/realtek/r8168.ko
[   17.804328] r8168: loading out-of-tree module taints kernel.
insmod /lib/modules/5.15.136-tegra/updates/drivers/nvpps/nvpps.ko
insmod /lib/modules/5.15.136-tegra/updates/drivers/net/ethernet/nvidia/nvethernet/nvethernet.ko
[   17.809778] nvpps c6a0000.nvpps: nvpps_probe
[   17.809906] nvpps c6a0000.nvpps: primary-emac found ethernet@6800000
[   17.809919] nvpps c6a0000.nvpps: primary emac base address 0x6810000
[   17.809922] nvpps c6a0000.nvpps: using ptp notifier method on emac ethernet@6800000
[   17.809924] nvpps c6a0000.nvpps: tsc_res_ns(32)
[   17.809934] nvpps c6a0000.nvpps: PPS GPIO not provided in DT, only Timer mode available
[   17.810022] nvpps c6a0000.nvpps: nvpps cdev(509:0)
[   17.810042] nvpps c6a0000.nvpps: TSC config ptx 0x113
[   17.815390] nvethernet 6800000.ethernet: Adding to iommu group 4
[   17.815657] nvethernet 6800000.ethernet: failed to read skip mac reset flag, default 0
[   17.815663] nvethernet 6800000.ethernet: setting to default DMA bit mask
[   17.815670] nvethernet 6800000.ethernet: failed to read UPHY GBE mode- default to 10G
[   18.203633] nvethernet 6800000.ethernet: Ethernet MAC address: 48:b0:2d:d3:97:cf
[   18.204828] nvethernet 6800000.ethernet: Macsec not enabled
[   18.204830] nvethernet 6800000.ethernet: Macsec: Reduced MTU: 1466 Max: 16383
[   18.209143] nvethernet 6800000.ethernet: eth0 (HW ver: 31) created with 10 DMA channels
insmod /lib/modules/5.15.136-tegra/kernel/drivers/pci/controller/dwc/pcie-tegra194.ko
insmod /lib/modules/5.15.136-tegra/kernel/drivers/phy/tegra/phy-tegra194-p2u.ko
Ethernet interfaces: eth0
[   18.218763] tegra194-pcie 14100000.pcie: Adding to iommu group 5
[   18.220273] tegra194-pcie 14100000.pcie: host bridge /bus@0/pcie@14100000 ranges:
[   18.220286] tegra194-pcie 14100000.pcie:      MEM 0x2080000000..0x20a7ffffff -> 0x2080000000
[   18.220291] tegra194-pcie 14100000.pcie:      MEM 0x20a8000000..0x20afffffff -> 0x0040000000
[   18.220294] tegra194-pcie 14100000.pcie:       IO 0x0030100000..0x00301fffff -> 0x0030100000
[   18.220571] tegra194-pcie 14100000.pcie: iATU unroll: enabled
[   18.220574] tegra194-pcie 14100000.pcie: Detected iATU regions: 8 outbound, 2 inbound
[   19.321665] tegra194-pcie 14100000.pcie: Phy link never came up
[   20.313665] tegra194-pcie 14100000.pcie: Phy link never came up
[   20.313778] tegra194-pcie 14100000.pcie: PCI host bridge to bus 0001:00
[   20.313783] pci_bus 0001:00: root bus resource [io  0x0000-0xfffff] (bus address [0x30100000-0x301fffff])
[   20.313787] pci_bus 0001:00: root bus resource [mem 0x20a8000000-0x20afffffff] (bus address [0x40000000-0x47ffffff])
[   20.313790] pci_bus 0001:00: root bus resource [bus 00-ff]
[   20.313792] pci_bus 0001:00: root bus resource [mem 0x2080000000-0x20a7ffffff pref]
[   20.313847] pci 0001:00:00.0: [10de:229e] type 01 class 0x060400
[   20.314018] pci 0001:00:00.0: PME# supported from D0 D3hot
[   20.320250] pci 0001:00:00.0: PCI bridge to [bus 01-ff]
[   20.320395] pcieport 0001:00:00.0: Adding to iommu group 5
[   20.320497] pcieport 0001:00:00.0: PME: Signaling with IRQ 201
[   20.320796] pcieport 0001:00:00.0: AER: enabled with IRQ 201
[   20.321084] pci_bus 0001:01: busn_res: [bus 01-ff] is released
[   20.321161] pci 0001:00:00.0: Removing from iommu group 5
[   20.321171] pci_bus 0001:00: busn_res: [bus 00-ff] is released
[   20.322982] tegra194-pcie 14160000.pcie: Adding to iommu group 6
[   20.324877] tegra194-pcie 14160000.pcie: host bridge /bus@0/pcie@14160000 ranges:
[   20.324890] tegra194-pcie 14160000.pcie:      MEM 0x2140000000..0x2427ffffff -> 0x2140000000
[   20.324895] tegra194-pcie 14160000.pcie:      MEM 0x2428000000..0x242fffffff -> 0x0040000000
[   20.324899] tegra194-pcie 14160000.pcie:       IO 0x0036100000..0x00361fffff -> 0x0036100000
[   20.325218] tegra194-pcie 14160000.pcie: iATU unroll: enabled
[   20.325220] tegra194-pcie 14160000.pcie: Detected iATU regions: 8 outbound, 2 inbound
[   21.429845] tegra194-pcie 14160000.pcie: Phy link never came up
[   22.429671] tegra194-pcie 14160000.pcie: Phy link never came up
[   22.429776] tegra194-pcie 14160000.pcie: PCI host bridge to bus 0004:00
[   22.429781] pci_bus 0004:00: root bus resource [io  0x100000-0x1fffff] (bus address [0x36100000-0x361fffff])
[   22.429784] pci_bus 0004:00: root bus resource [mem 0x2428000000-0x242fffffff] (bus address [0x40000000-0x47ffffff])
[   22.429787] pci_bus 0004:00: root bus resource [bus 00-ff]
[   22.429788] pci_bus 0004:00: root bus resource [mem 0x2140000000-0x2427ffffff pref]
[   22.429840] pci 0004:00:00.0: [10de:229c] type 01 class 0x060400
[   22.430012] pci 0004:00:00.0: PME# supported from D0 D3hot
[   22.436305] pci 0004:00:00.0: PCI bridge to [bus 01-ff]
[   22.436447] pcieport 0004:00:00.0: Adding to iommu group 6
[   22.436552] pcieport 0004:00:00.0: PME: Signaling with IRQ 203
[   22.437077] pcieport 0004:00:00.0: AER: enabled with IRQ 203
[   22.437364] pci_bus 0004:01: busn_res: [bus 01-ff] is released
[   22.437443] pci 0004:00:00.0: Removing from iommu group 6
[   22.437452] pci_bus 0004:00: busn_res: [bus 00-ff] is released
[   22.439454] tegra194-pcie 141a0000.pcie: Adding to iommu group 7
[   22.547099] tegra194-pcie 141a0000.pcie: host bridge /bus@0/pcie@141a0000 ranges:
[   22.547133] tegra194-pcie 141a0000.pcie:      MEM 0x2800000000..0x2b27ffffff -> 0x2800000000
[   22.547143] tegra194-pcie 141a0000.pcie:      MEM 0x2b28000000..0x2b2fffffff -> 0x0040000000
[   22.547147] tegra194-pcie 141a0000.pcie:       IO 0x003a100000..0x003a1fffff -> 0x003a100000
[   22.547526] tegra194-pcie 141a0000.pcie: iATU unroll: enabled
[   22.547528] tegra194-pcie 141a0000.pcie: Detected iATU regions: 8 outbound, 2 inbound
[   23.654047] tegra194-pcie 141a0000.pcie: Phy link never came up
[   23.740381] irq: IRQ238: trimming hierarchy from :bus@0:interrupt-controller@f400000-1
[   23.741030] hwmon hwmon1: temp1_input not attached to any thermal zone
[   24.610589] Aquantia AQR113C 6800000.ethernet:00: No AQR phy_mode setting in DT
[   24.653666] tegra194-pcie 141a0000.pcie: Phy link never came up
[   24.653768] tegra194-pcie 141a0000.pcie: PCI host bridge to bus 0005:00
[   24.653773] pci_bus 0005:00: root bus resource [io  0x200000-0x2fffff] (bus address [0x3a100000-0x3a1fffff])
[   24.653776] pci_bus 0005:00: root bus resource [mem 0x2b28000000-0x2b2fffffff] (bus address [0x40000000-0x47ffffff])
[   24.653779] pci_bus 0005:00: root bus resource [bus 00-ff]
[   24.653781] pci_bus 0005:00: root bus resource [mem 0x2800000000-0x2b27ffffff pref]
[   24.653832] pci 0005:00:00.0: [10de:229a] type 01 class 0x060400
[   24.654000] pci 0005:00:00.0: PME# supported from D0 D3hot
[   24.660217] pci 0005:00:00.0: PCI bridge to [bus 01-ff]
[   24.660361] pcieport 0005:00:00.0: Adding to iommu group 7
[   24.660465] pcieport 0005:00:00.0: PME: Signaling with IRQ 205
[   24.660561] pcieport 0005:00:00.0: AER: enabled with IRQ 205
[   24.660784] pci_bus 0005:01: busn_res: [bus 01-ff] is released
[   24.660858] pci 0005:00:00.0: Removing from iommu group 7
[   24.660867] pci_bus 0005:00: busn_res: [bus 00-ff] is released
[   28.013235] nvethernet 6800000.ethernet: [xpcs_lane_bring_up][477][type:0x4][loga-0x0] PCS block lock SUCCESS
[   28.013938] nvethernet 6800000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[   35.038772] Rootfs mounted over nfs
[   35.067589] Switching from initrd to actual rootfs
SELinux:  Could not open policy file <= /etc/selinux/targeted/policy/policy.33:  No such file or directory
[   35.397228] systemd[1]: System time before build time, advancing clock.
[   35.697869] systemd[1]: systemd 249.11-0ubuntu3.12 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.698223] systemd[1]: Detected architecture arm64.

Welcome to Ubuntu 22.04.4 LTS!

[   35.708429] systemd[1]: Hostname set to <localhost.localdomain>.
[   36.300332] systemd[1]: Binding to IPv6 address not available since kernel does not support IPv6.
[   36.300345] systemd[1]: Binding to IPv6 address not available since kernel does not support IPv6.
[  OK  ] Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/serial-getty.
[  OK  ] Created slice User and Session Slice.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[  OK  ] Set up automount Arbitrary…s File System Automount Point.
[ [   36.71 OK  ] Rsyseacd[1 taQuerget t1;3 job fe Uor defnits ul0m.
t target Graphical Interface.
[   36.712m  OKsystem[0m] RCreated slice Srget ice /system/mog sobe.
s   36
0127] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Reached target Mounted snaps.
[   36.720683] systemd[1]: Created slice User and Session Slice.
[   36.72[ system  ] Rrted Forwrge Pat sword Re9mSquestssa0m.
ectory Watch.
[   36.721582] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[  [  OK1956] [0meacsys tatemd[1[0;]: 1;3che9mLarget eriSlice Unitects.ted 36.722231] es.d[1]: Reached target Mounting snaps.
[   36.722524] systemd[1]: Reached target Mounted snaps.
[   36.720;35]  OK  ystemd[1isteni]: ng eache39md targbind SSwa
erv[   36er .723327] ivatiosystemd[1n Sock]: ched t[0marg
Local Verity Protected Volumes.
[   360;32m 957  ys] Ltem]: Lisening ten on RP biSerSys Activ SoatiSocket.
[   36
.746988] systemd[1]: Listening on Syslog Socket.
[   360;36107]  OKtem[0m]: Liseniing on in;1;tl iniComibil Complity Nameatiityd Pipe Namedpe.
[  OK  ] Listening on Journal Audit Socket.[
 36.770352] systemd[1]: Listening on Journal Audit Socket.
[   360;3.77549 OK[0m] Listsysenion temd[1Listenl Singock Jo(/durnSocket)o0m.g).

[  OK  ] Listening on Journal Socket.
[   36.789948] systemd[1]: Listening on Journal Socket.
[   360;32m .79 OK  ys] Ltemist]: Lisng tenng on39m udev Control Sockv Cet.
ontrol Socket.
[  OK  ] Listening on udev Kernel Socket.[
 36.809352] systemd[1]: Listening on udev Kernel Socket.
[   36   628   systemntid[1Mounting Huge PHugages Fageile Syilestem..m

ounting POSIX Message Queue File System...
[   36.829555] systemd[1]: Mounting POSIX Message Queue File System...
                              oung 39mKer Debugnelbug File le Systemtem
m...
         Mounting Kernel Trace File System...
[   36.849192] systemd[1]: Mounting Kernel Trace File System...
[   36      .85Starting  sysJoutemrna]: Staerv..rting Journal Service...
         Starting Set the console keyboard layout...[   36.867167] systemd[1]: Starting Set the console keyboard layout...
[   36.87   0]    rting : 39mConditLoad Kionern checkModule resul cogfs inate L. of Static Device Nodes being skipped.
[   36.874834] systemd[1]: Starting Load Kernel Module configfs...
[   36   1514] systemStad[1ng : 39mrtid Kernel Load K drml Mod.. drm...
         Starting Load Kernel Module efi_pstore...
[   36.904512] systemd[1]: Starting Load Kernel Module efi_pstore...
[   36.909947] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[  OK  ] Started Nameserver information manager.
[   36.926706] systemd[1]: Started Nameserver information manager.
[   36[ 8] system[0m] RReahedche taarget Pret ar9mPon reparafor Network.n fNet
work.
         Starting Load Kernel Modules...
         Starting Remount Root and Kernel File Systems...
[   36.955469] systemd[1]: Starting Load Kernel Modules...
[   36   672Sta1] sysemd[1]: dplrtiAll udev ng RemDeviceount Rsot an..ernel File Systems...
[   36.959190] systemd[1]: Starting Coldplug All udev Devices...
[   360;3.972m  OK252[0m] S0] tarted : Started J0;1ournal Service.
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 Set the console keyboard layout.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module efi_pstore.
[  OK  ] Finished Load Kernel Module fuse.
[  OK  ] Finished Load Kernel Modules.
[  OK  ] Finished Remount Root and Kernel File Systems.
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage...
         Starting Load/Save Random Seed...
         Starting Apply Kernel Variables...
[   37.075797] systemd-journald[846]: Received client request to flush runtime journal.
         Starting Create System Users...
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Coldplug All udev Devices.
[  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.
[  OK  ] Reached target Local File Systems.
         Starting Enable support fo…l executable binary formats...
         Starting Set console font and keymap...
         Starting Tell Plymouth To Write Out Runtime Data...
         Starting Set Up Additional Binary Formats...
         Starting Create Volatile Files and Directories...
         Starting Rule-based Manage…for Device Events and Files...
         Mounting Arbitrary Executable File Formats File System...
[  OK  ] Mounted Arbitrary Executable File Formats File System.
[  OK  ] Finished Set console font and keymap.
[  OK  ] Finished Set Up Additional Binary Formats.
[  OK  ] Finished Tell Plymouth To Write Out Runtime Data.
[  OK  ] Finished Enable support fo…nal executable binary formats.
[  OK  ] Started Rule-based Manager for Device Events and Files.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[  OK  ] Reached target Local Encrypted Volumes.
[  OK  ] Found device /dev/ttyTCU0.
[  OK  ] Finished Create Volatile Files and Directories.
[  OK  ] Started Entropy Daemon based on the HAVEGE algorithm.
         Starting RPC bind portmap service...
         Starting Network Name Resolution...
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Started RPC bind portmap service.
[  OK  ] Reached target Preparation for Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[  OK  ] Reached target RPC Port Mapper.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  OK  ] Started resolvconf-pull-resolved.path.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target Path Units.
[  OK  ] Reached target System Time Set.
[  OK  ] Started Trigger anacron every hour.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Started Daily dpkg database backup timer.
[  OK  ] Started Periodic ext4 Onli…ata Check for All Filesystems.
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Started Refresh fwupd metadata regularly.
[  OK  ] Started Daily man-db regeneration.
[  OK  ] Started Message of the Day.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting Socket activation for snappy daemon...
[  OK  ] Listening on Socket activation for snappy daemon.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
[  OK  ] Started Run anacron jobs.
         Starting LSB: automatic crash report generation...
         Starting Avahi mDNS/DNS-SD Stack...
[  OK  ] Started D-Bus System Message Bus.
         Starting Network Manager...
[  OK  ] Started Save initial kernel messages after boot.
         Starting Remove Stale Onli…t4 Metadata Check Snapshots...
         Starting LSB: Execute the …-e command to reboot system...
         Starting LSB: BSD lpr/lpd line printer spooling system...
         Starting Dispatcher daemon for systemd-networkd...
         Starting Authorization Manager...
         Starting Power Profiles daemon...
         Starting System Logging Service...
[  OK  ] Started Seat management daemon.
[  OK  ] Reached target Preparation for Logins.
         Starting Wait until snapd is fully seeded...
         Starting Snap Daemon...
[  OK  ] Reached target User and Group Name Lookups.
[DEPEND] Dependency failed for SSSD NSS Service responder socket.
[DEPEND] Dependency failed for SSSD…toFS Service responder socket.
[DEPEND] Dependency failed for SSSD PAC Service responder socket.
[DEPEND] Dependency failed for SSSD…vice responder private socket.
[DEPEND] Dependency failed for SSSD PAM Service responder socket.
[DEPEND] Dependency failed for SSSD SSH Service responder socket.
[DEPEND] Dependency failed for SSSD Sudo Service responder socket.
         Starting Accounts Service...
[  OK  ] Started Regular background program processing daemon.
         Starting Switcheroo Control Proxy service...
         Starting User Login Management...
         Starting Ubuntu live CD installer...
         Starting Disk Manager...
         Starting WPA supplicant...
[  OK  ] Started Network Name Resolution.
[  OK  ] Finished Remove Stale Onli…ext4 Metadata Check Snapshots.
[  OK  ] Started LSB: BSD lpr/lpd line printer spooling system.
[  OK  ] Finished Ubuntu live CD installer.
[  OK  ] Started System Logging Service.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting resolvconf-pull-resolved.service...
[  OK  ] Started LSB: Execute the k…c -e command to reboot system.
         Starting LSB: Load kernel image with kexec...
[  OK  ] Started LSB: Load kernel image with kexec.
[  OK  ] Started LSB: automatic crash report generation.
[  OK  ] Finished resolvconf-pull-resolved.service.
[  OK  ] Started User Login Management.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started WPA supplicant.
[  OK  ] Started Switcheroo Control Proxy service.
[  OK  ] Started Network Manager.
[  OK  ] Reached target Network.
         Starting Network Manager Wait Online...
         Starting OpenVPN service...
         Starting OpenBSD Secure Shell server...
         Starting Permit User Sessions...
[  OK  ] Finished OpenVPN service.
         Starting Hostname Service...
[  OK  ] Finished Permit User Sessions.
[  OK  ] Started Authorization Manager.
[  OK  ] Started Power Profiles daemon.
         Starting Modem Manager...
         Starting GNOME Display Manager...
         Starting Hold until boot process finishes up...
[  OK  ] Started Accounts Service.
[  OK  ] Finished Hold until boot process finishes up.
[  OK  ] Started Serial Getty on ttyTCU0.
[  OK  ] Reached target Login Prompts.
         Starting Set console scheme...
[  OK  ] Finished Set console scheme.
[  OK  ] Created slice Slice /system/getty.
[  OK  ] Started Hostname Service.
[  OK  ] Started OpenBSD Secure Shell server.
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Network Manager Script Dispatcher Service.
[  OK  ] Started Disk Manager.
[  OK  ] Finished Network Manager Wait Online.
[  OK  ] Reached target Network is Online.
[  OK  ] Started Download data for …ailed at package install time.
[  OK  ] Started Check to see wheth…w version of Ubuntu available.
[  OK  ] Reached target Timer Units.
[  OK  ] Started ISC DHCP IPv4 server.
[  OK  ] Started ISC DHCP IPv6 server.
         Starting Tool to automatic…mit kernel crash signatures...
[  OK  ] Started GNOME Display Manager.
[  OK  ] Started Tool to automatica…ubmit kernel crash signatures.
[  OK  ] Started Modem Manager.
[  OK  ] Started Snap Daemon.
         Starting Time & Date Service...
[  OK  ] Started Time & Date Service.
[  OK  ] Finished Wait until snapd is fully seeded.
[  OK  ] Started Dispatcher daemon for systemd-networkd.
[  OK  ] Reached target Multi-User System.
[  OK  ] Reached target Graphical Interface.
         Starting Record Runlevel Change in UTMP...
[  OK  ] Finished Record Runlevel Change in UTMP.

Ubuntu 22.04.4 LTS localhost.localdomain ttyTCU0


So PXE is actually working?

What does this mean?
What port did you previously use?

There are four serial ports on this MicroUSB. Maybe the connection I made before was wrong. The one I connected now (named ttyTCU0) shows that I have entered the system.
Thank you for your support

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.