匿名
未登录
登录
百问网嵌入式Linux wiki
搜索
查看“100ask roc-rk3399-pc”的源代码
来自百问网嵌入式Linux wiki
名字空间
页面
讨论
更多
更多
页面选项
Read
查看源代码
历史
←
100ask roc-rk3399-pc
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
该页面已被保护以防止编辑和其他操作。
您可以查看与复制此页面的源代码。
==配套资料介绍== <syntaxhighlight lang="c" > 00_UserManual <-----------------包含用户手册 01_windows_tools <------------------开发涉及的所有工具 02_images <-----------------系统镜像 ├─nandflash <-----------------包含nandflash系统镜像 └─sdcard <-----------------包含sd卡系统镜像 03_examples 04_lib 05_hardware <-----------------硬件相关资料 06_datasheet ├─AM437x_Chip <-----------------CPU类相关手册 └─Peripheral <-----------------外设芯片相关手册 </syntaxhighlight> =快速入门= ==准备工作== 要使用你的roc-rk3399-pc开发板,请提前准备好以下资源: * 一台可以上网的windows电脑 * roc-rk3399-pc开发板 * microSD卡/TF卡: Class10或以上的 8GB SDHC卡 * 一个12v/2A的TYPE C接口电源适配器 * VMware-player-15.1.5.exe * Vmware ubuntu 18.04 64位虚拟机镜像 * win32diskimager-1.0.0-install.exe * MobaXterm_Portable_v11.0.zip 如需自行安装配置vmware ubuntu开发环境请参考[[Configuring_ubuntu ]] =编译系统= ==获取源码== {| class="wikitable" width="100%" style="text-align: center; background-color: rgba(255,255,255,0.2)" |- ! 类别 !! 国内coding仓库 !! 国外github仓库 |- |u-boot|| https://dev.tencent.com/u/weidongshan/p/100ask_roc-rk3399_uboot || https://github.com/100askTeam/roc-rk3399-uboot |- |linux kernel|| https://dev.tencent.com/u/weidongshan/p/100ask_roc-rk3399_kernel|| https://github.com/100askTeam/roc-rk3399-kernel |- |根文件系统|| https://dev.tencent.com/u/weidongshan/p/100ask_roc-rk3399_buildroot|| https://github.com/100askTeam/roc-rk3399-buildroot |} git邮箱账号和用户名配置 git config --global user.email "you@example.com" git config --global user.name "Your Name" 初次使用,需要配置用户名和密码才可以进行代码同步,用户名和密码根据自己情况设定,也可以随意设定 考虑到代码仓库过多,特使用repo工具管理代码<br> repo工具配置 book@100ask:~$ git clone https://git.dev.tencent.com/codebug8/repo.git book@100ask:~$ sudo cp repo/repo /bin/ book@100ask:~$ mkdir -p 100ask_roc-rk3399-pc && cd 100ask_roc-rk3399-pc book@100ask:~/roc-rk3399-pc$ repo init -u https://dev.tencent.com/u/weidongshan/p/manifests/git -b linux-sdk -m rk3399/roc-rk3399_linux_release.xml --no-repo-verify book@100ask:~/roc-rk3399-pc$ repo sync -j4 上面使用的repo管理为国内coding仓库 http://wiki.t-firefly.com/zh_CN/ROC-RK3399-PC/ ==设置工具链== 交叉编译工具链主要是用于在ubuntu主机上编译并声称可以在其它平台上运行的系统。设置交叉编译工具主要是设置PATH, ARCH和CROSS_COMPILE三个环境变量,下面介绍具体设置方法。 * 永久生效 如需永久修改,请修改用户配置文件, Ubuntu系统下,修改如下: vim ~/.bashrc 在行尾添加或修改: export ARCH=arm export CROSS_COMPILE=arm-linux-gnueabihfexport export PATH=$PATH:<WORKDIR>100ask_roc-rk3399-pc/ToolChain-6.3.1/gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu/bin * 临时生效 执行完“export”命令后,该设置只对当前终端有效 book@100ask$ cd <WORKDIR>/ToolChain book@100ask$ export PATH=$PATH:<WORKDIR>100ask_roc-rk3399-pc/ToolChain-6.3.1/gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu/bin book@100ask$ export ARCH=arm64 book@100ask$ export CROSS_COMPILE=aarch64-linux-gnu- * 手动指定 Make编译时指定ARCH架构 CROSS_COMPILE交叉编译工具链 book@100ask$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- [命令] ==编译uboot== book@100ask$ cd u-boot book@100ask:u-boot$ make distclean book@100ask:u-boot$ make 100ask_am335x_defconfig book@100ask:u-boot$ make * uboot常用参数 ** nfs启动系统 setenv rootpath /work/rootfs_335x set ipaddr 10.10.10.23 setenv serverip 10.10.10.66 setenv fdtfile am335x-evm.dtb run netboot ==编译linux kernel== book@100ask$ cd linux-kernel book@100ask:linux-kernel$ make mrproper book@100ask:linux-kernel$ make 100ask_am335x_defconfig book@100ask:linux-kernel$ make zImage book@100ask:linux-kernel$ make dtbs 编译内核模块 book@100ask:linux-kernel$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- modules 安装内核模块到nfs根文件系统 book@100ask:linux-kernel$ sudo make ARCH=arm INSTALL_MOD_PATH=</media/rootfs> modules_install ==编译根文件系统== {| class="wikitable" |- ! 配置文件 !! 含义 |- | 100ask_am335x_qt_defconfig || 文件系统版本(再默认版本支持了qt) |- | 100ask_am335x_defconfig || 完整系统镜像版本(包含uboot kernel最后会生成所有的文件以及一个完整的系统镜像) |} book@100ask$ cd buildroot2018.02 book@100ask:buildroot2018.02$ make clean book@100ask:buildroot2018.02$ make 100ask_am335x_defconfig book@100ask:buildroot2018.02$ make menuconfig book@100ask:buildroot2018.02$ make –jN /*N表示CPU的线程数*/ 编译后生成文件介绍 <syntaxhighlight lang="c" > buildroot2018.02 ├── output ├── image ├── idbloader.img ├── Image <--内核镜像 ├── rk3399-roc-pc.dtb <--设备树文件 ├── rootfs.cpio <--RAM格式根文件系统 ├── rootfs.cpio.gz ├── rootfs.ext2 ├── rootfs.ext4 -> rootfs.ext2 <--ext2格式根文件系统 ├── rootfs.squashfs ├── rootfs.tar <--打包后的根文件系统 ├── sdcard.img <--完整的SD卡系统镜像 ├── trust.img ├── u-boot.bin <--u-boot镜像 ├── u-boot.img └── uboot.img </syntaxhighlight> ==sd卡启动== 1.安装资料光盘下01_tools/SD Card Formatter 5.0.1 Setup.exe软件,安装完成后打开!<br> 2.使用SdCardFormatter格式化SD卡,格式化步骤如下如所示! {| class="wikitable" width="100%" style="text-align: center" |- | style="width: 33%;" | [[image:100ask_am335x_SD_P_004.png | 300px]] | style="width: 33%;" | [[image:100ask_am335x_SD_P_005.png | 300px]] | style="width: 33%;" | [[image:100ask_am335x_SD_P_006.png | 300px]] |- | (1)选择要格式化的SD卡,选中Quick format,点击Format || (2)在弹出的对话框中点击是(Y) || (3)等待格式化完成,在弹出的对话框中点击确定 |} 3.安装资料光盘下01_tools/ win32diskimager-1.0.0-install.exe软件,安装完成后打开!<br> 4.使用wind32diskimage烧写编译后的系统镜像,烧写步骤如下所示!<br> {| class="wikitable" width="100%" style="text-align: center" |- | style="width: 33%;" | [[image:100ask_am335x_SD_p_001.png | 300px]] | style="width: 33%;" | [[image:100ask_am335x_SD_p_002.png | 300px]] | style="width: 33%;" | [[image:100ask_am335x_SD_p_003.png ]] |- | (1)选中需要烧写的SD卡设备,点击文件图标选择系统镜像文件,最后点击写入按钮开始烧写 || (2)此时弹出烧写对话框,点击Yes按钮,继续烧写, 等待任务进度执行到100%) || 烧写成功后,弹出写入成功,此时点击OK |}
该页面使用的模板:
模板:DownloadMethod
(
查看源代码
)
模板:Redtext
(
查看源代码
)
模板:TalkGroup
(
查看源代码
)
返回至
100ask roc-rk3399-pc
。
导航
导航
WIKI首页
官方店铺
资料下载
交流社区
所有页面
所有产品
MPU-Linux开发板
MCU-单片机开发板
Linux开发系列视频
单片机开发系列视频
所有模块配件
Wiki工具
Wiki工具
特殊页面
页面工具
页面工具
用户页面工具
更多
链入页面
相关更改
页面信息
页面日志