summaryrefslogtreecommitdiffstats
path: root/platforms
diff options
context:
space:
mode:
authorStephan Linz <linz@li-pro.net>2010-08-05 21:06:46 +0200
committerMarc Kleine-Budde <mkl@pengutronix.de>2010-08-06 08:51:26 +0200
commit7944acdb4469dcffc695ce4a87168e53a0ff6410 (patch)
tree58421d8c2ef8d3f83da0c6109f50b6030bd09b48 /platforms
parent4bce2e527d1d8fa283d9f80d6c3178cc986bf284 (diff)
downloadptxdist-7944acdb4469dcffc695ce4a87168e53a0ff6410.tar.gz
ptxdist-7944acdb4469dcffc695ce4a87168e53a0ff6410.tar.xz
[ptxdist] add new packet x-load
x-load is a first level bootloader for Texas Intruments OMAP microprocessors (similar to the AT91Bootstrap application). This bootstrap package is required on TI OMAP boards where dataflash/nandflash or USB/RS232 is used to boot from. In any of these cases the internal bootROM of the OMAP core is used to boot the board with. Signed-off-by: Stephan Linz <linz@li-pro.net> [mkl: removed trailing newline] Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/x-load.in50
1 files changed, 50 insertions, 0 deletions
diff --git a/platforms/x-load.in b/platforms/x-load.in
new file mode 100644
index 000000000..10163079a
--- /dev/null
+++ b/platforms/x-load.in
@@ -0,0 +1,50 @@
+## SECTION=bootloader
+
+menuconfig X_LOAD
+ bool
+ depends on ARCH_ARM_OMAP
+ prompt "x-loader "
+ help
+ The X-Loader is a first level bootloader for Texas Intruments OMAP
+ microprocessors (similar to the AT91Bootstrap application). It is
+ used for booting these microprocessors from NAND-flash, MMC/SD-card,
+ USB or serial interfaces.
+
+if X_LOAD
+
+config X_LOAD_VERSION
+ string
+ default f243938
+ prompt "x-loader version"
+ help
+ Enter the X-Loader version you want to build. Usally something like "1.4.2"
+
+ NOTICE: The X-Loader source tree was never released as download archive.
+ As long as that fact exists you can use the archived tarballs at:
+
+ http://www.ptxdist.org/software/ptxdist/temporary-src/
+
+ or have to store a local tarball inside your ptxdist project root at:
+
+ ${PTXDIST_WORKSPACE}/local_src/
+
+config X_LOAD_CONFIG
+ string
+ prompt "x-loader config target"
+ help
+ The X-Loader make config target. Usually something like
+ "yourbox_config". See X-Loader's main Makefile for possible
+ configuration targets.
+
+config X_LOAD_MAKE_IFT
+ bool
+ prompt "generate signed ift file"
+ help
+ When this option is enabled, a so-called IFT file is generated. You
+ need a X-Loader source tree that supports this. This must know about
+ the make target 'ift' so ptxdist can do the following: "make ift".
+
+ In details you will need the tool signGP from
+ http://beagleboard.googlecode.com/files/signGP.c
+
+endif