Gabor Juhos
ff0eceb98f
add md5 sum of the 2.6.23.11 tarball
...
SVN-Revision: 9799
2007-12-18 18:43:13 +00:00
John Crispin
a49f06f5e7
fixed copy paste error
...
SVN-Revision: 9792
2007-12-17 22:24:40 +00:00
Felix Fietkau
2da3f6a256
fix the sdk
...
SVN-Revision: 9747
2007-12-14 00:33:25 +00:00
Felix Fietkau
51996a78f1
clean up openwrt version handling, use a separate script that is executed at the beginning of the build process, fix revision checking with git
...
SVN-Revision: 9723
2007-12-13 06:25:54 +00:00
Felix Fietkau
5de58125bd
add prereq check for gnu find
...
SVN-Revision: 9710
2007-12-11 22:28:10 +00:00
Felix Fietkau
40ab15892d
Abstracted find to $(FIND) to allow use of gfind on non-GNU systems.
...
Signed-off-by: Andy Boyett <agb-openwrt@padded-cell.net>
SVN-Revision: 9659
2007-12-05 18:45:20 +00:00
Felix Fietkau
edc74f8cc3
fix make clean for unconfigured build trees
...
SVN-Revision: 9655
2007-12-04 03:04:37 +00:00
Felix Fietkau
b217ebd0e6
enforce gnu make >= 3.81 now. it has become too annoying to work around bugs in 3.80
...
SVN-Revision: 9654
2007-12-04 03:00:29 +00:00
Felix Fietkau
40840d495f
add shell compatibility patch from #2659
...
SVN-Revision: 9643
2007-11-30 21:58:18 +00:00
Felix Fietkau
5526395594
fix kernel config related build error
...
SVN-Revision: 9640
2007-11-30 17:22:44 +00:00
Felix Fietkau
d1b4f5b54f
include the kernel config for kernel related packages (should fix some b43 compile issues)
...
SVN-Revision: 9635
2007-11-30 09:43:08 +00:00
Gabor Juhos
bb44c9a6de
switch to 2.6.23.9
...
SVN-Revision: 9629
2007-11-29 08:51:59 +00:00
Felix Fietkau
407b75436d
fix build issues that happen when the staging dir is cleared and the build directories stay
...
SVN-Revision: 9588
2007-11-20 22:43:38 +00:00
Eugene Konev
4735a0f5fe
add external kernel tree support
...
SVN-Revision: 9584
2007-11-20 13:21:01 +00:00
Felix Fietkau
5a9cdef549
prefer http downloads over svn/git checkouts, remove git dependency
...
SVN-Revision: 9567
2007-11-16 04:10:01 +00:00
Felix Fietkau
87d0b29540
better scope handling for the configured stamp
...
SVN-Revision: 9566
2007-11-16 03:48:43 +00:00
Felix Fietkau
224760dee7
add git checkout support
...
SVN-Revision: 9553
2007-11-16 03:10:40 +00:00
Felix Fietkau
4a87a0464b
fix copy&paste mistake
...
SVN-Revision: 9551
2007-11-15 12:35:51 +00:00
Felix Fietkau
dfa7618bd6
fix the image builder
...
SVN-Revision: 9549
2007-11-14 23:11:07 +00:00
Felix Fietkau
2cb6cbf061
fix quilt apply for packages that change STAMP_*
...
SVN-Revision: 9531
2007-11-10 22:51:02 +00:00
Felix Fietkau
db87e1f8c1
fix parallel build issues
...
SVN-Revision: 9495
2007-11-04 11:42:47 +00:00
Felix Fietkau
5d901efb9e
increase scan depth to 5 for package/ (x.org is nested deeper than the rest of the packages)
...
SVN-Revision: 9487
2007-11-03 12:13:23 +00:00
Felix Fietkau
e66a211078
fix default downloads from svn
...
SVN-Revision: 9471
2007-10-31 22:37:56 +00:00
Felix Fietkau
41815ee5c8
add feature flag for display support. will be used as dependency for x.org
...
SVN-Revision: 9448
2007-10-25 21:08:46 +00:00
Florian Fainelli
486492b407
We are now at .23.1
...
SVN-Revision: 9415
2007-10-23 08:13:12 +00:00
Felix Fietkau
881bac2db2
Allow targets to specify extra initramfs source files
...
The CONFIG_INITRAMFS_SOURCE Kconfig variable can be a space-separated
list of source files (or directories). This allows a platform to
add extra components to the initramfs image, by defining the
INITRAMFS_EXTRA_FILES make var.
By default, we add a simple initramfs extra file for the generic-2.6
platform, which specifies a few device nodes.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
SVN-Revision: 9410
2007-10-23 06:23:29 +00:00
Felix Fietkau
4a142953ea
Use current UID for initramfs root user:group
...
Set the CONFIG_INITRAMFS_ROOT_{U,G}ID kernel variables to the current
user, so that all files end up being owned by root in the final
initramfs image.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
SVN-Revision: 9409
2007-10-23 06:23:26 +00:00
Felix Fietkau
4bb2c88f4e
don't specify "CC=<nothing>" on kernel build command line
...
If KERNEL_CC isn't set, we end up with a "CC=" on the kernel build
command-line. We don't always need CC, as the CROSS_COMPILE flag does
the job instead. In fact, specifying CC messes up the build when we're
using a biarch compiler.
This change doesn't specify CC= if the KERNEL_CC variable is empty.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
SVN-Revision: 9408
2007-10-23 06:23:23 +00:00
Felix Fietkau
d8e032edef
don't replace powerpc arch with ppc
...
'powerpc' is a valid arch for the LINUX_KARCH variable, but the build
system unconditionally replaces LIUNUX_KARCH=powerpc with
LINUX_KARCH=ppc.
This change only does the replacement if LINUX_KARCH isn't set. This
allows us to use the powerpc architecture.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
SVN-Revision: 9405
2007-10-23 06:23:12 +00:00
Felix Fietkau
ac40a80f35
make aliases for package targets if the package directories are in further subdirectories example: if there is a package/libs/foo/compile, then package/foo/compile will be an alias for it
...
SVN-Revision: 9384
2007-10-21 07:18:10 +00:00
John Crispin
9f73ab51f3
refreshed madwifi patches
...
SVN-Revision: 9380
2007-10-20 19:13:53 +00:00
Felix Fietkau
86a906bed2
reorganize subtargets, sort subtargets below top level targets
...
SVN-Revision: 9378
2007-10-20 19:10:06 +00:00
Felix Fietkau
99aed44487
fix quilt update breakage for kernel related packages
...
SVN-Revision: 9368
2007-10-20 15:30:18 +00:00
John Crispin
9b467b5b28
remove whitespaces
...
SVN-Revision: 9354
2007-10-18 20:30:18 +00:00
John Crispin
7558f0281f
DESCRIPTION:= is obselete, so complain if it is used and use TITLE if no description is set
...
SVN-Revision: 9307
2007-10-14 04:49:05 +00:00
Felix Fietkau
af03fdb6c5
add autorebuild check for menuconfig
...
SVN-Revision: 9301
2007-10-14 02:28:34 +00:00
John Crispin
1a3c4d1090
add possibility to set default .config values
...
SVN-Revision: 9300
2007-10-14 02:15:37 +00:00
Gabor Juhos
4e05416c39
netfilter/ipset cleanups * rename patches to follow our naming conventions * update ipset patches with revision 7096 of [ https://svn.netfilter.org/netfilter/trunk/patch-o-matic-ng pom] * add CONFIG_IP_NF_SET_IPTREEMAP to default kernel configs * add ip_set_iptreemap to include/netfilter.mk * update kmod-ipt-ipset module description
...
SVN-Revision: 9269
2007-10-12 14:58:35 +00:00
Eugene Konev
72f5fa6b92
sync for 2.6.23-final
...
SVN-Revision: 9234
2007-10-10 06:20:25 +00:00
Felix Fietkau
1120a73f43
remove feeds dir on distclean
...
SVN-Revision: 9215
2007-10-09 04:13:19 +00:00
Felix Fietkau
c3a2acf7db
only run svn info if .svn exists
...
SVN-Revision: 9213
2007-10-09 03:37:31 +00:00
John Crispin
5a4b6b5f4e
changed pkg_install_files so one can specify the folder to install from
...
SVN-Revision: 9192
2007-10-08 19:49:11 +00:00
John Crispin
215fa7eb8b
added generation of x86 livecds, from #2391
...
SVN-Revision: 9191
2007-10-08 18:53:19 +00:00
Gabor Juhos
8309e3dff2
add TARPIT support to netfilter/iptables * netfilter: add the xt_TARPIT target module required by xt_CHAOS * include/netfilter.mk: reorder, xt_CHAOS depends on xt_TARPIT and xt_DELUDE * iptables: add libipt_TARPIT to the kmod-ipt-extra package, bump release number * original patchset can be found [ http://tinyurl.com/2mjk2kx here]
...
SVN-Revision: 9178
2007-10-07 17:17:04 +00:00
John Crispin
33ecac1f24
added a function, that packages can call to make installing files/folders much cleaner and easier
...
SVN-Revision: 9171
2007-10-07 01:55:03 +00:00
Felix Fietkau
4af66e8866
fix accidental double slash in prefixed quilt patchsets
...
SVN-Revision: 9166
2007-10-07 00:16:50 +00:00
Felix Fietkau
e2e8d55dcc
allow targets to select/deselect config symbols
...
SVN-Revision: 9150
2007-10-05 21:44:43 +00:00
Felix Fietkau
5f87e72dae
fix quilt patch check
...
SVN-Revision: 9121
2007-10-04 17:58:12 +00:00
Felix Fietkau
7d179076ca
separate series file fixup from quilt check to avoid series file breakages after fixing a broken patch stack with quilt
...
SVN-Revision: 9120
2007-10-04 15:32:55 +00:00
Gabor Juhos
e12359aa29
fix target profiles, (closes: 2440)
...
SVN-Revision: 9113
2007-10-03 19:22:51 +00:00
Tim Yardley
458ce0cb5c
fix quilt integration
...
SVN-Revision: 9100
2007-10-02 21:54:22 +00:00
Felix Fietkau
85f3be6310
fix target profiles
...
SVN-Revision: 9099
2007-10-02 17:43:57 +00:00
Felix Fietkau
e2f7a60283
fixes for refresh/update handling
...
SVN-Revision: 9063
2007-09-29 04:29:11 +00:00
Felix Fietkau
d1933f9761
move a stampfile to make it easier to override the patch template
...
SVN-Revision: 9062
2007-09-29 03:39:57 +00:00
Felix Fietkau
5f1d42ea7c
refactor quilt patching code
...
SVN-Revision: 9061
2007-09-29 03:28:03 +00:00
Felix Fietkau
97b6135462
add a packaging method that installs files into a subdirectory of bin/ instead of an ipkg
...
SVN-Revision: 9060
2007-09-29 01:21:56 +00:00
Felix Fietkau
03543ec4a4
proper series file support for regular packages
...
SVN-Revision: 9059
2007-09-29 00:25:38 +00:00
Felix Fietkau
894bd2f7dc
use $(TAR) instead of tar
...
SVN-Revision: 9058
2007-09-29 00:16:33 +00:00
Felix Fietkau
dbeb0fad24
Refactor downloading code into download.mk Support multiple file downloads Support svn downloads
...
SVN-Revision: 9057
2007-09-29 00:05:48 +00:00
Felix Fietkau
969ac7459e
add $(STAGING_DIR) as argument to the InstallDev template and update packages accordingly - this way we can reuse InstallDev to automatically generate UninstallDev or create -dev packages
...
SVN-Revision: 9052
2007-09-28 01:45:11 +00:00
Felix Fietkau
800ef0f56c
some minor fixes, cleanups, package build abstraction
...
SVN-Revision: 9051
2007-09-28 01:23:56 +00:00
Nicolas Thill
0bf90f2a0d
add ipv6 conntrack support ( closes : #2192 )
...
SVN-Revision: 8984
2007-09-23 17:22:17 +00:00
Felix Fietkau
f8dfc57573
add initial version of a package feeds management script
...
SVN-Revision: 8973
2007-09-23 02:39:01 +00:00
Nicolas Thill
fec4d9ee3c
add missing 2.6 conntrack/nat helpers, add 2.6 conntrack/nat helper for RTSP ( closes : #2297 , thanks to aorlinsk), sync 2.4 / 2.6 kconfigs.
...
SVN-Revision: 8955
2007-09-22 18:37:24 +00:00
Nicolas Thill
7d50df6224
add 'Provides:' line in ipkg control files
...
SVN-Revision: 8906
2007-09-21 10:05:00 +00:00
Felix Fietkau
e554dafa93
fix spontaneous rebuilds caused by make package/<name>/update with quilt
...
SVN-Revision: 8879
2007-09-20 16:17:50 +00:00
Nicolas Thill
f5f47e1fbd
cosmetic cleanup before more deep changes
...
SVN-Revision: 8870
2007-09-20 10:48:54 +00:00
Nicolas Thill
f6197eabda
fix typo again (do i need some sleep?)
...
SVN-Revision: 8822
2007-09-17 01:51:57 +00:00
Nicolas Thill
dcf795770c
oops, fix typo
...
SVN-Revision: 8816
2007-09-16 22:41:24 +00:00
Nicolas Thill
8c7105e20a
remove (unused?) linux symlink in BUILD_DIR
...
SVN-Revision: 8804
2007-09-16 16:28:50 +00:00
Nicolas Thill
892b16a352
revert CONFIG_* symbols set m enforcement introduced in [8591], it can't work when symbols from different kernel versions are mixed in KCONFIG
...
SVN-Revision: 8798
2007-09-16 16:10:37 +00:00
Nicolas Thill
ac2af6affa
allow targets for override generic config (GENERIC_LINUX_CONFIG:=/dev/null) for testing purposes
...
SVN-Revision: 8796
2007-09-16 14:09:57 +00:00
Nicolas Thill
420f252a58
quote LINUX_VERSION to avoid shell errors at DUMP time
...
SVN-Revision: 8795
2007-09-16 14:08:23 +00:00
Nicolas Thill
5011d6129c
prevent include/netfilter.mk from being included multiple times
...
SVN-Revision: 8781
2007-09-15 16:19:26 +00:00
Felix Fietkau
986445a623
properly clean up after kernel_{old,menu}config
...
SVN-Revision: 8737
2007-09-11 00:14:37 +00:00
Felix Fietkau
749cefa063
fix custom series files in kernel patch directories
...
SVN-Revision: 8736
2007-09-10 23:01:45 +00:00
Felix Fietkau
e83d637f65
fix kernel build with quilt
...
SVN-Revision: 8727
2007-09-10 04:21:21 +00:00
Felix Fietkau
01b6a90e3d
fix kernel_menuconfig
...
SVN-Revision: 8726
2007-09-10 01:04:57 +00:00
Florian Fainelli
6a06ccf9b6
Package the statistics module for netfilter
...
SVN-Revision: 8716
2007-09-09 18:32:06 +00:00
Felix Fietkau
0c9b23594d
fix kmod-crypto, emit warning messages for kmod packages that cannot be built due to missing kernel config options
...
SVN-Revision: 8697
2007-09-08 23:33:01 +00:00
Felix Fietkau
e63e1f7a4a
add support for device type based package preselections
...
SVN-Revision: 8696
2007-09-08 21:30:25 +00:00
Felix Fietkau
87a88cebc7
adapt profiles for subtarget changes
...
SVN-Revision: 8695
2007-09-08 20:04:43 +00:00
Felix Fietkau
a9d683ca91
major target cleanup. it is now possible to have subtargets that can override many target settings, including arch - merge adm5120, adm5120eb. target profiles still need to be adapted for subtargets
...
SVN-Revision: 8694
2007-09-08 19:55:42 +00:00
Felix Fietkau
56231056ea
strip the kernel version suffix from target directories, except for brcm-2.4 (the -2.4 will be included in the board name here). CONFIG_LINUX_<ver>_<board> becomes CONFIG_TARGET_<board>, same for profiles.
...
SVN-Revision: 8653
2007-09-06 16:27:37 +00:00
Nicolas Thill
af0b91ca90
allow scan.mk to find python packages introduced in [8639]
...
SVN-Revision: 8641
2007-09-06 03:20:48 +00:00
Nicolas Thill
9f6bd2c07b
remove uneeded stuff after python changes in [8639]
...
SVN-Revision: 8640
2007-09-06 02:57:06 +00:00
Nicolas Thill
c0033f360c
fix typo (thanks to jonasg[1] on irc)
...
SVN-Revision: 8618
2007-09-05 08:59:44 +00:00
Nicolas Thill
5b4bfbd6d4
move TARGET_* flags from ./include/package-default.mk to ./rules.mk, remove EXTRA_* flags but still use them in configure and make
...
SVN-Revision: 8592
2007-09-03 09:06:03 +00:00
Nicolas Thill
8dc7ced4d4
require all CONFIG_* symbols listed in its KCONFIG to be set to m in order to actually build a kmod package, tweak and fix kernel package definitions.
...
SVN-Revision: 8591
2007-09-03 08:58:14 +00:00
Nicolas Thill
e5e03321f9
tweak Build/Compile/PyMod: add CPPFLAGS, allow caller to override any of the default *FLAGS, indent
...
SVN-Revision: 8590
2007-09-03 08:44:08 +00:00
Nicolas Thill
6a6fa5a4ab
provide default PKG_BUILD_DIR for packages missing a PKG_VERSION
...
SVN-Revision: 8583
2007-09-03 07:51:56 +00:00
Nicolas Thill
3f80599cda
move ipkg related vars from ./rules.mk to ./include/package-ipkg.mk
...
SVN-Revision: 8581
2007-09-03 06:46:44 +00:00
Nicolas Thill
02cd6d278f
use a default VERSION field for kmod packages
...
SVN-Revision: 8575
2007-09-02 16:39:27 +00:00
Nicolas Thill
6a8ab4c0be
fix .dep_files exclusion in rdep calls
...
SVN-Revision: 8567
2007-09-01 05:20:21 +00:00
Felix Fietkau
761dc0a0ae
fix a dependency bug
...
SVN-Revision: 8561
2007-08-30 22:43:25 +00:00
Felix Fietkau
5f748a6c24
clean up recursive dependency handling, use timestamp.pl again, because it saves memory and execution time
...
SVN-Revision: 8558
2007-08-30 21:12:39 +00:00
Felix Fietkau
9566fb1f07
allow the kernel to provide own series files for specific subdirs
...
SVN-Revision: 8557
2007-08-30 21:11:17 +00:00
Felix Fietkau
d475d94aab
avoid rdep in the top level make process (subdir.mk) - it leaks too much memory and increases the startup time for regular make commands. timestamp.pl is more lightweight here
...
SVN-Revision: 8533
2007-08-29 03:51:49 +00:00
Florian Fainelli
39cbeec7b2
Add a PyMod template for python related modules
...
SVN-Revision: 8522
2007-08-28 12:41:39 +00:00
Nicolas Thill
bfa6ac2eab
revert [8473] (see [8055])
...
SVN-Revision: 8499
2007-08-27 02:04:35 +00:00
Nicolas Thill
75123bd131
prevent ldconfig use in autoconf based packages
...
SVN-Revision: 8496
2007-08-26 18:34:24 +00:00
Nicolas Thill
1b226e4de1
add a '@KERNEL' download facility, tweak script
...
SVN-Revision: 8495
2007-08-26 18:21:24 +00:00
Nicolas Thill
b35e6fe3ba
include kernel-version.mk from kernel.mk so that a correct KERNEL_PATCHVER is always available
...
SVN-Revision: 8494
2007-08-26 13:26:02 +00:00
Nicolas Thill
3e47314ccb
move rule for $(STAGING_DIR)/etc/ipkg.conf out of BuildIPKG so that it's defined only once
...
SVN-Revision: 8491
2007-08-26 12:42:48 +00:00
Nicolas Thill
615a81cb65
move KERNEL_PATCHVER from kernel.mk to kernel-version.mk so that it is defined when dumping target infos
...
SVN-Revision: 8485
2007-08-25 14:50:17 +00:00
Nicolas Thill
655a446b17
add support for KernelPackage/*/description
...
SVN-Revision: 8484
2007-08-25 14:43:15 +00:00
Nicolas Thill
d21941ca4d
move ipkg.conf creation from tools/ipkg-utils to include/package-ipkg.mk
...
SVN-Revision: 8481
2007-08-25 11:55:01 +00:00
Nicolas Thill
1ad12c1eeb
fix netfilter quota module
...
SVN-Revision: 8479
2007-08-24 12:23:52 +00:00
Nicolas Thill
4b23cac27b
replace xargs commands with $(XARGS)
...
SVN-Revision: 8478
2007-08-24 12:10:14 +00:00
Nicolas Thill
e9fba2c56b
combine the 3 find in a single one
...
SVN-Revision: 8477
2007-08-24 12:05:30 +00:00
Florian Fainelli
3c5ed20fd0
Fix the error on the quota extension ( #2080 )
...
SVN-Revision: 8472
2007-08-23 16:14:17 +00:00
Florian Fainelli
6741194c15
Add back physdev ( #2216 )
...
SVN-Revision: 8466
2007-08-23 15:21:22 +00:00
Nicolas Thill
b4318f53f9
rename libtool macros, revert [8461], make install prefix configurable in libtool_fixup_libdir
...
SVN-Revision: 8462
2007-08-22 16:15:00 +00:00
Florian Fainelli
c994e41757
Make the libtool fix more dynamic
...
SVN-Revision: 8461
2007-08-22 09:13:42 +00:00
Nicolas Thill
5440728b06
add 2 helper macros to deal with libtool madness
...
SVN-Revision: 8457
2007-08-21 20:51:46 +00:00
Nicolas Thill
ba05b57573
rename 'stampfiles' directory to 'stamp'
...
SVN-Revision: 8455
2007-08-21 18:07:55 +00:00
Florian Fainelli
4be843d65b
Move to 2.6.22.4
...
SVN-Revision: 8451
2007-08-21 10:06:01 +00:00
Felix Fietkau
3df35f0b09
revert [8415], seems to be causing problems for the kernel build
...
SVN-Revision: 8418
2007-08-16 13:44:57 +00:00
Felix Fietkau
c2d5c1c0c2
always include kernel config for kernel packages
...
SVN-Revision: 8415
2007-08-15 23:33:37 +00:00
Florian Fainelli
0860346ff0
Add a requireheader for squid, should fix it ( #2205 )
...
SVN-Revision: 8404
2007-08-12 11:53:23 +00:00
Felix Fietkau
c6bc77ea36
build system cleanup/restructuring as described in http://lists.openwrt.org/pipermail/openwrt-devel/2007-August/001159.html
...
SVN-Revision: 8362
2007-08-07 00:04:25 +00:00
Felix Fietkau
d6666fdd40
fix image installation
...
SVN-Revision: 8324
2007-08-03 01:21:41 +00:00
Felix Fietkau
0f74fa296c
fix kmod packages that don't use KCONFIG
...
SVN-Revision: 8323
2007-08-02 23:49:31 +00:00
Felix Fietkau
21075a17f7
fix kmod packaging for packages where some KCONFIG symbols are set to y
...
SVN-Revision: 8316
2007-08-02 13:38:03 +00:00
Felix Fietkau
99368862e4
Port the mbsd_multi patch from freewrt, which adds -fhonour-copts. This will emit warnings in packages that don't use our target cflags properly
...
SVN-Revision: 8256
2007-07-31 00:52:27 +00:00
Felix Fietkau
23f0017829
fix a rebuild bug related to quilt
...
SVN-Revision: 8255
2007-07-30 23:52:17 +00:00
Felix Fietkau
40c1241377
silence
...
SVN-Revision: 8252
2007-07-30 23:04:24 +00:00
Felix Fietkau
7b6d8470c6
same for host builds
...
SVN-Revision: 8246
2007-07-30 21:48:39 +00:00
Felix Fietkau
9bf7beae60
speed up the prepare step a bit
...
SVN-Revision: 8245
2007-07-30 21:47:26 +00:00
Felix Fietkau
88163e91e8
ignore dependencies when using QUILT
...
SVN-Revision: 8244
2007-07-30 21:30:18 +00:00
Felix Fietkau
d7f2cb1642
next round of cleanup, convert target/ - make -j works now ;)
...
SVN-Revision: 8242
2007-07-30 21:14:08 +00:00
Felix Fietkau
a7b635f075
more cleanup
...
SVN-Revision: 8238
2007-07-30 18:39:20 +00:00
Felix Fietkau
bec2fe7c6c
remove CONFIG_JLEVEL. use make -j in the future
...
SVN-Revision: 8237
2007-07-30 18:24:47 +00:00
Felix Fietkau
49e628f765
next round of build system cleanup - convert package/ to new structure
...
SVN-Revision: 8236
2007-07-30 18:22:01 +00:00
Felix Fietkau
f1ac6cf7ec
fix compile errors with make 3.80
...
SVN-Revision: 8230
2007-07-30 15:00:27 +00:00
Felix Fietkau
e23c6c4b6b
fix verbose output with dash as /bin/sh
...
SVN-Revision: 8227
2007-07-30 14:50:15 +00:00
Felix Fietkau
0d70676b9a
add default command for dummy targets
...
SVN-Revision: 8209
2007-07-28 14:36:21 +00:00
Felix Fietkau
e143bed1f1
build system fixes, more cleanup
...
SVN-Revision: 8207
2007-07-28 13:29:03 +00:00
Felix Fietkau
9c88ba80b9
more build system cleanup
...
SVN-Revision: 8206
2007-07-28 13:00:43 +00:00
Felix Fietkau
9acbd52239
allow target specific builddir list override
...
SVN-Revision: 8204
2007-07-28 03:01:10 +00:00
Felix Fietkau
48d57c4ba8
add missing flag
...
SVN-Revision: 8203
2007-07-28 02:54:50 +00:00
Felix Fietkau
02a7e555de
don't force the install->compile, compile->prepare dependencies in subdir.mk
...
SVN-Revision: 8202
2007-07-28 02:53:54 +00:00
Felix Fietkau
81529c47ec
initial attempt at cleaning up subdirectory handling. tools/Makefile is now being included instead of recursively called
...
SVN-Revision: 8201
2007-07-28 02:44:55 +00:00
Felix Fietkau
109f15b54c
ignore filenames that can cause problems for the recursive dependency handling
...
SVN-Revision: 8171
2007-07-26 11:32:13 +00:00
Nicolas Thill
24cabede56
remove the @ and change the comment from [8107] ( closes : #2122 )
...
SVN-Revision: 8166
2007-07-26 06:43:29 +00:00
Felix Fietkau
291ff1fd7e
do dynamic kernel config changes for netfilter as well
...
SVN-Revision: 8119
2007-07-23 03:23:46 +00:00
Felix Fietkau
1883949d79
add better working-g++ check (patch from #2017 )
...
SVN-Revision: 8118
2007-07-23 02:56:30 +00:00
Felix Fietkau
35d116c85b
more dependency fixes
...
SVN-Revision: 8115
2007-07-23 02:41:33 +00:00
Nicolas Thill
f2a32fff7d
fix jffs2 images
...
SVN-Revision: 8107
2007-07-22 18:29:59 +00:00
Felix Fietkau
7ff45c5adb
disable kmod packages where the KCONFIG options are =y
...
SVN-Revision: 8086
2007-07-20 22:25:14 +00:00