摘要:
答: 在/etc/sysctl.d/10-default.conf中 阅读全文
摘要:
答: 定义在openwrt源码的rules.mk中 STAGING_DIR:=$(TOPDIR)/staging_dir/$(TARGET_DIR_NAME) 阅读全文
摘要:
mtdparts的语法 mtdparts=<mtddef>[;<mtddef>] mtddef由哪些内容组成? <mtddef> := <mtd-id>:<partdef>[,<partdef>] <partdef> := <size>[@<offset>][<name>][ro][1k] 示例解析 阅读全文
摘要:
答: 往/etc/yum.conf加入以下内容 $ sudo vi /etc/yum.conf proxy="协议://代理服务器地址:端口" (如: proxy="https://www.helloworld.com:7680") proxy_username="hello" proxy_pass 阅读全文
摘要:
答: 在virtualbox的设置里面设置网络为桥接网络(bridge-adapter), 设置完后,虚拟机和宿主机就在一个网段了 阅读全文
摘要:
答:请参考linux内核文档 https://www.kernel.org/doc/Documentation/networking/tuntap.txt 阅读全文
摘要:
答:往libubox的Makefile中加入+librt即可解决依赖关系 示例如下: $ cat <openwrt source code>/package/libs/libubox/Makefile ... define Package/libubox ... DEPENDS:=+librt en 阅读全文
摘要:
答: 示例如下: cd old-repo (进入旧的仓库目录) git remote set-url origin ssh://git@bitbucket.sw.nxp.com/dash/nfc-module.git (设定新的远程仓库地址) git push -u origin --all (将所 阅读全文
摘要:
答: 使用sha256sum即可生成,示例如下 $ sha256sum jello.tar.gz 阅读全文
摘要:
答: 使用git add -p指令进行拆解 1. 先找到要分解的commit 2. 回退该commit的信息 $ git reset --soft HEAD^ 3. 将该commit相关的文件从暂存区中取出 $ git reset HEAD <filename> 4. 开始交互式拆解(根据提示选择要 阅读全文