aboutsummaryrefslogtreecommitdiffstats
path: root/uart-monitor/mkconfig
diff options
context:
space:
mode:
authorH. Nikolaus Schaller <hns@goldelico.com>2012-04-20 14:13:13 +0200
committerH. Nikolaus Schaller <hns@goldelico.com>2012-04-20 14:13:13 +0200
commit8a096e250cd4eafa42cc44ec40a4f76d336f8616 (patch)
treeeb78d44f840c4d31f2883f0c35b71b89d0ee47e7 /uart-monitor/mkconfig
parent819e36b8ceadb1d67db1ffe91b99c5282bfc6159 (diff)
downloadbootable_bootloader_goldelico_gta04_x-loader-8a096e250cd4eafa42cc44ec40a4f76d336f8616.zip
bootable_bootloader_goldelico_gta04_x-loader-8a096e250cd4eafa42cc44ec40a4f76d336f8616.tar.gz
bootable_bootloader_goldelico_gta04_x-loader-8a096e250cd4eafa42cc44ec40a4f76d336f8616.tar.bz2
cleaned old uart-monitor and uart-loader which have become part of x-loader
Diffstat (limited to 'uart-monitor/mkconfig')
-rwxr-xr-xuart-monitor/mkconfig61
1 files changed, 0 insertions, 61 deletions
diff --git a/uart-monitor/mkconfig b/uart-monitor/mkconfig
deleted file mode 100755
index 43b6f09..0000000
--- a/uart-monitor/mkconfig
+++ /dev/null
@@ -1,61 +0,0 @@
-#!/bin/sh -e
-
-# Script to create header files and links to configure
-# X-Loader for a specific board.
-#
-# Parameters: Target Architecture CPU Board
-#
-# (C) 2004 Texas Instruments
-# (C) 2002 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
-#
-
-APPEND=no # Default: Create new config file
-
-while [ $# -gt 0 ] ; do
- case "$1" in
- --) shift ; break ;;
- -a) shift ; APPEND=yes ;;
- *) break ;;
- esac
-done
-
-[ $# -lt 4 ] && exit 1
-[ $# -gt 5 ] && exit 1
-
-echo "Configuring for $1 board..."
-
-cd ./include
-
-#
-# Create link to architecture specific headers
-#
-rm -f asm/arch
-ln -s arch-$3 asm/arch
-
-if [ "$2" = "arm" ] ; then
- rm -f asm/proc
- ln -s proc-armv asm/proc
-fi
-
-#
-# Create include file for Make
-#
-echo "ARCH = $2" > config.mk
-echo "CPU = $3" >> config.mk
-echo "BOARD = $4" >> config.mk
-
-[ "$5" ] && echo "VENDOR = $5" >> config.mk
-
-#
-# Create board specific header file
-#
-if [ "$APPEND" = "yes" ] # Append to existing config file
-then
- echo >> config.h
-else
- > config.h # Create new config file
-fi
-echo "/* Automatically generated - do not edit */" >>config.h
-echo "#include <configs/$1.h>" >>config.h
-
-exit 0