summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
...
* autotools.mk: let PKG_REMOVE_FILES default to aclocal.m4Jo-Philipp Wich2010-12-101-0/+1
| | | | SVN-Revision: 24458
* autotools.mk: remove autom4ate.cache directory when autoreconf-ingJo-Philipp Wich2010-12-101-0/+1
| | | | SVN-Revision: 24434
* support the autoreconf fixup without libtoolFelix Fietkau2010-12-101-0/+5
| | | | SVN-Revision: 24423
* autotools.mk: introduce PKG_REMOVE_FILES to delete certain files after ↵Jo-Philipp Wich2010-12-081-1/+3
| | | | | | applying patches and before doing any fixups SVN-Revision: 24348
* autotools.mk: remove GNUmakefile before running autoreconf (spotted libgcrypt++)Jo-Philipp Wich2010-12-081-0/+1
| | | | SVN-Revision: 24344
* autotools.mk: allow disabling autoreconf, remove libdir fixupJo-Philipp Wich2010-12-081-9/+4
| | | | SVN-Revision: 24321
* autotools.mk: allow autogen.sh / autoreconf to fail (for now)Jo-Philipp Wich2010-12-081-2/+2
| | | | SVN-Revision: 24320
* autotools.mk: if ./autogen.sh exists, call that. Call autoreconfig only if ↵Jo-Philipp Wich2010-12-081-1/+8
| | | | | | configure.in or configure.ac exists SVN-Revision: 24319
* deploy the steamroller tactics and autoreconfigure any package carring the ↵Jo-Philipp Wich2010-12-081-37/+10
| | | | | | libtool fixup, this should solve a number of issues ranging from linking into the host, syntax errors in libtool and missing make targets SVN-Revision: 24317
* re-enable the libtool PKG_BUILD_DEPENDS for PKG_FIXUP and emit a deprecation ↵Jo-Philipp Wich2010-12-041-14/+9
| | | | | | warning. Packages must specify PKG_BUILD_DEPENDS:=libtool SVN-Revision: 24246
* ensure accidentally installed *.la-files (into $STAGING_DIR) are going to be ↵Mirko Vogt2010-12-041-0/+8
| | | | | | removed afterwards - this actually should be done within respective package-Makefiles itself, however they need to stay compatible with libtool v1.5.x which is used in backfire, since it (may) require those files SVN-Revision: 24241
* disable libtool fixups in trunk globallyMirko Vogt2010-12-041-13/+14
| | | | SVN-Revision: 24234
* update to the latest stable kernelsImre Kaloz2010-11-241-6/+6
| | | | SVN-Revision: 24136
* change the recursive dependency template to use more make evaluation - the ↵Felix Fietkau2010-11-241-21/+22
| | | | | | shell command got so long that it triggered "Argument list too long" on some systems (#8231) SVN-Revision: 24131
* use PREFIX/bin instead of PREFIX/sbin for all host builds (fixes e2fsprogs path)Felix Fietkau2010-11-221-1/+2
| | | | SVN-Revision: 24103
* cleanupImre Kaloz2010-11-221-6/+1
| | | | SVN-Revision: 24090
* remove 2.6.25 supportImre Kaloz2010-11-221-8/+0
| | | | SVN-Revision: 24089
* switch from ext2 to ext4 (w/o) journalingImre Kaloz2010-11-221-6/+11
| | | | SVN-Revision: 24084
* package-ipkg.mk: add support for "essential" package flag, fix typoJo-Philipp Wich2010-11-111-1/+2
| | | | SVN-Revision: 23959
* make targets provide their KERNELNAMEFlorian Fainelli2010-11-081-9/+0
| | | | SVN-Revision: 23919
* InstallDev: Move the "find" out of the lock critical section.Michael Büsch2010-11-041-1/+2
| | | | SVN-Revision: 23858
* Lock copying of directory trees to the staging dir with the "staging-dir" ↵Michael Büsch2010-11-041-2/+4
| | | | | | lock. This lock probably has to be taken elsewhere, too. SVN-Revision: 23857
* update kernels to 2.6.32.25 and 2.6.35.8Imre Kaloz2010-11-041-4/+4
| | | | SVN-Revision: 23851
* deptest: Install of host tools has to be forced for every test, because the ↵Michael Büsch2010-11-031-2/+2
| | | | | | host staging dir is cleaned prior a test. SVN-Revision: 23825
* Lock copying to STAGING_DIR_ROOT. This fixes build failures for parallelized ↵Michael Büsch2010-10-291-1/+1
| | | | | | build. SVN-Revision: 23709
* add support for darcs repositoriesFlorian Fainelli2010-10-241-1/+18
| | | | | | | | | | | | | | | | | | | | This patch adds support for darcs repositories (as sources of packages). It does *not* add support for darcs:// URI scheme because such a scheme do not exist (AFAIK). You must therefore manually set PKG_SOURCE_PROTO to darcs in your Makefile (and use a regular http:// URI). You also have to set PKG_SOURCE_VERSION to a string matching a tag contained in the repository, and PKG_SOURCE_SUBDIR to something sensible ($(PACKAGE_NAME)-$(PACKAGE_SOURCE_VERSION) for instance). Same rationale as for the previous patch ("useless to most, but small and straightforward so why no add it?). Best regards, Signed-off-by: Gabriel Kerneis <kerneis@pps.jussieu.fr> SVN-Revision: 23615
* Add md5sum for linux-2.6.36Michael Büsch2010-10-201-0/+3
| | | | SVN-Revision: 23556
* netfilter: workaround a userspace/kernel mismatch on Linux 2.6.35 and laterJo-Philipp Wich2010-10-181-1/+6
| | | | SVN-Revision: 23521
* make ModuleAutoLoad more readableFlorian Fainelli2010-10-181-6/+10
| | | | | | | | | | | | | | When doing a build with tracing on, the expansion of ModuleAutoLoad can get a little hairy. Using intermediate variables to name the arguments makes tracing more readable. One side effect is that if an argument is accidentally left out, we won't get all of the parameters shifted one over thanks to quoting (done in AutoLoad). Signed-of-by: Philip Prindeville <philipp@redfish-solutions.com> SVN-Revision: 23513
* Fix typoMichael Büsch2010-10-162-4/+4
| | | | SVN-Revision: 23482
* Support force-disabling per-package parallel build with ↵Michael Büsch2010-10-162-2/+14
| | | | | | {PKG,HOST}_BUILD_PARALLEL:=0 SVN-Revision: 23480
* set the umask in toplevel.mk instead of forcing the user to adjust itFelix Fietkau2010-10-142-7/+2
| | | | SVN-Revision: 23445
* add a prereq check for umask 0022, other settings will result in broken packagesJo-Philipp Wich2010-10-141-0/+7
| | | | SVN-Revision: 23442
* quilt.mk: export PATCH for patch-kernel.shJo-Philipp Wich2010-10-081-0/+1
| | | | SVN-Revision: 23315
* host.mk: introduce PATCH which refers to either gpatch or patchJo-Philipp Wich2010-10-071-0/+3
| | | | SVN-Revision: 23287
* rename PATCH to KPATCHJo-Philipp Wich2010-10-071-2/+2
| | | | SVN-Revision: 23286
* add configure as package targetRalph Hempel2010-10-051-1/+1
| | | | SVN-Revision: 23262
* package-ipkg.mk: build sysupgrade keepfile hints out of conffiles not yet ↵Jo-Philipp Wich2010-10-051-0/+15
| | | | | | present in the package. This applies to config directories or files that do not exist but may be created by the user after package installation. SVN-Revision: 23257
* correct default package status info (install -> unknown) - fixes ↵Jo-Philipp Wich2010-10-041-1/+1
| | | | | | "opkg_conf_write_status_files: Internal error: package ... has a NULL dest" SVN-Revision: 23222
* upgrade kernel versions to the latest stable onesImre Kaloz2010-10-041-4/+4
| | | | SVN-Revision: 23219
* update 2.6.35.x to 2.6.35.7Lars-Peter Clausen2010-10-041-2/+2
| | | | SVN-Revision: 23213
* optionally support parallel toolchain build. This defaults to off, because ↵Michael Büsch2010-10-031-0/+2
| | | | | | certain toolchain versions are known to break on parallel build. However, it significantly speeds up the build and latest versions of the tools do compile fine. SVN-Revision: 23196
* prime .ipk control files with Status: field to introduce hold for post flash ↵Jo-Philipp Wich2010-10-021-0/+1
| | | | | | installed packages SVN-Revision: 23175
* add support for flagging packagesJo-Philipp Wich2010-10-022-0/+6
| | | | SVN-Revision: 23172
* package-ipkg.mk: use the BOARD variable in opkg cmdline if ARCH_PACKAGES is ↵Gabor Juhos2010-10-011-1/+1
| | | | | | not defined SVN-Revision: 23166
* Add maintainer information to menuconfig description dialogMichael Büsch2010-09-301-1/+2
| | | | SVN-Revision: 23161
* fix build dependencies on packages with multiple variants but no selected ↵Felix Fietkau2010-09-201-1/+1
| | | | | | virtual packages SVN-Revision: 23102
* opkg: - implement --add-dest and --add-arch commandline options, this allows ↵Jo-Philipp Wich2010-09-121-10/+5
| | | | | | to run entirely without configuration - tweak default config location patch to not require a config in offline root mode - rename --force-run-hooks option to --force-postinstall, its a more appropriate name - utilize new opkg commandline options in package-ipkg.mk and remove config file generation SVN-Revision: 23032
* Implement an ARCH_PACKAGES variable which defaults to BOARD but can be ↵Jo-Philipp Wich2010-09-122-3/+4
| | | | | | overridden on a per-subtarget basis. This is intended for targets such as adm5120 and malta which support both big and little endianess and will replace the target specific exceptions in package-defaults and Image Builder. SVN-Revision: 23029
* pass opkg offline root as command line arg, solves caching issues when ↵Jo-Philipp Wich2010-09-091-2/+2
| | | | | | switching between multiple subtargets, thanks Ralph Hempel for reporting SVN-Revision: 22990