Skip to content

Latest commit

 

History

History
68 lines (43 loc) · 1.86 KB

2021-06-15-rpi-usage.markdown

File metadata and controls

68 lines (43 loc) · 1.86 KB
layout title date categories comments
post
RPI Usage
2021-06-15 10:00:00 +0800
rpi linux driver
true

Table of Content

1. RPI Image Installation

1. Raspberry Pi OS Lite

2. RPI 4 Image Build - Buildroot

$ git clone git://git.busybox.net/buildroot -b master
$ cd buildroot
$ make raspberrypi4_64_defconfig
$ make -j8

//copy image to SD card
$ sudo dd if=output/images/sdcard.img of=/dev/sdX bs=4M conv=fsync 

//Boot from SD

//Done

3. Device Driver Development for RPI 4 - Buildroot

3. RPI Image Build - Yocto

4. RPI Driver Development

99. Reference URL