# 安装内核头文件和dkms工具,以Ubuntu/Debian为例
sudo apt install dkms linux-headers-$(uname -r)
# 下载源码到/usr/src/hd2312-1.0
git clone https://github.com/hanwckf/hd2312.git /usr/src/hd2312-1.0
# 使用dkms构建并安装内核模块
dkms add -m hd2312/1.0
dkms build -m hd2312/1.0
dkms install -m hd2312/1.0
# 下载源码
git clone https://github.com/hanwckf/hd2312.git
cd hd2312
# 将`openwrt/dvb-kconfig`文件内容追加到`target/linux/generic/config-<内核版本号>`文件末尾
cat openwrt/dvb-kconfig >> <openwrt-source>/target/linux/generic/config-<kver>
# 将dvb.mk复制到openwrt内核模块包目录
cp openwrt/dvb.mk <openwrt-source>/package/kernel/linux/modules/
# 创建hd2312软件包
mkdir <openwrt-source>/package/hd2312
cp openwrt/Makefile <openwrt-source>/package/hd2312/
# 在menuconfig里打开kmod-dvb-hd2312
cd <openwrt-source>
make menuconfig
# 开始编译
make V=s
# 下载源码
git clone https://github.com/hanwckf/hd2312.git
cd hd2312
# 创建hd2312软件包
mkdir <LibreELEC-source>/packages/linux-drivers/HD2312
cp libreelec/package.mk <LibreELEC-source>/packages/linux-drivers/HD2312/
# 修改编译设置
cd <LibreELEC-source>
# 对于LibreELEC
echo 'ADDITIONAL_DRIVERS+=" HD2312"' >> ./distributions/LibreELEC/options
# 对于CoreELEC
echo 'ADDITIONAL_DRIVERS+=" HD2312"' >> ./distributions/CoreELEC/options
# 开始编译
# PROJECT=Generic ARCH=x86_64 make image
# PROJECT=Amlogic-ce ARCH=aarch64 make image
# 配置内核源码树,打开CONFIG_DVB_USB选项
# make menuconfig
# make modules_prepare
# 下载源码
git clone https://github.com/hanwckf/hd2312.git
cd hd2312
# 设定目标KDIR并开始编译
make KDIR=<path/to/kernelsource>
- openwrt下拔出USB后,udev无法自动移除
/dev/dvb/adapter*
节点,待修复。其它主流Linux发行版无此问题。