RK3308 Ubuntu16.04移植

一:概述

本章将介绍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";
	};
 ..

你可能感兴趣的:(Rockchip,Ubuntu,ubuntu,linux,运维)