44 lines
747 B
Markdown
44 lines
747 B
Markdown
|
# add layer
|
||
|
|
||
|
./run_crops.sh bitbake-layers create-layer ../poky/meta-stargazer
|
||
|
|
||
|
# network
|
||
|
|
||
|
https://hub.mender.io/t/how-to-configure-networking-using-systemd-in-yocto-project/1097
|
||
|
|
||
|
# flutter-app path
|
||
|
|
||
|
/usr/share/flutter/demo/3.16.7/release
|
||
|
|
||
|
/flutter/flutter_elinux/3.16.9/release
|
||
|
|
||
|
# no configured locale
|
||
|
|
||
|
# could not load keyboard configuration from /etc/default/keyboard
|
||
|
|
||
|
# screenshot with fbcat
|
||
|
|
||
|
fbgrab
|
||
|
|
||
|
# deps
|
||
|
|
||
|
https://github.com/polina-c/layerlens
|
||
|
|
||
|
# flutter systemd
|
||
|
|
||
|
```config
|
||
|
[Unit]
|
||
|
Description=Flutter App Service
|
||
|
After=network.target
|
||
|
StartLimitIntervalSec=0
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
Restart=always
|
||
|
RestartSec=1
|
||
|
ExecStart=/usr/bin/flutter-pi --release /usr/share/flutter/flutter_elinux/3.16.7/release
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|
||
|
```
|