摘要:
日志积累了一些了,为了防止黑天鹅事件 决定备份一下:1、工具选取evernote-backup官网:https://github.com/vzhd1701/evernote-backup2、安装pip install evernote-backup2、初始化数据库创建一个EverNote文件夹,作为 阅读全文
摘要:
for -> 的:#interrupt-cells indicates the number of cells in the interrupts property for the interrupts managed by the selected interrupt controller.#in 阅读全文
摘要:
缘起:因为经济寒冬的原因,需要迁移代码到我自己的电脑上。背景环境:Ubuntu迁移操作:1. 先删除本地除.git文件夹以外的文件,避免压缩包过大sudo rm -rf !(.git*)2. 压缩打包sudo tar -vzcf Android.tgz Android3. 异地解压缩sudo tar 阅读全文
摘要:
一、缘起: 我有一些修改涉及到旧的commit,我想把这种同类的修改放在一起,这就需要我把原来的commit放在"TOP"的位置。图示:这是我原来的commit: C1-C2-C_TARGET-C3-C4 我想将它变成: C1-C2-C3-C4-C_TARGET 二、进入我的测试git repo,我 阅读全文
摘要:
运行image,启动container:docker run --name docker_cp -dti reg.603071.xyz/quantum/build_android_applications /bin/bash在container中打包文件:docker exec -ti docker 阅读全文
摘要:
一、git tag and describe 1. Create a tag with patterned name git tag "tagname_v1.02" (one tag is pointed to a specified commit) 2. get tag describe to u 阅读全文
摘要:
1. 用git stash存储modified files cd Android git stash 2. check stash list git stash list 3. 删除除了.git .gitattributes .gitignore的所有文件 添加bash扩展,可以执行更复杂的rm命令 阅读全文
摘要:
1. 4g-modem-platdata1.1 在runtime的/sys/bus/platform/drivers里面找到了4g-modem-platdata1.2 在代码里/kernel/drivers/net/lte/lte_rm310.c找到了 static const struct of_ 阅读全文
摘要:
1. 把本地端口映射为服务器13000端口1.1. 设备在端口13000作为服务器侦听原本我用sokit这样的tcpip工具,连接服务器ip和端口13000,发送命令,就可以和服务器端软件联动。1.2. 端口转发的情况:把本地端口3000映射到服务器端口13000,其中scale是服务器端用户名,1 阅读全文
摘要:
00. u-boot默认配置为:UBOOT_DEFCONFIG=rk3399_defconfig01. 新增文件夹:mkdir -p /u-boot/test/hello02. 编译该文件夹obj-$(CONFIG_TEST_HELLO) += hello/03. 定义CONFIG_TEST_HEL 阅读全文