summaryrefslogtreecommitdiff
path: root/target
AgeCommit message (Collapse)Author
2007-07-17Add AT91 targetsUlf Samuelsson
2007-07-17A number of fixes including placing of the final image into the 'binaries' ↵"Steven J. Hill"
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-14Correct JFFS2 Erase Size for AT45 dataflashUlf Samuelsson
2007-07-12Make Config.in targets for ARM chips look consistentUlf Samuelsson
2007-07-12 BSP Patch:Ulf Samuelsson
========================================================= 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-11Configure linux within target/linux/Config.in instead of within ↵Ulf Samuelsson
target/device/Config.in
2007-07-11Configure linux within target/linux/Config.in instead of within ↵Ulf Samuelsson
target/device/Config.in
2007-07-11Build linux within target/linux/Makefile.in instead of within target/linux26.mkUlf Samuelsson
2007-07-08- add pxelinuxBernhard Reutner-Fischer
2007-07-08- apply settings for initramfsBernhard Reutner-Fischer
2007-07-08- provide option to build an initramfs out of the current rootfs. Closes #881Bernhard Reutner-Fischer
2007-07-08- update defaultsBernhard Reutner-Fischer
2007-07-08- iso9660 target does not build target kernel due to missing dependency. ↵Bernhard Reutner-Fischer
Closes #1194
2007-06-27- stub for grub2. Needs to be fixed upstream first.Bernhard Reutner-Fischer
2007-06-26- filter out eventual -fPIC -fpic -DPIC flags from the target cflagsBernhard Reutner-Fischer
Honor the .config setting for KCONFIG and FORMAT iff not imposed by the target/device. If they are not set in the config, the defaults (zImage etc) still apply.
2007-06-22- LINUX26_BINLOC is always defined in target/device/mips/Makefile.in, even ↵Bernhard Reutner-Fischer
for non-mips Thanks to Julien Letessier for spotting my omission
2007-06-22- add a sample (pseudo-)board for a mips malta boxBernhard Reutner-Fischer
2007-06-21- bump version to 2.6.21.5Bernhard Reutner-Fischer
2007-06-16Get rid of extra directory entry in JFFS2 and add wildcarding for usbmount ↵"Steven J. Hill"
patches.
2007-06-16Get rid of extra directory entries."Steven J. Hill"
2007-06-12Use BR2_ENDIAN for big/little endianness detectionPeter Korsgaard
2007-06-07- hide atmel target if arch is not arm nor avr32Bernhard Reutner-Fischer
2007-06-06- fix typo which led to a superfluous cp invocationBernhard Reutner-Fischer
2007-06-02- update configBernhard Reutner-Fischer
2007-05-15- bump patch versionBernhard Reutner-Fischer
2007-05-03s/FAKEROUTE/FAKEROOT/Peter Korsgaard
2007-04-17- strip eventual quotesBernhard Reutner-Fischer
2007-04-11- store BR2_PACKAGE_LINUX_KCONFIG and BR2_PACKAGE_LINUX_FORMAT in .configBernhard Reutner-Fischer
- adjust a few defaults.
2007-04-06- make sure to download fakeroot if neededBernhard Reutner-Fischer
2007-03-26- add option to create a jffs2 filesystem in srec format. Thanks to Xride.Bernhard Reutner-Fischer
2007-03-22- add a question for anderseeBernhard Reutner-Fischer
2007-03-20- make it work with MacOSX. Closes #1252Bernhard Reutner-Fischer
2007-03-20- use numeric values for the superuser to be more portable.Bernhard Reutner-Fischer
Closes #1250
2007-03-20- bump version. Closes #1225Bernhard Reutner-Fischer
2007-03-20- disable compile-broken EDAC_I82875P driverBernhard Reutner-Fischer
2007-03-19- pin LINUX_VERSION. Closes #1277Bernhard Reutner-Fischer
2007-03-18- note which kernel-headers are required.Bernhard Reutner-Fischer
PS: kernel-headers-old.mk would need to provide stuff for downloading the full version, in case anybody would care about such ancient stuff..
2007-03-14- turn off some broken modulesBernhard Reutner-Fischer
2007-03-14- update sample config a bitBernhard Reutner-Fischer
2007-03-09- add homedirBernhard Reutner-Fischer
2007-02-16- add skeleton to use busybox and mdev for a rather small skeletonBernhard Reutner-Fischer
2007-02-15- do not use TARGET_DEVICE_TABLE if is is emptyBernhard Reutner-Fischer
2007-02-15- preparation for BR2_PACKAGE_BUSYBOX_SKELETONBernhard Reutner-Fischer
"Use a minimal target skeleton for use with busybox's mdev et al"
2007-02-15- set some kernel related variables for use by packagesBernhard Reutner-Fischer
2007-02-15- allow to run linux26-menuconfig and uclibc-menuconfig in a pristine checkoutBernhard Reutner-Fischer
2007-02-12- revert incorrect parts from sjhill's r17800 and add some more documentation.Bernhard Reutner-Fischer
Now the kernel as well as /lib/modules are properly included in the final tarball and all other tarroot/genfs targets.
2007-02-10- add an arm integrator 926 thing qemu can deal withBernhard Reutner-Fischer
2007-02-07- bump patch version. Thanks to Alexander Rigbo for pointing this out.Bernhard Reutner-Fischer
2007-02-06Support building using an external toolchain. Questions to the mailing list ↵"Steven J. Hill"
and all other comments to <biteme@devnull.com>.
2007-02-04- avoid spurious rebuilds. Thanks to janlana, closes #1191Bernhard Reutner-Fischer
- provide a syslinux-source target while at it