summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* remove old variablesnbd2007-02-261-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6379 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move CXXFLAGS to MAKE_VARSnbd2007-02-261-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6378 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add MAKE_VARS and MAKE_FLAGS similar to CONFIGURE_*nbd2007-02-261-6/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6377 3c298f89-4303-0410-b956-a3cf2f4a3e73
* rename PKG_CONFIGURE_PATH to CONFIGURE_PATH for consistencynbd2007-02-251-2/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6376 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move configure args to CONFIGURE_ARGS and configure variable to ↵nbd2007-02-251-13/+19
| | | | | | CONFIGURE_VARS to make it possible to modify the configure command line without overriding the default template git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6370 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix for including host.mk multiple timesnbd2007-02-251-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6369 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix stampfiles for host-buildsnbd2007-02-251-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6367 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add auto-rebuild for host builds (tested with tools/ and toolchain/)nbd2007-02-251-10/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6361 3c298f89-4303-0410-b956-a3cf2f4a3e73
* always dereference symbolic links when copying kernel modules into the ↵nbd2007-02-231-1/+1
| | | | | | packaging directory (fixes alsa build, patch from #1392) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6350 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix kernel features detection - GENERIC_PLATFORM_DIR is unset at DUMP timenbd2007-02-231-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6346 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make maxinodes configureable for ext2pavlov2007-02-221-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6345 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix a small bug in the order of the profile metadata dumpnbd2007-02-221-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6340 3c298f89-4303-0410-b956-a3cf2f4a3e73
* last commit was missing a change...nbd2007-02-221-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6339 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Reorganize kernel configs - target/linux/*/config is now a directory.nbd2007-02-221-12/+22
| | | | | | | | | | | ./config/default will replace the old config and config-diff (format is like config-diff, the full kernel config is no longer kept in the build system) This commit removes all the kernel config stuff, the next one will add the replacement - there's no way to do this atomically with svn. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6337 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make kernel_menuconfig work without target toolchainnbd2007-02-161-2/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6312 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add top-level kernel_menuconfig target to unpack and reconfigure the kernel ↵nbd2007-02-161-0/+7
| | | | | | - uses config.pl to generate target/linux/*/config and config-diff git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6310 3c298f89-4303-0410-b956-a3cf2f4a3e73
* when building a package, make sure that older versions get removednbd2007-02-161-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6303 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix multiport netfilter module installation (patch from #1280)nbd2007-02-131-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6295 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Minor kernel build changes:nbd2007-02-041-2/+3
| | | | | | | | Change '[ -d ... ] && cmd' to 'if [ -d ... ]; then cmd; fi' to avoid make errors if the condition is false If $(PLATFORM_DIR)/files exists, copy it into the kernel tree on prepare. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6263 3c298f89-4303-0410-b956-a3cf2f4a3e73
* disambiguate PKG_CONFIG_PATH, it is used for pkgconfig scripts while ↵nico2007-02-011-2/+2
| | | | | | PKG_CONFIGURE_PATH is now used for configure scripts git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6244 3c298f89-4303-0410-b956-a3cf2f4a3e73
* print package name when prereq failsmbm2007-01-311-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6236 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix colors when compiling with some newer versions of bashmbm2007-01-301-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6231 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add chaostable from #1187, also enable netfilter modules for ixp4xx.florian2007-01-221-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6182 3c298f89-4303-0410-b956-a3cf2f4a3e73
* cosmetic change: rename PKG_BUILDDEP to PKG_BUILD_DEPENDSnico2007-01-221-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6180 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix a typo in my netfilter commit - worked for iptables, didn't work for the ↵nbd2007-01-221-2/+2
| | | | | | kernel modules git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6176 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing config checks for the netfilter connmark target (fixes #1186)nbd2007-01-221-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6172 3c298f89-4303-0410-b956-a3cf2f4a3e73
* pass the CFLAGS through the environment on compile and fix a few packagesnbd2007-01-211-2/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6154 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make spca5xx depend on video device support in the kernelnbd2007-01-211-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6153 3c298f89-4303-0410-b956-a3cf2f4a3e73
* allow newlines in prereq error messagesnbd2007-01-201-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6147 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add WL-700gE support (based on work by jr)nbd2007-01-201-1/+1
| | | | | | | Includes kernel/diag patch and a new target profile git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6142 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add descriptions to the broadcom target profiles and export them to the ↵nbd2007-01-201-1/+6
| | | | | | target metadata (not presented in menuconfig yet) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6137 3c298f89-4303-0410-b956-a3cf2f4a3e73
* clean up package rebuild messagesnbd2007-01-201-7/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6134 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bring in 2.6.19.2 fixes, primarily for the fixed sata support. see ↵pavlov2007-01-181-2/+2
| | | | | | http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.19.2 for full details of the changes git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6128 3c298f89-4303-0410-b956-a3cf2f4a3e73
* include section name in the package metadatanbd2007-01-141-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6094 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add maintainer to package metadatanbd2007-01-131-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6089 3c298f89-4303-0410-b956-a3cf2f4a3e73
* merge the scripts dealing with package/target metadata to remove some ↵nbd2007-01-131-1/+1
| | | | | | redundant code git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6088 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Fix the annoying base-files autorebuild bug.nbd2007-01-121-1/+1
| | | | | | | | When checking file mtimes in directories, timestamp.pl was following symlinks. This broke on base-files, because there are symlinks to /tmp and to /proc/mounts in the build directory. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6084 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix unpacking of .zip filesnbd2007-01-111-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6083 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add initial version of the new Image Buildernbd2007-01-102-3/+25
| | | | | | | It's still a bit rough in a few places, but it seems to work for Broadcom at least - other targets untested. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6071 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade to Linux 2.4.34kaloz2007-01-051-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6000 3c298f89-4303-0410-b956-a3cf2f4a3e73
* only squash owners, not permissions, when generating ext2 imagesnico2006-12-301-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5934 3c298f89-4303-0410-b956-a3cf2f4a3e73
* store the default kernel version for our ports in a single place (target ↵nbd2006-12-252-1/+16
| | | | | | makefiles can still override it if necessary) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5899 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Also build bzImage for rdc boardsflorian2006-12-231-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5895 3c298f89-4303-0410-b956-a3cf2f4a3e73
* replace another instance of a relative path to generic-2.* with an absolute ↵nbd2006-12-201-1/+1
| | | | | | one (for symlinked target directories) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5885 3c298f89-4303-0410-b956-a3cf2f4a3e73
* some platform support path name cleanupnbd2006-12-182-2/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5846 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add a missing dependency - prevented clean rebuild after kernel upgradesnbd2006-12-181-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5845 3c298f89-4303-0410-b956-a3cf2f4a3e73
* prevent pkg-config from looking for .pc files on the host systemnico2006-12-171-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5820 3c298f89-4303-0410-b956-a3cf2f4a3e73
* A little endian arm site defaults, in case anyone wants it. ixp4xx kernel ↵rwhitby2006-12-171-0/+31
| | | | | | and rootfs at least builds with it, but is untested. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5815 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix path to generic init file when using a symlinked target support directorynbd2006-12-161-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5805 3c298f89-4303-0410-b956-a3cf2f4a3e73
* allow package directories to override the path to configurenbd2006-12-081-1/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5722 3c298f89-4303-0410-b956-a3cf2f4a3e73