blob: 2fcb3e1e4fca196a398421d41bb3b297fbf0a9c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo "---------------------------------------------------------------"
echo ":: logicalpi-fpga-g1 wiki / 逻辑派 FPGA-G1 维基: "
echo " xdg-open https://wiki.lckfb.com/zh-hans/fpga-ljpi/"
echo ":: logicalpi-fpga-g1 gowin-pro license / 逻辑派 FPGA-G1 高云 Pro 许可: "
echo " 124.220.54.112:10559"
echo ":: Add yourself to the uucp group to access the serial ports:"
echo " sudo gpasswd -aG \$USER uucp"
echo " sudo udevadm control --reload-rules"
echo ":: If adb fails to connect to the phone, add the current user to the adbusers group"
echo " sudo gpasswd -aG \$USER adbusers"
echo "---------------------------------------------------------------"
}
post_upgrade() {
post_install
}
|