上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 77 下一页
摘要: 1. 将内核加载到sdram中的地址 2. 将压缩的内核解压后的内核地址, 如果内核是非压缩的,那么可以直接从1处指定的位置直接启动内核 3. 内核启动地址或入口地址 阅读全文
posted @ 2020-01-10 10:39 Jello 阅读(1010) 评论(0) 推荐(0)
摘要: 1. -dumpmachine Print the compiler's target machine 2. -print-sysroot Print the target sysroot directory that is used during compilation. (编译期间使用到的目录) 阅读全文
posted @ 2020-01-07 12:16 Jello 阅读(480) 评论(0) 推荐(0)
摘要: 创建risc-v目录 $ mkdir risc-v $ cd risc-v 获取源码 $ git clone --recursive https://github.com/riscv/riscv-gnu-toolchain.git 安装依赖包$ sudo apt-get install autoco 阅读全文
posted @ 2020-01-06 17:17 Jello 阅读(2462) 评论(0) 推荐(0)
摘要: newlib glibc license basically it's a berkeley style copyright LGPL destination it is a collection of software from several sources, and was put toget 阅读全文
posted @ 2020-01-06 17:07 Jello 阅读(571) 评论(0) 推荐(0)
摘要: 1. 获取源码: git clone https://gitee.com/Jello_Smith/linux_tools.git cd linux_tools/does_gcc_support_c++11_feature 2. 执行脚本 $./test.sh 阅读全文
posted @ 2020-01-06 14:51 Jello 阅读(2898) 评论(0) 推荐(0)
摘要: 1. 进入命令行 2. 输入以下命令进行验证: certutil -hashfile <file name> 阅读全文
posted @ 2020-01-04 09:18 Jello 阅读(1012) 评论(0) 推荐(0)
摘要: 请参考此文档: https://blog.csdn.net/enweitech/article/details/53391567 阅读全文
posted @ 2019-12-31 18:54 Jello 阅读(354) 评论(0) 推荐(0)
摘要: 需要执行以下类似调度路径: request_mem_region ioremap ioread32/iowrite32/ioread32be/iowrite32be iounmap release_mem_region 阅读全文
posted @ 2019-12-27 14:50 Jello 阅读(912) 评论(0) 推荐(0)
摘要: 答: uboot会从itb文件中提取出内核,将其加载到load指定的位置, 但是此时itb文件所在内存处与内核加载后的地址范围有重叠部分,因此调整itb的加载地址即可 阅读全文
posted @ 2019-12-27 11:13 Jello 阅读(1004) 评论(0) 推荐(0)
摘要: 答: 分为两步: 1. 配置某个驱动为模块(如: CONFIG_RTC_XXX=m) 2. 指定路径并编译, 如编译drivers/rtc中的驱动 make SUBDIRS=drivers/rtc modules 阅读全文
posted @ 2019-12-19 16:32 Jello 阅读(2535) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 77 下一页