PXE Boot a Beaglebone Black via U-boot

Hi there,

I’m trying to setup a network booting Beaglebone Black Rev. C (4GB eMMC). I have a working network setup, and I’m using PuTTY and a serial com to work with U-Boot. I’ve tried so many guides, all that just seem to fail me and deliver no results. I also can’t seem to find any real resources on PXE booting with U-boot and Beaglebone as a whole. Or I’m seriously missing it somewhere.

I built a custom image for this bone with the image building scripts from https://github.com/beagleboard/image-builder which uses Robert’s https://github.com/RobertCNelson/omap-image-builder

Next I unpack the tar file and used the vmlinuz-4.19.79-ti-r30, initrd.img-4.19.79-ti-r30 and am335x-boneblack.dtb in the pxe file like so:

label kernel-bbb
kernel vmlinuz-4.19.79-ti-r30
devicetree /dtbs/4.19.79-ti-r30/am335x-boneblack-uboot.dtb
initrd initrd.img-4.19.79-ti-r30
append console=ttyO0,115200n8 root=/dev/mmcblk1p1 rw rootfstype=ext4 rootwait coherent_pool=1M net.ifnames=0 rng_core.default_quality=100

U-boot gets the pxe via the network and when I use pxe boot. The process starts and places everything in the correct RAM address, which I assume it finds in uEnv.txt already in the eMMC (I flashed the eMMC with a different custom image build also using the image-builder scripts).

However, then everything is done, and the kernel needs to starts, nothing. The console just shows “Starting Kernel …” and after a couple of seconds the bone resets and U-boot starts spitting out the default booting info.

=>setenv serverip 192.168.1.11
=> pxe get
missing environment variable: pxeuuid
Retrieving file: pxelinux.cfg/01-78-04-73-7e-8c-74
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.11; our IP address is 192.168.1.2
Filename ‘pxelinux.cfg/01-78-04-73-7e-8c-74’.
Load address: 0x80100000
Loading: #
** 52.7 KiB/s**
done
Bytes transferred = 273 (111 hex)
Config file found
=> pxe boot
1: kernel-bbb
Retrieving file: initrd.img-4.19.79-ti-r30
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.11; our IP address is 192.168.1.2
Filename ‘initrd.img-4.19.79-ti-r30’.
Load address: 0x88080000
Loading: #################################################################
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################**
** 3.4 MiB/s**
done
Bytes transferred = 7387755 (70ba6b hex)
Retrieving file: vmlinuz-4.19.79-ti-r30
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.11; our IP address is 192.168.1.2
Filename ‘vmlinuz-4.19.79-ti-r30’.
Load address: 0x82000000
Loading: #################################################################
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #################################################################**
** #**
** 3.4 MiB/s**
done
Bytes transferred = 10508819 (a05a13 hex)
append: console=ttyO0,115200n8 root=/dev/mmcblk1p1 rw rootfstype=ext4 rootwait coherent_pool=1M net.ifnames=0 rng_core.default_quality=100
Retrieving file: /dtbs/4.19.79-ti-r30/am335x-boneblack.dtb
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.11; our IP address is 192.168.1.2
Filename ‘/dtbs/4.19.79-ti-r30/am335x-boneblack.dtb’.
Load address: 0x88000000
Loading: #####
** 2.5 MiB/s**
done
Bytes transferred = 59507 (e873 hex)
## Flattened Device Tree blob at 88000000
** Booting using the fdt blob at 0x88000000**
** Loading Ramdisk to 8f8f4000, end 8ffffa6b … OK**
** Loading Device Tree to 8f8e2000, end 8f8f3872 … OK**

Starting kernel …

Any help?

Kind regards,
HS Hayman

@HHayman, I’ve never used the u-boot pxe scripts, we are probably missing something.

But every factory image contains a “/nfs-uEnv.txt” file, to do tftd/nfs boot, so if you rename this as “/uEnv.txt” it’ll use the built-in tftpd path of u-boot.

For reference here is the “/nfs-uEnv.txt” example:

##Rename as: uEnv.txt to boot via nfs

##https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

##SERVER: sudo apt-get install tftpd-hpa
##SERVER:
##SERVER: zImage boot:
##SERVER: TFTP_DIRECTORY defined in /etc/default/tftpd-hpa
##SERVER: zImage/*.dtb need to be located here:
##SERVER: TFTP_DIRECTORY/zImage
##SERVER: TFTP_DIRECTORY/dtbs/*.dtb
##SERVER:
##SERVER: uname_r boot:
##SERVER: TFTP_DIRECTORY defined in /etc/default/tftpd-hpa
##SERVER: Change TFTP_DIRECTORY to /NFSEXPORT/boot
##SERVER: TFTP_DIRECTORY/vmlinuz-${uname_r}
##SERVER: TFTP_DIRECTORY/dtbs/${uname_r}/*.dtb

##client_ip needs to be set for u-boot to try booting via nfs

client_ip=192.168.1.101

#u-boot defaults: uncomment and override where needed

#server_ip=192.168.1.100
#gw_ip=192.168.1.1
#netmask=255.255.255.0
#hostname=
#device=eth0
#autoconf=off
#root_dir=/home/userid/targetNFS
#nfs_options=,vers=3
#nfsrootfstype=ext4 rootwait fixrtc

##use uname_r= only if TFTP SERVER is setup for uname_r boot:
#uname_r=

But looking at your log:

append: console=ttyO0,115200n8 root=/dev/mmcblk1p1 rw rootfstype=ext4 rootwait coherent_pool=1M net.ifnames=0 rng_core.default_quality=100
Retrieving file: /dtbs/4.19.79-ti-r30/am335x-boneblack.dtb
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.11; our IP address is 192.168.1.2
Filename ‘/dtbs/4.19.79-ti-r30/am335x-boneblack.dtb’.
Load address: 0x88000000
Loading: #####
** 2.5 MiB/s**
done
Bytes transferred = 59507 (e873 hex)
## Flattened Device Tree blob at 88000000
** Booting using the fdt blob at 0x88000000**
** Loading Ramdisk to 8f8f4000, end 8ffffa6b … OK**
** Loading Device Tree to 8f8e2000, end 8f8f3872 … OK**

Starting kernel …

I’d expect to see “more” kernel noise, as “quiet” is disabled and the console is enabled.

Regards,

Thank you so much so the timely response.

I left out quiet for the purpose of seeing more info on what is happening, but that’s my problem. Nothing is happening. I based my attempt on the PXE boot via U-Boot on the article:
https://wiki.radxa.com/Rockpi4/dev/u-boot/pxe ,

and the arguments for the kernel based om what U-Boot spits out to the serial console as it boots on just a clean power-on and run through. The arguments I provide and what the article uses are little bit different. Not sure if that makes the difference (hoping it’s the Pi vs Black style difference for providing arguments to the kernel).

I’m aware of the nfs-uEnv.txt rename situation. To be honest I’m a little nervous as I’m totally new to the NFS side of things. I was hoping you might know of a way, or if there was a way to simply unpack the output of the image building scripts in a folder(directory) and just tell U-Boot to boot everything from there. But I think that’s wishful thinking. I have a feeling there might need to be some tinkering/tweaking.

Thank you for the NFS reply. I’m going to be attempting it now. My previous try with the nfs/nfsboot (can’t remember exactly) in U-Boot lead to nothing as well.

Will try that now with the nfs-uEnv.txt rename work around now.

Thanks,
HS Hayman

@RobertCNelson I tried the NFS-boot method, even tried a few guides on it too. I keep getting U-Boot to do it’s thing, and then having the kernel panic leading to the board to reset. Could it perhaps be the kernel build (or downloaded) by the scripts that might not be configured to boot over the network via varies options? Or am I still missing something here?

Thank you in advance,
HS Hayman

@HHayman, sorry for the delay, took awhile to setup nfs and rsync the image, i used the same kernel image you had tried using with the buster iot image…

While I got it to boot, connman wasn’t happy so i can’t ping out… ( i can ssh in just fine, so it looks like the dns just needs to be updated…)

/uEnv.txt :

##Rename as: uEnv.txt to boot via nfs

##https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

