buildroot.git
16 years agokernel-headers: mark 2.6.24 as deprecated and 2.6.25 as recent
Peter Korsgaard [Mon, 4 Aug 2008 19:07:24 +0000 (19:07 -0000)]
kernel-headers: mark 2.6.24 as deprecated and 2.6.25 as recent

16 years agokernel-headers: add 2.6.26.x
Peter Korsgaard [Mon, 4 Aug 2008 19:07:21 +0000 (19:07 -0000)]
kernel-headers: add 2.6.26.x

16 years agopackage: global largefile CFLAGS handling
Peter Korsgaard [Mon, 4 Aug 2008 19:07:18 +0000 (19:07 -0000)]
package: global largefile CFLAGS handling

16 years agobuildroot: remove trailing spaces
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

16 years agobusybox: default HIDE_OTHERS to y for all versions
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.

16 years agostrace: fix LARGEFILE typo
Peter Korsgaard [Mon, 4 Aug 2008 19:06:10 +0000 (19:06 -0000)]
strace: fix LARGEFILE typo

Patch by Claus Klein.

16 years agosed: fix CPPFLAGS typo
Peter Korsgaard [Mon, 4 Aug 2008 19:04:05 +0000 (19:04 -0000)]
sed: fix CPPFLAGS typo

Patch by Claus Klein.

16 years agoMakefile.autotools.in: fix make source-check/external-deps differently
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.

16 years agogrep: make locale handling less verbose
Peter Korsgaard [Wed, 23 Jul 2008 12:08:53 +0000 (12:08 -0000)]
grep: make locale handling less verbose

As suggested by Bernhard.

16 years agogrep: cleanup configure args
Peter Korsgaard [Wed, 23 Jul 2008 10:35:59 +0000 (10:35 -0000)]
grep: cleanup configure args

16 years agogrep: fix target install and clean
Peter Korsgaard [Wed, 23 Jul 2008 10:35:56 +0000 (10:35 -0000)]
grep: fix target install and clean

16 years agogrep: gettext/libintl is only required if locale is enabled
Peter Korsgaard [Wed, 23 Jul 2008 10:35:53 +0000 (10:35 -0000)]
grep: gettext/libintl is only required if locale is enabled

16 years agogettext: also remove from staging on -clean
Peter Korsgaard [Wed, 23 Jul 2008 10:35:50 +0000 (10:35 -0000)]
gettext: also remove from staging on -clean

16 years agobusybox: additional 1.11.1 fix
Peter Korsgaard [Wed, 23 Jul 2008 06:01:50 +0000 (06:01 -0000)]
busybox: additional 1.11.1 fix

16 years agovsftp: enable and fix linking
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.

16 years agowhich: convert to Makefile.autotools.in format
Peter Korsgaard [Tue, 22 Jul 2008 14:11:01 +0000 (14:11 -0000)]
which: convert to Makefile.autotools.in format

16 years agowhich: install into /usr/bin
Peter Korsgaard [Tue, 22 Jul 2008 13:59:42 +0000 (13:59 -0000)]
which: install into /usr/bin

16 years agowhich: strip target binary
Peter Korsgaard [Tue, 22 Jul 2008 13:59:39 +0000 (13:59 -0000)]
which: strip target binary

16 years agowhich: needs readline
Peter Korsgaard [Tue, 22 Jul 2008 13:59:35 +0000 (13:59 -0000)]
which: needs readline

Patch by Wade Berrier.

16 years agobusybox: 1.11.1 patches
Peter Korsgaard [Tue, 22 Jul 2008 11:19:07 +0000 (11:19 -0000)]
busybox: 1.11.1 patches

16 years agosdl_mixer: run CONFIG_UPDATE on correct directory
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>
16 years agoKconfig: remove 'default n'
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.

16 years agofuse: fix target install
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

16 years agofreetype: fix target install and clean / dirclean
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

16 years agosqlite: fix target install and clean
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

16 years agopackage: sdl_image package
Peter Korsgaard [Thu, 17 Jul 2008 13:20:05 +0000 (13:20 -0000)]
package: sdl_image package

