Commit Graph

30 Commits

Author SHA1 Message Date
Ulf Samuelsson 5459a9c5e0 Cleanup cross toolchain admin, split uclibc-menuconfig into same + uclibc-update to avoid overwriting board support file 2007-09-28 19:43:26 +00:00
Ulf Samuelsson b8f28d656b Add administration for linux,uclibc and main 2007-09-28 16:18:16 +00:00
Ulf Samuelsson 43760e1943 Allow easy update of target linux config 2007-09-26 23:21:43 +00:00
Ulf Samuelsson 6acce2cf1f Add more management to linux and buysbox packages 2007-09-26 22:12:51 +00:00
Ulf Samuelsson 7c012c0775 Use correct path to vmlinux, Fix bad SED of config 2007-09-23 09:58:47 +00:00
Bernhard Reutner-Fischer ea8b1fa6a6 - put LZMA into generic flags
- some additional cleanups while at it
2007-09-22 17:30:38 +00:00
Bernhard Reutner-Fischer ea3aa3aa28 - add a more generic "Kernel" menu instead of "Linux Options" 2007-09-22 14:53:38 +00:00
Bernhard Reutner-Fischer 1f45a7ccf4 - patch the correct dir 2007-09-18 17:10:56 +00:00
Ulf Samuelsson 157d8decab Unbreak multiple boards, add Ingo's rt patch 2007-09-12 04:06:54 +00:00
Ulf Samuelsson e99f084b2c Add unpacking + patching of linux source tree to simplify creating a new patch 2007-09-05 06:48:38 +00:00
Bernhard Reutner-Fischer 9538749582 - remove initramfs related config settings and configure them back if needed 2007-09-04 21:24:46 +00:00
Bernhard Reutner-Fischer 42450b1941 - build and use the list of the small initramfs
Overriding the use of the whole system (as does the initramfs target) is done
  on purpose.
2007-09-02 21:50:37 +00:00
Ulf Samuelsson 60eb97a42f This patch allows each project to have a private linux build.
Split build of kernel headers and kernel image into two source trees.
Kernel headers are built in $(TOOL_BUILD_DIR)
Kernel build is in $(PROJECT_BUILD_DIR)

Make sure that kernel patches are applied to the kernel tree in
$(PROJECT_BUILD_DIR)
Add board specific patches, if available.
2007-08-24 05:36:46 +00:00
Bernhard Reutner-Fischer 6547bced93 - global whitespace trimming 2007-08-22 12:35:41 +00:00
Bernhard Reutner-Fischer 3471ebe0a3 - random whitespace cleanup 2007-08-22 11:47:22 +00:00
Bernhard Reutner-Fischer aa81a06508 - improve the way host prerequisites for "dependencies" are established 2007-08-22 09:22:07 +00:00
Bernhard Reutner-Fischer e99518277a - add handling of lzma for the host (unconditionally for now)
- remove non-working attempt to install an lzma to the host via sudo
2007-08-21 15:33:33 +00:00
Bernhard Reutner-Fischer d1ffa06a09 - propagate IPv6 setting down to the kernel 2007-08-21 13:21:44 +00:00
Ulf Samuelsson ccd99b0e57 Remove target specific things from Linux config 2007-08-19 22:30:47 +00:00
Ulf Samuelsson 979718c8d9 Fix bad parameter list for patching linux kernel 2007-08-19 22:28:51 +00:00
Ulf Samuelsson 0a9af49e0b Ensure lzma is built *before* linux, allow system installation in /usr/local/bin 2007-08-16 18:17:39 +00:00
Ulf Samuelsson 3fdcb01579 Allow user configurable kernel name 2007-08-01 11:52:15 +00:00
Bernhard Reutner-Fischer 170300e045 - revert a part that was introduced with the PROJECT changes.
fixes unability to build a kernel (failed to find rule .patched)
2007-07-23 14:43:40 +00:00
Ulf Samuelsson fd9db1bd81 Add option for advanced linux configuration (experimental, only visible for Atmel targets) 2007-07-20 07:43:21 +00:00
"Steven J. Hill" 62b5ae4b66 Fix INITRAMFS target that was broken. Get rid of config stuff out of the top-level directory. Finally fix Linux kernel module building such that modules are built and installed first followed by rest of packages. This allows for packages to build external Linux kernel modules. 2007-07-18 18:07:19 +00:00
"Steven J. Hill" 1bb1d9f396 Add 'linux26-modules' target to allow external drivers to be built with the kernel. Also, remove 'boot' directory before creating INITRAMFS. 2007-07-17 13:28:31 +00:00
"Steven J. Hill" c5180589da A number of fixes including placing of the final image into the 'binaries' directory. Moved INITRAMFS_TARGET to the correct location as modules from the built kernel were not being installed until after the INITRAMFS had been built. Fixed config options for INITRAMFS to be correct and cleaned up whitespace/tab issues. 2007-07-17 00:20:32 +00:00
Ulf Samuelsson 412ca2a4d4 BSP Patch:
=========================================================
	The purpose of the BSP patch is to allow building
	several boards inside the same buildroot tree.
	For this to work, each board has to have its
	own "$(TARGET_DIR)" and all *configurable* packages
	must be rebuilt for each board.
	They are now built in the "$(PROJECT_BUILD_DIR)"
	All non configurable packages can and should still
	be built in the "$(BUILD_DIR)".
	If a package is built for one board, then when
	you build for a second board of the same architecture
	the build becomes a simple copy of the resulting
	binaries.

	-----
	Define BR2_PROJECT which will be used as the selector
	between different boards. Note that BR2_PROJECT allow
	you to build multiple root file systems for a single 
	board, and should not be confused with BR2_BOARD_NAME
	which relates to the H/W.

	-----
	Define PROJECT_BUILD_DIR as 	"PROJECT_BUILD_DIR/$(PROJECT)"
	Define BINARIES_DIR as 		"binaries/$(PROJECT)"
	Define TARGET_DIR as		"$(PROJECT_BUILD_DIR)/root"
	(some prefix/postfix may apply)

	Resulting images are stored in	"$(BINARIES_DIR)"

	-----
	Define a few new environment variables in Makefile

	PROJECT:	Stripped BR2_PROJECT
	DATE:		Date of build in YYYY-MM-DD format
	HOSTNAME:	Stripped BR2_HOSTNAME	=> /etc/hostname
	BANNER:		Stripped BR2_BANNER	=> /etc/issue

	Linux and Busybox will be built in $(PROJECT_BUILD_DIR)
	More patches will be needed later to ensure all
	configurable packages are built in this directory.
2007-07-12 13:11:03 +00:00
Ulf Samuelsson c0c804da6e Configure linux within target/linux/Config.in instead of within target/device/Config.in 2007-07-11 14:42:32 +00:00
Ulf Samuelsson 0e5715a9d7 Build linux within target/linux/Makefile.in instead of within target/linux26.mk 2007-07-11 14:34:55 +00:00