##SERVER: sudo apt-get install tftpd-hpa
##SERVER:
##SERVER: zImage boot:
##SERVER: TFTP_DIRECTORY defined in /etc/default/tftpd-hpa
##SERVER: zImage/*.dtb need to be located here:
##SERVER: TFTP_DIRECTORY/zImage
##SERVER: TFTP_DIRECTORY/dtbs/*.dtb
##SERVER:
##SERVER: uname_r boot:
##SERVER: TFTP_DIRECTORY defined in /etc/default/tftpd-hpa
##SERVER: Change TFTP_DIRECTORY to /NFSEXPORT/boot
##SERVER: TFTP_DIRECTORY/vmlinuz-${uname_r}
##SERVER: TFTP_DIRECTORY/dtbs/${uname_r}/*.dtb

##client_ip needs to be set for u-boot to try booting via nfs

client_ip=192.168.0.149

#u-boot defaults: uncomment and override where needed

server_ip=192.168.0.12
gw_ip=192.168.0.1
#netmask=255.255.255.0
#hostname=
#device=eth0
#autoconf=off
root_dir=/opt/buster
#nfs_options=,vers=3
#nfsrootfstype=ext4 rootwait fixrtc

##use uname_r= only if TFTP SERVER is setup for uname_r boot:
uname_r=4.19.79-ti-r30
U-Boot SPL 2019.04-00002-g3d8c979660 (Nov 01 2019 - 09:14:23 -0500)
Trying to boot from MMC1
Loading Environment from EXT4... ** File not found /boot/uboot.env **

** Unable to read "/boot/uboot.env" from mmc0:1 **


U-Boot 2019.04-00002-g3d8c979660 (Nov 01 2019 - 09:14:23 -0500), Build: jenkins-github_Bootloader-Builder-134

CPU  : AM335X-GP rev 2.1
I2C:   ready
DRAM:  512 MiB
No match for driver 'omap_hsmmc'
No match for driver 'omap_hsmmc'
Some drivers were not found
Reset Source: Global warm SW reset has occurred.
Reset Source: Power-on reset has occurred.
RTC 32KCLK Source: External.
MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
Loading Environment from EXT4... ** File not found /boot/uboot.env **

** Unable to read "/boot/uboot.env" from mmc0:1 **
Board: BeagleBone Black
<ethaddr> not set. Validating first E-fuse MAC
BeagleBone Black:
BeagleBone: cape eeprom: i2c_probe: 0x54:
BeagleBone: cape eeprom: i2c_probe: 0x55:
BeagleBone: cape eeprom: i2c_probe: 0x56:
BeagleBone: cape eeprom: i2c_probe: 0x57:
Net:   eth0: MII MODE
cpsw, usb_ether
Press SPACE to abort autoboot in 0 seconds
board_name=[A335BNLT] ...
board_rev=[000C] ...
switch to partitions #0, OK
mmc0 is current device
SD/MMC found on device 0
switch to partitions #0, OK
mmc0 is current device
Scanning mmc 0:1...
gpio: pin 56 (gpio 56) value is 0
gpio: pin 55 (gpio 55) value is 0
gpio: pin 54 (gpio 54) value is 0
gpio: pin 53 (gpio 53) value is 1
switch to partitions #0, OK
mmc0 is current device
gpio: pin 54 (gpio 54) value is 1
Checking for: /uEnv.txt ...
1006 bytes read in 35 ms (27.3 KiB/s)
gpio: pin 55 (gpio 55) value is 1
Loaded environment from /uEnv.txt
Importing environment from mmc ...
Checking if uenvcmd is set ...
Checking if client_ip is set ...
gpio: pin 56 (gpio 56) value is 1
Running nfsboot_uname_r ...
Booting from 192.168.0.12 ...
cpsw Waiting for PHY auto negotiation to complete.... done
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.0.12; our IP address is 192.168.0.149
Filename 'vmlinuz-4.19.79-ti-r30'.
Load address: 0x82000000
Loading: #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #######################################################
	 2.8 MiB/s
done
Bytes transferred = 10338816 (9dc200 hex)
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.0.12; our IP address is 192.168.0.149
Filename 'dtbs/4.19.79-ti-r30/am335x-boneblack.dtb'.
Load address: 0x88000000
Loading: #####
	 2.2 MiB/s
