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
|
How to get started with the MinnowBoard (MAX)
=============================================
1. Build
Apply the defconfig:
$ make minnowboard_defconfig
Or, for the Minnowboard MAX board:
$ make minnowboard_max_defconfig
Add any additional packages required and build:
$ make
2. Write the SD card
The build process will create a SD card image in output/images.
Write the image to an mSD card, insert into the MinnowBoard
and power the board on.
$ dd if=output/images/sdcard.img of=/dev/mmcblk0; sync
The system starts two consoles: one on the serial port
and one on HDMI.
3. Enjoy
Additional information about this board can be found at
http://www.minnowboard.org/.
|