summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* linux-libc-headers: add 2.6.33 headersJoshua Lock2010-05-203-2/+47
| | | | | | | Add kernel headers to match our preferred/default kernel version and set them as the preferred version for the Poky and Moblin distributions. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* kernel-arch.bbclass: merge improved arch detection from OE.devJoshua Lock2010-05-201-2/+4
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* kernel.bbclass: Package Kernel firmwareJoshua Lock2010-05-201-0/+3
| | | | | | Merged change from OE.dev to create packages of the kernel firmware Signed-off-by: Joshua Lock <josh@linux.intel.com>
* linux-kernel-base.bbclass: merge version detection updates from upstreamJoshua Lock2010-05-201-0/+3
| | | | | | | | | Kernels after 2.6.33 store the utrelease.h file, used to detect the kernels version, in a different location. Merged from oe.dev Signed-off-by: Joshua Lock <josh@linux.intel.com>
* kernel.bbclass: match x86 header installation to other architecturesJoshua Lock2010-05-201-2/+3
| | | | | | | The header installation for x86 was slightly different as to that employed for other architectures, change them to match for consistency. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* linux: Bump to 2.6.33.2Joshua Lock2010-05-196-1/+1
| | | | | | | Use the same kernel version as the moblin distro so that we provide a similar kernel for all QEMU machines and the netbook machine. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* linux-moblin: add 2.6.33.2 kernel from MeeGo 1.0Joshua Lock2010-05-1999-0/+277877
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* kernel.bbclass: fix installing of kernels 2.6.34 and aboveJoshua Lock2010-05-191-17/+22
| | | | | | | Changes merged from upstream to cope with changes to directory structures in recent kernels when building for x86 Signed-off-by: Joshua Lock <josh@linux.intel.com>
* Move all QEMU machines to use a common kernel recipe set and versionJoshua Lock2010-05-1811-7/+3666
| | | | | | | | | | | The different kernel recipes encapsulate functionality groups for machines, therefore it makes sense to have all the QEMU machines using the same kernel recipe. Switch the QEMU machines to default to the "linux" recipes for their kernel and bump the latest recipe from linux-2.6.32 to 2.6.33. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* add a new scripts create-pull-requestNitin A Kamble2010-05-171-0/+41
| | | | | | | | | | | | | This is the 1st version of create-pull-request script. Using specified local commit-id or branch-name it generates a short description of the changes; and using poky-contrib branch-name it generates the URL where these changes are already pushed and are available for review and git-pull. I prepared this script as per the input from Richard Purdie. Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
* Add recipe for X vesa driver packageNitin A Kamble2010-05-171-0/+9
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* Add recipe for moblin-image-netbook.directdiskNitin A Kamble2010-05-171-0/+20
| | | | Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
* poky-qemu-internal Add -show-cursor to qemux86Nitin A Kamble2010-05-141-2/+2
| | | | | | | Without this option the need to do the blind guesswork about the position of the pointer. Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
* handbook: Add section to Poky manual about contributions and certificate of ↵Richard Purdie2010-05-141-0/+45
| | | | | | origin Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Merge branch 'tk/head' of ssh://git.pokylinux.org/poky-contribRichard Purdie2010-05-141-0/+4
|\
| * poky-env-internal: unset variables to avoid disturbing new GIT cloneKevin Tian2010-05-131-0/+4
| | | | | | | | Signed-off-by Kevin Tian <kevin.tian@intel.com>
* | Merge branch 'nitin/lic1' of ssh://git.pokylinux.org/poky-contribRichard Purdie2010-05-142-1/+66
|\ \
| * | License Checking: convert an error into warningNitin A Kamble2010-05-121-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If license file md5 information (LIC_FILES_CHKSUMS variable) is missing in the recipe then just throw a warning instead of the build failure. Once enough recipes' LIC_FILES_CHKSUMS are filled then this warning will be reverted back to the the fetal error. If LIC_FILES_CHKSUMS field is present but invalid then the it still causes a fetal build error. Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
| * | License Change checking:Nitin A Kamble2010-05-112-1/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a new variable in recipe : LIC_FILES_CHKSUM It is a required field for every recipe. It describes license text location in the source files. And also stores md5sum of that license text. Any change in this license text triggers build error. Which enables developer to review any changes in the license and update the license fields in the recipe accordingly. For Example: contents of zlib_1.2.3.bb LICENSE = "zlib" LIC_FILES_CHKSUM = "file://README;md5=ae764cfda68da96df20af9fbf9fe49bd \ file://zlib.h;beginline=1;endline=30;md5=6ab03f03a5ee92d06b809797d4d5586d " Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* | | linux: Ensure we have buildable kernel recipes for each machineJoshua Lock2010-05-1310-13/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix various kernels to build with our toolchain, this includes well known fixes for: * sumversion.c: compilation failing with a 'PATH_MAX' undeclared (fixed by adding limits.h to sumversions includes * a patch taken from oe.dev to stop GCC >= 4.3 from optimizing a loop which causes compilation to fail * Fixing the KERNEL_OUTPUT for mx31 and nokia800 kernel recipes Signed-off-by: Joshua Lock <josh@linux.intel.com>
* | | Revert "poky-env-internal: Disable automatic adding of meta environments to ↵Richard Purdie2010-05-131-1/+1
| |/ |/| | | | | | | | | | | BBPATH" This reverts commit ba804d1729640a0587db8ba94bde6018570a8b0c which is a valid change but isn't working for some reason which needs further investigation.
* | mtd-utils: Fix mtd-utils-native do_install task to install binaries into the ↵Richard Purdie2010-05-121-1/+1
| | | | | | | | | | | | correct place rather than using hardcoded paths Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* | poky-env-internal: Disable automatic adding of meta environments to BBPATHRichard Purdie2010-05-121-1/+1
|/ | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* openssl: Fix build of openssl-native on x86_64 with recent binutilsJoshua Lock2010-05-072-1/+49
| | | | | | | Apply a patch from upstream that fixes the build, patch should be able to be dropped when we update openssl version. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* xf86-input-vmmouse: bump version to 12.6.6Joshua Lock2010-05-061-0/+0
| | | | | | | There was a bug in 12.6.5 whereby it was depending on symbols no longer available in the X server. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* moblin: drop moblin.conf and inherit poky for mirror configurationJoshua Lock2010-05-062-13/+1
| | | | | | | Doesn't make any sense to duplicate the mirror configuration, and all that the moblin class contained was minimal mirror config. So let's drop it. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* pax-utils: Sync with OE.dev fixing native versionRichard Purdie2010-05-061-3/+8
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Fix build problem with GCC-4.3.3 on PowerPCGary Thomas2010-05-061-0/+4
| | | | Signed-off-by: Gary Thomas <gary@mlbassoc.com>
* Latest versions of GCC are safe on PowerPCGary Thomas2010-05-061-4/+0
| | | | Signed-off-by: Gary Thomas <gary@mlbassoc.com>
* Update classes to use lib/oeJoshua Lock2010-05-064-605/+74
| | | | | | | Adapt modifications from upstream to make Poky classes use lib/oe for the common Python functionality. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* lib/oe: Import oe lib from OE.devJoshua Lock2010-05-065-0/+596
| | | | | | | This library moves the common Python methods into modules of an 'oe' Python package. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* base.bbclass: Sync minor layout changes with OE.devRichard Purdie2010-05-061-77/+68
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* xfce.bbclass: Fix SRC_URI (from OE.dev)Richard Purdie2010-05-061-1/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* poky-default-revisions.inc: Add linux-omap3-pm revision to ensure offline ↵Richard Purdie2010-05-061-0/+1
| | | | | | builds at least parse even if the revision is invalid Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* handbook: Add new FAQsRichard Purdie2010-05-061-0/+36
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* unifdef-native: Fix staging reference in do_install (noticed from OE.dev)Richard Purdie2010-05-061-0/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* unifdef-native: Fix staging reference in do_install (noticed from OE.dev)Richard Purdie2010-05-061-1/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* sanity.bbclass: fix typo in earlier commitJoshua Lock2010-04-301-2/+2
| | | | | | | Commit fbe3d41eb0c75500d8f16bfd2975cd3136ef1335 left a trailing bracket which cause an interpretation error Signed-off-by: Joshua Lock <josh@linux.intel.com>
* Remove meta-cross-linkage recipe, we no longer have a cross directoryJoshua Lock2010-04-301-33/+0
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* Version the build configuration directoryJoshua Lock2010-04-303-0/+12
| | | | | | | | | | The addition of BBLAYERS changes the build/conf directory to be incompatible with the "old way" in the Purple release. As such things are likely to occur in future we should bersion the build/conf directory through local.conf Signed-off-by: Joshua Lock <josh@linux.intel.com>
* Fix sanity check for new abiJoshua Lock2010-04-291-1/+1
| | | | | | | | | current_abi is the abi of the tmp directory, not the current abi specified in the abi file... Now the sanity check should work sanely. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* Bump the ABI to alert people that cross has goneJoshua Lock2010-04-282-1/+3
| | | | | | | Since we've change the tmpdir layout quite a bit we're going to bump ABI and force a rebuild. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* Fix references to CROSS_DIR now that it has been removedJoshua Lock2010-04-2817-48/+38
| | | | | | | CROSS_DIR is no longer removed so fix up classes, packages and documentation which refer to it. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* cross.bbclass: inherit relocatable to post-process cross binariesJoshua Lock2010-04-271-2/+1
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* Install cross-packages into the native sysrootJoshua Lock2010-04-2710-23/+14
| | | | | | | | | | | Cross is no longer required so can go away, we now install cross packages into the native sysroot and use them from there. This patch includes updates to classes and some recipes which reference CROSS_DIR. Others still need fixing an image can be built and run with this patch applied. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* gcc: Fix packaging of cross for PPCJoshua Lock2010-04-271-0/+3
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* autotools: deprecate autotools_stage classJoshua Lock2010-04-27222-224/+224
| | | | | | | | | Move the functionality into autotools and ensure all our Poky recipes are no longer using it. Keep the autools_stage class around for OE compatability but just have it inherit autools. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* poky-default.inc: set PPC preferred version for gcc-runtimeJoshua Lock2010-04-271-0/+1
| | | | | | | We use an older toolchain for PPC so we need to set the PREFERRED_VERSION for gcc-runtime too. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* conf/poky-default.inc: Fix PPC preferred binutilsJoshua Lock2010-04-271-1/+1
| | | | | | | At some stage the PPC preferred binutils seems to have been changed, we still need 2.19 for now. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* scripts/pstage-scanner: new script to sanity test the contents of pstageJoshua Lock2010-04-271-0/+127
| | | | | | | | | | Currently the script will scan all packages in the pstage directory and log packages which contain destinations outside of the native sysroot. The script currently ignores pkgdata, stamps and deploy but does trigger the work dir for packages with a package-split file, this may well be a false positive. Signed-off-by: Joshua Lock <josh@linux.intel.com>