summaryrefslogtreecommitdiffstats
path: root/meta/packages/qemu/qemu.inc
Commit message (Collapse)AuthorAgeFilesLines
* Major layout change to the packages directoryRichard Purdie2010-08-271-39/+0
| | | | | | | | | | | | | | | | | Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* qemu: On some older machines SDL is availableMark Hatle2010-08-261-1/+2
| | | | | | | | | | On some older machines SDL is available, even if a pkgconfig file for SDL is not there. (See RHEL5.1) Extend the check, to see if the primary SDL header is there, if the pkgconfig check fails. Signed-off-by: Mark Hatle <mhatle@windriver.com>
* qemu: Enable ppc system emulation and fix ppc buildRichard Purdie2010-06-241-2/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* qemu: Fix linking of the native package on Fedora 13Joshua Lock2010-06-151-1/+1
| | | | | | | | | Fedora 13 switched the default behaviour of the linker to no longer indirectly link to required libraries (i.e. dependencies of a library already linked to). Therefore we need to explicitly pass the depended on libraries into the linker for building to work on Fedora 13. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* qemu-nativesdk: Make sure the compiler prefix is set fixing cross sdk buildsRichard Purdie2010-06-101-2/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* qemu: add some extra ldflags to make it link succesfullyJoshua Lock2010-05-281-1/+1
| | | | | | | | | | | | qemu-native was failing to link on my 64bit Fedora 13 machine with this error: | /usr/bin/ld: libqemu.a(helper_opengl.o): undefined reference to symbol 'dlsym@@GLIBC_2.2.5' | /usr/bin/ld: note: 'dlsym@@GLIBC_2.2.5' is defined in DSO /lib64/libdl.so.2 so try adding it to the linker command line | /lib64/libdl.so.2: could not read symbols: Invalid operation So I did as the linker told me and added -ldl to the linker flags Signed-off-by: Joshua Lock <josh@linux.intel.com>
* qemu: reduce duplication, use an inc file and share common patchesJoshua Lock2010-05-281-0/+38
There's no need to carry around two copies of the same patches for qemu-git and qemu-0.12 so drop the qemu-git directory and update the git recipe to use the qemu-0.12 directory for patches. Move common code from the two recipes to an inc file. Signed-off-by: Joshua Lock <josh@linux.intel.com> fweh