done
Bytes transferred = 59507 (e873 hex)
## Flattened Device Tree blob at 88000000
   Booting using the fdt blob at 0x88000000
   Loading Device Tree to 8ffee000, end 8ffff872 ... OK

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.19.79-ti-r30 (voodoo@x2-am57xx-beagle-x15-2gb) (gcc version 8.3.0 (Debian 8.3.0-6)) #1buster SMP PREEMPT Mon Nov 4 20:38:01 UTC 2019
[    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] OF: fdt: Machine model: TI AM335x BeagleBone Black
[    0.000000] Memory policy: Data cache writeback
[    0.000000] efi: Getting EFI parameters from FDT:
[    0.000000] efi: UEFI not found.
[    0.000000] cma: Reserved 48 MiB at 0x9c800000
[    0.000000] CPU: All CPU(s) started in SVC mode.
[    0.000000] AM335X ES2.1 (sgx neon)
[    0.000000] random: get_random_bytes called from start_kernel+0xa0/0x508 with crng_init=0
[    0.000000] percpu: Embedded 17 pages/cpu s39628 r8192 d21812 u69632
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129412
[    0.000000] Kernel command line: console=ttyO0,115200n8 root=/dev/nfs rw rootfstype=ext4 rootwait fixrtc nfsroot=192.168.0.12:/opt/buster,vers=3 ip=192.168.0.149:192.168.0.12:192.168.0.1:255.255.255.0::eth0:off
[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] Memory: 445708K/522240K available (13312K kernel code, 1156K rwdata, 4452K rodata, 1024K init, 349K bss, 27380K reserved, 49152K cma-reserved, 0K highmem)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xe0000000 - 0xff800000   ( 504 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xdfe00000   ( 510 MB)
[    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
[    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
[    0.000000]       .text : 0x(ptrval) - 0x(ptrval)   (14304 kB)
[    0.000000]       .init : 0x(ptrval) - 0x(ptrval)   (1024 kB)
[    0.000000]       .data : 0x(ptrval) - 0x(ptrval)   (1157 kB)
[    0.000000]        .bss : 0x(ptrval) - 0x(ptrval)   ( 350 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] ftrace: allocating 42631 entries in 126 pages
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] IRQ: Found an INTC at 0x(ptrval) (revision 5.0) with 128 interrupts
[    0.000000] OMAP clockevent source: timer2 at 24000000 Hz
[    0.000016] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns
[    0.000040] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
[    0.000054] OMAP clocksource: timer1 at 24000000 Hz
[    0.000775] timer_probe: no matching timers found
[    0.001005] Console: colour dummy device 80x30
[    0.001040] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
[    0.001049] This ensures that you still see kernel messages. Please
[    0.001056] update your kernel commandline.
[    0.001118] Calibrating delay loop... 995.32 BogoMIPS (lpj=1990656)
[    0.046915] pid_max: default: 32768 minimum: 301
[    0.047213] Security Framework initialized
[    0.047233] Yama: becoming mindful.
[    0.047380] AppArmor: AppArmor initialized
[    0.047503] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.047521] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.048620] CPU: Testing write buffer coherency: ok
[    0.048696] CPU0: Spectre v2: using BPIALL workaround
[    0.049183] CPU0: thread -1, cpu 0, socket -1, mpidr 0
[    0.071025] Setting up static identity map for 0x80100000 - 0x80100060
[    0.078934] rcu: Hierarchical SRCU implementation.
[    0.090270] EFI services will not be available.
[    0.094942] smp: Bringing up secondary CPUs ...
[    0.094964] smp: Brought up 1 node, 1 CPU
[    0.094976] SMP: Total of 1 processors activated (995.32 BogoMIPS).
[    0.094985] CPU: All CPU(s) started in SVC mode.
[    0.096742] devtmpfs: initialized
[    0.111285] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
[    0.111950] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.111982] futex hash table entries: 256 (order: 2, 16384 bytes)
[    0.115971] xor: measuring software checksum speed
[    0.154911]    arm4regs  :  1217.000 MB/sec
[    0.194907]    8regs     :  1091.000 MB/sec
[    0.234906]    32regs    :  1088.000 MB/sec
[    0.274904]    neon      :  1673.000 MB/sec
[    0.274915] xor: using function: neon (1673.000 MB/sec)
[    0.274936] pinctrl core: initialized pinctrl subsystem
[    0.276321] NET: Registered protocol family 16
[    0.281689] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.313236] l4_wkup_cm:clk:0010:0: failed to disable
[    0.353352] audit: initializing netlink subsys (disabled)
[    0.354664] cpuidle: using governor menu
[    0.359033] audit: type=2000 audit(0.348:1): state=initialized audit_enabled=0 res=1
[    0.362374] OMAP GPIO hardware version 0.1
[    0.376501] No ATAGs?
[    0.376521] hw-breakpoint: debug architecture 0x4 unsupported.
[    0.403088] raid6: using algorithm neonx8 gen() 0 MB/s
[    0.403111] raid6: .... xor() 0 MB/s, rmw enabled
[    0.403121] raid6: using neon recovery algorithm
[    0.410543] edma 49000000.edma: TI EDMA DMA engine driver
[    0.414092] SCSI subsystem initialized
[    0.415383] usbcore: registered new interface driver usbfs
[    0.415479] usbcore: registered new interface driver hub
[    0.415612] usbcore: registered new device driver usb
[    0.417815] omap_i2c 4819c000.i2c: bus 2 rev0.11 at 100 kHz
[    0.418102] media: Linux media interface: v0.10
[    0.418172] videodev: Linux video capture interface: v2.00
[    0.418343] pps_core: LinuxPPS API ver. 1 registered
[    0.418356] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.418382] PTP clock support registered
[    0.419103] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400
[    0.423283] Advanced Linux Sound Architecture Driver Initialized.
[    0.424107] NetLabel: Initializing
[    0.424123] NetLabel:  domain hash size = 128
[    0.424131] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.424234] NetLabel:  unlabeled traffic allowed by default
[    0.425282] clocksource: Switched to clocksource timer1
[    0.590553] VFS: Disk quotas dquot_6.6.0
[    0.590664] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.591579] AppArmor: AppArmor Filesystem Enabled
[    0.603881] NET: Registered protocol family 2
[    0.604995] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes)
[    0.605037] TCP established hash table entries: 4096 (order: 2, 16384 bytes)
[    0.605082] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
[    0.605143] TCP: Hash tables configured (established 4096 bind 4096)
[    0.605461] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    0.605493] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    0.605743] NET: Registered protocol family 1
[    0.618951] RPC: Registered named UNIX socket transport module.
[    0.618971] RPC: Registered udp transport module.
[    0.618980] RPC: Registered tcp transport module.
[    0.618988] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.620378] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available
[    0.623066] Initialise system trusted keyrings
[    0.623522] workingset: timestamp_bits=14 max_order=17 bucket_order=3
[    0.630957] zbud: loaded
[    0.638432] NFS: Registering the id_resolver key type
[    0.638493] Key type id_resolver registered
[    0.638504] Key type id_legacy registered
[    0.638527] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.638882] fuse init (API version 7.27)
[    0.649501] Key type asymmetric registered
[    0.649528] Asymmetric key parser 'x509' registered
[    0.649630] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    0.654048] io scheduler noop registered
[    0.654069] io scheduler deadline registered
[    0.654370] io scheduler cfq registered (default)
[    0.654387] io scheduler mq-deadline registered
[    0.656840] pinctrl-single 44e10800.pinmux: 142 pins, size 568
[    0.658534] gpio-of-helper ocp:cape-universal: ready
[    0.661861] wkup_m3_ipc 44e11324.wkup_m3_ipc: could not get rproc handle
[    0.663741] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled
[    0.667442] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 30, base_baud = 3000000) is a 8250
[    1.230220] random: fast init done
[    1.469109] console [ttyS0] enabled
[    1.475450] omap_rng 48310000.rng: Random Number Generator ver. 20
[    1.482093] random: crng init done
[    1.607679] libphy: Fixed MDIO Bus: probed
[    1.665404] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6, bus freq 1000000
[    1.673159] davinci_mdio 4a101000.mdio: detected phy mask fffffffe
[    1.679764] MDIO: davinci_mdio: dt: updated phy_id[0] from phy_mask[fffffffe]
[    1.688510] libphy: 4a101000.mdio: probed
[    1.692743] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver SMSC LAN8710/LAN8720
[    1.703141] cpsw 4a100000.ethernet: Detected MACID = 34:03:de:a2:c0:c1
[    1.710059] cpsw 4a100000.ethernet: initialized cpsw ale version 1.4
[    1.716560] cpsw 4a100000.ethernet: ALE Table size 1024
[    1.721910] cpsw 4a100000.ethernet: cpts: overflow check period 1250 (jiffies)
[    1.731166] usbcore: registered new interface driver smsc95xx
[    1.738045] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.744710] ehci-platform: EHCI generic platform driver
[    1.750210] ehci-omap: OMAP-EHCI Host Controller driver
[    1.756050] usbcore: registered new interface driver usb-storage
[    1.764703] am335x-phy-driver 47401300.usb-phy: 47401300.usb-phy supply vcc not found, using dummy regulator
[    1.774889] am335x-phy-driver 47401300.usb-phy: Linked as a consumer to regulator.0
[    1.785444] am335x-phy-driver 47401b00.usb-phy: 47401b00.usb-phy supply vcc not found, using dummy regulator
[    1.795753] am335x-phy-driver 47401b00.usb-phy: Linked as a consumer to regulator.0
[    1.806809] musb-hdrc musb-hdrc.1: MUSB HDRC host driver
[    1.812265] musb-hdrc musb-hdrc.1: new USB bus registered, assigned bus number 1
[    1.820042] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[    1.828392] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.835753] usb usb1: Product: MUSB HDRC host driver
[    1.840774] usb usb1: Manufacturer: Linux 4.19.79-ti-r30 musb-hcd
[    1.846921] usb usb1: SerialNumber: musb-hdrc.1
[    1.852361] hub 1-0:1.0: USB hub found
[    1.856319] hub 1-0:1.0: 1 port detected
[    1.871029] omap_rtc 44e3e000.rtc: already running
[    1.876630] omap_rtc 44e3e000.rtc: registered as rtc0
[    1.883078] i2c /dev entries driver
[    1.887376] Driver for 1-wire Dallas network protocol.
[    1.894943] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
[    1.902431] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[    1.912337] cpuidle: enable-method property 'ti,am3352' found operations
[    1.919789] sdhci: Secure Digital Host Controller Interface driver
[    1.926067] sdhci: Copyright(c) Pierre Ossman
[    1.930971] omap_gpio 44e07000.gpio: Could not set line 6 debounce to 200000 microseconds (-22)
[    1.939781] omap_hsmmc 48060000.mmc: Got CD GPIO
[    1.945043] omap_hsmmc 48060000.mmc: Linked as a consumer to regulator.1
[    1.979281] omap_hsmmc 481d8000.mmc: Linked as a consumer to regulator.1
[    2.009587] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.017378] ledtrig-cpu: registered to indicate activity on CPUs
[    2.024591] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2
[    2.030944] omap-aes 53500000.aes: will run requests pump with realtime priority
[    2.038584] mmc0: host does not support reading read-only switch, assuming write-enable
[    2.049237] omap-sham 53100000.sham: hw accel on OMAP rev 4.3
[    2.055380] mmc0: new high speed SDHC card at address 0001
[    2.065812] hidraw: raw HID events driver (C) Jiri Kosina
[    2.072161] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 
[    2.079060] usbcore: registered new interface driver usbhid
[    2.084951] usbhid: USB HID core driver
[    2.089921]  mmcblk0: p1
[    2.094230] remoteproc remoteproc0: wkup_m3 is available
[    2.103511] gnss: GNSS driver registered with major 239
[    2.114410] wireguard: WireGuard 0.0.20191012 loaded. See www.wireguard.com for information.
[    2.123102] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[    2.134154] NET: Registered protocol family 10
[    2.139617] mmc1: new high speed MMC card at address 0001
[    2.151538] mmcblk1: mmc1:0001 M62704 3.56 GiB 
[    2.157593] mmcblk1boot0: mmc1:0001 M62704 partition 1 2.00 MiB
[    2.164722] mmcblk1boot1: mmc1:0001 M62704 partition 2 2.00 MiB
[    2.172156] mmcblk1rpmb: mmc1:0001 M62704 partition 3 512 KiB, chardev (242:0)
[    2.185057] Segment Routing with IPv6
[    2.189210] mip6: Mobile IPv6
[    2.192347] NET: Registered protocol family 17
[    2.197024] Key type dns_resolver registered
[    2.201508] mpls_gso: MPLS GSO support
[    2.205600] ThumbEE CPU extension supported.
[    2.210003] Registering SWP/SWPB emulation handler
[    2.214856] omap_voltage_late_init: Voltage driver support not added
[    2.221628] PM: Cannot get wkup_m3_ipc handle
[    2.227306] registered taskstats version 1
[    2.231511] Loading compiled-in X.509 certificates
[    2.236499] zswap: loaded using pool lzo/zbud
[    2.244095] Btrfs loaded, crc32c=crc32c-generic
[    2.248857] AppArmor: AppArmor sha1 policy hashing enabled
[    2.306404] tps6521x_pwrbutton tps65217-pwrbutton: DMA mask not set
[    2.313605] input: tps65217_pwr_but as /devices/platform/ocp/44e0b000.i2c/i2c-0/0-0024/tps65217-pwrbutton/input/input0
[    2.324986] tps65217 0-0024: TPS65217 ID 0xe version 1.2
[    2.331246] at24 0-0050: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[    2.460057] tda998x 0-0070: found TDA19988
[    2.467589] tilcdc 4830e000.lcdc: bound 0-0070 (ops tda998x_ops)
[    2.473792] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    2.480473] [drm] No driver support for vblank timestamp query.
[    2.486937] [drm] Cannot find any crtc or sizes
[    2.492393] [drm] Initialized tilcdc 1.0.0 20121205 for 4830e000.lcdc on minor 0
[    2.500133] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz
[    2.507746] remoteproc remoteproc0: powering up wkup_m3
[    2.516429] cpu cpu0: Linked as a consumer to regulator.3
[    2.521993] remoteproc remoteproc0: Booting fw image am335x-pm-firmware.elf, size 217168
[    2.530262] cpu cpu0: Dropping the link to regulator.3
[    2.535783] remoteproc remoteproc0: remote processor wkup_m3 is now up
[    2.542354] wkup_m3_ipc 44e11324.wkup_m3_ipc: CM3 Firmware Version = 0x193
[    2.549927] cpu cpu0: Linked as a consumer to regulator.3
[    2.558780] asoc-simple-card sound: i2s-hifi <-> 48038000.mcasp mapping ok
[    2.567472] PM: bootloader does not support rtc-only!
[    2.573941] omap_rtc 44e3e000.rtc: setting system clock to 2020-01-22 14:50:13 UTC (1579704613)
[    2.597231] net eth0: initializing cpsw version 1.12 (0)
[    2.674702] SMSC LAN8710/LAN8720 4a101000.mdio:00: attached PHY driver [SMSC LAN8710/LAN8720] (mii_bus:phy_addr=4a101000.mdio:00, irq=POLL)
[    2.691801] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    3.494523] [drm] Cannot find any crtc or sizes
[    5.766568] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[    5.774763] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    5.793741] IP-Config: Complete:
[    5.797017]      device=eth0, hwaddr=34:03:de:a2:c0:c1, ipaddr=192.168.0.149, mask=255.255.255.0, gw=192.168.0.1
[    5.807394]      host=192.168.0.149, domain=, nis-domain=(none)
[    5.813407]      bootserver=192.168.0.12, rootserver=192.168.0.12, rootpath=
[    5.821232] ALSA device list:
[    5.824310]   #0: TI BeagleBone Black
[    5.851304] VFS: Mounted root (nfs filesystem) on device 0:17.
[    5.858574] devtmpfs: mounted
[    5.867728] Freeing unused kernel memory: 1024K
[    5.873184] Run /sbin/init as init process
[    6.948107] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[    6.970678] systemd[1]: Detected architecture arm.

