diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-09 21:20:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-09 21:20:12 +0000 |
commit | ec8e01283579aeee5a497fc05445bf2fe02faf67 (patch) | |
tree | f06dc4932d532037af4f12b51607b3f8203a09b0 | |
parent | 278810348aa565008867ed07d7737653fe68f91d (diff) | |
download | uClibc-alpine-ec8e01283579aeee5a497fc05445bf2fe02faf67.tar.bz2 uClibc-alpine-ec8e01283579aeee5a497fc05445bf2fe02faf67.tar.xz |
Recommend making symlinks, not copying the config file.
-Erik
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | README | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -38,7 +38,8 @@ all: headers uClibc_config.h subdirs shared done Config: @echo @echo "You didn't read the README, did you... =)" - @echo "Choose a configuration file in extras/Config/ and copy it to ./Config" + @echo "Choose a configuration file in extras/Config/ and then run" + @echo " ln -s ./extra/Configs/Config.<arch> ./Config" @echo @exit 1 @@ -1,7 +1,7 @@ * Configuration: - cp ./extra/Configs/Config.<target arch> ./Config + ln -s ./extra/Configs/Config.<arch> ./Config Then edit ./Config for your setup. In particular, modify CROSS and KERNEL_SOURCE as necessary. You may also want to modify |