当前位置: 代码迷 >> 综合 >> RK3308 Ubuntu16.04移植
  详细解决方案

RK3308 Ubuntu16.04移植

热度:51   发布时间:2023-10-24 00:01:48.0

一:概述

本章将介绍Ubuntu在RK平台上的移植以及AP配网

常用的fs为buildroot编译出来的linux文件系统,而本次则是ubuntu文件系统,系统启动后需要手动对WIFI驱动进行加载并配网。

二:配置Kernel

为了支持ubuntu系统,我们需要对kernel进行配置

1、设备树

修改rootfstype类型为ext4

/ {model = "Rockchip RK3308 EVB V11";compatible = "rockchip,rk3308-evb-v11", "rockchip,rk3308";chosen {#bootargs = "earlycon=uart8250,mmio32,0xff0c0000 swiotlb=1 console=tty0 console=ttyFIQ0 video=DPI-1:1024x600-32 root=PARTUUID=614e0000-0000 rootfstype=squashfs rootwait snd_aloop.index=7 snd_aloop.use_raw_jiffies=1";bootargs = "earlycon=uart8250,mmio32,0xff0c0000 swiotlb=1 console=tty0 console=ttyFIQ0 video=DPI-1:1024x600-32 root=PARTUUID=614e0000-0000 rootfstype=ext4 rootwait snd_aloop.index=7 snd_aloop.use_raw_jiffies=1";};..