Welcome to Debian GNU/Linux 10 (buster)!

[    7.037521] systemd[1]: Set hostname to <beaglebone>.
[    7.066078] systemd[1]: Failed to bump fs.file-max, ignoring: Invalid argument
[    9.184599] systemd[1]: /lib/systemd/system/rc_battery_monitor.service:5: PIDFile= references path below legacy directory /var/run/, updating /var/run/rc_battery_monitor.pid → /run/rc_battery_monitor.pid; please update the unit file accordingly.
[    9.377872] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[    9.409595] systemd[1]: Created slice system-serial\x2dgetty.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[    9.437874] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    9.464711] systemd[1]: Listening on Journal Audit Socket.
[  OK  ] Listening on Journal Audit Socket.
[    9.488349] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[  OK  ] Reached target Local Encrypted Volumes.
[  OK  ] Reached target Paths.
[  OK  ] Created slice system-getty.slice.
[  OK  ] Set up automount Arbitrary…s File System Automount Point.
[  OK  ] Listening on Journal Socket (/dev/log).
[  OK  ] Reached target Slices.
[  OK  ] Listening on Journal Socket.
         Starting Load Kernel Modules...
         Starting Set the console keyboard layout...
         Mounting RPC Pipe File System...
         Mounting POSIX Message Queue File System...
         Starting Restore / save the current clock...
         Starting Create list of re…odes for the current kernel...
[  OK  ] Listening on Syslog Socket.
         Starting Journal Service...
         Mounting /sys/kernel/debug...
[  OK  ] Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on udev Kernel Socket.
         Starting udev Coldplug all Devices...
         Starting Remount Root and Kernel File Systems...
[  OK  ] Reached target Swap.
[  OK  ] Started Load Kernel Modules.
[  OK  ] Mounted RPC Pipe File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Started Restore / save the current clock.
[  OK  ] Started Create list of req… nodes for the current kernel.
[  OK  ] Mounted /sys/kernel/debug.
         Mounting Kernel Configuration File System...
         Mounting FUSE Control File System...
         Starting Apply Kernel Variables...
[  OK  ] Started Remount Root and Kernel File Systems.
         Starting Load/Save Random Seed...
         Starting Create System Users...
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Mounted FUSE Control File System.
[   12.061664] systemd[1]: Started Apply Kernel Variables.
[  OK  ] Started Apply Kernel Variables.
[   12.111711] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
         Starting Flush Journal to Persistent Storage...
[  OK  ] Started Load/Save Random Seed.
[  OK  ] Started Set the console keyboard layout.
[  OK  ] Started Create System Users.
         Starting Create Static Device Nodes in /dev...
[   12.769139] systemd-journald[144]: Received request to flush runtime journal from PID 1
[  OK  ] Started Flush Journal to Persistent Storage.
[  OK  ] Started Create Static Device Nodes in /dev.
         Starting udev Kernel Device Manager...
[  OK  ] Reached target Local File Systems (Pre).
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
         Starting Preprocess NFS configuration...
         Starting Set console font and keymap...
[  OK  ] Started Preprocess NFS configuration.
[  OK  ] Reached target NFS client services.
[  OK  ] Started Set console font and keymap.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started Create Volatile Files and Directories.
[  OK  ] Started Entropy daemon using the HAVEGE algorithm.
         Starting Network Time Synchronization...
         Starting RPC bind portmap service...
         Starting Update UTMP about System Boot/Shutdown...
[  OK  ] Started udev Coldplug all Devices.
         Starting Helper to synchronize boot up for ifupdown...
[  OK  ] Started Helper to synchronize boot up for ifupdown.
         Starting Raise network interfaces...
[  OK  ] Started RPC bind portmap service.
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems.
[  OK  ] Reached target RPC Port Mapper.
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Time Synchronized.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily rotation of log files.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target Timers.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
[  OK  ] Started D-Bus System Message Bus.
         Starting Connection service...
         Starting Deferred execution scheduler...
         Starting Login Service...
         Starting WPA supplicant...
[  OK  ] Started Regular background program processing daemon.
         Starting LSB: Start busybox udhcpd at boot time...
         Starting LSB: Load kernel …d to enable cpufreq scaling...
         Starting robotcontrol...
         Starting rc_battery_monitor...
         Starting Generic Board Startup...
         Starting System Logging Service...
         Starting Avahi mDNS/DNS-SD Stack...