Based on patch by artemys. Closes #4194

16 years agozlib: cleanup and fix -clean target
Peter Korsgaard [Thu, 17 Jul 2008 13:19:54 +0000 (13:19 -0000)]
zlib: cleanup and fix -clean target

16 years agotiff: zlib and jpeg are needed at configure time
Peter Korsgaard [Thu, 17 Jul 2008 13:19:42 +0000 (13:19 -0000)]
tiff: zlib and jpeg are needed at configure time

16 years agotiff: cleanup and fix -clean target
Peter Korsgaard [Thu, 17 Jul 2008 13:19:33 +0000 (13:19 -0000)]
tiff: cleanup and fix -clean target

16 years agosdl_mixer: fix sdl dependency
Peter Korsgaard [Thu, 17 Jul 2008 09:55:27 +0000 (09:55 -0000)]
sdl_mixer: fix sdl dependency

16 years agosdl_ttf: 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.

16 years agosdl_ttf: needs freetype
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.

16 years agolinux-advanced: add linux26-force like in the simple linux makefile
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.

16 years agobusybox: bump 1.11.x version
Peter Korsgaard [Fri, 11 Jul 2008 22:19:21 +0000 (22:19 -0000)]
busybox: bump 1.11.x version

16 years agopackage/Makefile.in: cleanup MAKE/MAKE1
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.

16 years agofuse: re-add missing --program-prefix
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.

16 years agoDo not use a localversion of kernel, to allow modules to be installed in the correct...
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

16 years agoUse correct include dir syntax for xcursor-xthemes
Ulf Samuelsson [Thu, 10 Jul 2008 15:17:03 +0000 (15:17 -0000)]
Use correct include dir syntax for xcursor-xthemes

16 years agoAdd AVR32 patches for 2.6.25.10
Ulf Samuelsson [Thu, 10 Jul 2008 15:15:52 +0000 (15:15 -0000)]
Add AVR32 patches for 2.6.25.10

16 years agoFix comments regarding latest stable kernel
Ulf Samuelsson [Thu, 10 Jul 2008 15:14:17 +0000 (15:14 -0000)]
Fix comments regarding latest stable kernel

16 years agoUpdate 'latest' kernel info
Ulf Samuelsson [Thu, 10 Jul 2008 14:58:04 +0000 (14:58 -0000)]
Update 'latest' kernel info

16 years agofuse: remove unused dir (git-svn issue)
Peter Korsgaard [Thu, 10 Jul 2008 10:13:16 +0000 (10:13 -0000)]
fuse: remove unused dir (git-svn issue)

16 years agofuse: bump version
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.

16 years agofuse: use BR2_SOURCEFORGE_MIRROR
Peter Korsgaard [Thu, 10 Jul 2008 10:12:20 +0000 (10:12 -0000)]
fuse: use BR2_SOURCEFORGE_MIRROR

16 years agofuse: cleanup patch handling
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.

16 years agofuse: remove commented out lines
Peter Korsgaard [Thu, 10 Jul 2008 10:12:11 +0000 (10:12 -0000)]
fuse: remove commented out lines

16 years agofuse: cleanup configure args
Peter Korsgaard [Thu, 10 Jul 2008 10:12:07 +0000 (10:12 -0000)]
fuse: cleanup configure args

16 years agofuse: remove stray $
Peter Korsgaard [Thu, 10 Jul 2008 10:12:00 +0000 (10:12 -0000)]
fuse: remove stray $

16 years agofuse: also remove fusermount from target
Peter Korsgaard [Thu, 10 Jul 2008 10:11:51 +0000 (10:11 -0000)]
fuse: also remove fusermount from target

16 years agofuse: strip binaries/libs in target
Peter Korsgaard [Thu, 10 Jul 2008 10:11:47 +0000 (10:11 -0000)]
fuse: strip binaries/libs in target

16 years agofuse: don't build kernel module
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.

16 years agofuse: select BR2_LARGEFILE
Peter Korsgaard [Thu, 10 Jul 2008 10:11:36 +0000 (10:11 -0000)]
fuse: select BR2_LARGEFILE

