# Script to auto build customer release configurations of the 
# Linux kernel.
#
# Output of build is in linux-2.4.19/autobuilt_customer directory.
#
# updated Sept. 4, 2003 adt
#
# Copyright 2003 Cirrus Logic
#
function build_a_config(){
	rm -f vmlin*
	make distclean
	make "$1"_config
	make oldconfig
	make dep
	make zImage
	mkdir autobuilt_customer/"$1"
	cp vmlin* autobuilt_customer/"$1"
	ls -lah autobuilt_customer/"$1"
}

rm -rf autobuilt_customer
mkdir autobuilt_customer

build_a_config ep9301

echo "Done"
