diff --git a/README b/README index 13bee9a..b08298f 100644 --- a/README +++ b/README @@ -1,6 +1,10 @@ git clone git://github.com/RobertCNelson/netinstall.git cd netinstall sudo ./mk_mmc.sh --mmc /dev/sdX --uboot --distro --firmware +or +sudo ./mk_mmc.sh --mmc /dev/sdX --dtb --distro --firmware + +To List all Options: use: sudo ./mk_mmc.sh --mmc /dev/sdX --dtb all Bugs email: "bugs at rcn-ee.com" diff --git a/hwpack/docs.txt b/hwpack/docs.txt new file mode 100644 index 0000000..646d284 --- /dev/null +++ b/hwpack/docs.txt @@ -0,0 +1,32 @@ +So, the plan for .conf.. Ignore [] seperaters when creating your own *.conf... + +[(1) Use the *.dts name, for the file name, and --dtb call...] +[For the Beagle xM in v3.7: omap3-beagle-xm.dts, so file will be "omap3-beagle-xm.conf"] + +#!/bin/bash +#Reference: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=tree;f=arch/arm/boot/dts;hb=refs/tags/v3.7 +# --dtb omap3-beagle-xm (BeagleBoard xM:supported) + +[(2) Bootloader] +[FIXME: website address, should be defined as a variable...] +[For the xM: http://rcn-ee.net/deb/tools/latest/bootloader-ng ] +[format of file:] +[ABI2:BEAGLEBOARD_XM:SPL http://rcn-ee.net/deb/tools/beagleboard/MLO-beagleboard-v2012.10-r1] +[ABI2:BEAGLEBOARD_XM:BOOT http://rcn-ee.net/deb/tools/beagleboard/u-boot-beagleboard-v2012.10-r1.img] + +#Bootloader: http://rcn-ee.net/deb/tools/latest/bootloader-ng +board="BEAGLEBOARD_XM" + +[(3) Partition Setup] +[omap and a mainline u-boot] + +bootloader_location="fatfs_boot" +boot_partition_size="64" +spl_name="MLO" +boot_name="u-boot.img" + +boot_image="bootz" +boot_script="uEnv.txt" +boot_fstype="fat" + +[more to come...]