summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ipkg-utils: fix ipkg-index for ipkg with outer tarptxdist-2010.08.3stable/ptxdist-2010.08.xMarc Kleine-Budde2017-11-281-3/+12
| | | | | | | | | | | | | | | | | Don't use wildcards for tar ipkg with outer tar, too. Fixes this error: index 'platform/packages/Packages'... tar: Pattern matching characters used in file names. Please, tar: use --wildcards to enable pattern matching, or --no-wildcards to tar: suppress this warning. tar: *data.tar.gz: Not found in archive tar: Exiting with failure status due to previous errors gzip: stdin: unexpected end of file Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit b658a2577b3fc2b07c85b3059f63437b93c989ee) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* host-ipkg-utils: add patch to fix ipkg package creation on openSUSE 12.2Michael Olbrich2017-11-2812-58/+69
| | | | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit 3d54ba0501a0266b9493a33f70d5feeb2f7c37f5) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* ipkg-utils: rewrite patch for issue with ar and large UIDsMichael Olbrich2017-11-282-14/+18
| | | | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit 4d7ff1b8e46a242ead09e044262e7daec642e3b7) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* ipkg-utils: fix problem with older ar versionsMarc Kleine-Budde2017-11-281-1/+1
| | | | | | | | | | | | Commit 6b186e8bfc2e6c394db0de03047c8a81f0690d08 added the "-D" option to ar during creation of an ipkg. It turns out that nor all versions of "ar" support this option. For now turn off the patch that adds the "-D" option. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit 1a23d09f49a2e040672f79e02f4b9741a8cca99b) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* ipkg-utils: regenerate patchesMarc Kleine-Budde2017-11-2810-28/+20
| | | | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit 5b1589e4d873554d82aedff61f5f5f2bcc778ff3) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* ipkg-utils: fix UID-related problem with arDarren Hutchinson2017-11-282-0/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | I had a strange problem when I tried to create an image. The last part of the error message was: File "<path to ptxdist>/projects/<project name>/ \ platform-<project name>/sysroot-host/lib/python2.6/site-packages/arfile.py", line 79, in _scan size = int(descriptor[5]) ValueError: invalid literal for int() with base 10: '`' The problem eventually turned out to be that arfile.py has trouble parsing AR files created with a UID >99999 - it relies on the (ascii) AR header fields using one digit less than their allocated sizes so it can the padding space to split() them. There is no real need to use the actual UID in the ar header, and GNU AR has a 'D' option that uses UID and GID values of zero when creating the ipkg archive. I have put together a quick patch that tells ptxdist to patch ipkg-build to use the 'D' option when invoking AR. Signed-off-by: Darren Hutchinson <dhutchinson@google.com> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit 6b186e8bfc2e6c394db0de03047c8a81f0690d08) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* configure.ac: ask python for the path to its Makefileptxdist-2010.08.2Michael Olbrich2017-10-121-2/+2
| | | | | | | | | The old check fails on multi-arch distributions because the Makefile is in .../config-<gnu-triple>/ instead of .../config/ Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit c498184eac7928ddef6d3311cf53401900ea08e8) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* images: fix dependencies for kernel imagesMichael Olbrich2017-10-121-1/+3
| | | | | | | | we depend on $(KERNEL_IMAGE_PATH_y) so we need a rule for it. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit a47e978e5dfde971331f4ba8716001b5fcf6b99c) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* openssl: Fix build with Perl 5.18.0Bernhard Walle2017-10-121-0/+2
| | | | | | | | | | | | | | | | | My Arch Linux updated to host-perl 5.18.0. Building openssl with that version fails when creating the manpages: c_rehash.pod around line 45: You forgot a '=back' before '=head1' c_rehash.pod around line 49: =back without =over Since we don't need that manpages, install openssl with "make install_sw" instead of "make install" which avoids building the manpages. Signed-off-by: Bernhard Walle <bernhard@bwalle.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit 194a72e375bf781e642510d173ae95a802d992f8) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* configure.ac: change regex for sed versionAlexander Aring2017-10-121-1/+1
| | | | | | | | | | | | | | | | | | | | Change regex for sed version in configure.ac. This regex will match only on the first line and doesn't look for a 'version' pattern which is not available in sed version 4.2.2. The new regex will match in the first line of 'sed --version' in a pattern which starts with random character sequence(or zero) followed by whitespace character and several digits of pattern x.x....x which x is a number. This pattern will be save in the SED_VERSION variable. Signed-off-by: Alexander Aring <alex.aring@gmail.com> [mkl: add match for GNU in regex] Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit 2a89985c97422af3569eb6d268e3ccdc9c3fb0e5) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* apache2: fix missing backslashRobert Schwebel2017-10-121-1/+1
| | | | | | | | | This patch fixes a missing backslash which was introduced with commit 6d2866f4. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> (cherry picked from commit 50cb42eb1cc5c96d142f87ccf51be5f905ddb8cc) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* Makefile: activate "make release"ptxdist-2010.08.1Marc Kleine-Budde2010-11-191-0/+3
| | | | | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit 17062e46c57142b9b4d673d72e51ab24827dc9d9) Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* Makefile: add "make_release" target to create a release in gitMarc Kleine-Budde2010-11-191-0/+95
| | | | | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit 9707bb27251377dc41cf896251693000751cf90a) Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [qt4-examples] rename the target to make sure that qt4-examples appears in ↵Michael Olbrich2010-11-181-4/+2
| | | | | | | | | qt4.xpkg.map Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit a47e0559d086b5316f91663d60234187b7290bbb) Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [libcaca] don't build docsMichael Olbrich2010-11-181-0/+1
| | | | | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit 3f41648c3d374dc44d669aaf444b659351e83e33) Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* fix mod_fastcgi.conf to use php-cgiJan Weitzel2010-11-181-1/+1
| | | | | | | | | | php5.make installs php-cgi not php5-cgi Signed-off-by: Jan Weitzel <J.Weitzel@phytec.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit a42b11306fc76854a750b46f8661d1137a41b508) Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [option-disabled] make ptx/ifdef more robust, e.g. for empty parametersMichael Olbrich2010-11-181-2/+2
| | | | | | | | | Also, use ptx/ifdef for ptx/opt-dis Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit 4dc5faf6829df9984fa15fa902aadd6e2433eb5b) Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [xorg-fonts] prepare fontdir in installMichael Olbrich2010-10-271-6/+6
| | | | | | | | | | | | Since 4bbbb7ec5cc848232201126c2b23ace92473cf2f the dependencies between xorg-fonts and the various font packages were broken. As a result, an empty font package was created. This is fixed by this patch. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit f42f33c649fad3da94e55eee93c218059633e5b8) Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [kernel] move "make modules_install" to kernel.installMichael Olbrich2010-10-271-6/+6
| | | | | | | | | | | | Since 4bbbb7ec5cc848232201126c2b23ace92473cf2f the dependencies between kernel and external modules were broken. As a result the external modules were not part of the kernel-modules ipkg. This is fixed by this patch. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit 76e73ab090656d83463af7000f32628b43292d6b) Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [mesalib] select makedependMarc Kleine-Budde2010-08-062-1/+2
| | | | | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit 548b737c47253274251cb311b29bf2a9a337914f) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [host-makedepend] new packageMarc Kleine-Budde2010-08-062-0/+38
| | | | | | | | | | | squashed these upstream commits: (cherry picked from commit de238e5040f4f38afe9b475f6a59aa9758f8953c) (cherry picked from commit be015a963f3a16bbe3cc17f9d5bb75aee901bdef) needed for mesa Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [ptxd_make_world_patchin] alias: call git-ptx-patches directlyMarc Kleine-Budde2010-08-021-1/+1
| | | | | | | | | | Don't use "sh" because the script uses bashisms, this breaks on ubuntu where /bin/sh is dash. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit d0b1b8608dfa4aa9bae18b2bb798b4b19580e181) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [expat] use bz2 tarballMarc Kleine-Budde2010-08-021-1/+1
| | | | | | | | | because the gz tarball has problems on certain i386 ubuntu systems Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit 7d14006b7f76b26ddbd52f0bc00fa5c8f7056641) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sdl] fix typo: properly disable audioMarc Kleine-Budde2010-08-021-1/+1
| | | | | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit 9602dadda30058385fe65d04da34ebdd863fb046) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [host-xorg-lib-Xfont] turn off documentationMarc Kleine-Budde2010-08-021-1/+2
| | | | | | | | | regenerating documentation breaks on gentoo Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> (cherry picked from commit bdfb95f42e6c7c8179b363d685277d15304eed69) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [xorg-app-xinput] fix dependenciesMichael Olbrich2010-08-021-1/+6
| | | | | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> (cherry picked from commit be95cd9f073e975eca6082ea5aaac10fa1a4e27b) Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [dgen] don't define convenience variables for host/cross package without ↵ptxdist-2010.08.0Michael Olbrich2010-08-021-4/+7
| | | | | | | | | | corresponding host package We define HOST_<PKG>_DIR etc. based on the corresponding host package. If it does not exist those variables a bogus. So don't define them. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [ptxd_make_world_init] sanatize pkg_pkg_dir for host/cross packagesMichael Olbrich2010-08-021-0/+2
| | | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [xorg-app-xinput] remove obsolete stagesMarc Kleine-Budde2010-07-311-24/+3
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [ptxd_make_import] add standard headerMarc Kleine-Budde2010-07-311-0/+8
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [xorg-server] fix dependencies for udev input device detectionMichael Olbrich2010-07-301-1/+3
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [xorg-app-xinput] new packageMichael Olbrich2010-07-302-0/+78
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [libpciaccess] version bump 0.11.0 -> 0.12.0Michael Olbrich2010-07-291-1/+1
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [xorg-lib-Xau] version bump 1.0.5 -> 1.0.6Michael Olbrich2010-07-291-1/+1
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [xorg-app-xrandr] version bump 1.3.2- > 1.3.3Michael Olbrich2010-07-291-1/+1
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [xorg-driver-video-intel] it needs the XV extension. Xorg segfaults without it.Michael Olbrich2010-07-291-0/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [xorg-server] add patches to fix compiling with --disable-xv and ↵Michael Olbrich2010-07-293-0/+84
| | | | | | --disable-mitshm Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [migrate] add patterns for rc.d link changesMichael Olbrich2010-07-271-0/+17
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [busybox] install rc.d link with the init scriptMichael Olbrich2010-07-274-60/+62
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [utelnetd] install rc.d link with the init scriptMichael Olbrich2010-07-273-1/+15
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [inetutils] install rc.d link with the init scriptMichael Olbrich2010-07-273-2/+28
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [dibbler] install rc.d link with the init scriptMichael Olbrich2010-07-274-36/+38
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [lvm2] install rc.d link with the init scriptMichael Olbrich2010-07-274-12/+14
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [smartmontools] install rc.d link with the init scriptMichael Olbrich2010-07-274-12/+14
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [splashutils] install rc.d link with the init scriptMichael Olbrich2010-07-274-12/+14
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [rc-once] install rc.d link with the init scriptMichael Olbrich2010-07-274-12/+14
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [fake-overlayfs] install rc.d link with the init scriptMichael Olbrich2010-07-274-12/+14
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [acpid] install rc.d link with the init scriptMichael Olbrich2010-07-274-14/+14
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [udev] install rc.d link with the init scriptMichael Olbrich2010-07-274-12/+14
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* [thttpd] install rc.d link with the init scriptMichael Olbrich2010-07-274-12/+14
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>