
Linux
felix_fang_xin
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Nordic BLE蓝牙RSA加密
Nordic NRF52840原创 2022-09-26 09:39:27 · 455 阅读 · 0 评论 -
获取旧版IMX6Q源码
git clonehttps://source.codeaurora.org/external/imx/linux-imx-brel_imx_4.1.15_2.1.0_ga原创 2022-05-30 18:11:17 · 169 阅读 · 0 评论 -
更改ubuntu18默认的python版本
在 ~/.bashrc后面加上alias python='/usr/bin/python3.6'原创 2022-05-22 19:41:33 · 647 阅读 · 0 评论 -
CRC校验源码
#include "crcverification.h"CrcVerification::CrcVerification(){}/****************************************************************************** * Name: CRC-4/ITU x4+x+1 * Poly: 0x03 * Init: 0x00 * Refin: True * Refout: Tr.原创 2022-02-08 11:12:00 · 664 阅读 · 0 评论 -
make menuconfig
HOSTCC scripts/kconfig/mconf.o<command-line>:0:12: fatal error: curses.h: No such file or directorycompilation terminated.scripts/Makefile.host:108: recipe for target 'scripts/kconfig/mconf.o' failedmake[1]: *** [scripts/kconfig/mconf.o] Error 1.原创 2021-07-04 20:14:46 · 201 阅读 · 0 评论 -
Linux 直接读写usb
https://www.cnblogs.com/sky-heaven/p/5066492.html不要libusb库直接读取usb原始数据https://www.cnblogs.com/libra13179/p/12851163.html利用libudev 获取设备 path 和vid pid原创 2021-04-09 15:44:11 · 2855 阅读 · 0 评论 -
linux系统级加密
ecryptfs加密https://linux.cn/article-4470-1.htmltpm加密原创 2020-02-25 10:57:54 · 269 阅读 · 0 评论 -
dd命令读写扇区,用作kernel向uboot传参
将SD卡的 第2040个扇区作为kernel向uboot传参的位置脚本代码如下:#!/bin/bash#读取扇区2040的内容function read_env(){ sudo dd if=/dev/sdb of=read.txt bs=512 count=1 skip=2040 conv=fsync}#向扇区2040写入字符串参数 “rootfs=A”funct...原创 2020-01-17 17:26:25 · 1229 阅读 · 0 评论 -
mii-tool 更改网卡速率
mii-tool -v eth0 eth0: negotiated 100baseTx-FD, link ok product info: vendor 00:50:ef, model 60 rev 8 basic mode: autonegotiation enabled basic status: autonegotiation compl...原创 2020-01-10 16:10:30 · 340 阅读 · 0 评论 -
嵌入式Linux升级的几种方法
第一种使用 mtd-utils 工具进行在线升级uboot、kernel、rootfs。这个方法有局限性,仅仅在你硬件上支持NAND Flash的时候才能使用。eMMC或者SD卡则不能使用该方法。参考文章如下https://blog.youkuaiyun.com/wangkaiming123456/article/details/80518977http://www.linux-mtd...原创 2019-12-31 13:12:35 · 2217 阅读 · 0 评论