工具使用
文章平均质量分 56
Eric&_Long
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
重要的网址链接
1、linux相关 1)linux系统相关 redhat:https://www.redhat.com/zh/topics/linux/what-is-the-linux-kernel linux公社:https://www.linuxidc.com/Linux/2014-04/99583.htm 2)、嵌入式学习提升 https://www.100ask.net/index 3)yocot使用 https://www.yoctoproject.org/ **bitbake:**https://www.yo原创 2022-03-09 17:13:25 · 3197 阅读 · 0 评论 -
automake的使用
automake生成makefile文件 1、编译参考 参考链接:https://blog.youkuaiyun.com/lee244868149/article/details/42241061(里面存在部分问题,所以参考后面的部分) 链接:(编译文件的生成和文件的修改参考)https://blog.youkuaiyun.com/vevenlcf/article/details/9411109?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522160242248819原创 2021-07-01 16:16:49 · 176 阅读 · 0 评论 -
ADB工具使用说明
ADB默认关闭的 at+qcfg=“usbcfg” 打开 任务: 1/ADB驱动的安装测试 首先重启板卡,然后测试以下的方式 netstat -ano | findstr “5037” netstat -ano | findstr “18632” 看到对应的占用5037端口的应用程序 在任务管理器里面关闭对饮的程序 taskkill /pid 5008 /f //杀掉对用pid的进程 adb start-server //重启adb进程 adb nodaemon server 然后在另外的一个cmd的窗口里原创 2021-01-24 17:30:18 · 513 阅读 · 0 评论 -
git工具使用和patch的使用
1/代码上传 git commit // 查看修改的文件,哪些文件是需要上传的 git commit -m “备注” 添加上传代码的备注 git add filename 上传单个文件 git add --all 上传所有的文件 git rm (filename 或者-r dir ) git status 查看上传的状态 git push -u origin master // 将代码上传git st git push origin HEAD:refs/for/master 上传commit原创 2021-01-24 17:10:51 · 460 阅读 · 0 评论
分享