[  OK  ] Started Raise network interfaces.
[  OK  ] Started Deferred execution scheduler.
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Started robotcontrol.
[  OK  ] Started System Logging Service.
[  OK  ] Started rc_battery_monitor.
[  OK  ] Started LSB: Start busybox udhcpd at boot time.
[  OK  ] Stopped Connection service.
         Starting Connection service...
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started WPA supplicant.
[  OK  ] Started Login Service.
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Reached target Network.
         Starting OpenBSD Secure Shell server...
         Starting Permit User Sessions...
[  OK  ] Stopped Connection service.
         Starting Connection service...
[  OK  ] Started Permit User Sessions.
[  OK  ] Started Getty on tty1.
[  OK  ] Started LSB: Load kernel m…ded to enable cpufreq scaling.
         Starting LSB: set CPUFreq kernel parameters...
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Started OpenBSD Secure Shell server.
[  OK  ] Stopped Connection service.
         Starting Connection service...
[  OK  ] Started LSB: set CPUFreq kernel parameters.
[   25.537448] using random self ethernet address
[   25.549643] using random host ethernet address
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Stopped Connection service.
[   26.081680] Mass Storage Function, version: 2009/09/11
[   26.097419] LUN: removable file: (no medium)
         Starting Connection service...
[   26.715193] using random self ethernet address
[   26.724911] using random host ethernet address
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[   27.021529] usb0: HOST MAC 34:03:de:a2:c0:c2
[   27.032940] usb0: MAC 34:03:de:a2:c0:c3
[   27.055138] usb1: HOST MAC 34:03:de:a2:c0:c5
[   27.066889] usb1: MAC 34:03:de:a2:c0:c6
[  OK  ] Stopped Connection service.
         Starting Connection service...
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Stopped Connection service.
         Starting Connection service...
[   28.392647] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[   29.017762] IPv6: ADDRCONF(NETDEV_UP): usb1: link is not ready
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Found device /dev/ttyS0.
[  OK  ] Stopped Connection service.
         Starting Connection service...
[  OK  ] Started Serial Getty on ttyS0.

Debian GNU/Linux 10 beaglebone ttyS0

BeagleBoard.org Debian Image 2020-01-20

Support/FAQ: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian

default username:password is [debian:temppwd]

beaglebone login: debian
Password: 
Last login: Tue Jan 21 22:56:29 UTC 2020 from 192.168.0.111 on pts/0

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
[   39.032753] pvrsrvkm: loading out-of-tree module taints kernel.
[   39.680562] [drm] Initialized pvr 1.17.4948957 20110701 for 56000000.sgx on minor 1
         Starting Connection service...
[  OK  ] Created slice User Slice of UID 1000.
         Starting User Runtime Directory /run/user/1000...
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Started User Runtime Directory /run/user/1000.
         Starting User Manager for UID 1000...
[  OK  ] Stopped Connection service.
         Starting Connection service...
         Starting dnsmasq - A light…DHCP and caching DNS server...
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Stopped Connection service.
         Starting Connection service...
[FAILED] Failed to start dnsmasq - …t DHCP and caching DNS server.
See 'systemctl status dnsmasq.service' for details.
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Reached target Host and Network Name Lookups.
[  OK  ] Started User Manager for UID 1000.
[  OK  ] Started Session 1 of user debian.
[  OK  ] Stopped Connection service.
         Starting Connection service...
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Stopped Connection service.
         Starting Connection service...
