From: Stephane Desneux Date: Mon, 8 Jun 2015 08:01:50 +0000 (+0200) Subject: Add project Tizen:3.0.2015.Q2:Common X-Git-Tag: submit/trunk/20170904.073139~133 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F00%2F40700%2F1;p=scm%2Fmeta%2Fobs.git Add project Tizen:3.0.2015.Q2:Common Change-Id: I0da69a4ff4fedb4ea07477c6f77a188c7f4edf60 Signed-off-by: Stephane Desneux --- diff --git a/Tizen:3.0.2015.Q2:Common/_config b/Tizen:3.0.2015.Q2:Common/_config new file mode 100644 index 0000000..62ef259 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/_config @@ -0,0 +1,429 @@ +################################################################################ +# OBS Project config for Tizen:3.0.2015.Q2:Common +# +# RE contacts: +# Stephane Desneux +# Ronan Le Martret +# Jose Bollo +# +# Git mirror for OBS config: review.tizen.org:scm/meta/build-config / branch tizen_common +# +# vim: set syntax=spec: +################################################################################ + +Patterntype: rpm-md comps +Release: . +Support: build +Support: build-compare build-mkbaselibs +Support: rpmlint-mini rpmlint-tizen + +############################# conflicts resolution ############################# + +FileProvides: /usr/sbin/groupadd pwdutils +Prefer: util-linux +Prefer: libtapi-devel +Prefer: libpci-devel + +Prefer: vconf-buxton +Prefer: vconf-buxton-devel +Prefer: vconf-buxton-keys-devel + +############################# profile definition ############################### + +%define profile common +%define _with_tizen 1 + +# %release_name and %tizen_full_version are used in platform/upstream/tizen-release + +Macros: +%profile common +%release_name Tizen Common 3.0 2015 Q2 + +%tizen_version_major 3 +%tizen_version_minor 0 +%tizen_version_patch 0 + +%tizen_version %{tizen_version_major}.%{tizen_version_minor} +%tizen_full_version %{tizen_version}.%{tizen_version_patch} +%tizen %tizen_version +%vendor tizen +%_vendor tizen +%_with_tizen 1 + +%check exit 0 +%run_check_section 0 +%opensuse_bs 1 +%_default_patch_fuzz 2 +:Macros + +############################# display system ################################### + +########## display system selection ########## + +# selection of the display system +# this selection is done for each repository +# +# flags combinations: +# |---------------------------------------------------- +# | wayland | x | meaning +# |---------------------------------------------------- +# | | 1 | pure X11 platform(no wayland) +# | 1 | | pure wayland platform (no X11) +# | 1 | 1 | wayland but X compatibility +# | | | no X and no wayland +# |---------------------------------------------------- +# +# Owner: Stephane + +########## RDP flag ########## + +# enable/disable RDP (remote desktop protocol) for wayland +# flag: _with_rdp, used in repositories +# Affects: weston, freerdp +# Owner: Manuel + +########## mesa activation ########## + +%define _with_mesa 1 +Macros: +%_with_mesa 1 +:Macros + +%ifarch %arm armv7l aarch64 + Substitute: mesa-devel pkgconfig(glesv2) + #FIXME Substitute: pkgconfig(egl) +%endif + +############################# wayland repositories ############################# + +%if "%_repository" == "ia32-wayland" || "%_repository" == "x86_64-wayland" || "%_repository" == "arm-wayland"|| "%_repository" == "arm"|| "%_repository" == "arm64" || "%_repository" == "arm64-wayland" || "%_repository" == "wayland" || "%_repository" == "standard" + +Substitute: pkgconfig(gles20) pkgconfig(egl) pkgconfig(glesv2) +Substitute: pkgconfig(gles11) pkgconfig(egl) pkgconfig(glesv1) pkgconfig(gl) + +%define _with_wayland 1 +%define _with_rdp 1 + +Macros: +%_with_wayland 1 +%_with_rdp 1 +:Macros + +%endif + +############################# X11 repositories ################################# + +%if "%_repository" == "ia32-x11" || "%_repository" == "x86_64-x11" || "%_repository" == "arm-x11" || "%_repository" == "arm64-x11" || "%_repository" == "x11" + +Substitute: pkgconfig(gles20) pkgconfig(egl) pkgconfig(glesv2) pkgconfig(gl) +Substitute: pkgconfig(gles11) pkgconfig(egl) pkgconfig(glesv1_cm) pkgconfig(gl) + +%define _with_x 1 + +Macros: +%_with_x 1 +:Macros + +%endif + +############################# X+Wayland repositories ########################### + +%if "%_repository" == "ia32-xwayland" || "%_repository" == "x86_64-xwayland" || "%_repository" == "arm-xwayland" || "%_repository" == "arm64-xwayland" || "%_repository" == "xwayland" + +Substitute: pkgconfig(gles20) pkgconfig(egl) pkgconfig(glesv2) pkgconfig(gl) +Substitute: pkgconfig(gles11) pkgconfig(egl) pkgconfig(glesv1_cm) pkgconfig(gl) + +%define _with_wayland 1 +%define _with_x 1 + +Macros: +%_with_wayland 1 +%_with_x 1 +:Macros + +%endif + +############################# emulator repositories ############################ + +%if "%_repository" == "emulator32-wayland" + +Prefer: mesa-libGLESv2 +Prefer: libwayland-egl +Prefer: libgbm +Prefer: mesa-libGL +Prefer: mesa-libEGL +Prefer: emulator-yagl + +Substitute: pkgconfig(gles20) pkgconfig(egl) pkgconfig(glesv2) +Substitute: pkgconfig(gles11) pkgconfig(egl) pkgconfig(glesv1) pkgconfig(gl) + +%define _with_wayland 1 +%define _with_emulator 1 + +Macros: +%_with_wayland 1 +%_with_emulator 1 +:Macros + +%endif + + +############################# misc config flags ################################ + +########## USAGE ########## +# +# IMPORTANT: please follow the following rules when playing with flags +# ******************************************************************** +# +# In spec file, call %bcond_with macro at the beginning and test with %with: +# ------------------------- +# | %bcond_with myfeature +# | [...] +# | %if %{with myfeature} +# | [...] +# | %endif +# | [...] +# ------------------------- +# +# To activate an option, use: +# ------------------------- +# | %define _with_myfeature 1 +# | Macros: +# | %_with_myfeature 1 +# | :Macros +# ------------------------- +# +# To disable an option, DON'T set the values to 0, as the option would still be defined +# but simply comment the lines: this will undefine the option. +# ------------------------- +# | #%define _with_myfeature 1 +# | #Macros: +# | #%_with_myfeature 1 +# | #:Macros +# ------------------------- +# +# More information here: +# https://en.opensuse.org/openSUSE:Build_Service_prjconf#.25bcond +# + +########## flags ########## + +# This build macro controls the libdlog output. If enabled, +# libdlog writes to Systemd Journal. If disabled, libdlog writes to kernel Android +# logger FIFO. Affects: dlog. +# Owner: Mikko +Macros: +%_with_dlog_to_systemd_journal 1 +:Macros + +# Macro used to handle bluetooth popups without syspopup/bt-syspopup which needs OSP . +# In IVI, this macro permits to address bluetooth notifications (using C API) to notification-service daemon. +# Then homescreen is supposed to deal with those notifications and display relevant popups. +# Affects: bluetooth-frwk +# Owner: Corentin Lecouvey +Macros: +%_with_bluetooth_frwk_libnotification 1 +:Macros + +# Macro used for testing gstreamer 1.X API +# Used: qt* +# Owner: Philippe Coval +%define _with_gstreamer1 1 +Macros: +%_with_gstreamer1 1 +:Macros + +# Macro used for testing libva availability +# Used: weston +# Owner: Philippe Coval +%ifarch x86_64 i586 +%define _with_libva 1 +Macros: +%_with_libva 1 +:Macros +%endif + +# Macro used for testing Input methods +# Used: qt* +# Owner: Philippe Coval +#%define _with_tizenscim 1 +#Macros: +#%_with_tizenscim 1 +#:Macros + +# This build macro controls whether the OS uses +# legacy nfc-manager or neard enabled nfc-manager-neard. If enabled, +# nfc-manager-neard is used. Affects: nfc CAPI, emulator-plugin-nfc +# Owner: Arron Wang +Macros: +%_with_neard_nfc 1 +:Macros + +# Uses mobile-specific Samsung patches for PulseAudio. Tizen Mobile needs +# this -> Tizen Mobile is compiled with this option. +# Owner: Ismo Puustinen +# FIXME: Why this extra define in the obs config ? +%define _with_pulseaudio_samsung_policy 1 +Macros: +%_with_pulseaudio_samsung_policy 1 +:Macros + +# Activate introspection +# This is needed on GuPNP to build Rygel correctly in IVI +# Impacts potentially packages that use gobject-introspection +# Owner: Mikko +Macros: +%_with_introspection 1 +:Macros + +# Activate KDBUS +# This configuration flag enables the support of KDBUS +# Used: platform/upstream/setup +# Owner: Stephane Desneux +#%define _with_kdbus 1 +#Macros: +#%_with_kdbus 1 +#:Macros + +############################# build config ##################################### + +%define gcc_version 49 +Macros: +%gcc_version 49 +:Macros + +########## targets ########## + +%ifarch i586 +Target: i686-tizen-linux +%endif + +%ifarch armv7hl +Target: armv7hl-tizen-linux +%endif + +%ifarch armv7l +Target: armv7l-tizen-linux +%endif + +%ifarch aarch64 +Target: aarch64-tizen-linux +%endif + +########## cross build ########## + +%ifarch %arm armv7l +Hostarch: x86_64 +# cross build support for the build hosts +Preinstall: qemu-linux-user-cross-arm +Keep: qemu-linux-user-cross-arm +%endif + +%ifarch armv7hl +Preinstall: qemu-accel-armv7hl +Runscripts: qemu-accel-armv7hl +Preinstall: libmount libblkid libuuid +%endif + +%ifarch armv7l +Preinstall: qemu-accel-armv7l-cross-arm +Runscripts: qemu-accel-armv7l-cross-arm +Preinstall: libmount libblkid libuuid +%endif + +%ifarch aarch64 +Hostarch: x86_64 +Preinstall: qemu-linux-user-cross-arm +Keep: qemu-linux-user-cross-arm +Preinstall: qemu-accel-aarch64-cross-aarch64 +Runscripts: qemu-accel-aarch64-cross-aarch64 +Preinstall: libmount libblkid libuuid +%endif # aarch64 + +########## exports for different architectures ########## + +ExportFilter: \.armv7l\.rpm$ armv7l +ExportFilter: \.aarch64\.rpm$ aarch64 +ExportFilter: \.x86_64\.rpm$ x86_64 + +########## buildroot config ########## + +Preinstall: setup filesystem +RunScripts: setup + +Preinstall: bash bzip2 coreutils diffutils grep rpm +Preinstall: glibc libacl libattr +Preinstall: libcap +Preinstall: libgcc_s1 +Preinstall: libpopt sed tar zlib +Preinstall: libncurses libreadline +Preinstall: libelf libbz2 +Preinstall: liblzma +Preinstall: nss nspr libfreebl3 libsoftokn3 +Preinstall: libmagic +Preinstall: liblua +Preinstall: smack libsmack libxml2 libmagic libmagic-data +Preinstall: libsqlite +Preinstall: util-linux + +VMinstall: perl libmount libblkid libext2fs libuuid grep libpcre util-linux libsmartcols + + +Required: binutils gcc glibc rpm-build libtool + +Support: glibc-locale +Support: perl +Support: hostname +Support: cpio findutils +Support: file findutils zlib bzip2 +Support: gzip hostname net-tools +Support: make patch sed gawk tar grep coreutils pkg-config +Support: m4 tzdata +Support: util-linux +Support: less +Support: which elfutils +Support: update-alternatives + +# FIXME: TO REMOVE (? comes from IVI) +Support: gcc-c++ + +Keep: cpp%{gcc_version} gcc%{gcc_version} gcc%{gcc_version}-ada libstdc++%{gcc_version} +Keep: libstdc++%{gcc_version}-devel gcc%{gcc_version}-c++ +Keep: cpp gcc libstdc++ +Keep: pam +Keep: binutils cpp libmagic-data file findutils gawk gcc gcc-c++ +Keep: gdbm gzip libada libunwind glibc-devel libpcre xz-lzma-compat +Keep: make gmp libcap groff cpio +Keep: patch rpm-build nss nspr elfutils python grep libgcc gcc-c++ +Keep: kernel-headers perl-libs perl +Keep: pkgconfig glib2 tizen-rpm-config +Keep: libmpc libmpfr libppl libgmp libppl_c +Keep: libcloog libppl libgmpxx +Keep: nss-softokn-freebl libmagic libmagic-data +Keep: setup +Keep: update-alternatives +Prefer: libstdc++%{gcc_version} libgcc%{gcc_version} +Prefer: libstdc++%{gcc_version}-32bit libstdc++%{gcc_version}-64bit + +Substitute: gettext gettext-tools + +%ifarch x86_64 +Substitute: glibc-devel-32bit glibc-devel-32bit glibc-32bit +%else +Substitute: glibc-devel-32bit +%endif + +########## compilation flags ########## + +%define __global_cflags -O2 -g2 -feliminate-unused-debug-types -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=32 -Wformat -Wformat-security -fmessage-length=0 -finline-functions -fdiagnostics-color=never + +Optflags: i686 %{__global_cflags} -m32 -march=i686 -mtune=i686 -msse4.2 -mfpmath=sse -fasynchronous-unwind-tables -fno-omit-frame-pointer + +Optflags: x86_64 %{__global_cflags} -m64 -march=corei7 -mtune=corei7-avx -msse4.2 -mfpmath=sse -fasynchronous-unwind-tables -fno-omit-frame-pointer + +#generic arm platform +#Optflags: armv7l %{__global_cflags} -march=armv7-a -mtune=cortex-a8 -mlittle-endian -mfpu=vfpv3 -mfloat-abi=softfp -Wp,-D__SOFTFP__ +#activate neon FPU instructions set (crosswalk build) +Optflags: armv7l %{__global_cflags} -march=armv7-a -mtune=cortex-a8 -mlittle-endian -mfpu=neon -mfloat-abi=softfp -Wp,-D__SOFTFP__ + +Optflags: aarch64 %{__global_cflags} -march=armv8-a+fp+simd+crc+crypto diff --git a/Tizen:3.0.2015.Q2:Common/_meta b/Tizen:3.0.2015.Q2:Common/_meta new file mode 100644 index 0000000..3b5040e --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/_meta @@ -0,0 +1,61 @@ + + Tizen:3.0.2015.Q2:Common build for generic CPUs and devices. + See https://wiki.tizen.org/wiki/Common + + + + + + + + + + + + + + + + + + + + + + x86_64 + i586 + + + x86_64 + i586 + + + i586 + + + i586 + + + i586 + + + aarch64 + i586 + x86_64 + + + aarch64 + i586 + x86_64 + + + armv7l + i586 + x86_64 + + + armv7l + i586 + x86_64 + + diff --git a/Tizen:3.0.2015.Q2:Common/cross-aarch64-binutils/_link b/Tizen:3.0.2015.Q2:Common/cross-aarch64-binutils/_link new file mode 100644 index 0000000..d7ad1a7 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/cross-aarch64-binutils/_link @@ -0,0 +1,4 @@ + + + + diff --git a/Tizen:3.0.2015.Q2:Common/cross-aarch64-gcc49/_link b/Tizen:3.0.2015.Q2:Common/cross-aarch64-gcc49/_link new file mode 100644 index 0000000..a246210 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/cross-aarch64-gcc49/_link @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Tizen:3.0.2015.Q2:Common/cross-arm-binutils/_link b/Tizen:3.0.2015.Q2:Common/cross-arm-binutils/_link new file mode 100644 index 0000000..d7ad1a7 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/cross-arm-binutils/_link @@ -0,0 +1,4 @@ + + + + diff --git a/Tizen:3.0.2015.Q2:Common/cross-armv7hl-gcc49/_link b/Tizen:3.0.2015.Q2:Common/cross-armv7hl-gcc49/_link new file mode 100644 index 0000000..a246210 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/cross-armv7hl-gcc49/_link @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Tizen:3.0.2015.Q2:Common/cross-armv7l-gcc49/_link b/Tizen:3.0.2015.Q2:Common/cross-armv7l-gcc49/_link new file mode 100644 index 0000000..a246210 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/cross-armv7l-gcc49/_link @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Tizen:3.0.2015.Q2:Common/crosswalk-bin/_link b/Tizen:3.0.2015.Q2:Common/crosswalk-bin/_link new file mode 100644 index 0000000..359970c --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/crosswalk-bin/_link @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Tizen:3.0.2015.Q2:Common/glibc_aggregate/_aggregate b/Tizen:3.0.2015.Q2:Common/glibc_aggregate/_aggregate new file mode 100644 index 0000000..51b1536 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/glibc_aggregate/_aggregate @@ -0,0 +1,9 @@ + + + glibc + glibc-32bit + glibc-devel-32bit + + + + diff --git a/Tizen:3.0.2015.Q2:Common/glibc_aggregate/_meta b/Tizen:3.0.2015.Q2:Common/glibc_aggregate/_meta new file mode 100644 index 0000000..c7d1a97 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/glibc_aggregate/_meta @@ -0,0 +1,9 @@ + + + <description/> + <build> + <disable/> + <enable arch="i586" repository="x86_64-wayland"/> + <enable arch="i586" repository="x86_64-x11"/> + </build> +</package> diff --git a/Tizen:3.0.2015.Q2:Common/libdbus/_link b/Tizen:3.0.2015.Q2:Common/libdbus/_link new file mode 100644 index 0000000..361290e --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/libdbus/_link @@ -0,0 +1,4 @@ +<link package="dbus" cicount="copy"> + <patches> + </patches> +</link> diff --git a/Tizen:3.0.2015.Q2:Common/mic-bootstrap_aggregate/_aggregate b/Tizen:3.0.2015.Q2:Common/mic-bootstrap_aggregate/_aggregate new file mode 100644 index 0000000..1ff44d3 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/mic-bootstrap_aggregate/_aggregate @@ -0,0 +1,14 @@ +<aggregatelist> + <aggregate project="Tizen:3.0.2015.Q2:Common"> + <package>mic-bootstrap</package> + <binary>mic-bootstrap-x86-arm</binary> + <repository source="ia32-wayland" target="arm-wayland"/> + <repository source="ia32-x11" target="arm-x11"/> + </aggregate> + <aggregate project="Tizen:3.0.2015.Q2:Common"> + <package>mic-bootstrap</package> + <binary>mic-bootstrap-x86-arm</binary> + <repository source="x86_64-wayland" target="arm64-wayland"/> + <repository source="x86_64-x11" target="arm64-x11"/> + </aggregate> +</aggregatelist> diff --git a/Tizen:3.0.2015.Q2:Common/mic-bootstrap_aggregate/_meta b/Tizen:3.0.2015.Q2:Common/mic-bootstrap_aggregate/_meta new file mode 100644 index 0000000..5c90026 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/mic-bootstrap_aggregate/_meta @@ -0,0 +1,11 @@ +<package name="mic-bootstrap_aggregate" project="Tizen:3.0.2015.Q2:Common"> + <title/> + <description/> + <build> + <enable arch="i586" repository="arm-wayland"/> + <enable arch="i586" repository="arm-x11"/> + <enable arch="x86_64" repository="arm64-wayland"/> + <enable arch="x86_64" repository="arm64-x11"/> + <disable/> + </build> +</package> diff --git a/Tizen:3.0.2015.Q2:Common/odroid-linux-kernel/_link b/Tizen:3.0.2015.Q2:Common/odroid-linux-kernel/_link new file mode 100644 index 0000000..f1882de --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/odroid-linux-kernel/_link @@ -0,0 +1,4 @@ +<link package="linux-3.10" cicount="copy"> + <patches> + </patches> +</link> diff --git a/Tizen:3.0.2015.Q2:Common/python-libxml2/_link b/Tizen:3.0.2015.Q2:Common/python-libxml2/_link new file mode 100644 index 0000000..8e73c95 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/python-libxml2/_link @@ -0,0 +1,9 @@ +<link package="libxml2" cicount="copy"> +<patches> + <!-- <branch /> for a full copy, default case --> + <!-- <apply name="patch" /> apply a patch on the source directory --> + <!-- <topadd>%define build_with_feature_x 1</topadd> add a line on the top (spec file only) --> + <!-- <add>file.patch</add> add a patch to be applied after %setup (spec file only) --> + <!-- <delete>filename</delete> delete a file --> +</patches> +</link> diff --git a/Tizen:3.0.2015.Q2:Common/python-magic/_link b/Tizen:3.0.2015.Q2:Common/python-magic/_link new file mode 100644 index 0000000..4faa9ff --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/python-magic/_link @@ -0,0 +1,9 @@ +<link package="file" cicount="copy"> +<patches> + <!-- <branch /> for a full copy, default case --> + <!-- <apply name="patch" /> apply a patch on the source directory --> + <!-- <topadd>%define build_with_feature_x 1</topadd> add a line on the top (spec file only) --> + <!-- <add>file.patch</add> add a patch to be applied after %setup (spec file only) --> + <!-- <delete>filename</delete> delete a file --> +</patches> +</link> diff --git a/Tizen:3.0.2015.Q2:Common/qemu-accel-aarch64/_link b/Tizen:3.0.2015.Q2:Common/qemu-accel-aarch64/_link new file mode 100644 index 0000000..573ab9f --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/qemu-accel-aarch64/_link @@ -0,0 +1,4 @@ +<link package="qemu-accel" cicount="copy"> + <patches> + </patches> +</link> diff --git a/Tizen:3.0.2015.Q2:Common/qemu-accel-armv7l/_link b/Tizen:3.0.2015.Q2:Common/qemu-accel-armv7l/_link new file mode 100644 index 0000000..573ab9f --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/qemu-accel-armv7l/_link @@ -0,0 +1,4 @@ +<link package="qemu-accel" cicount="copy"> + <patches> + </patches> +</link> diff --git a/Tizen:3.0.2015.Q2:Common/qemu_aggregate/_aggregate b/Tizen:3.0.2015.Q2:Common/qemu_aggregate/_aggregate new file mode 100644 index 0000000..499be94 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/qemu_aggregate/_aggregate @@ -0,0 +1,24 @@ +<aggregatelist> + <aggregate project="Tizen:3.0.2015.Q2:Common"> + <package>qemu</package> + <binary>qemu-linux-user-cross-arm</binary> + <repository source="ia32-wayland" target="arm-wayland"/> + <repository source="ia32-x11" target="arm-x11"/> + <repository source="x86_64-wayland" target="arm64-wayland"/> + <repository source="x86_64-x11" target="arm64-x11"/> + </aggregate> + <aggregate project="Tizen:3.0.2015.Q2:Common" > + <package>qemu-accel-armv7l</package> + <binary>qemu-accel-armv7l</binary> + <binary>qemu-accel-armv7l-cross-arm</binary> + <repository source="ia32-wayland" target="arm-wayland"/> + <repository source="ia32-x11" target="arm-x11"/> + </aggregate> + <aggregate project="Tizen:3.0.2015.Q2:Common" > + <package>qemu-accel-aarch64</package> + <binary>qemu-accel-aarch64</binary> + <binary>qemu-accel-aarch64-cross-aarch64</binary> + <repository source="x86_64-wayland" target="arm64-wayland"/> + <repository source="x86_64-x11" target="arm64-x11"/> + </aggregate> +</aggregatelist> diff --git a/Tizen:3.0.2015.Q2:Common/qemu_aggregate/_meta b/Tizen:3.0.2015.Q2:Common/qemu_aggregate/_meta new file mode 100644 index 0000000..b01d842 --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/qemu_aggregate/_meta @@ -0,0 +1,11 @@ +<package name="qemu_aggregate" project="Tizen:3.0.2015.Q2:Common"> + <title/> + <description/> + <build> + <disable/> + <enable arch="x86_64" repository="arm64-x11"/> + <enable arch="x86_64" repository="arm64-wayland"/> + <enable arch="i586" repository="arm-x11"/> + <enable arch="i586" repository="arm-wayland"/> + </build> +</package> diff --git a/Tizen:3.0.2015.Q2:Common/rinato-linux-kernel/_link b/Tizen:3.0.2015.Q2:Common/rinato-linux-kernel/_link new file mode 100644 index 0000000..f1882de --- /dev/null +++ b/Tizen:3.0.2015.Q2:Common/rinato-linux-kernel/_link @@ -0,0 +1,4 @@ +<link package="linux-3.10" cicount="copy"> + <patches> + </patches> +</link>