Blame view

buildroot/buildroot-2016.08.1/board/congatec/qmx6/readme.txt 1.23 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
  This is the minimal buildroot support for the Congatec QMX6 Qseven CoM
  
  conga-QMX6 is based on the freescale iMX6 SoC. For more information please
  have a look at http://www.congatec.com/products/qseven/conga-qmx6.html
  
  The configuration is based on the currently latest kernel release from
  Congatec's git repository which is based on 3.0.35. The bootloader u-boot
  is preconfigured on the CPU module and does not need to be replaced.
  
  To build the default configuration you only have to:
  
  	make qmx6_defconfig && make
  
  You will need a microSD card of sufficient size and the first or only
  partition configured as Linux type.
  
  To transfer the system to the card do:
  
  	$ sudo dd if=output/images/rootfs.ext2 of=/dev/sdX1
  
  You can optionally extend the filesystem size to the whole partition:
  
  	$ sudo resize2fs /dev/sdX1
  
  You can also update the card image without completely rewriting it:
  
  	$ sudo mount /dev/sdX1 /mnt
  	$ sudo tar xf output/images/rootfs.tar -C /mnt
  	$ sudo umount /mnt
  
  Connect a terminal program to the rs232 connector marked "CONSOLE"
  with baudrate set to 115200, insert the microSD card into the socket
  on the CPU module and power the board to watch the system boot.
  
  Booting from the SD card slot on the base board is currently not
  supported.