aboutsummaryrefslogtreecommitdiffstats
path: root/conf
AgeCommit message (Collapse)Author
2013-03-13layer.conf: Set LICENSE_PATH to layers's custom licenses directoryAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2013-03-13rpi-default-providers: Use userland as provider for egl and gles2Andrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2013-03-13rpi-default-providers: Remove virtual/libgl providerAndrei Gherzan
There are no libgl binary shipped in raspberrypi firmware repo. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2013-01-27layer.conf: fix parseAndreas Müller
after meta-systemd commit [1] the following error was thrown during parsing: ERROR: Unable to parse /home/Superandy/data/oe-core/sources/meta-raspberrypi/conf/layer.conf: Failure expanding variable BBFILES, expression was ... which triggered exception NameError: name 'base_contains' is not defined [1] http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f684c41dbd6333583e Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-11-28arch-arm: define different ARMPKGARCH when different CCARGS are usedAndrei Gherzan
* without this tune-xscale and tune-arm926ejs were both creating packages in armv5te feed, but each with different -mtune, with OEBasicHash enabled it was causing each package to rebuild with new -mtune after MACHINE switch, but that doesn't make sense with output stored in the same armv5te feed * this makes different feed for each -mtune, but more generic one to be selected with DEFAULTTUNE * tune-iwmmxt and tune-ep9312 were already using this, just move it bellow AVAILTUNES and use ARMPKGARCH_tune-foo syntax * tune-cortexr4 and tune-cortexm3 are using armv7r/armv7m as ARMPKGARCH because there isn't another tune to use the same -march (From OE-Core rev: cffda9a821a3b83a8529d643c567859e091c6846) Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-11-28tune-*: define more generic DEFAULTTUNE to share feed between machinesAndrei Gherzan
* this is mostly for backwards compatibility and to share binary feed like it was before, but now without missing different -mtune in it * if you want to build some package with -mtune add something like this to your distro config DEFAULTTUNE_qemuarm_pn-openssl = "arm926ejs" DEFAULTTUNE_qemuarmx_pn-openssl = "xscale" be aware that if you do this you should do it also for all packages which depends on openssl because if you dont and you build e.g. dhcp, then dhcp build for arm926ejs (even with DEFAULTTUNE armv5te) will depend on openssl with arm926ejs, so dhcp in armv5te feed will be rebuild after each MACHINE switch. * cortexm3, cortexr4, iwmmx and ep9312 are using own DEFAULTTUNE because they define also different -march * shared feeds are armv4t: arm920t, arm9tdmi armv5te: arm926ejs, xscale armv7a-neon: cortexa8, cortexa9 (From OE-Core rev: a11bdc36a1be18cc5aa14682b2a2c9ee83141f51) Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-11-27rpi-default-versions: Remove preferred version of udevAndrei Gherzan
We use now the latest one from meta-openembedded. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-11-27raspberrypi.conf: Remove RPI_GPU_FIRMWARE definitionAndrei Gherzan
We don't use this anymore as the memory split is now done from config.txt. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-11-27rpi-default-providers: Use linux-libc-headers-raspberrypiAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-18Move fsl-default*.inc from distro to machineAndrei Gherzan
It makes no sense to have distro related configurations in a BSP layer. So let's have these common parts (provides, version etc) in machine directory instead. [GITHUB #73] Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-16raspberrypi.conf: Fix file permissionsAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-16rpi-default-settings.inc: Add sdcard_image-rpi to IMAGE_CLASSESAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-16raspberrypi.conf: Drop INHERIT sdcard_image-rpi as we will use IMAGE_CLASSESAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-16rpi-default-*.inc: Create inc files included in machine configure fileAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-16raspberrypi.conf: Remove PREFERRED_* and include rpi-default*.incAndrei Gherzan
All PREFERRED_* variables were moved to an .inc file to have variables clearer. Inherit .inc files and remove PREFERRED_* variables. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-16README: Move RPI_GPU_FIRMWARE instructions to READMEAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-16raspberrypi.conf: Remove TARGET_ARCH variableAndrei Gherzan
TARGET_ARCH by default is TUNE_ARCH which is already arm. So this line is useless. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-16raspberrypi.conf: Remove GUI_MACHINE_CLASS variableAndrei Gherzan
This variable was dropped: commit 0504d36646f8def4829250a9eee0cf9bac3b756e Author: Richard Purdie <richard.purdie@linuxfoundation.org> Date: Tue May 10 16:19:02 2011 +0100 bitbake.conf: Drop unused *GUI* and MACHINE_DISPLAY variables (From OE-Core rev: baf136a9c95a94c5bf89c9a818960d616439682c) Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-09-06poky-raspberrypi.conf: Remove distro fileAndrei Gherzan
We added distro file for having BBMASK and thought this would be a good place to hold some other distro variables. Obviously the only needed variable was BBMASK after all, so a cleaner way would be to instruct users to add BBMASK to local.conf [GITHUB #57] Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-08-31poky-raspberrypi.conf: Weakly assign BBMASKAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-08-29raspberrypi.conf: Set udev PREFERRED_VERSION to 164Andrei Gherzan
It seems like rpi kernel doesn't work well with newer udev version so we set 164 as preferred version for it. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-08-29poky-raspberrypi.conf: Remove libav from BBMASKAndrei Gherzan
We will use this package from meta-oe. libav is a dependency for omxplayer. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-08-29raspberrypi.conf: Set PREFERRED_PROVIDER for egl, libgles2 and glAndrei Gherzan
These variables are weakly assigned to let user overwrite them. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-08-28raspberrypi.conf: Weakly assign IMAGE_FSTYPES to let users overwriteAndrei Gherzan
[GITHUB #39] Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-08-22raspberrypi.conf: Weakly assign PREFERRED_PROVIDER_virtual/eglAndrei Gherzan
Use vc-graphics-hardfp by default as virtual/egl and let the user overwrite this. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-08-22raspberrypi.conf: Add "rtc" to MACHINE_FEATURES_BACKFILL_CONSIDEREDAndrei Gherzan
RaspberryPi has no hardware clock, this is why hwclock initscript from busybox fails at boot. So make sure we don't have this init script to avoid errors at boot. [GITHUB #21] Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-07-05raspberrypi.conf: Use Image as as kernel fstypeAndrei Gherzan
It's a bug in the latest bootloader where rpi doesn't boot with zImage. Use uncompressed kernel type. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-07-05raspberrypi.conf: Remove bcm2835-kernel-image as we can boot from Image directlyAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-07-02Merge pull request #3 from agherzan/devel_yoctoAndrei Gherzan
Add yocto build details and distro file
2012-07-02sdcard_image-rpi.bbclass: Change to be usable with any imageAndrei Gherzan
Instead of being inherited by a specific image recipe, this class can now be inherited globally in the machine configuration, allowing it to be used with any image. This means we can remove "inherit image", and we can also remove the IMAGE_FSTYPES modification since the machine config does this already. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-07-02raspberrypi.conf: Add variable to set GPU firmware image to be usedAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-07-02raspberrypi.conf: Add ext3 to FSTYPE as needed by sd creation toolAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-07-02poky-raspberrypi.conf: Add yocto specific distro configure fileAndrei Gherzan
This distro configure file relies on poky distro conf. We use this distro to include raspberrypi-default-versions and to BBMASK libav and rpi-zram-service and these packages are not included in poky. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-07-01raspberrypi.conf: Fix serial console nameAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-04-23linux-raspberrypi: Bump SRCREV and Kernel PR.David-John Willis
2012-04-11raspberrypi.conf: Bump MACHINE_KERNEL_PR.David-John Willis
* Also reset to a zImage ;).
2012-04-04raspberrypi.conf: Update machine name.David-John Willis
* No prizes for working out what layer I used as a basis for this ;).
2012-04-03RASPBERRYPI.CONF/TUNE-ARM1176JZF-S: Add tune file for the BCM2835 SoC.David-John Willis
2012-04-03CONF: Add layer and machine configs.David-John Willis