April 1 2021, config.txt changes Raspi FreeBSD image
Original config.txt Contents
https://download.freebsd.org/ftp/snapshots/arm64/aarch64/ISO-IMAGES/14.0/
File to download
cat /media/BOOT/config.txt
[all]
arm_64bit=1
dtparam=audio=on,i2c_arm=on,spi=on
dtoverlay=mmc
dtoverlay=disable-bt
device_tree_address=0x4000
kernel=u-boot.bin
[pi4]
hdmi_safe=1
armstub=armstub8-gic.bin
hope@localhost ~/a/april1> ls -l /media/BOOT/config.txt
-rwxr-xr-x 1 root wheel 177 Mar 31 23:41 /media/BOOT/config.txt*
grep config boot*
177 20ab45202003d40ef7b82a0d213745ca config.txt
Modify config.txt file to match
[pi4]
#hdmi_safe=1
#overscan_left=1
# 1080p screen 1920x1080 pixel screen size
hdmi_group=1
hdmi_mode=16
SUCCESS! Raspberry Pi 4B with 8gigs booted up. Yeah!
Now for setting up a desktop environment, or getting broadcom wifi to work, or installing a USB SSD, to save files
SSH login over Ethernet Port
Read the IP address given to the FreeBSD Raspberry Pi bootup messages
192.168.1.118
I had two ethernet cables plugged into a 5 port router purchased at GoodWill store. Cisco 2500 Pick any of the 4 ethernet ports. Leave the Yellow RJ-45 Internet port open. 1 ethernet cable from the raspberry Pi 4B. The 2nd ethernet cable from your laptop computer.
The 5 port router had DHCP server running to dynamically hand out IP address.
'ifconfig' or 'ip a s' tells you what your laptop local ethernet address is.
test that the raspberry pi 4B is alive with a ping command
ping -c 3 192.168.1.118
Login using ssh to the freebsd raspberry pi command
ssh freebsd@192.168.1.118
password: freebsd
bam you are now communication with the FreeBSD operating system
uname -a
FreeBSD generic 14.0-CURRENT FreBDS 14.0-CURRENT #0 main-n245766-4084b1ab041: Thu Apr 1 10:06:57 UTC 2021 root@releng1.nyi.freebsd.org:/usr/obj/usr/src/arm64.aarch64/sys/GENERIC arm64
geom disk list
gpart status
gpart show
Comments
Post a Comment