fuse needs largefile support

16 years agogperf: depend on stamp file rather than gperf binary
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.

16 years agofuse: use tabs for indentation in kconfig
Peter Korsgaard [Thu, 10 Jul 2008 10:11:25 +0000 (10:11 -0000)]
fuse: use tabs for indentation in kconfig

16 years agogperf: move under "other development stuff"
Peter Korsgaard [Thu, 10 Jul 2008 08:17:48 +0000 (08:17 -0000)]
gperf: move under "other development stuff"

16 years agogperf: don't install to staging dir
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.

16 years agoifplugd: only run post-install hook when needed
Peter Korsgaard [Thu, 10 Jul 2008 08:17:39 +0000 (08:17 -0000)]
ifplugd: only run post-install hook when needed

16 years agogperf: strip target binary
Peter Korsgaard [Thu, 10 Jul 2008 08:17:35 +0000 (08:17 -0000)]
gperf: strip target binary

16 years agolinux: add knob to force a rebuild of the kernel
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.

16 years agogperf: remove trailing spaces
Peter Korsgaard [Wed, 9 Jul 2008 07:14:57 +0000 (07:14 -0000)]
gperf: remove trailing spaces

16 years agogperf: fix upstream url
Peter Korsgaard [Wed, 9 Jul 2008 07:14:54 +0000 (07:14 -0000)]
gperf: fix upstream url

16 years agoAdd gperf, perfect hash generator
Ulf Samuelsson [Wed, 9 Jul 2008 04:27:45 +0000 (04:27 -0000)]
Add gperf, perfect hash generator

16 years agoAdd latest gcc patch for AVR32 gcc-4.2.2 prepatched source
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

16 years agoFix AVR32 gcc patching, when sysroot option is not enabled
Ulf Samuelsson [Tue, 8 Jul 2008 19:31:30 +0000 (19:31 -0000)]
Fix AVR32 gcc patching, when sysroot option is not enabled

16 years agosqlite: move under database submenu
Peter Korsgaard [Tue, 8 Jul 2008 14:14:36 +0000 (14:14 -0000)]
sqlite: move under database submenu

16 years agosqlite: strip binary and use $(INSTALL) for installation
Peter Korsgaard [Tue, 8 Jul 2008 14:12:09 +0000 (14:12 -0000)]
sqlite: strip binary and use $(INSTALL) for installation

16 years agoopenssl: re-revert r22644
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.

16 years agouboot: revert r22638
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

16 years agoRevert patch which breaks AVR32 build
Ulf Samuelsson [Tue, 8 Jul 2008 10:13:04 +0000 (10:13 -0000)]
Revert patch which breaks AVR32 build

16 years agoSupport ARCH-unknown-linux-gnu, Use target library paths instead of the host library...
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.

16 years agoDon't $(CONFIG_UPDATE) openssl as it doesn't use autotools anyway
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

16 years agoAdd glib2.0 specific include/pkconfig paths in 'docker'
Ulf Samuelsson [Tue, 8 Jul 2008 05:41:44 +0000 (05:41 -0000)]
Add glib2.0 specific include/pkconfig paths in 'docker'

16 years agoFix log
Ulf Samuelsson [Mon, 7 Jul 2008 23:20:09 +0000 (23:20 -0000)]
Fix log

16 years agoFix log
Ulf Samuelsson [Mon, 7 Jul 2008 18:32:41 +0000 (18:32 -0000)]
Fix log

16 years agoAdd slashes to allow TOPDIR to end without a slash in the future
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

16 years agoRemove some debug messages
Ulf Samuelsson [Mon, 7 Jul 2008 17:48:27 +0000 (17:48 -0000)]
Remove some debug messages

16 years agoBump midori version
Ulf Samuelsson [Mon, 7 Jul 2008 12:04:19 +0000 (12:04 -0000)]
Bump midori version

