Uboot
文章平均质量分 54
hushui
Coding Since 1998
展开
-
dd/skip(input file)/seek(outputfile) 参数计算/十六进制等
:skip=xxx是在备份时对if 后面的部分也就是原文件跳过多少块再开始备份;seek=xxx则是在备份时对of 后面的部分也就是目标文件跳过多少块再开始写。Example:u-boot_params.bin is saved in MMC offset 40960, size 153600dump itroot@localhost:/tmp# dd if=/dev/mmcblk0 of=./u-boot_params.bin bs=1 skip=40960 count=15360...原创 2022-05-14 17:32:37 · 660 阅读 · 0 评论 -
systemd
1. list service 列出正在运行的 Unit$ systemctl list-units# 列出所有Unit,包括没有找到配置文件的或者启动失败的$ systemctl list-units --all# 列出所有没有运行的 Unit$ systemctl list-units --all --state=inactive# 列出所有加载失败的 Unit$ systemctl list-units --failed# 列出所有正在运行的、类型为 service 的.原创 2020-12-04 14:46:41 · 230 阅读 · 0 评论 -
systemctl/journalctl Ubuntu
To make this the default, usesudo systemctl set-default multi-user.targetTo return to default booting into X, usesudo systemctl set-default graphical.targetTo see the current default target,sudo systemctl get-default原创 2020-07-24 14:31:56 · 485 阅读 · 0 评论 -
Uboot--Tiny4412 FriendlyARM 4412 EVM
Patch https://download.csdn.net/download/djylm/10780695 export PATH=/home/lake/opt/arm-2014.05/bin:$PATHlake@lake-Latitude-5491:~/opt/Tiny4412$ tar zxf uboot_tiny4412-20130729.tgz lak...原创 2019-02-02 22:25:41 · 365 阅读 · 0 评论 -
Uboot/Exynos4412 Bare programming 裸机开发-loadb/dnw
U-Boot 2010.12-00000-g14efcbd (Mar 02 2019 - 13:54:51) for TINY4412CPU: S5PC220 [Samsung SOC on SMP Platform Base on ARM CortexA9] APLL = 1500MHz, MPLL = 800MHzBoard: TINY4412DRAM: ...原创 2019-03-02 21:45:41 · 559 阅读 · 0 评论