-
Notifications
You must be signed in to change notification settings - Fork 0
/
NanoPi-NEO-u-boot.txt
68 lines (48 loc) · 2.51 KB
/
NanoPi-NEO-u-boot.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
NanoPi-NEO のu-bootについて
(1)u-boot-sunxi-with-spl.binについて
これは、MBRの役目らしい。
(イ)sdカードをfat32でフォーマット
$ sudo mkfs.vfat -v -c -F 32 /dev/sdb1
(ロ)u-boot-sunxi-with-spl.binの生成(by buildroot)
$ make menuconfig
Bootloaders
[*]U-Boot
Build system (Kconfig)
U-Boot Version (Custom tarball)
(/home/inthedark/dl/u-boot_2017.05_20170707.tar.gz) URL of custom --->https://www.mediafire.com/folder/n5o8ihvqhnf6s/
Nanopi-NEO/sourcesからダウンロード
もしくは
[*]U-Boot
Build system (Kconfig)
U-Boot Version (Custom Git repository)
(https://github.com/friendlyarm/u-boot.git) URL of custom repository
(sunxi-v2017.x) Custom repository version
(nanopi_neo) Board defconfig
[*] U-Boot needs dtc
u-Boot binary format ----> [*] Custom(specify bellow)
(u-boot-sunxi-with-spl.bin) U-boot binary format :custom names
(ハ)u-boot-sunxi-with-spl.binの書き込み
$ sudo dd if=u-boot-sunxi-with-spl.bin of=/dev/sdb bs=1024 seek=8
(2)boot.cmdの作成
setenv kernel_file zImage
setenv initrd_file rootfs.cpio.gz
setenv rootfstype ext2
setenv ramrootarg rootfstype=${rootfstype}
setenv bootargs console=${console} S{optargs} ${ramrootarg}
echo "fdt_addr_r $fdt_addr_r"
echo "rmdisk_addr_r $ramdisk_addr_r"
echo "kernel_addr_r $kernel_addr_r"
load mmc 0:1 ${fdt_addr_r} ${fdtfile}
load mmc 0:1 ${ramdisk_addr_r} ${initrd_file};setenv initrd_size ${filesize}
load mmc 0:1 ${kernel_addr_r} ${kernel_file}
bootz ${kernel_addr_r} ${ramdisk_addr_r}:${initrd_size} ${fdt_addr_r}
(3)bootcmdをu-bootが読み込める形式boot.scrに変換
mkimage -C none -A arm -T script -d boot.cmd boot.scr
(4)sdカードに転送
上記(1)(ハ)済みのsdカードに以下のファイルをコピー
boot.scr zImage rootfs.cpio.gz sun8i-h3-nanopi-neo.dtb
(5)その他の注意事項
kernel,ubootのソースコードはgithubのリポジトリからとってくることも、https://www.mediafire.com/folder/n5o8ihvqhnf6s/Nanopi-NEO/sources
からとってくることもできるが、mediafire.comの内容は更新が遅い傾向にある。