16 years agoRemove duplicated select LIBPNG and use alphabetical order for selects
Ulf Samuelsson [Mon, 7 Jul 2008 11:09:20 +0000 (11:09 -0000)]
Remove duplicated select LIBPNG and use alphabetical order for selects

16 years agokernel-headers: bump 2.6.25.x version
Peter Korsgaard [Mon, 7 Jul 2008 05:30:22 +0000 (05:30 -0000)]
kernel-headers: bump 2.6.25.x version

16 years agoMakefile.autotools.in: revert broken r22659
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.

16 years agobusybox: more 1.11.0 patches
Peter Korsgaard [Sun, 6 Jul 2008 13:55:55 +0000 (13:55 -0000)]
busybox: more 1.11.0 patches

16 years agoReplace configuring GLIB with autodetect
Ulf Samuelsson [Sun, 6 Jul 2008 07:34:41 +0000 (07:34 -0000)]
Replace configuring GLIB with autodetect

16 years agoUpdate atngw100-expanded defconfig
Ulf Samuelsson [Sun, 6 Jul 2008 06:27:00 +0000 (06:27 -0000)]
Update atngw100-expanded defconfig

16 years agoImprove readability of libgtk2 configuration
Ulf Samuelsson [Sun, 6 Jul 2008 06:25:06 +0000 (06:25 -0000)]
Improve readability of libgtk2 configuration

16 years agoAvoid duplicate downloading, when rebuilding failed package like libgtk2
Ulf Samuelsson [Sun, 6 Jul 2008 06:23:21 +0000 (06:23 -0000)]
Avoid duplicate downloading, when rebuilding failed package like libgtk2

16 years agoUpdate atstk100x defconfig
Ulf Samuelsson [Sun, 6 Jul 2008 06:19:12 +0000 (06:19 -0000)]
Update atstk100x defconfig

16 years agoun-deprecate gcc-4.2.1 for AVR32 external toolchain
Ulf Samuelsson [Sat, 5 Jul 2008 21:57:23 +0000 (21:57 -0000)]
un-deprecate gcc-4.2.1 for AVR32 external toolchain

16 years agoFix #3584, when building cairo with DirectFB, depend on DirectFB
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

16 years agoUse HOST_GLIB for packages
Ulf Samuelsson [Sat, 5 Jul 2008 09:30:17 +0000 (09:30 -0000)]
Use HOST_GLIB for packages

16 years agoAdd configuration possibility for host Gnome Lib installation
Ulf Samuelsson [Sat, 5 Jul 2008 09:22:38 +0000 (09:22 -0000)]
Add configuration possibility for host Gnome Lib installation

16 years ago[0002974] add support for zlib and bzip2 in lighttpd, use alphabetical order for...
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

16 years agoUse latest config.* from buildroot in curl
Ulf Samuelsson [Sat, 5 Jul 2008 07:44:28 +0000 (07:44 -0000)]
Use latest config.* from buildroot in curl

16 years agoFix bug [1899] Add table entry to allow openssl to build for AVR32, disabled softfloat
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

16 years agoAdd version number to log
Ulf Samuelsson [Sat, 5 Jul 2008 06:58:53 +0000 (06:58 -0000)]
Add version number to log

16 years agoUpdate config.* of openssl
Ulf Samuelsson [Sat, 5 Jul 2008 06:54:35 +0000 (06:54 -0000)]
Update config.* of openssl

16 years agoFix bug 003934, remove a dir tree instead of the dir node
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

16 years agoRun AVR32 toolchain with Sysroot (will fail if not enabled), deprecate 4.1.2 and...
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

16 years agoEnsure tslib uses config.* from buildroot
Ulf Samuelsson [Sat, 5 Jul 2008 04:30:05 +0000 (04:30 -0000)]
Ensure tslib uses config.* from buildroot

16 years agoAdd 'build with log'
Ulf Samuelsson [Fri, 4 Jul 2008 22:29:50 +0000 (22:29 -0000)]
Add 'build with log'

16 years agoUpdate atstk100x defconfig
Ulf Samuelsson [Fri, 4 Jul 2008 22:23:20 +0000 (22:23 -0000)]
Update atstk100x defconfig