11 2019 档案

摘要:#define EPERM 1 /* Operation not permitted */ #define ENOENT 2 /* No such file or directory */ #define ESRCH 3 /* No such process */ #define EINTR 4 / 阅读全文
posted @ 2019-11-29 14:19 Jello 阅读(8918) 评论(0) 推荐(0) 编辑
摘要:答: git log --name-only --format='' 阅读全文
posted @ 2019-11-14 17:40 Jello 阅读(1603) 评论(0) 推荐(0) 编辑
摘要:答: 直接将https修改为http即可, 如: $ git clone https://github.com/Jello_Smith/my-example.git -> git clone http//github.com/Jello_Smith/my-example.git 阅读全文
posted @ 2019-11-14 16:57 Jello 阅读(5247) 评论(0) 推荐(0) 编辑
摘要:答: 往~/.bashrc中加入以下内容即可: LS_COLORS='no=00:fi=00:di=01;33;40:ln=01;36;40:' export LS_COLORS 阅读全文
posted @ 2019-11-14 16:08 Jello 阅读(579) 评论(0) 推荐(0) 编辑
摘要:"u-boot,dm-pre-reloc”属性:当设置了这个属性时,则表示这个设备在重定向之前就需要使用。 当dm_init_and_scan的参数为true时,只会对带有“u-boot,dm-pre-reloc”属性的节点进行解析。而当参数为false的时候,则会对所有节点都进行解析 阅读全文
posted @ 2019-11-11 13:19 Jello 阅读(2563) 评论(0) 推荐(0) 编辑
摘要:1. 运行安卓系统, 如下: $sudo qemu-system-x86_64 -m 4096 -boot d -enable-kvm -smp 3 -net nic -net user,hostfwd=tcp::4444-:5555 -hda <path-to-android-hd-image> 阅读全文
posted @ 2019-11-09 11:18 Jello 阅读(1317) 评论(0) 推荐(0) 编辑
摘要:一. 环境 Ubuntu 二. 安装QEMU $sudo apt-get install qemu qemu-kvm libvirt-bin 三. 创建虚拟硬盘文件,将安卓安装在此虚拟硬盘上 $qemu-img create -f qcow2 android-hd.img 20G 四. 获取x86版 阅读全文
posted @ 2019-11-09 10:32 Jello 阅读(7636) 评论(1) 推荐(1) 编辑
摘要:答: sudo apt-get install default-jdk 阅读全文
posted @ 2019-11-09 10:22 Jello 阅读(901) 评论(0) 推荐(0) 编辑
摘要:答: 在二级内容之前按Shift + Enter键,再次换行即可序号正常,示例如下: 1. 第一行(在此处按下Shift+Enter键) 第一行第一列(在此处按下Shift+Enter键) 第一行第二列(在此处按下Enter键) 2. 第二行 阅读全文
posted @ 2019-11-08 10:14 Jello 阅读(1075) 评论(0) 推荐(0) 编辑
摘要:答: 在uboot源码的tools/buildman/toolchain.py中取消证书验证,修改内容如下: 阅读全文
posted @ 2019-11-07 12:30 Jello 阅读(372) 评论(0) 推荐(0) 编辑
摘要:答: 使用以下命令即可: git log --all --full-history -- <path-to-file> 阅读全文
posted @ 2019-11-04 11:14 Jello 阅读(3738) 评论(0) 推荐(0) 编辑
摘要:1. buildman简介 uboot源码中维护的一款多线程编译测试工具 2. buildman的用法 2.1 进入uboot的源码目录 $ cd <path of uboot> 2.2 清空一下目录 $ make mrproper 2.3 临时配置一下全局环境变量PATH $ PATH=$PATH 阅读全文
posted @ 2019-11-01 11:28 Jello 阅读(641) 评论(0) 推荐(0) 编辑