sony / flutter-elinux

Flutter tools for embedded Linux (eLinux)
BSD 3-Clause "New" or "Revised" License
408 stars 43 forks source link

Request to Add to Wiki: Quickstart - Raspberry Pi 4b #224

Closed talksik closed 9 months ago

talksik commented 9 months ago

Hi there,

I have written up a quickstart guide for users on Raspberry Pi 4b. I was unable to commit directly to the wiki git repository due to permissioning.

Here is the article. I would also suggest adding a section for quickstarts in the home page of the wiki.

======== start article ===========

Overview

This is a quickstart to get a hello world application (the default flutter counter app) running on Raspberry Pi 4b.

Requirements

Quickstart

Use Raspberry Pi Imager tool to set up SD card.

# dependencies
$ ssh <user>@<hostname>
$ sudo apt install curl unzip git clang cmake pkg-config -y
$ sudo apt install libegl1-mesa libgles2-mesa libxkbcommon-dev -y
$ sudo apt install libdrm-dev libgbm-dev libinput-dev libudev-dev libsystemd-dev -y
$ sudo apt install build-essential libegl1-mesa-dev libgles2-mesa-dev

# I had to do this due to being in US locale: see [this issue](https://github.com/sony/flutter-embedded-linux/issues/387).
$ sudo cp /usr/share/X11/xkb/symbols/us /usr/share/X11/xkb/symbols/US

$ git clone https://github.com/sony/flutter-elinux.git
$ sudo mv flutter-elinux /opt/
# OR add below line to ~/.bashrc
$ export PATH=$PATH:/opt/flutter-elinux/bin
$ flutter-elinux doctor

# project creation & build
$ cd ~
$ flutter-elinux create helloworld
$ cd helloworld
$ flutter-elinux build elinux --debug --target-backend-type=gbm
$ cd build/elinux/arm64/debug/bundle/

# run
$ sudo FLUTTER_DRM_DEVICE=/dev/dri/card1 ./helloworld -b ~/helloworld/build/elinux/arm64/debug/bundle

Warning: this setup may change if in a different environment or a future version of Raspbian.

====== end article =========

HidenoriMatsubayashi commented 9 months ago

Added https://github.com/sony/flutter-elinux/wiki/Quickstart-%E2%80%90-Raspberry-Pi-4-Model-B. Thanks.