上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: 1.进入官方网站下载最近版本: https://code.visualstudio.com 2.打开终端,输入一下命令: sudo dpkg -i code_1.44.2-1587059832_amd64.deb 阅读全文
posted @ 2020-04-23 11:50 蒲城小农 阅读(573) 评论(0) 推荐(0)
摘要: 今天在按照韦东山大哥的教程流程编译内核的时候出现问题 linux-2.6.22.6/Makefile:416: *** mixed implicit and normal rules: deprecated syntax linux-2.6.22.6/Makefile:1449: *** mixed 阅读全文
posted @ 2020-04-21 00:04 蒲城小农 阅读(810) 评论(0) 推荐(0)
摘要: cleanboot 干净启动,设备会删除所有软件,所有设置,恢复到出厂状态。warmboot 在不中断电源的情况下重启系统,这是一次热启动。热启动通常是由操作系统完成的,不会启动计算机的自我测试程序 reboot。部分未保存的软件会丢失数据。设备会清除一部分内存,存储不会被清除。coldboot,当 阅读全文
posted @ 2020-04-20 09:57 蒲城小农 阅读(5077) 评论(0) 推荐(0)
摘要: git diff> test.patch 阅读全文
posted @ 2020-04-18 12:56 蒲城小农 阅读(370) 评论(0) 推荐(0)
摘要: 最低有效位(the least significant bit,lsb)是指一个二进制数字中的第0位(即最低位),具有权值为2^0,可以用它来检测数的奇偶性。与之相反的称之为最高有效位。在大端序中,lsb指最右边的位。 1 0 0 1 0 1 0 1 图1 无符号数149的二进制形式,最右边为最高有 阅读全文
posted @ 2020-04-17 17:28 蒲城小农 阅读(2603) 评论(0) 推荐(0)
摘要: 弱符号使用场景 我们不确定外部模块是否提供一个函数func,但是我们不得不用这个函数,即自己模块的代码必须用到func函数: extern int func(void); ................... int a = func(); if( a > .....) { .......... 阅读全文
posted @ 2020-04-17 15:49 蒲城小农 阅读(754) 评论(0) 推荐(0)
摘要: 在内核编译选项中,将以下两个option选定为y,然后重新编译。Bus support -->[] PCI Express Port Bus support[] Root Port Advanced Error Reporting support 主要原因是鼠标和键盘的属于PCI总线,需要将该接口编 阅读全文
posted @ 2020-04-17 15:46 蒲城小农 阅读(876) 评论(0) 推荐(0)
摘要: 修改build-dir/conf/local.conf配置文件BB_NUMBER_THREADS ='8' (修改编译线程的数量,改为多线程)PARALLEL_MAKE ='-j 8'(修改cpu核的数量,根据实际情况修改,不宜超过电脑cpu核数量) bitbake命令单独编译u-boot:$ bi 阅读全文
posted @ 2020-04-17 14:39 蒲城小农 阅读(3248) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/hel12he/article/details/9465941 阅读全文
posted @ 2020-04-17 14:37 蒲城小农 阅读(328) 评论(0) 推荐(0)
摘要: #define EPERM 1 /* Operation not permitted /#define ENOENT 2 / No such file or directory /#define ESRCH 3 / No such process /#define EINTR 4 / Interru 阅读全文
posted @ 2020-04-17 14:30 蒲城小农 阅读(519) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 下一页