问题杂谈
kaira88
这个作者很懒,什么都没留下…
展开
-
uclibc,eglibc,glibc,Musl-libc
1.uclibc,eglibc,glibc,Musl-libc之间的区别和联系https://www.sohu.com/a/164202127_4249632.musl.libchttps://musl.libc.org/musl is an implementation of the C standard library built on top of the Linux system call API, including interfaces defined in the base langu原创 2022-03-04 16:47:06 · 330 阅读 · 0 评论 -
alsa-lib&alsa-utils 在openharmony 中交叉编译
1.编译环境Doker2.按照这个介绍搭建自己交叉编译环境3.源码路径下载路径:https://www.alsa-project.org/wiki/Main_Page我这边下载的是alsa-lib-1.2.6.1alsa-utils-1.2.64.解压,然后交叉编译5.先编译alsa-lib-1.2.6.1如下指令:root@6ad7969cbf4e:/home/3.l-tools/alsa-lib-1.2.6.1# ./configure --prefix=/home/3.l-tool原创 2022-02-27 09:44:42 · 731 阅读 · 0 评论 -
QEMU 网桥模式
网桥模式是目前比较简单,也是用的比较多的模式,下图是网桥模式下的 VM的收发包的流程。如图中所示,红色箭头表示数据报文的入方向,步骤:网络数据从 Host 上的物理网卡接收,到达网桥;由于 eth0 与 tap1 均加入网桥中,根据二层转发原则,br0 将数据从 tap1 口转发出去,即数据由 Tap设备接收;Tap 设备通知对应的 fd 数据可读;fd 的读动作通过 tap 设备的字符设备驱动将数据拷贝到用户空间,完成数据报文的前端接收。(引用自:https://blog.csdn.net/原创 2020-12-08 14:43:37 · 640 阅读 · 0 评论 -
Bad owner or permissions on /home/xxxxx/.ssh/config 问题
今天拉代码不知道之前做了啥操作,一直拉不下来且报如下错误:./repo/repo init -u ssh://igerrit.storm:29418/Src/iauto-things/manifests -b xxx/master -m default.xmlGet ssh://igerrit.storm:29418/Src/xxxxx/manifestsBad owner or permi...原创 2019-05-16 14:05:09 · 6410 阅读 · 0 评论 -
! [remote rejected] xxx-> refs/for/xx change http://igerrit.storm/471494 closed处理
1.git fetch ssh://xxxx/Src/Platform/kernel/xxxxrefs/changes/95/471495/1 && git cherry-pick FETCH_HEADpush 一个之前分支上被abandon 的提交代码,直接push 后报如下错误:xxxx@xxx-HP-EliteDesk-800-G2-SFF:~/work/xxx$ git...原创 2019-06-05 16:06:40 · 2964 阅读 · 0 评论 -
emmc启动分区设置
下图是emmc寄存器设置。不使能引导,将BOOT_PARTITION_ENABLE设置为0,使能boot1,将BOOT_PARTITION_ENABLE设置为1,使能boot2,将BOOT_PARTITION_ENABLE设置为2,使能UDA,将BOOT_PARTITION_ENABLE设置为7.eg:U-Boot provides access to eMMC devices t...原创 2019-06-18 11:56:24 · 11240 阅读 · 0 评论 -
常用指令方法
1.python 转换成可执行性文件*.exe如:路径C:\Users\shalan\AppData\Local\Programs\Python\PyInstaller-3.5>下执行:python pyinstaller.py -F dump_emmc_rd.py 即可生成 dump_emmc_rd.exe2.清理缓存To free pagecache: 清空 页面 高速缓...原创 2020-04-12 10:22:42 · 249 阅读 · 0 评论