diff -ruN --exclude '*.o' --exclude='*.map' --exclude '*~' --exclude '*-orig' --exclude=.depend --exclude=configx.mk --exclude='*.srec' --exclude='*.a' u-boot-0.4.0/Makefile u-boot/Makefile --- u-boot-0.4.0/Makefile 2003-06-26 15:04:09.000000000 -0700 +++ u-boot/Makefile 2003-07-11 22:40:37.000000000 -0700 @@ -118,7 +118,7 @@ ######################################################################### -all: u-boot.srec u-boot.bin System.map +all: configx.mk u-boot.srec u-boot.bin System.map install: all -cp u-boot.bin /tftpboot/u-boot.bin @@ -157,6 +157,10 @@ grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ sort > System.map +.PHONY: configx.mk +configx.mk: + @./mkconfigx + ######################################################################### else all install u-boot u-boot.srec depend dep: @@ -167,7 +171,7 @@ ######################################################################### unconfig: - rm -f include/config.h include/config.mk + rm -f include/config.h include/config.mk configx.mk #======================================================================== # PowerPC diff -ruN --exclude '*.o' --exclude='*.map' --exclude '*~' --exclude '*-orig' --exclude=.depend --exclude=configx.mk --exclude='*.srec' --exclude='*.a' u-boot-0.4.0/mkconfigx u-boot/mkconfigx --- u-boot-0.4.0/mkconfigx 1969-12-31 16:00:00.000000000 -0800 +++ u-boot/mkconfigx 2003-08-06 17:30:43.000000000 -0700 @@ -0,0 +1,48 @@ +#!/bin/sh +# +# mkconfigx +# +# Copyright (c) 2003 +# Marc Singer +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# +# Generate a configuration file to control building +# (compiling/linking). The output may be included in Makefiles to +# select which source files to compile and link. +# +# Here, we select configuration entries of the form: +# +# #define CONFIG_XXX 1 +# +# where XXX is an enabled configuration option. +# +# + +CONFIG=configx.mk + +echo > $CONFIG +echo "# Automatically generated - do not edit" >> $CONFIG +echo >> $CONFIG + +echo '#include "include/config.h"' | ${CPP:=cpp -E} -Iinclude -dM -\ + | ${GREP:=grep} -E "define[ \t]+CONFIG_[^ \t]*[ \t]+1$"\ + | ${SED:=sed} -e "s/.*\(CONFIG_[^ \t]*\).*/\1=y/"\ + | ${SORT:=sort}\ + >> $CONFIG