
嵌入式
Linux嵌入式移植,uboot移植仿真
楼兰公子
这个作者很懒,什么都没留下…
展开
-
qt aarch64(arm64) cross compile
#!/bin/sh../configure \-prefix /home/ubtech/dev/tools/qt/5.15.2/aarch64 \-confirm-license \-opensource \-release \-make libs \-xplatform linux-aarch64-gnu-g++ \-pch \-qt-libjpeg \-qt-libpng \-qt-zlib \-no-opengl \-no-sse2 \-no-openssl \-no-.原创 2022-01-07 15:43:50 · 794 阅读 · 1 评论 -
qml 在嵌入式设备raspberry上无法显示或者显示白屏报错等
1.添加export QML2_EXPORT_PATH=$QTEDIR/qml报错现象提示QtQuick未安装,提示QtQApplication failed load原创 2021-10-12 22:57:08 · 281 阅读 · 0 评论 -
TX2刷机经验
1.创建刷机环境时候最好创建dji或者与目标系统同名的用户名2.删除root权限密码3.第一次登录时候使用ctrl+alt+f1进入命令行模式使用root登录,并修改home下所有文件为TX2用户所有4.修改日志只有读权限没有写权限,避免不断增大...原创 2021-10-12 15:25:35 · 169 阅读 · 0 评论 -
各种系统镜像源码网站
configs - arch/arm/configs - Barebox source code (v2021.08.0) - Bootlin原创 2021-09-19 18:26:44 · 528 阅读 · 0 评论 -
出现Starting kernel现象
1,要查看是否是同步编译生成的设备树2,是否有已经注册的机器码3.使用md 命令在uboot命令行读取__log_buf原创 2020-02-01 11:51:53 · 597 阅读 · 0 评论 -
zImage生成的命令
make -f ./scripts/Makefile.build obj=arch/arm/boot MACHINE=arch/arm/boot/zImage原创 2020-01-31 13:22:48 · 256 阅读 · 0 评论 -
驱动实现函数中结构体struct file_operations的ioctl函数
此函数在Linux2.6是ioctl在Linux4.x以后变为unlocked_ioctl 并且函数返回类型为long原创 2020-01-27 22:59:30 · 273 阅读 · 0 评论 -
neon测试样例用法
#include <vector>#include <iostream>#include <arm_neon.h>using namespace std;void matmul(){ int32_t a[500], b[500], c[500]; for (int i = 0; i < 500; i++) { ...转载 2020-01-07 17:51:24 · 641 阅读 · 1 评论 -
Linux内核交叉编译
#!/bin/shmake ARCH=arm CROSS_COMPILE=$CROSS_COMPILE imx_v6_v7_defconfigmake ARCH=arm CROSS_COMPILE=$CROSS_COMPILE -j16原创 2020-07-28 22:48:36 · 211 阅读 · 0 评论 -
virtual memory exhausted: Cannot allocate memory
此问题是在ubuntu1404中编译工程代码遇到的,原因是之前的linux-swap因扩展虚拟机磁盘删除,磁盘扩展后没有重新添加linux-swap造成原创 2020-04-07 11:55:33 · 220 阅读 · 0 评论 -
nfs服务器搭建
1,安装2,配置/etc/init.d/nfs-kernel-server3, vim /etc/exports /home/mmm/dev/tftpboot/rootfs \ *(rw,no_root_squash,no_all_squash,no_subtree_check)4,mount -t nfs localhost:/home/mmm/dev/tftpboot/r...原创 2020-02-12 22:22:03 · 278 阅读 · 0 评论 -
Linux常用性能监控和调优工具
一.一般监控工具:top htop,vmstat,iostat,sysctl等二.高级分析手段Oprofile,gprof三.内核跟踪 LLT四.压力测试LTP五.Benchmark评估系统六.USB分析仪原创 2020-01-24 21:51:19 · 268 阅读 · 0 评论 -
嵌入式应用程序调试
一.目标板上运行 gdbserver hostip:port app二.主机上运行 arm-linux-gnueabihf-gdb app三.主机gdb命令行上运行 target remote guestip:port原创 2020-01-24 18:24:50 · 171 阅读 · 0 评论 -
ddd调试目标板上的app
ddd -debugger arm-linux-gnueabihf-gdb app原创 2020-01-24 12:19:38 · 384 阅读 · 0 评论 -
交叉编译器最新的更新下载地址
http://releases.linaro.org/components/toolchain/binaries/7.5-2019.12/arm官方地址https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-a/downloads...原创 2019-12-26 15:23:42 · 409 阅读 · 1 评论 -
imx6q_core_v2启动后uboot支持的帮助信息
[13:38:16:490] ␍=> help␊[13:38:20:492] ␍? - alias for 'help'␊[13:38:20:500] ␍base - print or set address offset␊[13:38:20:500] ␍bdinfo - print Board Info structure␊[13:38:20:509] ␍bmode - s...原创 2019-12-23 13:40:41 · 228 阅读 · 0 评论 -
IMX6Q_CORE_V2编译uboot2015版本启动后打印信息
[12:34:25:089] ␍U-Boot 2015.04 (Nov 20 2019 - 14:44:11)␊[12:34:25:089] ␍␊[12:34:25:089] ␍CPU: Freescale i.MX6Q rev1.5 at 792 MHz␊[12:34:25:089] ␍CPU: Temperature 36 C␊[12:34:25:099] ␍Reset cau...原创 2019-12-23 12:35:56 · 414 阅读 · 0 评论 -
移植Uboot常见错误之
include/asm-generic/bitops/__fls.h:30:21: warning: left shift count >= width of type [-Wshift-count-overflow] if (!(word & (~0ul << (BITS_PER_LONG-4)))) { ^~i...原创 2019-12-23 09:54:21 · 1835 阅读 · 12 评论 -
修改8线EMMC
1.修改设备树 dts 节点 usdhc2原创 2019-12-22 22:15:32 · 418 阅读 · 0 评论 -
tftp网络启动文件系统
setenv bootcmd 'tftp 80800000 zImage;tftp 83000000 rootfs.dtb; bootz 80800000-83000000;'原创 2019-12-22 21:48:20 · 269 阅读 · 0 评论