debian@beaglebone:~$ [FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Reached target Sound Card.
[  OK  ] Stopped Connection service.
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
[  OK  ] Found device /dev/ttyGS0.
[  OK  ] Started Serial Getty on ttyGS0.
[  OK  ] Reached target Login Prompts.
[  OK  ] Started Generic Board Startup.
[  OK  ] Reached target Multi-User System.
[  OK  ] Reached target Graphical Interface.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Started Update UTMP about System Runlevel Changes.

debian@beaglebone:~$ ping www.google.com
ping: www.google.com: Temporary failure in name resolution
debian@beaglebone:~$ mount -a
mount: only root can use "--all" option
debian@beaglebone:~$ mount
192.168.0.12:/opt/buster on / type nfs (rw,relatime,vers=3,rsize=4096,wsize=4096,namlen=255,hard,nolock,proto=udp,timeo=11,retrans=3,sec=sys,mountaddr=192.168.0.12,mountvers=3,mountproto=udp,local_lock=all,addr=192.168.0.12)
devtmpfs on /dev type devtmpfs (rw,relatime,size=222852k,nr_inodes=55713,mode=755)
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,nodev,mode=755)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup2 on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd)
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=32,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=12567)
sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
mqueue on /dev/mqueue type mqueue (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
configfs on /sys/kernel/config type configfs (rw,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=49588k,mode=700,uid=1000,gid=1000)

Regards,

@RobertCNelson Again, apologies for the wait. I had some technical issues with the network and Linux machine. But I marked the NFS post as a solution, the rfs mounted correctly after I finally found my typo in the exportfs config file. The Beaglebone boots complete over the network, I however did spent a lot of time failing. Got the first successful boot moments again, Busy rebooting the bone in the backgound. Seems to be working just fine.

One problem I had, was when I sent the vmlinuz and the dtb, both transfer via tftp, however I still had the kernel panic. I deviated a little from your (nfs) uEnv.txt and added the arguments, which seemed to "fix"the boot, as it’s running smoothly now. I’d append it to this post.

Thank you so much for the help and patience. I’ll still try and figure the PXE approach out, but for now, I have all I need.

Kind reagrds,
HS Hayman

U-Boot SPL 2019.04-00002-g3d8c979660 (Nov 01 2019 - 09:14:23 -0500)
Trying to boot from MMC2
Loading Environment from EXT4… Card did not respond to voltage select!

U-Boot 2019.04-00002-g3d8c979660 (Nov 01 2019 - 09:14:23 -0500), Build: jenkins-github_Bootloader-Builder-134

CPU : AM335X-GP rev 2.1
I2C: ready
DRAM: 512 MiB
No match for driver ‘omap_hsmmc’
No match for driver ‘omap_hsmmc’
Some drivers were not found
Reset Source: Power-on reset has occurred.
RTC 32KCLK Source: External.
MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1
Loading Environment from EXT4… Card did not respond to voltage select!
Board: BeagleBone Black
not set. Validating first E-fuse MAC
BeagleBone Black:
BeagleBone: cape eeprom: i2c_probe: 0x54:
BeagleBone: cape eeprom: i2c_probe: 0x55:
BeagleBone: cape eeprom: i2c_probe: 0x56:
BeagleBone: cape eeprom: i2c_probe: 0x57:
Net: eth0: MII MODE
cpsw, usb_ether
Press SPACE to abort autoboot in 0 seconds
board_name=[A335BNLT] …
board_rev=[000C] …
Card did not respond to voltage select!
Card did not respond to voltage select!
Card did not respond to voltage select!
gpio: pin 56 (gpio 56) value is 0
gpio: pin 55 (gpio 55) value is 0
gpio: pin 54 (gpio 54) value is 0
gpio: pin 53 (gpio 53) value is 1
Card did not respond to voltage select!
Card did not respond to voltage select!
switch to partitions #0, OK
mmc1(part 0) is current device
Scanning mmc 1:1…
gpio: pin 56 (gpio 56) value is 0
gpio: pin 55 (gpio 55) value is 0
gpio: pin 54 (gpio 54) value is 0
gpio: pin 53 (gpio 53) value is 1
switch to partitions #0, OK
mmc1(part 0) is current device
gpio: pin 54 (gpio 54) value is 1
Checking for: /uEnv.txt …
1005 bytes read in 22 ms (43.9 KiB/s)
gpio: pin 55 (gpio 55) value is 1
Loaded environment from /uEnv.txt
Importing environment from mmc …
Checking if uenvcmd is set …
Checking if client_ip is set …
gpio: pin 56 (gpio 56) value is 1
Running nfsboot_uname_r …
Booting from 192.168.1.254 …
cpsw Waiting for PHY auto negotiation to complete… done
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.254; our IP address is 192.168.1.10
Filename ‘vmlinuz-4.19.79-ti-r30’.
Load address: 0x82000000
Loading: #################################################################
#################################################################
#################################################################
#################################################################
###########################################T ######################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#######################################################
875 KiB/s
done
Bytes transferred = 10338816 (9dc200 hex)
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.254; our IP address is 192.168.1.10
Filename ‘dtbs/4.19.79-ti-r30/am335x-boneblack.dtb’.
Load address: 0x88000000
Loading: #####
5.7 MiB/s
done
Bytes transferred = 59507 (e873 hex)

Flattened Device Tree blob at 88000000

Booting using the fdt blob at 0x88000000
Loading Device Tree to 8ffee000, end 8ffff872 … OK

Starting kernel …

[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 4.19.79-ti-r30 (voodoo@x2-am57xx-beagle-x15-2gb) (gcc version 8.3.0 (Debian 8.3.0-6)) #1buster SMP PREEMPT Mon Nov 4 20:38:01 UTC 2019
[ 0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] OF: fdt: Machine model: TI AM335x BeagleBone Black
[ 0.000000] Memory policy: Data cache writeback
[ 0.000000] efi: Getting EFI parameters from FDT:
[ 0.000000] efi: UEFI not found.
[ 0.000000] cma: Reserved 48 MiB at 0x9c800000
[ 0.000000] CPU: All CPU(s) started in SVC mode.
[ 0.000000] AM335X ES2.1 (sgx neon)
[ 0.000000] random: get_random_bytes called from start_kernel+0xa0/0x508 with crng_init=0
[ 0.000000] percpu: Embedded 17 pages/cpu s39628 r8192 d21812 u69632
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 129412
[ 0.000000] Kernel command line: console=ttyO0,115200n8 root=/dev/nfs rw rootfstype=ext4 rootwait fixrtc nfsroot=192.168.1.254:/var/rootfs,vers=3 ip=192.168.1.10:192.168.1.254:192.168.1.1:255.255.255.0::eth0:off
[ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.000000] Memory: 445708K/522240K available (13312K kernel code, 1156K rwdata, 4452K rodata, 1024K init, 349K bss, 27380K reserved, 49152K cma-reserved, 0K highmem)
[ 0.000000] Virtual kernel memory layout:
[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
[ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
[ 0.000000] vmalloc : 0xe0000000 - 0xff800000 ( 504 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xdfe00000 ( 510 MB)
[ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
[ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
[ 0.000000] .text : 0x(ptrval) - 0x(ptrval) (14304 kB)
[ 0.000000] .init : 0x(ptrval) - 0x(ptrval) (1024 kB)
[ 0.000000] .data : 0x(ptrval) - 0x(ptrval) (1157 kB)
[ 0.000000] .bss : 0x(ptrval) - 0x(ptrval) ( 350 kB)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] ftrace: allocating 42631 entries in 126 pages
[ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1.
[ 0.000000] Tasks RCU enabled.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[ 0.000000] IRQ: Found an INTC at 0x(ptrval) (revision 5.0) with 128 interrupts
[ 0.000000] OMAP clockevent source: timer2 at 24000000 Hz
[ 0.000017] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns
[ 0.000043] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
[ 0.000058] OMAP clocksource: timer1 at 24000000 Hz
[ 0.000780] timer_probe: no matching timers found
[ 0.001011] Console: colour dummy device 80x30
[ 0.001043] WARNING: Your ‘console=ttyO0’ has been replaced by ‘ttyS0’
[ 0.001052] This ensures that you still see kernel messages. Please
[ 0.001060] update your kernel commandline.
[ 0.001121] Calibrating delay loop… 995.32 BogoMIPS (lpj=1990656)
[ 0.046917] pid_max: default: 32768 minimum: 301
[ 0.047212] Security Framework initialized
[ 0.047232] Yama: becoming mindful.
[ 0.047382] AppArmor: AppArmor initialized
[ 0.047503] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.047520] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.048628] CPU: Testing write buffer coherency: ok
[ 0.048702] CPU0: Spectre v2: using BPIALL workaround
[ 0.049191] CPU0: thread -1, cpu 0, socket -1, mpidr 0
[ 0.071027] Setting up static identity map for 0x80100000 - 0x80100060
[ 0.078934] rcu: Hierarchical SRCU implementation.
[ 0.090282] EFI services will not be available.
[ 0.094943] smp: Bringing up secondary CPUs …
[ 0.094964] smp: Brought up 1 node, 1 CPU
[ 0.094976] SMP: Total of 1 processors activated (995.32 BogoMIPS).
[ 0.094986] CPU: All CPU(s) started in SVC mode.
[ 0.096738] devtmpfs: initialized
[ 0.111283] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
[ 0.111953] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.111987] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 0.116011] xor: measuring software checksum speed
[ 0.154909] arm4regs : 1217.000 MB/sec
[ 0.194906] 8regs : 1091.000 MB/sec
[ 0.234905] 32regs : 1088.000 MB/sec
[ 0.274904] neon : 1673.000 MB/sec
[ 0.274914] xor: using function: neon (1673.000 MB/sec)
[ 0.274936] pinctrl core: initialized pinctrl subsystem
[ 0.276315] NET: Registered protocol family 16
[ 0.281703] DMA: preallocated 256 KiB pool for atomic coherent allocations
[ 0.312719] l4_wkup_cm:clk:0010:0: failed to disable
[ 0.352856] audit: initializing netlink subsys (disabled)
[ 0.354176] cpuidle: using governor menu
[ 0.359028] audit: type=2000 audit(0.348:1): state=initialized audit_enabled=0 res=1
[ 0.361913] OMAP GPIO hardware version 0.1
[ 0.376118] No ATAGs?
[ 0.376137] hw-breakpoint: debug architecture 0x4 unsupported.
[ 0.403089] raid6: using algorithm neonx8 gen() 0 MB/s
[ 0.403112] raid6: … xor() 0 MB/s, rmw enabled
[ 0.403123] raid6: using neon recovery algorithm
[ 0.410571] edma 49000000.edma: TI EDMA DMA engine driver
[ 0.414127] SCSI subsystem initialized
[ 0.415391] usbcore: registered new interface driver usbfs
[ 0.415485] usbcore: registered new interface driver hub
[ 0.415621] usbcore: registered new device driver usb
[ 0.417854] omap_i2c 4819c000.i2c: bus 2 rev0.11 at 100 kHz
[ 0.418145] media: Linux media interface: v0.10
[ 0.418212] videodev: Linux video capture interface: v2.00
[ 0.418385] pps_core: LinuxPPS API ver. 1 registered
[ 0.418398] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti giometti@linux.it
[ 0.418426] PTP clock support registered
[ 0.419144] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400
[ 0.423289] Advanced Linux Sound Architecture Driver Initialized.
[ 0.424128] NetLabel: Initializing
[ 0.424144] NetLabel: domain hash size = 128
[ 0.424152] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.424257] NetLabel: unlabeled traffic allowed by default
[ 0.425301] clocksource: Switched to clocksource timer1
[ 0.590602] VFS: Disk quotas dquot_6.6.0
[ 0.590718] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.591630] AppArmor: AppArmor Filesystem Enabled
[ 0.604031] NET: Registered protocol family 2
[ 0.605149] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes)
[ 0.605191] TCP established hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.605237] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.605476] TCP: Hash tables configured (established 4096 bind 4096)
[ 0.605632] UDP hash table entries: 256 (order: 1, 8192 bytes)
[ 0.605661] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[ 0.605903] NET: Registered protocol family 1
[ 0.619109] RPC: Registered named UNIX socket transport module.
[ 0.619132] RPC: Registered udp transport module.
[ 0.619140] RPC: Registered tcp transport module.
[ 0.619149] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.620548] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available
[ 0.623243] Initialise system trusted keyrings
[ 0.623707] workingset: timestamp_bits=14 max_order=17 bucket_order=3
[ 0.631183] zbud: loaded
[ 0.638659] NFS: Registering the id_resolver key type
[ 0.638713] Key type id_resolver registered
[ 0.638724] Key type id_legacy registered
[ 0.638746] nfs4filelayout_init: NFSv4 File Layout Driver Registering…
[ 0.639106] fuse init (API version 7.27)
[ 0.649771] Key type asymmetric registered
[ 0.649798] Asymmetric key parser ‘x509’ registered
[ 0.649901] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[ 0.654285] io scheduler noop registered
[ 0.654305] io scheduler deadline registered
[ 0.654600] io scheduler cfq registered (default)
[ 0.654615] io scheduler mq-deadline registered
[ 0.657058] pinctrl-single 44e10800.pinmux: 142 pins, size 568
[ 0.658818] gpio-of-helper ocp:cape-universal: ready
[ 0.662165] wkup_m3_ipc 44e11324.wkup_m3_ipc: could not get rproc handle
[ 0.664007] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled
[ 0.667683] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 30, base_baud = 3000000) is a 8250
[ 1.230569] random: fast init done
[ 1.469479] console [ttyS0] enabled
[ 1.475783] omap_rng 48310000.rng: Random Number Generator ver. 20
[ 1.482430] random: crng init done
[ 1.607719] libphy: Fixed MDIO Bus: probed
[ 1.665424] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6, bus freq 1000000
[ 1.673178] davinci_mdio 4a101000.mdio: detected phy mask fffffffe
[ 1.679783] MDIO: davinci_mdio: dt: updated phy_id[0] from phy_mask[fffffffe]
[ 1.688526] libphy: 4a101000.mdio: probed
[ 1.692763] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver SMSC LAN8710/LAN8720
[ 1.703163] cpsw 4a100000.ethernet: Detected MACID = 78:04:73:7e:8c:74
[ 1.710094] cpsw 4a100000.ethernet: initialized cpsw ale version 1.4
[ 1.716596] cpsw 4a100000.ethernet: ALE Table size 1024
[ 1.721947] cpsw 4a100000.ethernet: cpts: overflow check period 1250 (jiffies)
[ 1.731233] usbcore: registered new interface driver smsc95xx
[ 1.738111] ehci_hcd: USB 2.0 ‘Enhanced’ Host Controller (EHCI) Driver
[ 1.744777] ehci-platform: EHCI generic platform driver
[ 1.750281] ehci-omap: OMAP-EHCI Host Controller driver
[ 1.756124] usbcore: registered new interface driver usb-storage
[ 1.764815] am335x-phy-driver 47401300.usb-phy: 47401300.usb-phy supply vcc not found, using dummy regulator
[ 1.775011] am335x-phy-driver 47401300.usb-phy: Linked as a consumer to regulator.0
[ 1.785564] am335x-phy-driver 47401b00.usb-phy: 47401b00.usb-phy supply vcc not found, using dummy regulator
[ 1.795819] am335x-phy-driver 47401b00.usb-phy: Linked as a consumer to regulator.0
[ 1.806902] musb-hdrc musb-hdrc.1: MUSB HDRC host driver
[ 1.812354] musb-hdrc musb-hdrc.1: new USB bus registered, assigned bus number 1
[ 1.820136] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[ 1.828490] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.835855] usb usb1: Product: MUSB HDRC host driver
[ 1.840877] usb usb1: Manufacturer: Linux 4.19.79-ti-r30 musb-hcd
[ 1.847024] usb usb1: SerialNumber: musb-hdrc.1
[ 1.852454] hub 1-0:1.0: USB hub found
[ 1.856416] hub 1-0:1.0: 1 port detected
[ 1.871840] omap_rtc 44e3e000.rtc: registered as rtc0
[ 1.878357] i2c /dev entries driver
[ 1.882651] Driver for 1-wire Dallas network protocol.
[ 1.890232] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
[ 1.897761] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[ 1.907698] cpuidle: enable-method property ‘ti,am3352’ found operations
[ 1.915153] sdhci: Secure Digital Host Controller Interface driver
[ 1.921429] sdhci: Copyright© Pierre Ossman
[ 1.926342] omap_gpio 44e07000.gpio: Could not set line 6 debounce to 200000 microseconds (-22)
[ 1.935158] omap_hsmmc 48060000.mmc: Got CD GPIO
[ 1.940423] omap_hsmmc 48060000.mmc: Linked as a consumer to regulator.1
[ 1.974723] omap_hsmmc 481d8000.mmc: Linked as a consumer to regulator.1
[ 2.006607] sdhci-pltfm: SDHCI platform and OF driver helper
[ 2.014164] ledtrig-cpu: registered to indicate activity on CPUs
[ 2.020736] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2
[ 2.026932] omap-aes 53500000.aes: will run requests pump with realtime priority
[ 2.036960] omap-sham 53100000.sham: hw accel on OMAP rev 4.3
[ 2.046905] hidraw: raw HID events driver © Jiri Kosina
[ 2.053853] usbcore: registered new interface driver usbhid
[ 2.059629] usbhid: USB HID core driver
[ 2.064524] remoteproc remoteproc0: wkup_m3 is available
[ 2.072638] gnss: GNSS driver registered with major 239
[ 2.083409] wireguard: WireGuard 0.0.20191012 loaded. See www.wireguard.com for information.
[ 2.092323] wireguard: Copyright © 2015-2019 Jason A. Donenfeld Jason@zx2c4.com. All Rights Reserved.
[ 2.103560] NET: Registered protocol family 10
[ 2.110357] mmc1: new high speed MMC card at address 0001
[ 2.119888] Segment Routing with IPv6
[ 2.124437] mmcblk1: mmc1:0001 M62704 3.56 GiB
[ 2.129552] mip6: Mobile IPv6
[ 2.132556] NET: Registered protocol family 17
[ 2.138040] mmcblk1boot0: mmc1:0001 M62704 partition 1 2.00 MiB
[ 2.144245] Key type dns_resolver registered
[ 2.149332] mmcblk1boot1: mmc1:0001 M62704 partition 2 2.00 MiB
[ 2.155331] mpls_gso: MPLS GSO support
[ 2.159478] mmcblk1rpmb: mmc1:0001 M62704 partition 3 512 KiB, chardev (242:0)
[ 2.167055] ThumbEE CPU extension supported.
[ 2.171421] Registering SWP/SWPB emulation handler
[ 2.177494] omap_voltage_late_init: Voltage driver support not added
[ 2.184548] PM: Cannot get wkup_m3_ipc handle
[ 2.189380] mmcblk1: p1
[ 2.194637] registered taskstats version 1
[ 2.201112] Loading compiled-in X.509 certificates
[ 2.206252] zswap: loaded using pool lzo/zbud
[ 2.213934] Btrfs loaded, crc32c=crc32c-generic
[ 2.218668] AppArmor: AppArmor sha1 policy hashing enabled
[ 2.278556] tps6521x_pwrbutton tps65217-pwrbutton: DMA mask not set
[ 2.285788] input: tps65217_pwr_but as /devices/platform/ocp/44e0b000.i2c/i2c-0/0-0024/tps65217-pwrbutton/input/input0
[ 2.297182] tps65217 0-0024: TPS65217 ID 0xe version 1.2
[ 2.303525] at24 0-0050: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[ 2.432068] tda998x 0-0070: found TDA19988
[ 2.439637] tilcdc 4830e000.lcdc: bound 0-0070 (ops tda998x_ops)
[ 2.445804] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 2.452477] [drm] No driver support for vblank timestamp query.
[ 2.458952] [drm] Cannot find any crtc or sizes
[ 2.464439] [drm] Initialized tilcdc 1.0.0 20121205 for 4830e000.lcdc on minor 0
[ 2.472182] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz
[ 2.479822] remoteproc remoteproc0: powering up wkup_m3
[ 2.488578] cpu cpu0: Linked as a consumer to regulator.3
[ 2.494137] remoteproc remoteproc0: Booting fw image am335x-pm-firmware.elf, size 217168
[ 2.502408] cpu cpu0: Dropping the link to regulator.3
[ 2.507921] remoteproc remoteproc0: remote processor wkup_m3 is now up
[ 2.514494] wkup_m3_ipc 44e11324.wkup_m3_ipc: CM3 Firmware Version = 0x193
[ 2.522015] cpu cpu0: Linked as a consumer to regulator.3
[ 2.530934] asoc-simple-card sound: i2s-hifi <-> 48038000.mcasp mapping ok
[ 2.539617] PM: bootloader does not support rtc-only!
[ 2.546117] omap_rtc 44e3e000.rtc: setting system clock to 2000-01-01 00:00:01 UTC (946684801)
[ 2.569462] net eth0: initializing cpsw version 1.12 (0)
[ 2.646725] SMSC LAN8710/LAN8720 4a101000.mdio:00: attached PHY driver [SMSC LAN8710/LAN8720] (mii_bus:phy_addr=4a101000.mdio:00, irq=POLL)
[ 2.663822] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 3.494493] [drm] Cannot find any crtc or sizes
[ 4.710594] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 4.721638] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 4.741594] IP-Config: Complete:
[ 4.744872] device=eth0, hwaddr=78:04:73:7e:8c:74, ipaddr=192.168.1.10, mask=255.255.255.0, gw=192.168.1.1
[ 4.755092] host=192.168.1.10, domain=, nis-domain=(none)
[ 4.761012] bootserver=192.168.1.254, rootserver=192.168.1.254, rootpath=
[ 4.769029] ALSA device list:
[ 4.772096] #0: TI BeagleBone Black
[ 4.798474] VFS: Mounted root (nfs filesystem) on device 0:17.
[ 4.805775] devtmpfs: mounted
[ 4.815026] Freeing unused kernel memory: 1024K
[ 4.820366] Run /sbin/init as init process
[ 5.866468] systemd[1]: System time before build time, advancing clock.
[ 6.022434] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[ 6.044969] systemd[1]: Detected architecture arm.

