diff options
author | Will Newton <will.newton@imgtec.com> | 2011-02-25 17:17:37 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-03-07 23:31:27 +0100 |
commit | 314ff6e54b671c4659a933ed91f99ae905ec4890 (patch) | |
tree | 6f1453160c73689379f0ade029295f7c7ad32678 /package/gnuconfig | |
parent | a13143fb2204411c8fce805df7797cdc2ccbcf31 (diff) | |
download | buildroot-novena-314ff6e54b671c4659a933ed91f99ae905ec4890.tar.gz buildroot-novena-314ff6e54b671c4659a933ed91f99ae905ec4890.zip |
gnuconfig: Update README.buildroot.
GNU config is now managed in git so we cannot use the old method
of doing a cvs up to get the latest changes.
Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gnuconfig')
-rw-r--r-- | package/gnuconfig/README.buildroot | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/package/gnuconfig/README.buildroot b/package/gnuconfig/README.buildroot index 521f120b9..fd43a68c8 100644 --- a/package/gnuconfig/README.buildroot +++ b/package/gnuconfig/README.buildroot @@ -8,8 +8,12 @@ To use, just add this to your unpack rule in the package.mk: $(CONFIG_UPDATE) $(PACKAGE_DIR)/ --- UPDATE --- -This is a CVS checkout of the config project, so just run `cvs up` -to get the latest config.sub / config.guess files. +GNU config is now managed in git, so to update: + +# git clone git://git.savannah.gnu.org/config.git +# cp config/config.* . +# for p in $(ls patches/*.patch); do patch -p0 < $p; done +# rm -rf config A few local customizations are used to support uClibc so you may have to make sure they're still needed. The patches are broken |