Peter Korsgaard [Mon, 4 Aug 2008 19:07:05 +0000 (19:07 -0000)]
buildroot: remove trailing spaces
for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`;
do
sed -i 's/ \+$//' $i;
done
Peter Korsgaard [Mon, 4 Aug 2008 19:06:19 +0000 (19:06 -0000)]
busybox: default HIDE_OTHERS to y for all versions
There's no particular reason to only enable BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
by default for the snapshot version.
Peter Korsgaard [Mon, 4 Aug 2008 19:06:10 +0000 (19:06 -0000)]
strace: fix LARGEFILE typo
Patch by Claus Klein.
Peter Korsgaard [Mon, 4 Aug 2008 19:04:05 +0000 (19:04 -0000)]
sed: fix CPPFLAGS typo
Patch by Claus Klein.
Peter Korsgaard [Thu, 24 Jul 2008 13:38:39 +0000 (13:38 -0000)]
Makefile.autotools.in: fix make source-check/external-deps differently
The MAKELEVEL test is not that robust; It fails with the recent log
support or if buildroot is driven from an external Makefile.
Rework it to instead detect source-check/external-deps by the fact that
they set SPIDER.
Peter Korsgaard [Wed, 23 Jul 2008 12:08:53 +0000 (12:08 -0000)]
grep: make locale handling less verbose
As suggested by Bernhard.
Peter Korsgaard [Wed, 23 Jul 2008 10:35:59 +0000 (10:35 -0000)]
grep: cleanup configure args
Peter Korsgaard [Wed, 23 Jul 2008 10:35:56 +0000 (10:35 -0000)]
grep: fix target install and clean
Peter Korsgaard [Wed, 23 Jul 2008 10:35:53 +0000 (10:35 -0000)]
grep: gettext/libintl is only required if locale is enabled
Peter Korsgaard [Wed, 23 Jul 2008 10:35:50 +0000 (10:35 -0000)]
gettext: also remove from staging on -clean
Peter Korsgaard [Wed, 23 Jul 2008 06:01:50 +0000 (06:01 -0000)]
busybox: additional 1.11.1 fix
Peter Korsgaard [Tue, 22 Jul 2008 19:47:41 +0000 (19:47 -0000)]
vsftp: enable and fix linking
Patch by Wade Berrier.
It still errors out on sysdeputil.c for me, but this is no worse than
it was before, so committing.
Peter Korsgaard [Tue, 22 Jul 2008 14:11:01 +0000 (14:11 -0000)]
which: convert to Makefile.autotools.in format
Peter Korsgaard [Tue, 22 Jul 2008 13:59:42 +0000 (13:59 -0000)]
which: install into /usr/bin
Peter Korsgaard [Tue, 22 Jul 2008 13:59:39 +0000 (13:59 -0000)]
which: strip target binary
Peter Korsgaard [Tue, 22 Jul 2008 13:59:35 +0000 (13:59 -0000)]
which: needs readline
Patch by Wade Berrier.
Peter Korsgaard [Tue, 22 Jul 2008 11:19:07 +0000 (11:19 -0000)]
busybox: 1.11.1 patches
Peter Korsgaard [Mon, 21 Jul 2008 08:53:18 +0000 (08:53 -0000)]
sdl_mixer: run CONFIG_UPDATE on correct directory
The Makefile tried to update config.guess and config.sub in the wrong
directories, this patch updates the correct scripts making it possible to
compile on new systems.
Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Peter Korsgaard [Thu, 17 Jul 2008 20:01:44 +0000 (20:01 -0000)]
Kconfig: remove 'default n'
'default n' is the default, so there's no need to say it explicitly.
Peter Korsgaard [Thu, 17 Jul 2008 13:25:35 +0000 (13:25 -0000)]
fuse: fix target install
Also copy libfuse.so symlink so fuse target isn't considered out of date
Peter Korsgaard [Thu, 17 Jul 2008 13:20:37 +0000 (13:20 -0000)]
freetype: fix target install and clean / dirclean
- target install didn't strip library
- clean didn't uninstall from staging / target
- dirclean target missing
Peter Korsgaard [Thu, 17 Jul 2008 13:20:23 +0000 (13:20 -0000)]
sqlite: fix target install and clean
- install -D isn't a good idea for symlinks as it replaces them with the
target files, leading to 3 copies of libsqlite.
- clean was missing include and pkgconfig files
Peter Korsgaard [Thu, 17 Jul 2008 13:20:05 +0000 (13:20 -0000)]
package: sdl_image package
Based on patch by artemys. Closes #4194
Peter Korsgaard [Thu, 17 Jul 2008 13:19:54 +0000 (13:19 -0000)]
zlib: cleanup and fix -clean target
Peter Korsgaard [Thu, 17 Jul 2008 13:19:42 +0000 (13:19 -0000)]
tiff: zlib and jpeg are needed at configure time
Peter Korsgaard [Thu, 17 Jul 2008 13:19:33 +0000 (13:19 -0000)]
tiff: cleanup and fix -clean target
Peter Korsgaard [Thu, 17 Jul 2008 09:55:27 +0000 (09:55 -0000)]
sdl_mixer: fix sdl dependency
Peter Korsgaard [Thu, 17 Jul 2008 09:55:23 +0000 (09:55 -0000)]
sdl_ttf: fix sdl dependency
Patch by artemys - Closes #4164.
Peter Korsgaard [Wed, 16 Jul 2008 14:37:43 +0000 (14:37 -0000)]
sdl_ttf: needs freetype
Update help text while we're at it.
Based on patch by artemys. Closes #4154.
Peter Korsgaard [Sun, 13 Jul 2008 06:32:58 +0000 (06:32 -0000)]
linux-advanced: add linux26-force like in the simple linux makefile
Patch by Brian Beattie.
Peter Korsgaard [Fri, 11 Jul 2008 22:19:21 +0000 (22:19 -0000)]
busybox: bump 1.11.x version
Peter Korsgaard [Fri, 11 Jul 2008 13:43:59 +0000 (13:43 -0000)]
package/Makefile.in: cleanup MAKE/MAKE1
The extra stuff doesn't seem to be needed, so lets just get rid of it.
Peter Korsgaard [Fri, 11 Jul 2008 13:43:56 +0000 (13:43 -0000)]
fuse: re-add missing --program-prefix
--program-prefix got errorously removed in the recent cleanup work.
Ulf Samuelsson [Thu, 10 Jul 2008 16:12:36 +0000 (16:12 -0000)]
Do not use a localversion of kernel, to allow modules to be installed in the correct directory
Ulf Samuelsson [Thu, 10 Jul 2008 15:17:03 +0000 (15:17 -0000)]
Use correct include dir syntax for xcursor-xthemes
Ulf Samuelsson [Thu, 10 Jul 2008 15:15:52 +0000 (15:15 -0000)]
Add AVR32 patches for 2.6.25.10
Ulf Samuelsson [Thu, 10 Jul 2008 15:14:17 +0000 (15:14 -0000)]
Fix comments regarding latest stable kernel
Ulf Samuelsson [Thu, 10 Jul 2008 14:58:04 +0000 (14:58 -0000)]
Update 'latest' kernel info
Peter Korsgaard [Thu, 10 Jul 2008 10:13:16 +0000 (10:13 -0000)]
fuse: remove unused dir (git-svn issue)
Peter Korsgaard [Thu, 10 Jul 2008 10:12:25 +0000 (10:12 -0000)]
fuse: bump version
The disable_symvers_22 patch no longer applies, but things seems to work
without it. There's no documentation describing what it was supposed to
fix, so get rid of it.
Peter Korsgaard [Thu, 10 Jul 2008 10:12:20 +0000 (10:12 -0000)]
fuse: use BR2_SOURCEFORGE_MIRROR
Peter Korsgaard [Thu, 10 Jul 2008 10:12:15 +0000 (10:12 -0000)]
fuse: cleanup patch handling
Move patch to package dir like other packages and fixup patch-kernel
invocation.
Peter Korsgaard [Thu, 10 Jul 2008 10:12:11 +0000 (10:12 -0000)]
fuse: remove commented out lines
Peter Korsgaard [Thu, 10 Jul 2008 10:12:07 +0000 (10:12 -0000)]
fuse: cleanup configure args
Peter Korsgaard [Thu, 10 Jul 2008 10:12:00 +0000 (10:12 -0000)]
fuse: remove stray $
Peter Korsgaard [Thu, 10 Jul 2008 10:11:51 +0000 (10:11 -0000)]
fuse: also remove fusermount from target
Peter Korsgaard [Thu, 10 Jul 2008 10:11:47 +0000 (10:11 -0000)]
fuse: strip binaries/libs in target
Peter Korsgaard [Thu, 10 Jul 2008 10:11:43 +0000 (10:11 -0000)]
fuse: don't build kernel module
it's been in the mainline kernel for ages (~3y) and the included stuff
doesn't seem to build with modern kernel headers.
Peter Korsgaard [Thu, 10 Jul 2008 10:11:36 +0000 (10:11 -0000)]
fuse: select BR2_LARGEFILE
fuse needs largefile support
Peter Korsgaard [Thu, 10 Jul 2008 10:11:31 +0000 (10:11 -0000)]
gperf: depend on stamp file rather than gperf binary
There's no make rule to create the gperf binary, only the stamp file
so use that instead.
Peter Korsgaard [Thu, 10 Jul 2008 10:11:25 +0000 (10:11 -0000)]
fuse: use tabs for indentation in kconfig
Peter Korsgaard [Thu, 10 Jul 2008 08:17:48 +0000 (08:17 -0000)]
gperf: move under "other development stuff"
Peter Korsgaard [Thu, 10 Jul 2008 08:17:44 +0000 (08:17 -0000)]
gperf: don't install to staging dir
It doesn't make much sense to install the cross-gperf to staging dir.
Peter Korsgaard [Thu, 10 Jul 2008 08:17:39 +0000 (08:17 -0000)]
ifplugd: only run post-install hook when needed
Peter Korsgaard [Thu, 10 Jul 2008 08:17:35 +0000 (08:17 -0000)]
gperf: strip target binary
Peter Korsgaard [Wed, 9 Jul 2008 11:43:57 +0000 (11:43 -0000)]
linux: add knob to force a rebuild of the kernel
Makes development easier. Thanks to Brian Beattie for this handy idea.
1df013316b in Bernhards tree.
Peter Korsgaard [Wed, 9 Jul 2008 07:14:57 +0000 (07:14 -0000)]
gperf: remove trailing spaces
Peter Korsgaard [Wed, 9 Jul 2008 07:14:54 +0000 (07:14 -0000)]
gperf: fix upstream url
Ulf Samuelsson [Wed, 9 Jul 2008 04:27:45 +0000 (04:27 -0000)]
Add gperf, perfect hash generator
Ulf Samuelsson [Tue, 8 Jul 2008 19:45:34 +0000 (19:45 -0000)]
Add latest gcc patch for AVR32 gcc-4.2.2 prepatched source
Ulf Samuelsson [Tue, 8 Jul 2008 19:31:30 +0000 (19:31 -0000)]
Fix AVR32 gcc patching, when sysroot option is not enabled
Peter Korsgaard [Tue, 8 Jul 2008 14:14:36 +0000 (14:14 -0000)]
sqlite: move under database submenu
Peter Korsgaard [Tue, 8 Jul 2008 14:12:09 +0000 (14:12 -0000)]
sqlite: strip binary and use $(INSTALL) for installation
Peter Korsgaard [Tue, 8 Jul 2008 13:49:23 +0000 (13:49 -0000)]
openssl: re-revert r22644
The build without CONFIG_UPDATE has now been verified on arm/armeb/avr32,
so lets revert this for good.
Peter Korsgaard [Tue, 8 Jul 2008 10:53:17 +0000 (10:53 -0000)]
uboot: revert r22638
Go back to 1.3.2 as r22638 breaks mkimage
Ulf Samuelsson [Tue, 8 Jul 2008 10:13:04 +0000 (10:13 -0000)]
Revert patch which breaks AVR32 build
Ulf Samuelsson [Tue, 8 Jul 2008 10:09:28 +0000 (10:09 -0000)]
Support ARCH-unknown-linux-gnu, Use target library paths instead of the host library paths.
Hamish Moffatt [Tue, 8 Jul 2008 06:40:05 +0000 (06:40 -0000)]
Don't $(CONFIG_UPDATE) openssl as it doesn't use autotools anyway
Ulf Samuelsson [Tue, 8 Jul 2008 05:41:44 +0000 (05:41 -0000)]
Add glib2.0 specific include/pkconfig paths in 'docker'
Ulf Samuelsson [Mon, 7 Jul 2008 23:20:09 +0000 (23:20 -0000)]
Fix log
Ulf Samuelsson [Mon, 7 Jul 2008 18:32:41 +0000 (18:32 -0000)]
Fix log
Ulf Samuelsson [Mon, 7 Jul 2008 18:26:09 +0000 (18:26 -0000)]
Add slashes to allow TOPDIR to end without a slash in the future
Ulf Samuelsson [Mon, 7 Jul 2008 17:48:27 +0000 (17:48 -0000)]
Remove some debug messages
Ulf Samuelsson [Mon, 7 Jul 2008 12:04:19 +0000 (12:04 -0000)]
Bump midori version
Ulf Samuelsson [Mon, 7 Jul 2008 11:09:20 +0000 (11:09 -0000)]
Remove duplicated select LIBPNG and use alphabetical order for selects
Peter Korsgaard [Mon, 7 Jul 2008 05:30:22 +0000 (05:30 -0000)]
kernel-headers: bump 2.6.25.x version
Peter Korsgaard [Mon, 7 Jul 2008 05:08:39 +0000 (05:08 -0000)]
Makefile.autotools.in: revert broken r22659
Ulfs r22659 commit broke make source-check/external deps, so reverting it.
Peter Korsgaard [Sun, 6 Jul 2008 13:55:55 +0000 (13:55 -0000)]
busybox: more 1.11.0 patches
Ulf Samuelsson [Sun, 6 Jul 2008 07:34:41 +0000 (07:34 -0000)]
Replace configuring GLIB with autodetect
Ulf Samuelsson [Sun, 6 Jul 2008 06:27:00 +0000 (06:27 -0000)]
Update atngw100-expanded defconfig
Ulf Samuelsson [Sun, 6 Jul 2008 06:25:06 +0000 (06:25 -0000)]
Improve readability of libgtk2 configuration
Ulf Samuelsson [Sun, 6 Jul 2008 06:23:21 +0000 (06:23 -0000)]
Avoid duplicate downloading, when rebuilding failed package like libgtk2
Ulf Samuelsson [Sun, 6 Jul 2008 06:19:12 +0000 (06:19 -0000)]
Update atstk100x defconfig
Ulf Samuelsson [Sat, 5 Jul 2008 21:57:23 +0000 (21:57 -0000)]
un-deprecate gcc-4.2.1 for AVR32 external toolchain
Thiago A. CorrĂȘa [Sat, 5 Jul 2008 15:14:11 +0000 (15:14 -0000)]
Fix #3584, when building cairo with DirectFB, depend on DirectFB
Ulf Samuelsson [Sat, 5 Jul 2008 09:30:17 +0000 (09:30 -0000)]
Use HOST_GLIB for packages
Ulf Samuelsson [Sat, 5 Jul 2008 09:22:38 +0000 (09:22 -0000)]
Add configuration possibility for host Gnome Lib installation
Ulf Samuelsson [Sat, 5 Jul 2008 08:20:34 +0000 (08:20 -0000)]
[
0002974] add support for zlib and bzip2 in lighttpd, use alphabetical order for lighttpd config
Ulf Samuelsson [Sat, 5 Jul 2008 07:44:28 +0000 (07:44 -0000)]
Use latest config.* from buildroot in curl
Ulf Samuelsson [Sat, 5 Jul 2008 07:25:06 +0000 (07:25 -0000)]
Fix bug [1899] Add table entry to allow openssl to build for AVR32, disabled softfloat
Ulf Samuelsson [Sat, 5 Jul 2008 06:58:53 +0000 (06:58 -0000)]
Add version number to log
Ulf Samuelsson [Sat, 5 Jul 2008 06:54:35 +0000 (06:54 -0000)]
Update config.* of openssl
Ulf Samuelsson [Sat, 5 Jul 2008 06:46:43 +0000 (06:46 -0000)]
Fix bug 003934, remove a dir tree instead of the dir node
Ulf Samuelsson [Sat, 5 Jul 2008 06:37:17 +0000 (06:37 -0000)]
Run AVR32 toolchain with Sysroot (will fail if not enabled), deprecate 4.1.2 and 4.2.1
Ulf Samuelsson [Sat, 5 Jul 2008 04:30:05 +0000 (04:30 -0000)]
Ensure tslib uses config.* from buildroot
Ulf Samuelsson [Fri, 4 Jul 2008 22:29:50 +0000 (22:29 -0000)]
Add 'build with log'
Ulf Samuelsson [Fri, 4 Jul 2008 22:23:20 +0000 (22:23 -0000)]
Update atstk100x defconfig
Ulf Samuelsson [Fri, 4 Jul 2008 22:18:56 +0000 (22:18 -0000)]
Bump U-Boot version to 1.3.3
Ulf Samuelsson [Fri, 4 Jul 2008 20:35:41 +0000 (20:35 -0000)]
The build of 'file', needs to run 'file' natively, so provide a valid link
Ulf Samuelsson [Fri, 4 Jul 2008 11:18:58 +0000 (11:18 -0000)]
Update atstk100x defconfig