Welcome to Debian GNU/Linux 10 (buster)!

[ 6.107685] systemd[1]: Set hostname to .
[ 6.134859] systemd[1]: Failed to bump fs.file-max, ignoring: Invalid argument
[ 8.114115] systemd[1]: Listening on udev Kernel Socket.
[ OK ] Listening on udev Kernel Socket.
[ 8.140457] systemd[1]: Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket (/dev/log).
[ 8.169239] systemd[1]: Created slice system-getty.slice.
[ OK ] Created slice system-getty.slice.
[ 8.190712] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ OK ] Listening on initctl Compatibility Named Pipe.
[ 8.216380] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ 8.238053] systemd[1]: Reached target Slices.
[ OK ] Reached target Slices.
[ OK ] Reached target Swap.
[ OK ] Listening on fsck to fsckd communication Socket.
[ OK ] Started Dispatch Password …ts to Console Directory Watch.
[ OK ] Started Forward Password R…uests to Wall Directory Watch.
[ OK ] Reached target Local Encrypted Volumes.
[ OK ] Reached target Paths.
[ OK ] Listening on RPCbind Server Activation Socket.
[ OK ] Listening on Journal Socket.
Mounting POSIX Message Queue File System…
Mounting /sys/kernel/debug…
Starting Load Kernel Modules…
Starting Remount Root and Kernel File Systems…
[ OK ] Listening on udev Control Socket.
Starting udev Coldplug all Devices…
[ OK ] Set up automount Arbitrary…s File System Automount Point.
Starting Set the console keyboard layout…
[ OK ] Listening on Journal Audit Socket.
[ OK ] Listening on Syslog Socket.
Mounting RPC Pipe File System…
Starting Create list of re…odes for the current kernel…
Starting Journal Service…
[ OK ] Created slice system-serial\x2dgetty.slice.
[ OK ] Mounted POSIX Message Queue File System.
[ OK ] Mounted /sys/kernel/debug.
[ OK ] Started Load Kernel Modules.
[FAILED] Failed to start Remount Root and Kernel File Systems.
See ‘systemctl status systemd-remount-fs.service’ for details.
[ OK ] Mounted RPC Pipe File System.
[ OK ] Started Create list of req… nodes for the current kernel.
Starting Load/Save Random Seed…
Starting Create System Users…
Starting Apply Kernel Variables…
Mounting Kernel Configuration File System…
Mounting FUSE Control File System…
[ OK ] Started Load/Save Random Seed.
[ OK ] Started Apply Kernel Variables.
[ OK ] Started Create System Users.
[ OK ] Mounted Kernel Configuration File System.
[ OK ] Mounted FUSE Control File System.
[ 11.051004] systemd[1]: Starting Create Static Device Nodes in /dev…
Starting Create Static Device Nodes in /dev…
[ 11.233617] systemd[1]: Started Journal Service.
[ OK ] Started Journal Service.
Starting Flush Journal to Persistent Storage…
[ OK ] Started Create Static Device Nodes in /dev.
Starting udev Kernel Device Manager…
[ OK ] Started Set the console keyboard layout.
[ 11.996685] systemd-journald[145]: Received request to flush runtime journal from PID 1
[ OK ] Reached target Local File Systems (Pre).
[ OK ] Reached target Local File Systems.
Starting Set console font and keymap…
Starting Preprocess NFS configuration…
[ OK ] Started Flush Journal to Persistent Storage.
Starting Create Volatile Files and Directories…
[ OK ] Started Preprocess NFS configuration.
[ OK ] Reached target NFS client services.
[ OK ] Started Set console font and keymap.
[ OK ] Started udev Kernel Device Manager.
[ OK ] Started udev Coldplug all Devices.
Starting Helper to synchronize boot up for ifupdown…
[ OK ] Started Helper to synchronize boot up for ifupdown.
Starting Raise network interfaces…
[ OK ] Started Create Volatile Files and Directories.
Starting Update UTMP about System Boot/Shutdown…
Starting RPC bind portmap service…
Starting Network Time Synchronization…
[ OK ] Started Raise network interfaces.
[ OK ] Started RPC bind portmap service.
[ OK ] Reached target Remote File Systems (Pre).
[ OK ] Reached target Remote File Systems.
[ OK ] Reached target RPC Port Mapper.
[ OK ] Started Update UTMP about System Boot/Shutdown.
[ OK ] Started Network Time Synchronization.
[ OK ] Reached target System Time Synchronized.
[ OK ] Reached target System Initialization.
[ OK ] Listening on D-Bus System Message Bus Socket.
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
Starting Login Service…
Starting BBAI brcmfmac tether Service…
Starting LSB: Load kernel …d to enable cpufreq scaling…
Starting Generic Board Startup…
Starting BB WL18xx wlan0 Service…
Starting System Logging Service…
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Started D-Bus System Message Bus.
Starting Connection service…
[ OK ] Started Regular background program processing daemon.
Starting LSB: Start busybox udhcpd at boot time…
[ OK ] Started Daily rotation of log files.
[ OK ] Reached target Timers.
[ OK ] Started System Logging Service.
[ OK ] Started Login Service.
[ OK ] Started BBAI brcmfmac tether Service.
[ OK ] Started BB WL18xx wlan0 Service.
[ OK ] Started LSB: Start busybox udhcpd at boot time.
[ OK ] Started Connection service.
[ OK ] Reached target Network.
Starting Permit User Sessions…
Starting OpenBSD Secure Shell server…
[ OK ] Started Permit User Sessions.
[ OK ] Started Getty on tty1.
[ OK ] Started OpenBSD Secure Shell server.
Starting Hostname Service…
[ OK ] Started LSB: Load kernel m…ded to enable cpufreq scaling.
Starting LSB: set CPUFreq kernel parameters…
[ OK ] Found device /dev/ttyS0.
[ OK ] Started Serial Getty on ttyS0.
[ OK ] Started Hostname Service.
[ OK ] Started LSB: set CPUFreq kernel parameters.
[ 25.089761] using random self ethernet address
[ 25.097749] using random host ethernet address

Debian GNU/Linux 10 beaglebone ttyS0

BeagleBoard.org Debian Image 2020-01-16

Support/FAQ: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian

default username:password is [debian:temppwd]

beaglebone login: [ 26.150772] using random self ethernet address
[ 26.157543] using random host ethernet address
[ 26.585541] usb0: HOST MAC 78:04:73:7e:8c:75
[ 26.609017] usb0: MAC 78:04:73:7e:8c:76
[ 26.632548] usb1: HOST MAC 78:04:73:7e:8c:78
[ 26.654026] usb1: MAC 78:04:73:7e:8c:79
[ 27.049509] configfs-gadget gadget: high-speed config #1: c
[ 28.035557] IPv6: ADDRCONF(NETDEV_UP): usb1: link is not ready