diff --git "a/\345\275\222\346\241\243/OH\347\216\257\345\242\203\346\220\255\345\273\272 .md" "b/\345\275\222\346\241\243/OH\347\216\257\345\242\203\346\220\255\345\273\272 .md" index 010175141a4bebb4d3da32a2b0ed3fbd388ae357..0ed0d661ed22d4c2a81bf274a43f00c21a16a602 100644 --- "a/\345\275\222\346\241\243/OH\347\216\257\345\242\203\346\220\255\345\273\272 .md" +++ "b/\345\275\222\346\241\243/OH\347\216\257\345\242\203\346\220\255\345\273\272 .md" @@ -1,12 +1,15 @@ ### 前期准备工作 ### 第一次电脑设置 + 1.打开设置->安全和更新->开发者选项,选择为“开发人员模式”; 2.Win + R运行control appwiz.cpl指令,在启用或关闭Windows功能中勾选适用于Linux的Windows子系统和虚拟机平台两项启用(注:没有虚拟机平台的,请升级Windows系统,Win10 版本号为 2004(内部版本19041或更高)),重启; -3.以管理员身份打开PowerShell并运行:dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart 开启Windows子系统功能; +3.以管理员身份打开PowerShell并运行: +dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart 开启Windows子系统功能; 配置环境步骤 + 1.windows官方商店下载安装ubuntu20.04并配置root用户密码,刚进入会提示你输入用户账号密码,然后sudo passwd设置root密码,设置root密码之前会验证你刚刚设置的用户密码。 2.WSL文件映射在\\wsl$路径下,通过\\wsl$\Ubuntu-20.04打开文件所在位置,右键此电脑添加网络映射驱动 @@ -15,42 +18,42 @@ --------------------上述为wsl所需步骤,如使用VM等请忽略上述步骤----------------------- - 清华开源镜像站: [ubuntu-20.04.6-desktop-amd64.iso](https://mirrors.tuna.tsinghua.edu.cn/ubuntu-releases/20.04.6/) + 清华开源镜像站: [ubuntu-20.04.6-desktop-amd64.iso](https://mirrors.tuna.tsinghua.edu.cn/ubuntu-releases/20.04.6/) 4.修改shell - 执行:ls -l /bin/sh,如果为dash环境则需要修改为bash。 - sudo dpkg-reconfigure dash,选择No,将Ubuntu shell由dash修改为bash。 + 执行:ls -l /bin/sh,如果为dash环境则需要修改为bash。 + sudo dpkg-reconfigure dash,选择No,将Ubuntu shell由dash修改为bash。 5.配置git与ssh公钥:https://www.jianshu.com/p/0c88bcaaaf13 6.git配置 - 配置用户名 + 配置用户名 - git config --global user.name "用户名" + git config --global user.name "用户名" - 配置邮箱 + 配置邮箱 - git config --global user.email "用户邮箱(与git上绑定的一致)" + git config --global user.email "用户邮箱(与git上绑定的一致)" - 查看配置信息 + 查看配置信息 - git config --global --list + git config --global --list - 生成公钥 + 生成公钥 - ssh-keygen -t rsa -C "用户邮箱(同上)" + ssh-keygen -t rsa -C "用户邮箱(同上)" - 查看公钥 + 查看公钥 - cat ~/.ssh/id_rsa.pub + cat ~/.ssh/id_rsa.pub - 测试配置是否成功 + 测试配置是否成功 - ssh -T git@gitee.com + ssh -T git@gitee.com - 将上面的公钥配置到gitee公钥 (gitee点头像--设置--安全设置--ssh公钥--添加公钥:把上面复制的公钥粘贴进去) + 将上面的公钥配置到gitee公钥 (gitee点头像--设置--安全设置--ssh公钥--添加公钥:把上面复制的公钥粘贴进去) 7.安装依赖 @@ -77,11 +80,12 @@ sudo apt-get install libssl-dev && sudo apt install libtinfo5 sudo apt-get install libgl1-mesa-dev && sudo apt-get install libxcursor-dev + sudo apt-get install libxrandr-dev && sudo apt-get install libxinerama-dev 8.安装repo 必须先切换为root,装完切换回普通用户 - su root + su root curl https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 > /usr/local/bin/repo @@ -107,21 +111,21 @@ (1) 初始化repo - 只需要选择自己需要的分支 + 只需要选择自己需要的分支 - repo init -u https://gitee.com/openharmony/manifest.git -b master --no-repo-verify (master分支) + repo init -u https://gitee.com/openharmony/manifest.git -b master --no-repo-verify (master分支) - repo init -u git@gitee.com:openharmony/manifest.git -b monthly --no-repo-verify(monthly分支) + repo init -u git@gitee.com:openharmony/manifest.git -b monthly --no-repo-verify(monthly分支) - repo init -u git@gitee.com:openharmony/manifest.git -b OpenHarmony-3.2-Beta3 --no-repo-verify (3.2Beta3分支) + repo init -u git@gitee.com:openharmony/manifest.git -b OpenHarmony-3.2-Beta3 --no-repo-verify (3.2Beta3分支) - repo init -u git@gitee.com:openharmony/manifest.git -b xxx(分支名) --no-repo-verify (xxx分支) + repo init -u git@gitee.com:openharmony/manifest.git -b xxx(分支名) --no-repo-verify (xxx分支) # 拉取指定日期代码 - repo forall -c 'commitID=`git log --before "yyyy-MM-dd HH:mm" -1 --pretty=format:"%H"`;git reset --hard $commitID' + repo forall -c 'commitID=`git log --before "yyyy-MM-dd HH:mm" -1 --pretty=format:"%H"`;git reset --hard $commitID' - https://blog.csdn.net/fanyun_01/article/details/127129523 + https://blog.csdn.net/fanyun_01/article/details/127129523 (2)拉取代码 @@ -131,6 +135,16 @@ bash build/prebuilts_download.sh +(3)开始编译 + + 全量编译 + + ./build.sh --product-name rk3568 --ccache + + 编译某模块 --build-target 后面更换自己模块名 + + ./build.sh --product-name rk3568 --ccache --build-target dsoftbus + --------------------安装hb为可选----------------------- 12.安装hb: @@ -143,7 +157,7 @@ vim ~/.bashrc - 将以下命令拷贝到.bashrc文件的最后一行,保存并退出。 + 将以下命令拷贝到.bashrc文件的最后一行,保存并退出。 export PATH=~/.local/bin:$PATH