- 博客(65)
- 收藏
- 关注
原创 Mini2440 start.s 修改支持串口输出,方便调试 (四)
经常会遇到点板子的时候,板子没有任何反应!怎么知道板子有没有在正常启动,在uboot阶段 start.s 中加入串口打印信息是很有必要的!
2024-06-20 23:23:28
786
原创 Qemu 模拟 Mini2440 扩展SDRAM 64M 到 128M,256M(三)
MINI2440 板子的内存是由两片64M大小的SDRAM组成,所以实际内存有128M。分别连接到芯片的BANK6和BANK7。从这个图可以看出Mini2440 最大支持的SDRAM 是128M+128M,我们能不能利用 QEMU 直接给你模拟干满到 256M呢?各位看官看我的操作!
2024-06-19 00:38:43
691
原创 Qemu 模拟 Mini2440 修改uboot分区大小、增加分区并成功启动(二)
Qemu 模拟 Mini2440 修改uboot分区大小并成功启动(二)
2024-06-17 23:37:35
684
原创 如何让 uboot启动时自动执行指令?(执行“mtdparts default”命令)
如何让 uboot启动时自动执行指令?(执行“mtdparts default”命令)
2024-06-12 21:30:43
500
原创 CONFIG_BOOTCOMMAND “nboot kernel; bootm“ 如何实现开机自启动?
CONFIG_BOOTCOMMAND "nboot kernel; bootm"
2024-06-03 22:24:43
493
原创 u-boot: could not find output section .gnu.hash
u-boot: could not find output section .gnu.hash final link failed: Nonrepresentable section on output
2024-05-21 23:53:34
841
原创 有用的C 预定义的宏:__DATE__,__TIME__,__FILE__,__LINE__
有用的C 预定义的宏:__DATE__,__TIME__,__FILE__,__LINE__
2024-05-07 22:01:09
405
原创 error while loading shared libraries: libstdc++.so.6
error while loading shared libraries: libstdc++.so.6
2024-04-27 18:04:22
972
原创 qemu: fatal: RAM or ROM at 0x34000000?将编译好的 u-boot.bin 拷贝到 qemu/mini2440 的文件夹中去?
将编译好的 u-boot.bin 拷贝到 qemu/mini2440 的文件夹中去, 否则以后执行。
2024-04-25 00:08:47
247
原创 移植 rootfs_qtopia_qt4-20100816 报错 Try to bring eth0 interface up......
移植 rootfs_qtopia_qt4-20100816 报错 Try to bring eth0 interface up......
2024-04-23 22:02:57
599
原创 移植 rootfs_qtopia_qt4-20100816 报错 nfs: server 10.10.10.1 not responding, still trying
移植 rootfs_qtopia_qt4-20100816 报错 nfs: server 10.10.10.1 not responding, still trying
2024-04-23 21:58:14
281
原创 warning: could not configure /dev/net/tun: no virtual network emulationCould not initialize device
warning: could not configure /dev/net/tun: no virtual network emulationCould not initialize device 'tap'
2024-04-18 22:47:39
248
原创 s3c-i2c s3c2440-i2c: i2c-0: S3C I2C adapterAdvanced Linux Sound Architecture Driver Version 1.0.24.
目前是更换版本:arm-linux-gcc-4.9.3 --> arm-linux-gcc-4.4.3。
2024-04-16 20:01:12
395
原创 /usr/bin/ld: cannot find -lqt /usr/bin/ld: cannot find -lXext/usr/bin/ld: cannot find -lX11
办法:
2024-04-16 00:28:39
779
原创 /bin/sh: 1: arm-linux-g++: not found
/bin/sh: 1: arm-linux-g++: not found
2024-04-15 23:07:36
449
原创 Perhaps the file system was created with the wrong erase size? jffs2_scan_eraseblock(): 编译报错
Perhaps the file system was created with the wrong erase size? jffs2_scan_eraseblock(): 编译报错
2024-04-11 22:19:16
814
原创 “mkimage“ command not found - U-Boot images will not be built
"mkimage" command not found - U-Boot images will not be built
2024-04-10 23:23:18
211
原创 /usr/bin/ld: vl.o: undefined reference to symbol ‘timer_settime@@GLIBC_2.3.3‘
/usr/bin/ld: vl.o: undefined reference to symbol 'timer_settime@@GLIBC_2.3.3'
2024-04-09 23:24:26
205
原创 make[2]: texi2dvi: Command not found
make[2]: texi2dvi: Command not found
2024-04-08 23:31:50
340
原创 GIT fatal: The remote end hung up unexpectedly
GIT fatal: The remote end hung up unexpectedly
2024-04-08 21:46:34
305
原创 C/C++ kernel 文件读写 filp_open、file_write file_read
C/C++ kernel 文件读写 filp_open、file_write file_read
2023-12-28 19:05:14
441
原创 Android源码 native InputManager 与window窗体输入事件分析(完整版)
Android源码 native InputManager 与window窗体输入事件分析(完整版)
2023-10-20 18:45:48
394
1
原创 Kernel panic - not syncing: CFI failure
Kernel panic - not syncing: CFI failure
2023-09-15 16:15:23
1675
1
原创 一文明白 Android Camera2 启动、预览、拍照
https://liuhongwei.blog.youkuaiyun.com/article/details/109173826?spm=1001.2014.3001.5502
2023-09-12 15:18:15
443
转载 Android UI 对 SF Vsync注册与接收、SurfaceFlinger 对 Hwc2 Vsync接收与分发
Android UI 对 Vsync注册与接收、SurfaceFlinger 对 Vsync接收与分发
2023-08-15 19:29:21
301
转载 Android application 接受按键分发 流程分析
上面的方法主要作用就是将mClientChannel的mPtr属性赋值给outInputChannel,并将mClientChannel的mPtr赋值为NULL,这样就实现了将mClientChannel与outInputChannel互换,outInputChannel是ViewRootImpl的传递过来的mInputChannel,达到了将mClientChannel传递个应用客户端的目的。,应用端窗口处理完输入事件之后回调此方法。从java层传下来的。
2023-08-15 17:38:04
107
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人