diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-12-12 07:10:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-12-12 07:10:54 +0000 |
commit | 5eeac710ca151c7e714350839be491f564ba4488 (patch) | |
tree | e7a7b8d51c8ccf1c1efc2cbc5eb29997b5c8a874 /target/device/x86/i386/Makefile.in | |
parent | f4d23f7ead1711c89fb6626d29bc1bdfa2c57b91 (diff) |
update uClibc config settings and update installation of kernel headers
Diffstat (limited to 'target/device/x86/i386/Makefile.in')
-rw-r--r-- | target/device/x86/i386/Makefile.in | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/target/device/x86/i386/Makefile.in b/target/device/x86/i386/Makefile.in index 323391171..7a0855466 100644 --- a/target/device/x86/i386/Makefile.in +++ b/target/device/x86/i386/Makefile.in @@ -1,10 +1,33 @@ X86_I386_PATH=target/device/x86/i386 BR2_PACKAGE_BUSYBOX_CONFIG=$(X86_I386_PATH)/busybox.config -UCLIBC_CONFIG_FILE=$(X86_I386_PATH)/uClibc.config.$(ARCH) +UCLIBC_CONFIG_FILE=$(TOOL_BUILD_DIR)/uClibc.config.$(ARCH) #TARGET_SKELETON=$(X86_I386_PATH)/skel.tar.gz #TARGET_SKEL_DIR=$(X86_I386_PATH)/target_skeleton #TARGET_DEVICE_TABLE=$(X86_I386_PATH)/device_table.txt TARGETS+=linux + +uclibc_config_file_prep:: + cp toolchain/uClibc/uClibc-$(UCLIBC_VER).config $(UCLIBC_CONFIG_FILE) + /bin/echo "ARCH_LITTLE_ENDIAN=y" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# ARCH_BIG_ENDIAN is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_GENERIC_386 is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_386 is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_486 is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "CONFIG_586=y" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_586MMX is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_686 is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_PENTIUMII is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_PENTIUMIII is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_PENTIUM4 is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_K6 is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_K7 is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_ELAN is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_CRUSOE is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_WINCHIPC6 is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_WINCHIP2 is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_CYRIXIII is not set" >> $(UCLIBC_CONFIG_FILE) + /bin/echo "# CONFIG_NEHEMIAH is not set" >> $(UCLIBC_CONFIG_FILE) + |