Blame view

buildroot/buildroot-2016.08.1/board/pandaboard/readme.txt 1.09 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
  Pandaboard
  ==========
  
  This file documents the Buildroot support for the Pandaboard, a
  low-power, low-cost single-board computer development platform based
  on the Texas Instruments OMAP4 system on a chip (SoC).
  
  Configuring and building Buildroot
  ----------------------------------
  
  Start from the defconfig:
  
    $ make pandaboard_defconfig
  
  You can edit build options the usual way:
  
    $ make menuconfig
  
  When you are happy with the setup, run:
  
    $ make
  
  The result of the build with the default settings should be these files:
  
    output/images
    ├── MLO
    ├── omap4-panda-a4.dtb
    ├── omap4-panda.dtb
    ├── omap4-panda-es.dtb
    ├── rootfs.ext4
    ├── sdcard.img
    ├── u-boot.img
    └── zImage
  
  How to write the SD card
  ------------------------
  
  Once the build process is finished you will have an image called "sdcard.img"
  in the output/images/ directory.
  
  Copy the bootable "sdcard.img" onto an SD card with "dd":
  
    $ sudo dd if=output/images/sdcard.img of=/dev/sdX
  
  Where /dev/sdX is the device node of your SD card (may be /dev/mmcblkX
  instead depending on setup).