Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot:  toolchain/uClibc
@ 2006-07-18 16:43 andersen
  0 siblings, 0 replies; 4+ messages in thread
From: andersen @ 2006-07-18 16:43 UTC (permalink / raw)
  To: buildroot

Author: andersen
Date: 2006-07-18 16:43:58 -0700 (Tue, 18 Jul 2006)
New Revision: 15722

Log:
configuring uClibc depends on first having kernel headers in place


Modified:
   trunk/buildroot/Makefile
   trunk/buildroot/toolchain/uClibc/uclibc.mk


Changeset:
Modified: trunk/buildroot/Makefile
===================================================================
--- trunk/buildroot/Makefile	2006-07-18 23:42:03 UTC (rev 15721)
+++ trunk/buildroot/Makefile	2006-07-18 23:43:58 UTC (rev 15722)
@@ -43,7 +43,7 @@
 # along with the packages to build for the target.
 #
 ##############################################################
-TARGETS:=kernel-headers uclibc-configured binutils gcc uclibc-target-utils
+TARGETS:=uclibc-configured binutils gcc uclibc-target-utils
 include toolchain/Makefile.in
 include package/Makefile.in
 

Modified: trunk/buildroot/toolchain/uClibc/uclibc.mk
===================================================================
--- trunk/buildroot/toolchain/uClibc/uclibc.mk	2006-07-18 23:42:03 UTC (rev 15721)
+++ trunk/buildroot/toolchain/uClibc/uclibc.mk	2006-07-18 23:43:58 UTC (rev 15722)
@@ -68,7 +68,7 @@
 	touch $(UCLIBC_DIR)/.unpacked
 
 uclibc-configured: $(UCLIBC_DIR)/.configured
-$(UCLIBC_DIR)/.configured: dependencies $(UCLIBC_DIR)/.unpacked
+$(UCLIBC_DIR)/.configured: dependencies kernel-headers $(UCLIBC_DIR)/.unpacked
 	cp $(UCLIBC_CONFIG_FILE) $(UCLIBC_DIR)/.config
 	$(SED) 's,^CROSS_COMPILER_PREFIX=.*,CROSS_COMPILER_PREFIX="$(TARGET_CROSS)",g' \
 		-e 's,# TARGET_$(UCLIBC_TARGET_ARCH) is not set,TARGET_$(UCLIBC_TARGET_ARCH)=y,g' \

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] svn commit: trunk/buildroot:  toolchain/uClibc
@ 2007-07-27 15:10 aldot at uclibc.org
  0 siblings, 0 replies; 4+ messages in thread
From: aldot at uclibc.org @ 2007-07-27 15:10 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-07-27 08:10:45 -0700 (Fri, 27 Jul 2007)
New Revision: 19283

Log:
- put dependency checking right to the start where any later stages can rely on the being ok.


Modified:
   trunk/buildroot/Makefile
   trunk/buildroot/toolchain/uClibc/uclibc.mk


Changeset:
Modified: trunk/buildroot/Makefile
===================================================================
--- trunk/buildroot/Makefile	2007-07-27 15:06:25 UTC (rev 19282)
+++ trunk/buildroot/Makefile	2007-07-27 15:10:45 UTC (rev 19283)
@@ -213,7 +213,7 @@
 dirs: $(DL_DIR) $(TOOL_BUILD_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
 	$(BINARIES_DIR) $(PROJECT_BUILD_DIR)
 $(BASE_TARGETS): dirs
-world: dirs target-host-info $(TARGETS)
+world: dependencies dirs target-host-info $(TARGETS)
 
 
 .PHONY: all world dirs clean dirclean distclean source target-host-info \

Modified: trunk/buildroot/toolchain/uClibc/uclibc.mk
===================================================================
--- trunk/buildroot/toolchain/uClibc/uclibc.mk	2007-07-27 15:06:25 UTC (rev 19282)
+++ trunk/buildroot/toolchain/uClibc/uclibc.mk	2007-07-27 15:10:45 UTC (rev 19283)
@@ -359,7 +359,7 @@
 UCLIBC_TARGETS=$(TARGET_DIR)/lib/libc.so.0
 endif
 
-uclibc-configured: dependencies kernel-headers $(UCLIBC_DIR)/.configured
+uclibc-configured: kernel-headers $(UCLIBC_DIR)/.configured
 
 
 uclibc: $(STAGING_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)-gcc $(STAGING_DIR)/usr/lib/libc.a $(UCLIBC_TARGETS)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] svn commit: trunk/buildroot:  toolchain/uClibc
@ 2007-08-13 20:22 ulf at uclibc.org
  0 siblings, 0 replies; 4+ messages in thread
From: ulf at uclibc.org @ 2007-08-13 20:22 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2007-08-13 13:22:17 -0700 (Mon, 13 Aug 2007)
New Revision: 19494

Log:
Stop halting ARM build to configure uClibc

Modified:
   trunk/buildroot/Config.in
   trunk/buildroot/toolchain/uClibc/uClibc-0.9.29.config


