CM311-1a刷armbian后部署HOMEASSISTANT

前言:特别鸣谢各路大佬(排名不分先后)

Ophub、Xcray、Al-one

软件准备:

1.镜像写入U盘工具(制作U盘armbian系统):Win32DiskImager
2.晶晨固件烧录工具(线刷机顶盒固件root开ADB):Amlogic USB Burning Tool v2.2.0
3.机顶盒U盘启动APP:Reboot to LibreELEC_v1.1
4.SSH远程命令工具():mobaxterm4

镜像准备:

1.电视盒子安卓固件:CM311-1a_ss_new.img
2.O大armbian系统镜像:Armbian_22.11.0_Aml_s905l3a_bullseye_5.15.76_server_2022.11.04.img.gz

Step1:刷盒子

安装Amlogic USB Burning Tool v2.2.0软件
打开软件→文件→导入烧录包→把【擦除flash】和【擦除bootloader】两项去勾→
点击【开始】→确认电源按钮状态为关→接电源线→把USB线一端插上盒子(靠近网口的USB)
根据短接图找到短接点保持短接→USB另一端插上电脑→按盒子电源键通电开机。
就可以看到进度条在跑了(此时松开短接),等待进度条跑完开机即可

Step2:制作Armbian系统U盘启动盘

下载U盘写入工具及Armbian系统镜像,选择镜像路径和待写入U盘,制作Armbian系统U盘启动盘。

  1. 下载X大的:meson-g12a-s905l3a-cm311.dtb,上传至BOOT分区的/dtb/amlogic/目录
  2. 修改uEnv.txt,将FDT=/dtb/amlogic/meson-g12a-s905l3a-e900v22c.dtb修改为:
FDT=/dtb/amlogic/meson-g12a-s905l3a-cm311.dtb
LINUX=/zImage
INITRD=/uInitrd
FDT=/dtb/amlogic/meson-g12a-s905l3a-cm311.dtb

Step3:盒子U盘启动进入Armbian系统

刷好的盒子自带机顶盒U盘启动APP的话,打开Reboot to LibreELEC_v1.1,机顶盒开始重启,等待约2分钟进入Armbian>设置root 新密码>建立新用户,可CTRL+C退出
设置好后,reboot重启
参考文档:armbian-config Armbian 配置及使用
输入了 armbian-tf 命令准备对这个系统盘进行扩充

Step4:修复蓝牙及网络

1、为了更快的安装软件,我们先换源

nano /etc/apt/sources.list 
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
#deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
#deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
#deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
#deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free

2、更新源并安装以下软件:

apt update && apt install -y apt-transport-https apparmor udisks2 gpiod lrzsz avahi-daemon bluez bluetooth pulseaudio-module-bluetooth bluez-firmware

3.查看/lib/firmware/rtlbt目录,确保其中有rtl8761b_fw文件
----如果没有,到../rtl_bt/下面找那个带.bin后缀的,拷过来改名,或者链接也行

ln -s /lib/firmware/rtl_bt/rtl8761b_fw.bin /lib/firmware/rtlbt/rtl8761b_fw

补全配置文件

wget https://github.com/ophub/amlogic-s9xxx-armbian/files/9582582/rtl8761bt_config.zip
unzip rtl8761bt_config.zip
mv rtl8761bt_config /lib/firmware/rtlbt
rm rtl8761bt_config.zip
rm -rf __MACOSX/ 

4.将rtk_hciattach文件(下载)拷贝至/usr/bin目录,并增加可执行权限;

chmod 755 /usr/bin/rtk_hciattach

5.添加开机蓝牙重置,编辑/etc/rc.local文件,在exit0之前加入代码:

#bluetooth/usr/bin/rtk_hciattach -n -s 115200 ttyAML1 rtk_h5 &
#bluetooth reset
gpioset -s 1 -m time 0 82=0
gpioset 0 82=1 

6.reboot重启检查蓝牙是否启动

systemctl status bluetooth
hciconfig
  1. (可选)我们的盒子没有SIM卡槽,sap功能报错忽略,编辑/etc/systemd/system/bluetooth.target.wants/bluetooth.service
    行尾添加参数--noplugin=sap
ExecStart=/usr/libexec/bluetooth/bluetoothd --noplugin=sap
  1. 禁止升级内核时重新写u-boot和bootloader,这个写入毫无意义,并且有很大风险编辑/etc/ophub-release,把MAINLINE_UBOOT这一行改成:
MAINLINE_UBOOT=''

Step5:Armbian系统写入EMMC

  armbian-install
  • 设备选择:305 回车 s905l3a CM311-1a-YST>格式选择:2 btrfs

Step6:配置Armbian系统

  • 打开armbian-config,选中Personal >Locales>下滑到最下面,空格选中zh.GBK和zh.UTF-8,TAB键切换到ok
    然后勾选zh_CN.UTF8设置为系统默认语言,按住TAB键切换到ok,保存,exit退出,下载中文字体,重启后系统环境就变成中文的了。

    apt-get install fonts-wqy-zenhei
    

Step7:安装Docker

mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null 
apt-get update && apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin

Step8:安装HomeAsisstant

wget https://github.com/home-assistant/os-agent/releases/download/1.3.0/os-agent_1.3.0_linux_aarch64.deb
dpkg -i os-agent_1.3.0_linux_aarch64.deb
wget https://github.com/home-assistant/supervised-installer/releases/download/1.2.2/homeassistant-supervised.deb
dpkg -i homeassistant-supervised.deb

弹出界面>选择qemuarm-64
安装时间较长,耐心等待……
可通过docker命令查看进展

docker images

换其他源

运行 armbian-config -> Personal -> Mirrors -> 选择镜像站。
编辑 /etc/apt/sources.list.d/armbian.list,
将 http://apt.armbian.com 替换为 https://mirror.sjtu.edu.cn/armbian/,然后执行 apt update。

你可能感兴趣的:(CM311-1a刷armbian后部署HOMEASSISTANT)