Blame view

buildroot/buildroot-2016.08.1/board/cubietech/cubieboard/readme.txt 1.33 KB
6b13f685e   김민수   BSP 최초 추가
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
  cubieboard and cubieboard2
  
  -----
  Intro
  -----
  
  To be able to use your cubieboard board with the images generated by
  Buildroot you have to correctly setup the SD card.
  
  For more information, please see http://linux-sunxi.org/FirstSteps
  
  ---------------
  How to build it
  ---------------
  
  You need to use the cubieboard_defconfig or cubieboard2_defconfig, to do so:
   * make cubieboard_defconfig
  or
   * make cubieboard2_defconfig
  
  And to compile:
   * make
  
  -----------------
  What is generated
  -----------------
  
  After building, you should obtain this tree:
  
      output/images/
      +-- rootfs.tar
      +-- boot.scr
      +-- script.bin
      +-- sunxi-spl.bin
      +-- u-boot.bin
      +-- u-boot-sunxi-with-spl.bin (optional)
      `-- uImage
  
  --------------------------
  How setting up the SD card
  --------------------------
  
  Depending on the rootfs size, you might want to use a 2GB or larger SD-card.
  The script mkcubiecard.sh will take care of partitioning and formatting
  the SD-card.
  
  BEWARE! This process will erase your SD card.
  
  Use dmesg to find out where the SD card is attached in the /dev tree
  (<device>) and then:
  
  # sudo ./mkcubiecard.sh <images_dir> <device>
  
  where:
   - <images_dir> is the directory containing the generated files (usually
     output/images)
   - <device> is the device file of the SD card (usually /dev/sdX)
  
  
  
  --
  Carlo Caione <carlo.caione@gmail.com>