Changeset:
Modified: trunk/buildroot/Config.in
===================================================================
--- trunk/buildroot/Config.in	2007-08-13 20:18:25 UTC (rev 19493)
+++ trunk/buildroot/Config.in	2007-08-13 20:22:17 UTC (rev 19494)
@@ -65,6 +65,8 @@
 
 config BR2_generic_arm
 	bool "generic_arm"
+config BR2_arm7tdmi
+	bool "arm7tdmi"
 config BR2_arm610
 	bool "arm610"
 config BR2_arm710
@@ -77,6 +79,8 @@
 	bool "arm922t"
 config BR2_arm926t
 	bool "arm926t"
+config BR2_arm10t
+	bool "arm10t"
 config BR2_arm1136jf_s
 	bool "arm1136jf_s"
 config BR2_arm1176jz_s
@@ -95,12 +99,15 @@
 
 config BR2_ARM_TYPE
 	string
+	default GENERIC_ARM	if BR2_generic_arm
 	default ARM610		if BR2_arm610
 	default ARM710		if BR2_arm710
+	default ARM7TDMI	if BR2_arm7tdmi
 	default ARM720T		if BR2_arm720t
 	default ARM920T		if BR2_arm920t
 	default ARM922T		if BR2_arm922t
 	default ARM926T		if BR2_arm926t
+	default ARM10T		if BR2_arm10t
 	default ARM1136JF_S 	if BR2_arm1136jf_s
 	default ARM1176JZ_S	if BR2_arm1176jz_s
 	default ARM1176JZF_S	if BR2_arm1176jzf_s
@@ -108,7 +115,6 @@
 	default ARM_SA1100	if BR2_sa1100
 	default ARM_XSCALE	if BR2_xscale
 	default ARM_IWMMXT	if BR2_iwmmxt
-	default GENERIC_ARM	if BR2_generic_arm
 
 choice
 	prompt "Target ABI"

Modified: trunk/buildroot/toolchain/uClibc/uClibc-0.9.29.config
===================================================================
--- trunk/buildroot/toolchain/uClibc/uClibc-0.9.29.config	2007-08-13 20:18:25 UTC (rev 19493)
+++ trunk/buildroot/toolchain/uClibc/uClibc-0.9.29.config	2007-08-13 20:22:17 UTC (rev 19494)
@@ -210,6 +210,8 @@
 # CONFIG_ARM926T is not set
 # CONFIG_ARM10T is not set
 # CONFIG_ARM1136JF_S is not set
+# CONFIG_ARM1176JZ_S is not set
+# CONFIG_ARM1176JZF_S is not set
 # CONFIG_ARM_SA110 is not set
 # CONFIG_ARM_SA1100 is not set
 # CONFIG_ARM_XSCALE is not set

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] svn commit: trunk/buildroot:  toolchain/uClibc
@ 2007-09-17 12:49 ulf at uclibc.org
  0 siblings, 0 replies; 4+ messages in thread
From: ulf at uclibc.org @ 2007-09-17 12:49 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2007-09-17 05:49:46 -0700 (Mon, 17 Sep 2007)
New Revision: 19871

Log:
Remove some debug info + add uclibc-target-utils-source target

Modified:
   trunk/buildroot/Makefile
   trunk/buildroot/toolchain/uClibc/uclibc.mk


Changeset:
Modified: trunk/buildroot/Makefile
===================================================================
--- trunk/buildroot/Makefile	2007-09-17 12:43:40 UTC (rev 19870)
+++ trunk/buildroot/Makefile	2007-09-17 12:49:46 UTC (rev 19871)
@@ -430,12 +430,4 @@
 
 .PHONY: dummy subdirs release distclean clean config oldconfig \
 	menuconfig tags check test depend defconfig help
-
-
-dbg:
-	echo BASE_TARGETS_SOURCE=$(BASE_TARGETS_SOURCE)
-	echo BASE_TARGETS=$(BASE_TARGETS)
-	echo TARGETS_SOURCE=$(TARGETS_SOURCE)
-	echo TARGETS=$(TARGETS)
-
-bsource:	
+	

Modified: trunk/buildroot/toolchain/uClibc/uclibc.mk
===================================================================
--- trunk/buildroot/toolchain/uClibc/uclibc.mk	2007-09-17 12:43:40 UTC (rev 19870)
+++ trunk/buildroot/toolchain/uClibc/uclibc.mk	2007-09-17 12:49:46 UTC (rev 19871)
@@ -459,6 +459,8 @@
 
 uclibc-target-utils: $(TARGET_DIR)/usr/bin/ldd
 
+uclibc-target-utils-source: $(DL_DIR)/$(UCLIBC_SOURCE)
+
 #############################################################
 #
 # uClibc for the target just needs its header files

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-09-17 12:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-17 12:49 [Buildroot] svn commit: trunk/buildroot: toolchain/uClibc ulf at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2007-08-13 20:22 ulf at uclibc.org
2007-07-27 15:10 aldot at uclibc.org
2006-07-18 16:43 andersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox