Difference between revisions of "A13-OLinuXino"

(Software)
Line 7: Line 7:
  
 
== Software ==
 
== Software ==
Under construction
+
 
 +
Building uboot:
 +
 
 +
$ git clone https://github.com/hno/uboot-allwinner.git
 +
 
 +
$ cd uboot-allwinner
 +
 
 +
$ make sun5i CROSS_COMPILE=arm-linux-gnueabi-
 +
 
 +
assuming your SD card is on sdc:
 +
 
 +
$ dd if=spl/sunxi-spl.bin of=/dev/sdc bs=1024 seek=8
 +
 
 +
$ dd if=u-boot.bin of=/dev/sdc bs=1024 seek=32
 +
 
 +
Building Linux:
 +
 
 +
$ git clone https://github.com/amery/linux-allwinner.git
 +
 
 +
$ cd linux-allwinner
 +
 
 +
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- sun5i_defconfig
 +
 
 +
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- -j16 uImage modules
 +
 
 +
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- INSTALL_MOD_PATH=output modules_install
  
 
== Projects ==
 
== Projects ==

Revision as of 06:40, 3 October 2012

Documents

Under construction

Hardware

Under construction

Software

Building uboot:

$ git clone https://github.com/hno/uboot-allwinner.git

$ cd uboot-allwinner

$ make sun5i CROSS_COMPILE=arm-linux-gnueabi-

assuming your SD card is on sdc:

$ dd if=spl/sunxi-spl.bin of=/dev/sdc bs=1024 seek=8

$ dd if=u-boot.bin of=/dev/sdc bs=1024 seek=32

Building Linux:

$ git clone https://github.com/amery/linux-allwinner.git

$ cd linux-allwinner

$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- sun5i_defconfig

$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- -j16 uImage modules

$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- INSTALL_MOD_PATH=output modules_install

Projects

Under construction

FAQ

Under construction