summaryrefslogtreecommitdiffstats
path: root/meta-agl-distro/conf
AgeCommit message (Expand)AuthorFilesLines
2017-11-05Prepare Electric Eel RC2 releaseJan-Simon Möller1-1/+2
2017-11-05Allow SRCREV handling through poky-agl.confJan-Simon Möller1-2/+13
2017-10-14Remove rc1 locks merge window open for rc2Jan-Simon Möller2-74/+0
2017-10-13Lock down of SRCREVS matching EE RC1eel_4.99.1eel/4.99.14.99.1Jan-Simon Möller2-0/+75
2017-10-11Change DISTRO_VERSION for EE rc1Jan-Simon Möller1-2/+2
2017-09-15Fix clash in metadata of nativesdk-cmake and nativesdk-qtbase-toolsJan-Simon Möller1-0/+5
2017-09-08Upgrade to pyroChanghyeok Bae1-7/+7
2017-07-29Bump master version and codename to Electric EelJan-Simon Möller1-3/+3
2017-07-26Fix runqemu by generating an ext4 image by defaultJan-Simon Möller2-18/+17
2017-07-05Fix for image format dependencies during parsingJan-Simon Möller1-7/+11
2017-06-28Fix rpi-sdimg after IMAGE_FSTYPE being enforced in poky-agl.confJan-Simon Möller1-0/+4
2017-06-28Enforce same IMAGE_FSTYPES across all boards for AGLJan-Simon Möller1-0/+9
2017-06-09Enable SOTA for supported architecturesAnton Gerasimov1-3/+0
2017-06-01Add support for cflags for pi0/1Jan-Simon Möller1-1/+10
2017-05-25Add override for DISTRO_CODENAMEdab_3.99.1dab/3.99.13.99.1Jan-Simon Möller1-0/+1
2017-05-23Bump version for DARING DAB rc1Jan-Simon Möller1-1/+2
2017-05-16Fix build of mozjs, gpm and libatasmart due to SECURITY_%FLAGSJan-Simon Möller1-0/+9
2017-05-09x86_64-tune: fix KVM qemu optionsMartin Kelly1-0/+2
2017-05-06Enforce unified tunings across all target boards of AGLJan-Simon Möller5-20/+95
2017-04-25Temporary fix for the agl-sota featureJan-Simon Möller1-0/+3
2017-04-25poky-agl: exempt qtwebengine from security flagsMartin Kelly1-0/+3
2017-04-18Set a weak distro-wide DEFAULTTUNE for ARM 32bitJan-Simon Möller1-0/+3
2017-04-09LLVM3.3 build fix on qemux86-64Jan-Simon Möller1-1/+2
2017-03-29Fix version of gst-omxTadao Tanikawa1-7/+7
2017-03-28Re-enable security flags proposed in PokyStephane Desneux1-1/+1
2017-03-08Splice out distro configuration in own layer for compatibilityJan-Simon Möller3-0/+113
s by default require conf/distro/include/security_flags.inc # required overrides, upstreamed but not merged yet: # http://lists.openembedded.org/pipermail/openembedded-devel/2016-June/107727.html SECURITY_CFLAGS_pn-llvm3.3 = "" SECURITY_LDFLAGS_remove_pn-llvm3.3 = "-fstack-protector-strong" SECURITY_STRINGFORMAT_pn-gpm = "" SECURITY_CFLAGS_pn-libdbus-c++ = "" SECURITY_LDFLAGS_pn-libdbus-c++ = "" # more than 2 targets fail to compile these with the SECURITY compiler flags: # Bug tracked as SPEC-593 SECURITY_CFLAGS_pn-mozjs = "" SECURITY_LDFLAGS_pn-mozjs = "" SECURITY_CFLAGS_pn-gpm = "" SECURITY_LDFLAGS_pn-gpm = "" SECURITY_CFLAGS_pn-libatasmart = "" SECURITY_LDFLAGS_pn-libatasmart = "" # Not yet upstreamed; should be submitted. SECURITY_CFLAGS_pn-qtwebengine = "${SECURITY_NO_PIE_CFLAGS}" #Redefined USER_CLASSES #Disable prelink. It is unmaintained and likely will go away. #default: USER_CLASSES ?= "buildstats image-mklibs image-prelink" USER_CLASSES = "buildstats image-mklibs" # AGL uses 4 optimization levels # 2 for ARM 32bit # - a high and a medium setting for the CCARGS # - the high setting is default (needs >= cortex-a15) # - the medium setting is enabled with: DISTRO_FEATURES_append = " agl-medium-arm-compiler " # 1 for ARM 64bit / AARCH64 # 1 for x86-64 require conf/distro/include/${TARGET_ARCH}-tune.inc # Generic qemu and qemuboot (runqemu) enhancements # check qemuboot.bbclass # - use 2G RAM by default QB_MEM ?= "-m 2048" # use pulseaudio on the host side - off as qemu-native is built with alsa #QB_AUDIO_DRV = "pa" # expose a virtual 'hda' sound card to the guest (arm/aarch64/x86-64) QB_AUDIO_OPT = "-soundhw hda" # Board templates can add extra IMAGE_FSTYPES through this. # It is added (late) through the AGL image recipes. AGL_EXTRA_IMAGE_FSTYPES ??= "" AGL_EXTRA_INITRAMFS_FSTYPES ??= "" # # Default IMAGE FSTYPES compressed tarball + ext4.xz AGL_DEFAULT_IMAGE_FSTYPES ?= "tar.xz ${@bb.utils.contains('DISTRO_FEATURES', 'AGLCI', 'ext4.xz', 'ext4', d)}" AGL_DEFAULT_INITRAMFS_FSTYPES ?= "ext4.gz" # DEFAULT IMAGE_FSTYPES for AGL (no - BSPs should not set this) # IMAGE_FSTYPES := "${AGL_DEFAULT_IMAGE_FSTYPES} ${AGL_EXTRA_IMAGE_FSTYPES}" INITRAMFS_FSTYPES := "${AGL_DEFAULT_INITRAMFS_FSTYPES} ${AGL_EXTRA_INITRAMFS_FSTYPES}" # # THE FUTURE is 'wic' # IMAGE_FSTYPES_append = " wic" # Fix for rpm metadata clash between nativesdk-cmake and nativesdk-qtbase-tools # (revalidate after 2017-10-15) DIRFILES_pn-nativesdk-cmake = "1"