Below is the layout for sd card booting. Remember to use dd if=spl/sunxi-spl.bin of=/dev/sdX bs=1024 seek=8 ; dd if=u-boot.bin of=/dev/sdX bs=1024 seek=32 to flash spl & u-boot into sd card sector start size  0    0   8KB   Unused, available for partition table etc.  16   8   32KB  Initial SPL loader  80   […]

Read More →

@itemx must follow @item error diff –git a/toolchain/gcc/gcc-uclibc-4.x.mk b/toolchain/gcc/gcc-uclibc-4.x.mk index 1b7f222..9d131d5 100644 — a/toolchain/gcc/gcc-uclibc-4.x.mk +++ b/toolchain/gcc/gcc-uclibc-4.x.mk @@ -254,6 +254,7 @@ $(GCC_BUILD_DIR1)/.configured: $(GCC_DIR)/.patched mkdir -p $(GCC_BUILD_DIR1) (cd $(GCC_BUILD_DIR1); rm -rf config.cache; \ $(HOST_CONFIGURE_OPTS) \ + MAKEINFO=missing \ $(GCC_DIR)/configure $(QUIET) \ –prefix=$(HOST_DIR)/usr \ –build=$(GNU_HOST_NAME) \ @@ -324,6 +325,7 @@ $(GCC_BUILD_DIR2)/.configured: $(GCC_DIR)/.patched mkdir -p $(GCC_BUILD_DIR2) (cd $(GCC_BUILD_DIR2); rm […]

Read More →

When compile autoconf-2.65 , I encounter the following error conftest.c:14625: must be after `@defmac’ to use `@defmacx’ After check by “google” search, the following modification can fix this issue — autoconf-2.65/doc/autoconf.texi 2009-11-05 10:42:15.000000000 +0800 +++ autoconf-2.65/doc/autoconf.texi.new 2013-05-28 05:41:09.243770263 +0800 @@ -15,7 +15,7 @@ @c The ARG is an optional argument. To be used for macro […]

Read More →