version 1.26, 2015/01/29 20:55:41
|
version 1.47, 2017/03/30 15:53:47
|
Line 1
|
Line 1
|
[[!meta title="NetBSD/evbarm on Raspberry Pi"]] |
[[!meta title="NetBSD/evbarm on Raspberry Pi"]] |
|
|
|
This page attempts to document and coordinate efforts towards NetBSD/evbarm on [Raspberry Pi](http://www.raspberrypi.org). All board variants are supported. |
|
|
|
Initial, limited, Raspberry Pi support was introduced in NetBSD 6.0. NetBSD 7.0 adds complete support for the board, along with introducing support for the quad-core Raspberry Pi 2 board. |
|
|
[[images/raspberrypi.jpg]] |
[[images/raspberrypi.jpg]] |
|
|
[[!toc levels=2]] |
[[!toc levels=2]] |
|
|
This page attempts to document and coordinate efforts towards NetBSD/evbarm on [Raspberry Pi](http://www.raspberrypi.org). |
|
|
|
<small>([Raspberry Pi image](http://www.flickr.com/photos/42325803@N07/8118758647/) by Christopher Lee used under CC-By-2.0 license)</small> |
<small>([Raspberry Pi image](http://www.flickr.com/photos/42325803@N07/8118758647/) by Christopher Lee used under CC-By-2.0 license)</small> |
|
|
# Installation |
# Installation |
- You may use the rpi.img file created by an evbarm build - evbarm-earmv6hf is recommended. |
- The automatic nightly builds on [nyftp.netbsd.org](http://nyftp.netbsd.org/pub/NetBSD-daily/) provide image files that can be used for installation. The Raspberry Pi and Pi 2 ports will be part of the NetBSD 7 release. |
- The Raspberry Pi port will be part of the NetBSD 7 stable release, |
- The 'evbarm-earmv6hf/binary/gzimg/' directory contains an rpi.img file that can be used as a single image for both boards. |
but you may want to use the HEAD branch for the latest development code. |
- The 'evbarm-earmv7hf/binary/gzimg/' directory, as of August 6th 2015, contains an armv7.img file that is optimized for Raspberry Pi 2. |
- The automatic nightly builds can be found in the 'evbarm-earmv6hf/binary/gzimg/' directory under on [nyftp.netbsd.org](http://nyftp.netbsd.org/pub/NetBSD-daily/). |
- The stable build directory will be under netbsd-7/YYYYMMDDHHMMZ/ (for example, http://nyftp.netbsd.org/pub/NetBSD-daily/netbsd-7/201412161700Z/evbarm-earmv6hf/binary/gzimg/) |
- The HEAD/current build will be under HEAD/YYYYMMDDHHMMZ/evbarm-earmv6hf/binary/gzimg/ |
- The HEAD/current directory build will be under HEAD/YYYYMMDDHHMMZ/ (for example, http://nyftp.netbsd.org/pub/NetBSD-daily/netbsd-7/201508062150Z/evbarm-earmv7hf/binary/gzimg/) |
- The stable build will be under netbsd-7/YYYYMMDDHHMMZ/evbarm-earmv6hf/binary/gzimg/ |
- You can build your own version of these images using (for example) './build.sh -m evbarm -a earmv6hf -u release', or './build.sh -m evbarm -a earmv7hf -u release' |
- For example, http://nyftp.netbsd.org/pub/NetBSD-daily/netbsd-7/201412161700Z/evbarm-earmv6hf/binary/gzimg/ |
- <i>gunzip and dd</i> this img to your sd card. For example, |
- 'releasedir/evbarm/binary/gzimg/' if you run (for example) './build.sh -m evbarm -a earmv6hf -u release' |
|
- <i>gunzip and dd</i> this img to your sd card. |
|
|
|
dd if=rpi.img of=/dev/disk1 |
dd if=rpi.img of=/dev/disk1 |
|
|
Line 26 This page attempts to document and coord
|
Line 26 This page attempts to document and coord
|
|
|
edit cmdline.txt and remove '"console=fb"' |
edit cmdline.txt and remove '"console=fb"' |
|
|
- Growing the root file-system |
- Most (all?) USB-to-TTL serial adapters only connect Tx, Rx and ground, and do not connect any flow control lines. An effect of missing flow control is that you see console output, but cannot type anything. If so, adjust your serial console application's flow control settings to "none". |
|
|
|
In Kermit, the command is "set flow none". |
|
|
|
In minicom, run "minicom -s" and set hardware flow control to "no" |
|
|
|
- Growing the root file-system (**not required with NetBSD -current after 2015-04-07, or by NetBSD 7 after 2015-08-06**) |
- During the partitioning process, do not delete or format the |
- During the partitioning process, do not delete or format the |
first MSDOS (FAT) partition, as the Raspberry pi firmware is |
first MSDOS (FAT) partition, as the Raspberry pi firmware is |
hard coded to boot on the SDCAD / 1st MSDOS partition / Firmware |
hard coded to boot on the SDCAD / 1st MSDOS partition / Firmware |
Line 80 This page attempts to document and coord
|
Line 86 This page attempts to document and coord
|
- sysinst started! |
- sysinst started! |
|
|
# Updating the firmware |
# Updating the firmware |
- [rpi firmware files](https://github.com/raspberrypi/firmware/tree/master/boot) |
|
- Copy all files except 'kernel*.img' into /boot and reboot |
You probably don't want to do this. Firmware updates can break things, |
|
and the latest firmware that's been tested is already included in the |
|
NetBSD build you installed. |
|
|
|
If you're feeling adventurous (or are the port maintainer), here's what |
|
to test whenever you try new firmware: |
|
|
|
- Audio |
|
- OMXPlayer (and [[!template id=man name="vchiq"]]) |
|
- Serial/framebuffer console |
|
- CPU frequency scaling |
|
|
|
That goes for all of `rpi[0123]`. |
|
|
|
Upstream firmware releases are |
|
[on GitHub](https://github.com/raspberrypi/firmware/releases). |
|
Copy all files except `kernel*.img` into `/boot` and reboot. |
|
|
|
# Updating the kernel |
|
- Build a new kernel, e.g. using build.sh. It will tell you where the ELF version of the kernel is, e.g. |
|
|
|
... |
|
Kernels built from RPI2: |
|
/Users/feyrer/work/NetBSD/cvs/src-current/obj.evbarm-Darwin-XXX/sys/arch/evbarm/compile/RPI2/netbsd |
|
... |
|
|
|
- Besides the "netbsd" kernel in ELF format, there is also a "netbsd.bin" kernel that is in a format that the Raspberry can boot. |
|
- Depending on your hardware version, copy this either to /boot/kernel.img (old/V1 hardware) or to /boot/kernel7.img (new/V2 hardware) |
|
- reboot |
|
|
# Wireless Networking |
# Wireless Networking |
- A Realtek 802.11n USB adaptor configures as urtwn(4). |
- A Realtek 802.11n USB adaptor configures as urtwn(4). |
Line 94 This page attempts to document and coord
|
Line 128 This page attempts to document and coord
|
wpa_supplicant_flags="-B -i urtwn0 -c /etc/wpa_supplicant.conf" |
wpa_supplicant_flags="-B -i urtwn0 -c /etc/wpa_supplicant.conf" |
- A sample wpa_supplicant.conf can be found at /usr/share/examples/wpa_supplicant/wpa_supplicant.conf |
- A sample wpa_supplicant.conf can be found at /usr/share/examples/wpa_supplicant/wpa_supplicant.conf |
|
|
# Additional links |
# GPU |
- [ARM userland utilities](https://github.com/jaredmcneill/userland) |
|
|
## Video playback |
|
Accelerated video playback is supported in NetBSD 7 with the [OMXPlayer](http://pkgsrc.se/multimedia/omxplayer) application and through GStreamer with the [omx](http://pkgsrc.se/multimedia/gst-plugins1-omx) plugin. |
|
|
|
## OpenGL ES |
|
Accelerated OpenGL ES is supported in NetBSD 7. The GL ES client libraries are included with the [misc/raspberrypi-userland](http://pkgsrc.se/misc/raspberrypi-userland) package. |
|
|
|
## Quake 3 |
|
A Raspberry Pi optimized build of *ioquake3* is available in the [games/ioquake3-raspberrypi](http://pkgsrc.se/games/ioquake3-raspberrypi) package. To use it, the following additional resources are required: |
|
|
|
- pak0.pk3 from Quake 3 CD |
|
- additional pak files from the [games/ioquake3-pk3](http://pkgsrc.se/games/ioquake3-pk3) package |
|
- read/write permissions on /dev/vchiq and /dev/wsmouse |
|
|
|
Place the pak0.pk3 file in the /usr/pkg/lib/ioquake3/baseq3 directory. |
|
|
|
## RetroArch / Libretro |
|
Using [emulators/retroarch](http://pkgsrc.se/emulators/retroarch) it is possible to run many emulators at full speed the Raspberry Pi. Emulator cores for various gaming consoles are available in the [emulators/libretro-*](http://pkgsrc.se/search.php?so=libretro-) packages. To begin using retroarch: |
|
|
|
- Install [emulators/retroarch](http://pkgsrc.se/emulators/retroarch) |
|
- Install the libretro core for the system you would like to emulate (lets take [emulators/libretro-gambatte](http://pkgsrc.se/emulators/libretro-gambatte), a GameBoy Color emulator, as an example). |
|
- Plug in a USB HID compatible Gamepad, such as the Logitech F710 in "DirectInput" mode (set "D/X" switch to "D"). |
|
- Create a config file for your gamepad using *retroarch-joyconfig*. |
|
[[!template id=programlisting text=""" |
|
$ retroarch-joyconfig -o gamepad.cfg |
|
"""]] |
|
- Launch the emulator from the command-line (no X required): |
|
[[!template id=programlisting text=""" |
|
$ retroarch --appendconfig gamepad.cfg -L /usr/pkg/lib/libretro/gambatte_libretro.so game.gbc |
|
"""]] |
|
|
# What works in -current |
# What works (NetBSD 7.0+) |
- multi-user boot with root on SD card |
- multi-user boot with root on SD card |
- serial or graphics console (with EDID query / parsing) |
- serial or graphics console (with EDID query / parsing) |
- DMA controller driver and sdhc(4) support |
- DMA controller driver and sdhc(4) support |
Line 106 This page attempts to document and coord
|
Line 169 This page attempts to document and coord
|
- GPIO |
- GPIO |
- RNG |
- RNG |
- SPI: could use enhancements, man page |
- SPI: could use enhancements, man page |
- VCHIQ: man page missing. |
- GPU (VCHIQ) - 3D and video decode. man page missing. |
- USB (host) - dwctwo(4) |
- USB (host) - dwctwo(4) |
- USB Ethernet - usmsc(4) |
- USB Ethernet - usmsc(4) |
- X windows. |
- X windows. |
|
- RaspberryPi 2 SMP |
|
|
# What needs work |
# What needs work |
- USB (host); isochronous transfers. |
- USB (host); isochronous transfers. |