From 972dcfcdbfe75dcfeb777150c136576cf1a71e99 Mon Sep 17 00:00:00 2001 From: Tudor Florea Date: Fri, 9 Oct 2015 22:59:03 +0200 Subject: initial commit for Enea Linux 5.0 arm Signed-off-by: Tudor Florea --- meta-yocto/classes/poky-sanity.bbclass | 24 + meta-yocto/conf/bblayers.conf.sample | 16 + meta-yocto/conf/conf-notes.txt | 8 + meta-yocto/conf/distro/include/distro_alias.inc | 512 ++++++++++ meta-yocto/conf/distro/include/maintainers.inc | 745 +++++++++++++++ meta-yocto/conf/distro/include/package_regex.inc | 367 +++++++ .../distro/include/poky-floating-revisions.inc | 74 ++ meta-yocto/conf/distro/include/recipe_color.inc | 437 +++++++++ .../conf/distro/include/upstream_tracking.inc | 254 +++++ meta-yocto/conf/distro/poky-bleeding.conf | 11 + meta-yocto/conf/distro/poky-lsb.conf | 14 + meta-yocto/conf/distro/poky-tiny.conf | 145 +++ meta-yocto/conf/distro/poky.conf | 120 +++ meta-yocto/conf/layer.conf | 16 + meta-yocto/conf/local.conf.sample | 231 +++++ meta-yocto/conf/local.conf.sample.extended | 374 ++++++++ meta-yocto/conf/site.conf.sample | 31 + .../busybox/busybox/poky-tiny/defconfig | 1009 ++++++++++++++++++++ meta-yocto/recipes-core/busybox/busybox_%.bbappend | 2 + .../recipes-core/psplash/files/psplash-poky-img.h | 914 ++++++++++++++++++ .../recipes-core/psplash/psplash_git.bbappend | 2 + meta-yocto/recipes-core/tiny-init/files/init | 26 + .../recipes-core/tiny-init/files/rc.local.sample | 23 + meta-yocto/recipes-core/tiny-init/tiny-init.bb | 28 + 24 files changed, 5383 insertions(+) create mode 100644 meta-yocto/classes/poky-sanity.bbclass create mode 100644 meta-yocto/conf/bblayers.conf.sample create mode 100644 meta-yocto/conf/conf-notes.txt create mode 100644 meta-yocto/conf/distro/include/distro_alias.inc create mode 100644 meta-yocto/conf/distro/include/maintainers.inc create mode 100644 meta-yocto/conf/distro/include/package_regex.inc create mode 100644 meta-yocto/conf/distro/include/poky-floating-revisions.inc create mode 100644 meta-yocto/conf/distro/include/recipe_color.inc create mode 100644 meta-yocto/conf/distro/include/upstream_tracking.inc create mode 100644 meta-yocto/conf/distro/poky-bleeding.conf create mode 100644 meta-yocto/conf/distro/poky-lsb.conf create mode 100644 meta-yocto/conf/distro/poky-tiny.conf create mode 100644 meta-yocto/conf/distro/poky.conf create mode 100644 meta-yocto/conf/layer.conf create mode 100644 meta-yocto/conf/local.conf.sample create mode 100644 meta-yocto/conf/local.conf.sample.extended create mode 100644 meta-yocto/conf/site.conf.sample create mode 100644 meta-yocto/recipes-core/busybox/busybox/poky-tiny/defconfig create mode 100644 meta-yocto/recipes-core/busybox/busybox_%.bbappend create mode 100644 meta-yocto/recipes-core/psplash/files/psplash-poky-img.h create mode 100644 meta-yocto/recipes-core/psplash/psplash_git.bbappend create mode 100644 meta-yocto/recipes-core/tiny-init/files/init create mode 100644 meta-yocto/recipes-core/tiny-init/files/rc.local.sample create mode 100644 meta-yocto/recipes-core/tiny-init/tiny-init.bb (limited to 'meta-yocto') diff --git a/meta-yocto/classes/poky-sanity.bbclass b/meta-yocto/classes/poky-sanity.bbclass new file mode 100644 index 0000000000..fff08b3a8a --- /dev/null +++ b/meta-yocto/classes/poky-sanity.bbclass @@ -0,0 +1,24 @@ +python poky_update_bblayersconf() { + current_version = int(d.getVar('LCONF_VERSION', True) or -1) + latest_version = int(d.getVar('LAYER_CONF_VERSION', True) or -1) + + bblayers_fn = bblayers_conf_file(d) + lines = sanity_conf_read(bblayers_fn) + + if current_version == 5 and latest_version == 6: + if '/meta-yocto-bsp' not in d.getVar('BBLAYERS', True): + index, meta_yocto_line = sanity_conf_find_line('meta-yocto\s*\\\\\\n', lines) + if meta_yocto_line: + lines.insert(index + 1, meta_yocto_line.replace('meta-yocto', + 'meta-yocto-bsp')) + else: + sys.exit() + + current_version += 1 + sanity_conf_update(bblayers_fn, lines, 'LCONF_VERSION', current_version) + return + + sys.exit() +} + +BBLAYERS_CONF_UPDATE_FUNCS += "poky_update_bblayersconf" diff --git a/meta-yocto/conf/bblayers.conf.sample b/meta-yocto/conf/bblayers.conf.sample new file mode 100644 index 0000000000..0eda565f96 --- /dev/null +++ b/meta-yocto/conf/bblayers.conf.sample @@ -0,0 +1,16 @@ +# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf +# changes incompatibly +LCONF_VERSION = "6" + +BBPATH = "${TOPDIR}" +BBFILES ?= "" + +BBLAYERS ?= " \ + ##OEROOT##/meta \ + ##OEROOT##/meta-yocto \ + ##OEROOT##/meta-yocto-bsp \ + " +BBLAYERS_NON_REMOVABLE ?= " \ + ##OEROOT##/meta \ + ##OEROOT##/meta-yocto \ + " diff --git a/meta-yocto/conf/conf-notes.txt b/meta-yocto/conf/conf-notes.txt new file mode 100644 index 0000000000..66e6319e7a --- /dev/null +++ b/meta-yocto/conf/conf-notes.txt @@ -0,0 +1,8 @@ +Common targets are: + core-image-minimal + core-image-sato + meta-toolchain + adt-installer + meta-ide-support + +You can also run generated qemu images with a command like 'runqemu qemux86' diff --git a/meta-yocto/conf/distro/include/distro_alias.inc b/meta-yocto/conf/distro/include/distro_alias.inc new file mode 100644 index 0000000000..48c1d92eda --- /dev/null +++ b/meta-yocto/conf/distro/include/distro_alias.inc @@ -0,0 +1,512 @@ +# +# This is a list for tracking status of package relative to Major +# distributions such as Fedora, Ubuntu, Debian, ... The package +# name is the major distribution equivalent to the name used in oe-core +# +# The format is as a bitbake variable override for each recipe +# +# DISTRO_PN_ALIAS_pn- = "Distro1= Distro2=" +# +# Please keep this list in alphabetical order. +# +DISTRO_PN_ALIAS_pn-aaina = "Intel" +DISTRO_PN_ALIAS_pn-abiword-embedded = "Fedora=abiword Ubuntu=abiword" +DISTRO_PN_ALIAS_pn-adt-installer = "Intel" +DISTRO_PN_ALIAS_pn-alsa-state = "OE-Core" +DISTRO_PN_ALIAS_pn-alsa-utils-alsaconf = "OE-Core" +DISTRO_PN_ALIAS_pn-atk = "Fedora=atk OpenSuSE=atk" +DISTRO_PN_ALIAS_pn-augeas = "Ubuntu=libaugeas0 Debian=libaugeas0" +DISTRO_PN_ALIAS_pn-avahi-ui = "Ubuntu=avahi-discover Debian=avahi-discover" +DISTRO_PN_ALIAS_pn-babeltrace = "OSPDT" +DISTRO_PN_ALIAS_pn-bdwgc = "OSPDT" +DISTRO_PN_ALIAS_pn-bigreqsproto = "Meego=xorg-x11-proto-bigreqsproto" +DISTRO_PN_ALIAS_pn-bjam = "OpenSuSE=boost-jam Debina=bjam" +DISTRO_PN_ALIAS_pn-blktool = "Debian=blktool Mandriva=blktool" +DISTRO_PN_ALIAS_pn-bluez4 = "Ubuntu=bluez Debian=bluez-utils" +DISTRO_PN_ALIAS_pn-bluez5 = "Fedora=bluez Opensuse=bluez" +DISTRO_PN_ALIAS_pn-bluez-dtl1-workaround = "OE-Core" +DISTRO_PN_ALIAS_pn-btrfs-tools = "Debian=btrfs-tools Fedora=btrfs-progs" +DISTRO_PN_ALIAS_pn-build-appliance-image = "OSPDT" +DISTRO_PN_ALIAS_pn-builder = "OE-Core" +DISTRO_PN_ALIAS_pn-buildtools-tarball = "OE-Core" +DISTRO_PN_ALIAS_pn-calibrateproto = "OSPDT upstream=http://cgit.freedesktop.org/xorg/proto/calibrateproto" +DISTRO_PN_ALIAS_pn-cdrtools = "OpenSUSE=cdrtools OSPDT" +DISTRO_PN_ALIAS_pn-chkconfig-alternatives = "Mandriva=chkconfig Debian=chkconfig" +DISTRO_PN_ALIAS_pn-claws-plugin-gtkhtml2-viewer = "Fedora=claws-mail-plugins OpenSuSE=claws-mail-extra-plugins Debian=claws-mail-extra-plugins" +DISTRO_PN_ALIAS_pn-claws-plugin-maildir = "Fedora=claws-mail-plugins OpenSuSE=claws-mail-extra-plugins Debian=claws-mail-extra-plugins" +DISTRO_PN_ALIAS_pn-claws-plugin-mailmbox = "Fedora=claws-mail-plugins OpenSuSE=claws-mail-extra-plugins Debian=claws-mail-extra-plugins" +DISTRO_PN_ALIAS_pn-claws-plugin-rssyl = "Fedora=claws-mail-plugins OpenSuSE=claws-mail-extra-plugins Debian=claws-mail-extra-plugins" +DISTRO_PN_ALIAS_pn-clipboard-manager = "OpenedHand" +DISTRO_PN_ALIAS_pn-clutter = "Fedora=clutter OpenSuse=clutter Ubuntu=clutter-1.0 Mandriva=clutter Debian=clutter" +DISTRO_PN_ALIAS_pn-clutter-1.8 = "Fedora=clutter OpenSuse=clutter Ubuntu=clutter-1.0 Mandriva=clutter Debian=clutter" +DISTRO_PN_ALIAS_pn-clutter-gst-1.0 = "Debian=clutter-gst Ubuntu=clutter-gst Fedora=clutter-gst" +DISTRO_PN_ALIAS_pn-clutter-gst-1.8 = "Fedora=clutter-gst Debian=libclutter-gst" +DISTRO_PN_ALIAS_pn-clutter-gtk-1.0 = "Debian=clutter-gtk Ubuntu=clutter-gtk Fedora=clutter-gtk" +DISTRO_PN_ALIAS_pn-clutter-gtk-1.8 = "Fedora=clutter-gtk OpenSuSE=clutter-gtk Ubuntu=clutter-gtk-0.10 Mandriva=clutter-gtk Debian=clutter-gtk" +DISTRO_PN_ALIAS_pn-cogl-1.0 = "Debian=cogl Ubuntu=cogl Fedora=cogl" +DISTRO_PN_ALIAS_pn-cogl = "Fedora=cogl OpenSuse=cogl Ubuntu=cogl Mandriva=cogl Debian=cogl" +DISTRO_PN_ALIAS_pn-compositeproto = "Meego=xorg-x11-proto-compositeproto" +DISTRO_PN_ALIAS_pn-connman = "Meego=connman" +DISTRO_PN_ALIAS_pn-connman-conf = "OE-Core" +DISTRO_PN_ALIAS_pn-connman-gnome = "Intel" +DISTRO_PN_ALIAS_pn-console-tools = "Debian=console-tools Ubuntu=console-tools" +DISTRO_PN_ALIAS_pn-core-image-base = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-clutter = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-directfb = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-full-cmdline = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-lsb = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-lsb-dev = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-lsb-qt3 = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-lsb-sdk = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-minimal = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-minimal-dev = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-minimal-initramfs = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-minimal-mtdutils = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-rt = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-rt-sdk = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-sato = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-sato-dev = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-sato-sdk = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-weston = "OE-Core" +DISTRO_PN_ALIAS_pn-core-image-x11 = "OE-Core" +DISTRO_PN_ALIAS_pn-cross-localedef = "OSPDT" +DISTRO_PN_ALIAS_pn-cryptodev-linux = "OE-Core" +DISTRO_PN_ALIAS_pn-cwautomacros = "OSPDT upstream=http://cwautomacros.berlios.de/" +DISTRO_PN_ALIAS_pn-damageproto = "Meego=xorg-x11-proto-damageproto" +DISTRO_PN_ALIAS_pn-db = "Debian=db5.1 Ubuntu=db5.1" +DISTRO_PN_ALIAS_pn-dbus-ptest = "Fedora=dbus Ubuntu=dbus" +DISTRO_PN_ALIAS_pn-dbus-wait = "OpenedHand" +DISTRO_PN_ALIAS_pn-depmodwrapper-cross = "OE-Core" +DISTRO_PN_ALIAS_pn-directfb-examples = "Debian=directfb Fedora=directfb" +DISTRO_PN_ALIAS_pn-distcc = "Debian=distcc Fedora=distcc" +DISTRO_PN_ALIAS_pn-distcc-config = "OpenedHand" +DISTRO_PN_ALIAS_pn-dmxproto = "Meego=xorg-x11-proto-dmxproto Ubuntu=x11proto-dmx Debian=x11proto-dmx" +DISTRO_PN_ALIAS_pn-docbook-dsssl-stylesheets = "Fedora=docbook-style-dsssl Ubuntu=docbook-dsssl" +DISTRO_PN_ALIAS_pn-docbook-sgml-dtd-3.1 = "Fedora=docbook-dtds Mandriva=docbook-dtd31-sgml" +DISTRO_PN_ALIAS_pn-docbook-sgml-dtd-4.1 = "Fedora=docbook-dtds Mandriva=docbook-dtd41-sgml" +DISTRO_PN_ALIAS_pn-docbook-sgml-dtd-4.5 = "Fedora=docbook-dtds Mandriva=docbook-dtd42-sgml" +DISTRO_PN_ALIAS_pn-dri2proto = "Meego=xorg-x11-proto-dri2proto" +DISTRO_PN_ALIAS_pn-dropbear = "Debian=dropbear Ubuntu=dropbear" +DISTRO_PN_ALIAS_pn-dtc = "Fedora=dtc Ubuntu=dtc" +DISTRO_PN_ALIAS_pn-eds-tools = "OpenedHand" +DISTRO_PN_ALIAS_pn-eee-acpi-scripts = "Debian=eeepc-acpi-scripts Ubuntu=eeepc-acpi-scripts" +DISTRO_PN_ALIAS_pn-eglibc = "OE-Core" +DISTRO_PN_ALIAS_pn-eglibc-initial = "OE-Core" +DISTRO_PN_ALIAS_pn-eglibc-locale = "OE-Core" +DISTRO_PN_ALIAS_pn-eglibc-mtrace = "OE-Core" +DISTRO_PN_ALIAS_pn-eglibc-scripts = "OE-Core" +DISTRO_PN_ALIAS_pn-eglinfo-fb = "OE-Core" +DISTRO_PN_ALIAS_pn-eglinfo-x11 = "OE-Core" +DISTRO_PN_ALIAS_pn-emgd-driver-bin = "Intel" +DISTRO_PN_ALIAS_pn-encodings = "Ubuntu=xfonts-encodings Mandriva=x11-font-encodings Debian=xfonts-encodings" +DISTRO_PN_ALIAS_pn-evieext = "Meego=xorg-x11-proto-evieext Debian=x11proto-evie" +DISTRO_PN_ALIAS_pn-fixesproto = "Meego=xorg-x11-proto-fixesproto" +DISTRO_PN_ALIAS_pn-font-alias = "Fedora=xorg-x11-fonts-base Mandriva=x11-font-alias Meego=xorg-x11-fonts" +DISTRO_PN_ALIAS_pn-fontcacheproto = "Meego=xorg-x11-proto-fontcacheproto" +DISTRO_PN_ALIAS_pn-fontsproto = "Meego=xorg-x11-proto-fontsproto" +DISTRO_PN_ALIAS_pn-font-util = "Meego=xorg-x11-font-utils Fedora=xorg-x11-font-utils Ubuntu=xfonts-utils Mandriva=x11-font-util Debian=xfonts-utils" +DISTRO_PN_ALIAS_pn-formfactor = "OE-Core" +DISTRO_PN_ALIAS_pn-fotowall = "Fedora=fotowall Ubuntu=fotowall" +DISTRO_PN_ALIAS_pn-fstests = "OpenedHand" +DISTRO_PN_ALIAS_pn-gail = "Fedora=gail Ubuntu=libgail-3-0" +DISTRO_PN_ALIAS_pn-gaku = "OpenedHand" +DISTRO_PN_ALIAS_pn-galago-daemon = "Debian=galago-daemon Ubuntu=galago-daemon" +DISTRO_PN_ALIAS_pn-gcc-cross-initial = "OE-Core" +DISTRO_PN_ALIAS_pn-gcc-crosssdk-initial = "OE-Core" +DISTRO_PN_ALIAS_pn-gccmakedep = "Mandriva=gccmakedep Ubuntu=xutils-dev" +DISTRO_PN_ALIAS_pn-gcc-runtime = "Ubuntu=gcc Fedora=gcc" +DISTRO_PN_ALIAS_pn-gconf-dbus = "Meego=GConf-dbus" +DISTRO_PN_ALIAS_pn-gdk-pixbuf = "Debian=libgdk-pixbuf2.0 Fedora=gdk-pixbuf" +DISTRO_PN_ALIAS_pn-gdk-pixbuf-csource = "Debian=libgdk-pixbuf2.0-0 Fedora=gdk-pixbuf2" +DISTRO_PN_ALIAS_pn-gettext-minimal = "Debian=gettext Fedora=gettext" +DISTRO_PN_ALIAS_pn-glib-2.0 = "Meego=glib2 Fedora=glib2 OpenSuSE=glib2 Ubuntu=glib2.0 Mandriva=glib2.0 Debian=glib2.0" +DISTRO_PN_ALIAS_pn-glproto = "Meego=xorg-x11-proto-glproto" +DISTRO_PN_ALIAS_pn-gnome-desktop-testing = "Debian=gnome-desktop-testing Fedora=gnome-desktop-testing" +DISTRO_PN_ALIAS_pn-gnu-config = "OpenedHand" +DISTRO_PN_ALIAS_pn-grub-efi = "Debian=grub-efi Fedora=grub2-efi" +DISTRO_PN_ALIAS_pn-grub-efi-i586 = "Debian=grub-efi Fedora=grub2-efi" +DISTRO_PN_ALIAS_pn-grub-efi-x86-64 = "Debian=grub-efi Fedora=grub2-efi" +DISTRO_PN_ALIAS_pn-gst-ffmpeg = "Mandriva=gstreamer0.10-ffmpeg Debian=gstreamer0.10-ffmpeg" +DISTRO_PN_ALIAS_pn-gst-fluendo-mp3 = "Debian=gstreamer0.10-fluendo-mp3 Ubuntu=gstreamer0.10-fluendo-mp3" +DISTRO_PN_ALIAS_pn-gst-fluendo-mpegdemux = "Ubuntu=gstreamer0.10-fluendo-mpegdemux Debian=gstreamer0.10-fluendo-mpegdemux" +DISTRO_PN_ALIAS_pn-gst-meta-base = "Meego=gstreamer Fedora=gstreamer OpenSuSE=gstreamer Ubuntu=gstreamer0.10 Mandriva=gstreamer0.10 Debian=gstreamer0.10" +DISTRO_PN_ALIAS_pn-gst-openmax = "OSPDT upstream=http://cgit.freedesktop.org/gstreamer/gst-openmax" +DISTRO_PN_ALIAS_pn-gst-plugin-bluetooth = "Ubuntu=libgstreamer-plugins-base Fedora=gstreamer-plugins-base" +DISTRO_PN_ALIAS_pn-gst-plugins-bad = "Fedora=gstreamer-plugins-bad-free OpenSuSE=gstreamer-plugins-bad Debian=gst-plugins-bad0.10" +DISTRO_PN_ALIAS_pn-gst-plugins-base = "Meego=gst-plugins-base Fedora=gstreamer-plugins-base OpenSuSE=gstreamer-plugins-base Ubuntu=gst-plugins-base0.10 Mandriva=gstreamer0.10-plugins-base Debian=gst-plugins-base0.10" +DISTRO_PN_ALIAS_pn-gst-plugins-gl = "Debian=gstreamer0.10-plugins-gl OpenSuSE=gstreamer-0_10-plugins-gl" +DISTRO_PN_ALIAS_pn-gst-plugins-good = "Meego=gst-plugins-good Fedora=gstreamer-plugins-good OpenSuSE=gstreamer-plugins-good Ubuntu=gst-plugins-good0.10 Mandriva=gstreamer0.10-plugins-good Debian=gst-plugins-good0.10" +DISTRO_PN_ALIAS_pn-gst-plugins-ugly = "OpenSuSE=gstreamer-plugins-ugly Mandriva=gstreamer0.10-plugins-ugly Debian=gst-plugins-ugly0.10" +DISTRO_PN_ALIAS_pn-gstreamer1.0 = "Debian=gstreamer1.0 Ubuntu=gstreamer1.0" +DISTRO_PN_ALIAS_pn-gstreamer1.0-meta-base = "Meego=gstreamer Fedora=gstreamer OpenSuSE=gstreamer Ubuntu=gstreamer0.10" +DISTRO_PN_ALIAS_pn-gstreamer1.0-plugins-bad = "Debian=gstreamer1.0-plugins-bad Ubuntu=gstreamer1.0-plugins-bad" +DISTRO_PN_ALIAS_pn-gstreamer1.0-plugins-base = "Debian=gstreamer1.0-plugins-base Ubuntu=gstreamer1.0-plugins-base" +DISTRO_PN_ALIAS_pn-gstreamer1.0-plugins-good = "Debian=gstreamer1.0-plugins-good Ubuntu=gstreamer1.0-plugins-bad" +DISTRO_PN_ALIAS_pn-gstreamer = "Debian=gstreamer1.0 Ubuntu=gstreamer1.0" +DISTRO_PN_ALIAS_pn-gtk+ = "Meego=gtk2 Fedora=gtk2 OpenSuSE=gtk2 Ubuntu=gtk+2.0 Mandriva=gtk+2.0 Debian=gtk+2.0" +DISTRO_PN_ALIAS_pn-gtk+3 = "Ubuntu=gtk+3.0 Debian=gtk+3.0 Fedora=gtk3" +DISTRO_PN_ALIAS_pn-gtk-doc-stub = "Fedora=gtk-doc Ubuntu=gtk-doc" +DISTRO_PN_ALIAS_pn-gtk-engines = "Fedora=gtk2-engines OpenSuSE=gtk2-engines Ubuntu=gtk2-engines Mandriva=gtk-engines2 Debian=gtk2-engines" +DISTRO_PN_ALIAS_pn-gtk-sato-engine = "OpenedHand" +DISTRO_PN_ALIAS_pn-gtk-theme-torturer = "OSPDT upstream=http://wiki.laptop.org/go/GTK_for_OLPC" +DISTRO_PN_ALIAS_pn-gtk-update-icon-cache-native = "OSPDT" +DISTRO_PN_ALIAS_pn-gummiboot = "Debian=gummiboot Fedora=gummiboot" +DISTRO_PN_ALIAS_pn-hello-mod = "OE-Core" +DISTRO_PN_ALIAS_pn-hostap-conf = "OE-Core" +DISTRO_PN_ALIAS_pn-hwlatdetect = "OSPDT" +DISTRO_PN_ALIAS_pn-icecc-create-env = "OE-Core" +DISTRO_PN_ALIAS_pn-init-ifupdown = "Debian=ifupdown Ubuntu=ifupdown" +DISTRO_PN_ALIAS_pn-initramfs-boot = "OE-Core" +DISTRO_PN_ALIAS_pn-initramfs-framework = "OE-Core" +DISTRO_PN_ALIAS_pn-initramfs-live-boot = "OE-Core" +DISTRO_PN_ALIAS_pn-initramfs-live-install = "OE-Core" +DISTRO_PN_ALIAS_pn-initramfs-live-install-efi = "OE-Core" +DISTRO_PN_ALIAS_pn-initramfs-live-install-efi-testfs = "OE-Core" +DISTRO_PN_ALIAS_pn-initramfs-live-install-testfs = "OE-Core" +DISTRO_PN_ALIAS_pn-initscripts = "Fedora=initscripts Mandravia=initscripts" +DISTRO_PN_ALIAS_pn-inputproto = "Meego=xorg-x11-proto-inputproto" +DISTRO_PN_ALIAS_pn-iproute2 = "OSPDT" +DISTRO_PN_ALIAS_pn-jpeg = "OpenSuSE=libjpeg Ubuntu=libjpeg62" +DISTRO_PN_ALIAS_pn-kbproto = "Meego=xorg-x11-proto-kbproto Ubuntu=x11proto-kb-dev Debian=x11proto-kb-dev" +DISTRO_PN_ALIAS_pn-kconfig-frontends = "OSPDT" +DISTRO_PN_ALIAS_pn-kernelshark = "Mandriva=kernelshark Ubuntu=kernelshark" +DISTRO_PN_ALIAS_pn-kern-tools-native = "Windriver" +DISTRO_PN_ALIAS_pn-keymaps = "OE-Core" +DISTRO_PN_ALIAS_pn-kf = "OSPDT" +DISTRO_PN_ALIAS_pn-lame = "Debian=lame Ubuntu=lame" +DISTRO_PN_ALIAS_pn-latencytop = "Meego=latencytop Fedora=latencytop Debian=latencytop OpenSuSE=latencytop" +DISTRO_PN_ALIAS_pn-ldconfig-native = "Ubuntu=libc-bin Fedora=glibc" +DISTRO_PN_ALIAS_pn-liba52 = "Mandriva=a52dec Debian=a52dec" +DISTRO_PN_ALIAS_pn-libacpi = "Ubuntu=libacpi Mandriva=libacpi" +DISTRO_PN_ALIAS_pn-libatomics-ops = "Meego=libatomic-ops Debian=libatomic-ops Ubuntu=libatomic-ops OpenSuSE=libatomic-ops Mandriva=libatomic-ops" +DISTRO_PN_ALIAS_pn-libcgroup = "Ubuntu=libcgroup1 Debian=libcgroup1" +DISTRO_PN_ALIAS_pn-libcheck = "Ubuntu=check Fedora=check OpenSuSE=check" +DISTRO_PN_ALIAS_pn-libclass-isa-perl = "OSPDT" +DISTRO_PN_ALIAS_pn-libdrm-poulsbo = "Debian=libdrm-intel1 Ubuntu=libdrm-intel1" +DISTRO_PN_ALIAS_pn-libdumpvalue-perl = "OSPDT" +DISTRO_PN_ALIAS_pn-libenv-perl = "OSPDT" +DISTRO_PN_ALIAS_pn-libfakekey = "Meego1.0=libfakekey Debian=libfakekey" +DISTRO_PN_ALIAS_pn-libfile-checktree-perl = "OSPDT" +DISTRO_PN_ALIAS_pn-libfribidi = "OpenSuSE=fribidi Ubuntu=fribidi Mandriva=fribidi Debian=fribidi" +DISTRO_PN_ALIAS_pn-libgcc = "Debian=libgcc4 Ubuntu=libgcc1 OpenSuSE=libgcc46" +DISTRO_PN_ALIAS_pn-libgdbus = "Intel" +DISTRO_PN_ALIAS_pn-libglade = "Meego=libglade2 Fedora=libglade2 OpenSuSE=libglade2 Ubuntu=libglade2 Mandriva=libglade2.0 Debian=libglade2" +DISTRO_PN_ALIAS_pn-libglu = "Debian=libglu Ubuntu=libglu Opensuse=mesa-libglu" +DISTRO_PN_ALIAS_pn-libgsmd = "Fedora=gsm Ubuntu=libgsm Debian=libgsm Opensuse=libgsm" +DISTRO_PN_ALIAS_pn-libgtkstylus = "Debian=libgtkstylus Ubuntu=libgtkstylus" +DISTRO_PN_ALIAS_pn-libgu = "OpenSuSE=glu OSPDT" +DISTRO_PN_ALIAS_pn-libi18n-collate-perl = "OSPDT" +DISTRO_PN_ALIAS_pn-libical = "Ubuntu=libical Fedora=libical" +DISTRO_PN_ALIAS_pn-libiconv = "Fedora=mingw-libiconv Opensuse=cross-mingw-libiconv" +DISTRO_PN_ALIAS_pn-libjson = "Ubuntu=libjson0-dev Debian=libjson0-dev" +DISTRO_PN_ALIAS_pn-libksba = "Fedora=libksba Debian=libksba8 Ubuntu=libksba" +DISTRO_PN_ALIAS_pn-liblbxutil = "Mandriva=liblbxutil OpenSuse=xorg-x11-devel" +DISTRO_PN_ALIAS_pn-libmatchbox = "Ubuntu=libmatchbox Fedora=libmatchbox" +DISTRO_PN_ALIAS_pn-libmpc = "Fedora=libmpc OpenSuse=libmpc2" +DISTRO_PN_ALIAS_pn-libnewt = "Debian=libnewt0.52 Fedora=newt" +DISTRO_PN_ALIAS_pn-libnewt-python = "Ubuntu=python-newt Fedora=newt-python" +DISTRO_PN_ALIAS_pn-libnss-mdns = "Meego=nss-mdns OpenSuSE=nss-mdns Ubuntu=nss-mdns Mandriva=nss_mdns Debian=nss-mdns" +DISTRO_PN_ALIAS_pn-libomxil = "OSPDT upstream=http://omxil.sourceforge.net/" +DISTRO_PN_ALIAS_pn-libowl = "Debian=owl OpenedHand" +DISTRO_PN_ALIAS_pn-libowl-av = "OpenedHand" +DISTRO_PN_ALIAS_pn-libpam = "Meego=pam Fedora=pam OpenSuSE=pam Ubuntu=pam Mandriva=pam Debian=pam" +DISTRO_PN_ALIAS_pn-libpcre = "Mandriva=libpcre0 Fedora=pcre" +DISTRO_PN_ALIAS_pn-libpng12 = "Debian=libpng12-0 Fedora=libpng" +DISTRO_PN_ALIAS_pn-libpod-plainer-perl = "OSPDT" +DISTRO_PN_ALIAS_pn-libsamplerate0 = "Meego=libsamplerate Fedora=libsamplerate OpenSuSE=libsamplerate Ubuntu=libsamplerate Mandriva=libsamplerate Debian=libsamplerate" +DISTRO_PN_ALIAS_pn-libsdl = "Fedora=SDL Opensuse=SDL" +DISTRO_PN_ALIAS_pn-libsdl2 = "Fedora=sdl2 Opensuse=libsdl2 Ubuntu=libsdl2 Debian=libsdl2" +DISTRO_PN_ALIAS_pn-libsndfile1 = "Meego=libsndfile Fedora=libsndfile OpenSuSE=libsndfile Ubuntu=libsndfile Mandriva=libsndfile Debian=libsndfile" +DISTRO_PN_ALIAS_pn-libsoup-2.4 = "Meego=libsoup Fedora=libsoup OpenSuSE=libsoup Ubuntu=libsoup2.4 Mandriva=libsoup Debian=libsoup2.4" +DISTRO_PN_ALIAS_pn-libsync = "OSPDT" +DISTRO_PN_ALIAS_pn-libtelepathy = "Debian=libtelepathy2 Ubuntu=libtelepathy2" +DISTRO_PN_ALIAS_pn-libtimedate-perl = "Debian=libtimedate-perl Ubuntu=libtimedate-perl" +DISTRO_PN_ALIAS_pn-liburcu = "Fedora=userspace-rcu Ubuntu=liburcu0" +DISTRO_PN_ALIAS_pn-libusb1 = "Debian=libusb-1.0-0 Fedora=libusb1" +DISTRO_PN_ALIAS_pn-libusb-compat = "OSPDT" +DISTRO_PN_ALIAS_pn-libx11 = "Debian=libx11-6 Fedora=libX11 Ubuntu=libx11-6 OpenSuSE=xorg-x11-libX11" +DISTRO_PN_ALIAS_pn-libx11-diet = "Debian=libx11-6 Fedora=libX11 Ubuntu=libx11-6 OpenSuSE=xorg-x11-libX11" +DISTRO_PN_ALIAS_pn-libxcalibrate = "OSPDT upstream=http://cgit.freedesktop.org/xorg/lib/libXCalibrate/" +DISTRO_PN_ALIAS_pn-libxfontcache = "Mandriva=libxfontcache Debian=libxfontcache" +DISTRO_PN_ALIAS_pn-libxft = "Mandriva=libxft Debian=libxft2 Ubuntu=libxft2" +DISTRO_PN_ALIAS_pn-libxi = "Ubuntu=libxi Fedora=libXi" +DISTRO_PN_ALIAS_pn-libxkbcommon = "Fedora=libxkbcommon Debian=libxkbcommon" +DISTRO_PN_ALIAS_pn-libxprintapputil = "Debian=libxprintapputil Ubuntu=libxprintapputil1 Mandriva=libxprintapputil" +DISTRO_PN_ALIAS_pn-libxscrnsaver = "Fedora=libXScrnSaver Ubuntu=libxss1 Mandriva=libxscrnsaver" +DISTRO_PN_ALIAS_pn-libxsettings-client = "Debian=libxsettings-client0 Ubuntu=libxsettings-client0 Mandriva=libXsettings-client0" +DISTRO_PN_ALIAS_pn-libxtrap = "Debian=libxtrap6 Fedora=libXTrap" +DISTRO_PN_ALIAS_pn-libxxf86misc = "Mandriva=libxxf86misc Fedora=libXxf86misc" +DISTRO_PN_ALIAS_pn-linux-dummy = "Intel" +DISTRO_PN_ALIAS_pn-linux-libc-headers = "Debian=linux-kernel-headers Ubuntu=linux-kernel-headers" +DISTRO_PN_ALIAS_pn-linux-libc-headers-yocto = "Debian=linux-kernel-headers Ubuntu=linux-kernel-headers" +DISTRO_PN_ALIAS_pn-linux-yocto = "Debian=linux-base Ubuntu=linux" +DISTRO_PN_ALIAS_pn-linux-yocto-rt = "Debian=linux-base Ubuntu=linux" +DISTRO_PN_ALIAS_pn-linux-yocto-tiny = "OSPDT" +DISTRO_PN_ALIAS_pn-lsbinitscripts = "Windriver" +DISTRO_PN_ALIAS_pn-lsbsetup = "Windriver" +DISTRO_PN_ALIAS_pn-lsbtest = "Windriver" +DISTRO_PN_ALIAS_pn-ltp = "Mandriva=ltp Ubuntu=ltp" +DISTRO_PN_ALIAS_pn-lttng-modules = "OSPDT upstream=http://lttng.org/" +DISTRO_PN_ALIAS_pn-lttng-tools = "OSPDT upstream=http://lttng.org/" +DISTRO_PN_ALIAS_pn-lttng-ust = "OSPDT upstream=http://lttng.org/" +DISTRO_PN_ALIAS_pn-lz4 = "Debian=lz4 Fedora=lz4" +DISTRO_PN_ALIAS_pn-lzo = "Debian=liblzo Ubuntu=liblzo Fedora=lzp" +DISTRO_PN_ALIAS_pn-mailx = "Debian=bsd-mailx Ubuntu=bsd-mailx" +DISTRO_PN_ALIAS_pn-makedepend = "Mandriva=makedepend Ubuntu=xutils-dev" +DISTRO_PN_ALIAS_pn-makedevs = "OE-Core" +DISTRO_PN_ALIAS_pn-matchbox-config-gtk = "OpenedHand" +DISTRO_PN_ALIAS_pn-matchbox-desktop = "Mandriva=matchbox-desktop Ubuntu=matchbox-desktop" +DISTRO_PN_ALIAS_pn-matchbox-desktop-sato = "OpenedHand" +DISTRO_PN_ALIAS_pn-matchbox-keyboard = "Debian=matchbox-keyboard Fedora=matchbox-keyboard" +DISTRO_PN_ALIAS_pn-matchbox-panel-2 = "Debian=matchbox-panel Mandriva=matchbox-panel Ubuntu=matchbox-panel" +DISTRO_PN_ALIAS_pn-matchbox-session = "OpenedHand" +DISTRO_PN_ALIAS_pn-matchbox-session-sato = "OpenedHand" +DISTRO_PN_ALIAS_pn-matchbox-terminal = "OpenedHand" +DISTRO_PN_ALIAS_pn-matchbox-theme-sato = "OpenedHand" +DISTRO_PN_ALIAS_pn-matchbox-theme-sato-2 = "OpenedHand" +DISTRO_PN_ALIAS_pn-matchbox-themes-extra = "Ubuntu=matchbox-themes-extra Mandriva=matchbox-themes-extra" +DISTRO_PN_ALIAS_pn-matchbox-themes-gtk = "OpenedHand" +DISTRO_PN_ALIAS_pn-matchbox-wm = "OpenedHand" +DISTRO_PN_ALIAS_pn-matchbox-wm-2 = "Mandriva=matchbox-window-manager Debian=matchbox-window-manager" +DISTRO_PN_ALIAS_pn-menu-cache = "OSPDT" +DISTRO_PN_ALIAS_pn-mesa = "Fedora=mesa Ubuntu=libgl1-mesa-dri" +DISTRO_PN_ALIAS_pn-mesa-gl = "Fedora=mesa Ubuntu=libgl1-mesa-dri" +DISTRO_PN_ALIAS_pn-mesa-glsl = "Fedora=mesa Ubuntu=libgl1-mesa-dri" +DISTRO_PN_ALIAS_pn-meta-environment-i586 = "OE-Core" +DISTRO_PN_ALIAS_pn-meta-environment-qemux86 = "OE-Core" +DISTRO_PN_ALIAS_pn-meta-environment-qemux86-64 = "OE-Core" +DISTRO_PN_ALIAS_pn-meta-ide-support = "OE-Core" +DISTRO_PN_ALIAS_pn-meta-toolchain = "OE-Core" +DISTRO_PN_ALIAS_pn-meta-toolchain-qt = "OE-Core" +DISTRO_PN_ALIAS_pn-meta-toolchain-qte = "OE-Core" +DISTRO_PN_ALIAS_pn-mini-x-session = "OSPDT" +DISTRO_PN_ALIAS_pn-mkfontdir = "Mandriva=mkfontdir Ubuntu=xfonts-utils Fedora=xorg-x11-font-utils" +DISTRO_PN_ALIAS_pn-mkfontscale = "Mandriva=mkfontscale Ubuntu=xfonts-utils Fedora=xorg-x11-font-utils" +DISTRO_PN_ALIAS_pn-mktemp = "Mandriva=mktemp Fedora=mktemp" +DISTRO_PN_ALIAS_pn-mmc-utils = "OE-Core" +DISTRO_PN_ALIAS_pn-moblin-proto = "OE-Core" +DISTRO_PN_ALIAS_pn-modutils-collateral = "OE-Core" +DISTRO_PN_ALIAS_pn-modutils-initscripts = "OE-Core" +DISTRO_PN_ALIAS_pn-msynctool = "OpenSuse=msynctool Mandriva=msynctool" +DISTRO_PN_ALIAS_pn-mtd-utils = "Debian=mtd-utils Ubuntu=mtd-utils" +DISTRO_PN_ALIAS_pn-mx-1.0 = "Ubuntu=mx Debian=mx Fedora=mx" +DISTRO_PN_ALIAS_pn-n450-audio = "Intel" +DISTRO_PN_ALIAS_pn-neard = "Intel" +DISTRO_PN_ALIAS_pn-network-suspend-scripts = "OE-Core" +DISTRO_PN_ALIAS_pn-nfs-export-root = "OpenedHand" +DISTRO_PN_ALIAS_pn-npth = "OSPDT" +DISTRO_PN_ALIAS_pn-nss-myhostname = "Meego=nss-mdns OpenSuSE=nss-mdns Ubuntu=nss-mdns Mandriva=nss_mdns Debian=nss-mdns" +DISTRO_PN_ALIAS_pn-ocf-linux = "OSPDT" +DISTRO_PN_ALIAS_pn-ofono = "Debian=ofono Ubuntu=ofono" +DISTRO_PN_ALIAS_pn-oh-puzzles = "OpenedHand" +DISTRO_PN_ALIAS_pn-opkg = "OSPDT upstream=http://svn.openmoko.org/trunk/src/tar" +DISTRO_PN_ALIAS_pn-opkg-collateral = "OE-Core" +DISTRO_PN_ALIAS_pn-opkg-config-base = "OE-Core" +DISTRO_PN_ALIAS_pn-opkg-nogpg = "OSPDT upstream=http://svn.openmoko.org/trunk/src/tar" +DISTRO_PN_ALIAS_pn-opkg-utils = "OSPDT upstream=http://svn.openmoko.org/trunk/src/target/opkg/" +DISTRO_PN_ALIAS_pn-oprofile = "Debian=oprofile Fedora=oprofile" +DISTRO_PN_ALIAS_pn-oprofileui = "Fedora=oprofileui Ubuntu=oprofile-gui Debian=oprofile-gui" +DISTRO_PN_ALIAS_pn-oprofileui-server = "Fedora=oprofileui Ubuntu=oprofile-gui Debian=oprofile-gui" +DISTRO_PN_ALIAS_pn-owl-video = "OpenedHand" +DISTRO_PN_ALIAS_pn-packagegroup-base = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-boot = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-buildessential = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-clutter = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-device-devel = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-directfb = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-eclipse-debug = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-full-cmdline = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-lsb = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-nfs = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-qt = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-qt4e = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-sdk = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-ssh-dropbear = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-ssh-openssh = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-standalone-sdk-target = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-tools = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-tools-debug = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-tools-profile = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-tools-testapps = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-x11 = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-x11-base = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-x11-mini = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-x11-sato = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-core-x11-xserver = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-cross-canadian-i586 = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-cross-canadian-qemux86 = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-cross-canadian-qemux86-64 = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-qt4e = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-qte-toolchain-host = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-qte-toolchain-target = "Intel" +DISTRO_PN_ALIAS_pn-packagegroup-qt-toolchain-host = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-qt-toolchain-target = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-sdk-host = "OE-Core" +DISTRO_PN_ALIAS_pn-packagegroup-self-hosted = "OE-Core" +DISTRO_PN_ALIAS_pn-package-index = "OE-Core" +DISTRO_PN_ALIAS_pn-perf = "OSPDT" +DISTRO_PN_ALIAS_pn-piglit = "OE-Core" +DISTRO_PN_ALIAS_pn-pkgconfig = "Ubuntu=pkg-config Fedora=pkgconfig" +DISTRO_PN_ALIAS_pn-pointercal = "OE-Core" +DISTRO_PN_ALIAS_pn-pointercal-xinput = "OE-Core" +DISTRO_PN_ALIAS_pn-poky-feed-config-opkg = "OE-Core" +DISTRO_PN_ALIAS_pn-pong-clock = "OpenedHand" +DISTRO_PN_ALIAS_pn-portmap = "Debian=rpcbind Fedora=rpcbind" +DISTRO_PN_ALIAS_pn-postinst-intercept = "OE-Core" +DISTRO_PN_ALIAS_pn-powertop = "Meego=powertop Fedora=powertop Debian=powertop OpenSuSE=powertop Mandriva=powertop" +DISTRO_PN_ALIAS_pn-ppp-dialin = "OE-Core" +DISTRO_PN_ALIAS_pn-presentproto = "Debian=x11proto-present-dev Fedora=xorg-x11-proto-devel" +DISTRO_PN_ALIAS_pn-printproto = "Debian=x11proto-print-dev Ubuntu=x11proto-print-dev Mandriva=x11-proto-devel" +DISTRO_PN_ALIAS_pn-pseudo = "Windriver" +DISTRO_PN_ALIAS_pn-psplash = "OpenedHand" +DISTRO_PN_ALIAS_pn-ptest-runner = "OE-Core" +DISTRO_PN_ALIAS_pn-puzzles = "Debian=sgt-puzzles Fedora=puzzles" +DISTRO_PN_ALIAS_pn-python3-distribute = "Debian=python3-setuptools Fedora=python3-setuptools" +DISTRO_PN_ALIAS_pn-python-ZSI = "OE-Core" +DISTRO_PN_ALIAS_pn-python-argparse = "Fedora=python-argparse OpenSuSE=python-argparse" +DISTRO_PN_ALIAS_pn-python-dbus = "Ubuntu=python-dbus Debian=python-dbus Mandriva=python-dbus" +DISTRO_PN_ALIAS_pn-python-git = "Debian=python-git Fedora=GitPython" +DISTRO_PN_ALIAS_pn-python-gst = "OpenSuSE=python-gstreamer Ubuntu=gst0.10-python Debian=gst0.10-python" +DISTRO_PN_ALIAS_pn-python-pycairo = "Meego=pycairo Fedora=pycairo Ubuntu=pycairo Debian=pycairo" +DISTRO_PN_ALIAS_pn-python-pycurl = "Debian=python-pycurl Ubuntu=python-pycurl" +DISTRO_PN_ALIAS_pn-python-pygobject = "Meego=pygobject2 Fedora=pygobject2 Ubuntu=pygobject Debian=pygobject" +DISTRO_PN_ALIAS_pn-python-pygtk = "Debian=python-gtk2 Fedora=pygtk2 OpenSuSE=python-gtk" +DISTRO_PN_ALIAS_pn-python-pyrex = "Mandriva=python-pyrex Ubuntu=python-pyrex" +DISTRO_PN_ALIAS_pn-python-scons = "Fedora=scons OpenSuSE=scons Ubuntu=scons Mandriva=scons Debian=scons" +DISTRO_PN_ALIAS_pn-python-setuptools = "Mandriva=python-setup OpenSuSE=python-setup-git" +DISTRO_PN_ALIAS_pn-python-smartpm = "Debian=smart OpenSuSE=smart" +DISTRO_PN_ALIAS_pn-qemu-config = "OpenedHand" +DISTRO_PN_ALIAS_pn-qemugl = "OpenedHand" +DISTRO_PN_ALIAS_pn-qemu-helper = "OpenedHand" +DISTRO_PN_ALIAS_pn-qemuwrapper-cross = "OE-Core" +DISTRO_PN_ALIAS_pn-qmmp = "Fedora=qmmp Debian=qmmp" +DISTRO_PN_ALIAS_pn-qt4 = "Mandriva=libqt4-devel Ubuntu=libqt4-dev" +DISTRO_PN_ALIAS_pn-qt4e-demo-image = "OE-Core" +DISTRO_PN_ALIAS_pn-qt4-embedded = "OSPDT" +DISTRO_PN_ALIAS_pn-qt4-graphics-system = "OE-Core" +DISTRO_PN_ALIAS_pn-qt4-tools = "Mandriva=libqt4-devel Ubuntu=libqt4-dev" +DISTRO_PN_ALIAS_pn-qt4-x11-free = "Ubuntu=qt-x11-free Debian=qt-x11-free" +DISTRO_PN_ALIAS_pn-qt-demo-init = "OE-Core" +DISTRO_PN_ALIAS_pn-qt-mobility-embedded = "Ubuntu=qtmobility-dev Debian=qtmobility-dev" +DISTRO_PN_ALIAS_pn-qt-mobility-x11 = "Ubuntu=qtmobility-dev Debian=qtmobility-dev" +DISTRO_PN_ALIAS_pn-quicky = "OSPDT" +DISTRO_PN_ALIAS_pn-randrproto = "Meego=xorg-x11-proto-randrproto" +DISTRO_PN_ALIAS_pn-readline = "Fedora=readline Debian=readline-common" +DISTRO_PN_ALIAS_pn-recordproto = "Meego=xorg-x11-proto-recordproto" +DISTRO_PN_ALIAS_pn-remake = "Mandriva=remake Debian=remake" +DISTRO_PN_ALIAS_pn-renderproto = "Meego=xorg-x11-proto-renderproto" +DISTRO_PN_ALIAS_pn-resourceproto = "Meego=xorg-x11-proto-resourceproto" +DISTRO_PN_ALIAS_pn-rgb = "Fedora=xorg-X11-server-utils Debian=x11-xserver-utils" +DISTRO_PN_ALIAS_pn-rpmresolve = "OSPDT" +DISTRO_PN_ALIAS_pn-rt-tests = "Debian=rt-tests Ubuntu=rt-tests" +DISTRO_PN_ALIAS_pn-run-postinsts = "OE-Core" +DISTRO_PN_ALIAS_pn-sato-icon-theme = "OpenedHand" +DISTRO_PN_ALIAS_pn-sato-screenshot = "OpenedHand" +DISTRO_PN_ALIAS_pn-sbc = "Fedora=sbc Debian=libsbc1" +DISTRO_PN_ALIAS_pn-screenshot = "OpenedHand" +DISTRO_PN_ALIAS_pn-scrnsaverproto = "Meego=xorg-x11-proto-scrnsaverproto Ubuntu=x11proto-scrnsaver-dev Debian=x11proto-scrnsaver-dev" +DISTRO_PN_ALIAS_pn-settings-daemon = "OpenedHand" +DISTRO_PN_ALIAS_pn-sgml-common = "OpenSuSE=sgml-common Fedora=sgml-common" +DISTRO_PN_ALIAS_pn-sgmlspl = "Debian=sgmlspl Ubuntu=sgmlspl" +DISTRO_PN_ALIAS_pn-shadow-securetty = "Ubuntu=shadow Fedora=shadow" +DISTRO_PN_ALIAS_pn-shadow-sysroot = "Ubuntu=shadow Fedora=shadow" +DISTRO_PN_ALIAS_pn-shasum = "OE-Core" +DISTRO_PN_ALIAS_pn-shutdown-desktop = "OpenedHand" +DISTRO_PN_ALIAS_pn-signgp = "OE-Core" +DISTRO_PN_ALIAS_pn-stat = "Debian=coreutils Fedora=coreutils" +DISTRO_PN_ALIAS_pn-swabber = "OE-Core" +DISTRO_PN_ALIAS_pn-sysklogd = "Debian=sysklogd Mandriva=sysklogd" +DISTRO_PN_ALIAS_pn-sysprof = "Fedora=sysprof Debian=sysprof" +DISTRO_PN_ALIAS_pn-systemd-compat-units = "Fedora=systemd Ubuntu=systemd" +DISTRO_PN_ALIAS_pn-systemd-systemctl = "OE-Core" +DISTRO_PN_ALIAS_pn-systemd-systemdctl = "Fedora=systemd Ubuntu=systemd" +DISTRO_PN_ALIAS_pn-systemtap-uprobes = "Ubuntu=systemtap Debian=systemtap" +DISTRO_PN_ALIAS_pn-sysvinit-inittab = "OE-Core" +DISTRO_PN_ALIAS_pn-table = "Intel" +DISTRO_PN_ALIAS_pn-tar-replacement = "OE-Core" +DISTRO_PN_ALIAS_pn-tcf-agent = "Windriver upstream=http://www.eclipse.org/dsdp/tm/" +DISTRO_PN_ALIAS_pn-telepathy-python = "Debian=telepathy-python Ubuntu=telepathy-python" +DISTRO_PN_ALIAS_pn-tiny-init = "OSPDT" +DISTRO_PN_ALIAS_pn-tinylogin = "Debian=busybox Ubuntu=busybox Mandriva=busybox" +DISTRO_PN_ALIAS_pn-trace-cmd = "Mandriva=trace-cmd Ubuntu=trace-cmd" +DISTRO_PN_ALIAS_pn-trapproto = "Meego=xorg-x11-proto-trapproto" +DISTRO_PN_ALIAS_pn-tremor = "OSPDT upstream=http://www.xiph.org/vorbis/" +DISTRO_PN_ALIAS_pn-tslib = "Debian=tslib Ubuntu=tslib" +DISTRO_PN_ALIAS_pn-ttf-bitstream-vera = "Debian=ttf-bitstream-vera Ubuntu=ttf-bitstream-vera" +DISTRO_PN_ALIAS_pn-tzcode = "OSPDT" +DISTRO_PN_ALIAS_pn-ubootchart = "OSPDT upstream=http://code.google.com/p/ubootchart" +DISTRO_PN_ALIAS_pn-u-boot-fw-utils = "Ubuntu=u-boot-tools Debian=u-boot-tools" +DISTRO_PN_ALIAS_pn-u-boot-mkimage = "Ubuntu=uboot-mkimage Debian=uboot-mkimage" +DISTRO_PN_ALIAS_pn-udev-extraconf = "OE-Core" +DISTRO_PN_ALIAS_pn-unfs3 = "Debian=unfs3 Fedora=unfs3" +DISTRO_PN_ALIAS_pn-unfs-server = "OE-Core" +DISTRO_PN_ALIAS_pn-update-alternatives-dpkg = "Opensuse=update-alternatives Mandriva=update-alternatives" +DISTRO_PN_ALIAS_pn-update-rc.d = "OE-Core" +DISTRO_PN_ALIAS_pn-usbinit = "OE-Core" +DISTRO_PN_ALIAS_pn-util-macros = "Meego=xorg-x11-util-macros Fedora=xorg-x11-util-macros Mandriva=x11-util-macros" +DISTRO_PN_ALIAS_pn-v86d = "Debian=v86d Ubuntu=v86d" +DISTRO_PN_ALIAS_pn-videoproto = "Meego=xorg-x11-proto-videoproto" +DISTRO_PN_ALIAS_pn-waffle = "OE-Core" +DISTRO_PN_ALIAS_pn-watchdog = "Debian=watchdog Ubuntu=watchdog Mandriva=watchdog" +DISTRO_PN_ALIAS_pn-webkit-gtk = "Fedora=webkitgtk Ubuntu=libwebkit" +DISTRO_PN_ALIAS_pn-web-webkit = "OpenedHand" +DISTRO_PN_ALIAS_pn-weston = "Fedora=weston OpenSuSE=weston" +DISTRO_PN_ALIAS_pn-weston-init = "OE-Core" +DISTRO_PN_ALIAS_pn-which = "Mandriva=which Fedora=which" +DISTRO_PN_ALIAS_pn-wpa-supplicant = "Meego=wpa_supplicant Fedora=wpa_supplicant OpenSuSE=wpa_supplicant Ubuntu=wpasupplicant Mandriva=wpa_supplicant Debian=wpasupplicant" +DISTRO_PN_ALIAS_pn-x11-common = "OE-Core" +DISTRO_PN_ALIAS_pn-x11perf = "Fedora=xorg-x11-apps Ubuntu=x11-apps" +DISTRO_PN_ALIAS_pn-x11vnc = "Fedora=x11vnc Ubuntu=x11vnc" +DISTRO_PN_ALIAS_pn-xcb-util-image = "Debian=xcb-util Fedora=xcb-util" +DISTRO_PN_ALIAS_pn-xcb-util-keysyms = "Debian=xcb-util Fedora=xcb-util" +DISTRO_PN_ALIAS_pn-xcb-util-wm = "Debian=xcb-util Fedora=xcb-util" +DISTRO_PN_ALIAS_pn-xcmiscproto = "Meego=xorg-x11-proto-xcmiscproto" +DISTRO_PN_ALIAS_pn-xcursor-transparent-theme = "OpenedHand" +DISTRO_PN_ALIAS_pn-xdpyinfo = "Fedora=xorg-x11-utils Ubuntu=x11-utils" +DISTRO_PN_ALIAS_pn-xev = "Fedora=xorg-x11-utils Ubuntu=x11-utils" +DISTRO_PN_ALIAS_pn-xextproto = "Meego=xorg-x11-proto-xextproto" +DISTRO_PN_ALIAS_pn-xeyes = "Ubuntu=x11-apps Fedora=xorg-x11-apps" +DISTRO_PN_ALIAS_pn-xf86bigfontproto = "Meego=xorg-x11-proto-xf86bigfontproto" +DISTRO_PN_ALIAS_pn-xf86dgaproto = "Meego=xorg-x11-proto-xf86dgaproto" +DISTRO_PN_ALIAS_pn-xf86driproto = "Meego=xorg-x11-proto-xf86driproto" +DISTRO_PN_ALIAS_pn-xf86-input-evdev = "Ubuntu=xserver-xorg-input-evdev Mandriva=x11-driver-input-evdev Debian=xserver-xorg-input-evdev Fedora=xorg-x11-drv-evdev Meego=xorg-x11-drv-evdev" +DISTRO_PN_ALIAS_pn-xf86-input-keyboard = "Meego=xorg-x11-drv-keyboard Fedora=xorg-x11-drv-keyboard Mandriva=x11-driver-input-keyboard Debian=xserver-xorg-input-keyboard" +DISTRO_PN_ALIAS_pn-xf86-input-mouse = "Ubuntu=xserver-xorg-input-mouse Mandriva=x11-driver-input-mouse Debian=xserver-xorg-input-mouse" +DISTRO_PN_ALIAS_pn-xf86-input-synaptics = "Meego=xorg-x11-drv-synaptics Fedora=xorg-x11-drv-synaptics Ubuntu=xserver-xorg-input-synaptics Mandriva=x11-driver-input-synaptics Debian=xfree86-driver-synaptics" +DISTRO_PN_ALIAS_pn-xf86-input-vmmouse = "Fedora=xorg-x11-drv-vmmouse Ubuntu=xserver-xorg-input-vmmouse Mandriva=x11-driver-input-vmmouse Debian=xserver-xorg-input-vmmouse" +DISTRO_PN_ALIAS_pn-xf86miscproto = "Meego=xorg-x11-proto-xf86miscproto" +DISTRO_PN_ALIAS_pn-xf86rushproto = "Meego=xorg-x11-proto-xf86rushproto" +DISTRO_PN_ALIAS_pn-xf86-video-fbdev = "Ubuntu=xserver-xorg-video-fbdev Debian=xserver-xorg-video-fbdev" +DISTRO_PN_ALIAS_pn-xf86-video-intel = "Debian=xserver-xorg-video-intel Fedora=xorg-x11-drv-intel Mandriva=x11-driver-video-intel Meego=xorg-x11-drv-intel Ubuntu=xserver-xorg-video-intel" +DISTRO_PN_ALIAS_pn-xf86-video-modesetting = "Debian=xserver-xorg-video-modesetting Fedora=xf86-video-modesetting" +DISTRO_PN_ALIAS_pn-xf86-video-omap = "Ubuntu=xf86-video-omap Debian=xf86-video-omap" +DISTRO_PN_ALIAS_pn-xf86-video-omapfb = "OSPDT" +DISTRO_PN_ALIAS_pn-xf86-video-vesa = "Debian=xserver-xorg-video-vesa Fedora=xorg-x11-drv-vesa Mandriva=x11-driver-video-vesa Ubuntu=xserver-xorg-video-vesa" +DISTRO_PN_ALIAS_pn-xf86-video-vmware = "Debian=xserver-xorg-video-vmware Fedora=xorg-x11-drv-vmware Mandriva=x11-driver-video-vmware Ubuntu=xserver-xorg-video-vmware" +DISTRO_PN_ALIAS_pn-xf86vidmodeproto = "Meego=xorg-x11-proto-xf86vidmodeproto Ubuntu=x11proto-xf86vidmode Debian=x11proto-xf86vidmode" +DISTRO_PN_ALIAS_pn-xhost = "Ubuntu=x11-xserver-utils Fedora=xorg-x11-server-utils" +DISTRO_PN_ALIAS_pn-xineramaproto = "Meego=xorg-x11-proto-xineramaproto Ubuntu=x11proto-xinerama Debian=x11proto-xinerama" +DISTRO_PN_ALIAS_pn-xinput-calibrator = "Fedora=xinput-calibrator Mandravia=xinput-calibrator Ubuntu=xinput-calibrator" +DISTRO_PN_ALIAS_pn-xkbcomp = "Ubuntu=x11-xkb-utils Fedora=xorg-x11-xkb-utils" +DISTRO_PN_ALIAS_pn-xmodmap = "Meego=xorg-x11-utils-xmodmap Fedora=xorg-x11-server-utils Ubuntu=x11-xserver-utils" +DISTRO_PN_ALIAS_pn-xorg-minimal-fonts = "Ubuntu=xfonts-base Fedora=xorg-x11-fonts-base" +DISTRO_PN_ALIAS_pn-xprop = "Meego=xorg-x11-utils-xprop Fedora=xorg-x11-utils Ubuntu=x11-utils" +DISTRO_PN_ALIAS_pn-xproto = "Meego=xorg-x11-proto-xproto Fedora=xorg-x11-proto-devel Ubuntu=x11proto-core-dev Debian=x11proto-core-dev Opensuse=xorg-x11-proto-devel Mandriva=x11-proto-devel" +DISTRO_PN_ALIAS_pn-xproxymanagementprotocol = "Meego=xorg-x11-proto-xproxymanagementprotocol" +DISTRO_PN_ALIAS_pn-xrandr = "Ubuntu=x11-xserver-utils Fedora=xorg-x11-server-utils" +DISTRO_PN_ALIAS_pn-xrdb = "Ubuntu=x11-xserver-utils Fedora=xorg-x11-server-utils" +DISTRO_PN_ALIAS_pn-xserver-nodm-init = "OE-Core" +DISTRO_PN_ALIAS_pn-xserver-xf86-config = "OE-Core" +DISTRO_PN_ALIAS_pn-xserver-xf86-dri-lite = "Fedora=xorg-x11-server Ubuntu=xserver-xorg" +DISTRO_PN_ALIAS_pn-xserver-xf86-lite = "Fedora=xorg-x11-server Ubuntu=xserver-xorg" +DISTRO_PN_ALIAS_pn-xserver-xorg = "Fedora=xorg-x11-server Ubuntu=xserver-xorg" +DISTRO_PN_ALIAS_pn-xset = "Fedora=xorg-x11-server-utils Ubuntu=x11-xserver-utils Debian=x11-xserver-utils Opensuse=xorg-x11" +DISTRO_PN_ALIAS_pn-xtscal = "OSPDT upstream=http://gpe.linuxtogo.org/download/source/" +DISTRO_PN_ALIAS_pn-xuser-account = "OE-Core" +DISTRO_PN_ALIAS_pn-xvideo-tests = "OpenedHand" +DISTRO_PN_ALIAS_pn-xvinfo = "Fedora=xorg-x11-utils Ubuntu=x11-utils" +DISTRO_PN_ALIAS_pn-xwininfo = "Fedora=xorg-x11-utils Ubuntu=x11-utils" +DISTRO_PN_ALIAS_pn-yaffs2-utils = "OSPDT upstream=http://www.yaffs.net" +DISTRO_PN_ALIAS_pn-zaurusd = "OpenedHand" +DISTRO_PN_ALIAS_pn-zeroconf = "OSPDT upstream=http://www.progsoc.org/~wildfire/zeroconf/" diff --git a/meta-yocto/conf/distro/include/maintainers.inc b/meta-yocto/conf/distro/include/maintainers.inc new file mode 100644 index 0000000000..a96f88be01 --- /dev/null +++ b/meta-yocto/conf/distro/include/maintainers.inc @@ -0,0 +1,745 @@ +# Yocto Project / OpenEmbedded-Core (OE-Core) Maintainers File +# +# This file contains a list of recipe maintainers. +# +# Please submit any patches against recipes in meta to the +# OE-Core mail list (openembedded-core@lists.openembedded.org) +# For recipes in meta-yocto please use the Poky list (poky@yoctoproject.org) +# +# If you have problems with or questions about a particular recipe, feel +# free to contact the maintainer directly (cc:ing the appropriate mailing list +# puts it in the archive and helps other people who might have the same +# questions in the future), but please try to do the following first: +# +# - look in the Yocto Project Bugzilla +# (http://bugzilla.yoctoproject.org/) to see if a problem has +# already been reported +# +# - look through recent entries of the appropriate mailing list archives +# (http://lists.linuxtogo.org/pipermail/openembedded-core or +# https://lists.yoctoproject.org/pipermail/poky/) to see if other +# people have run into similar problems or had similar questions +# answered. +# +# The format is as a bitbake variable override for each recipe +# +# RECIPE_MAINTAINER_pn- = "Full Name " +# +# Please keep this list in alphabetical order. +# +RECIPE_MAINTAINER_pn-acl = "Chong Lu " +RECIPE_MAINTAINER_pn-acpid = "Saul Wold " +RECIPE_MAINTAINER_pn-adt-installer = "Jessica Zhang " +RECIPE_MAINTAINER_pn-alsa-lib = "Cristian Iorga " +RECIPE_MAINTAINER_pn-alsa-state = "Cristian Iorga " +RECIPE_MAINTAINER_pn-alsa-tools = "Kai Kang " +RECIPE_MAINTAINER_pn-alsa-utils = "Cristian Iorga " +RECIPE_MAINTAINER_pn-alsa-utils-alsaconf = "Cristian Iorga " +RECIPE_MAINTAINER_pn-apmd = "Cristian Iorga " +RECIPE_MAINTAINER_pn-apr = "Hongxu Jia " +RECIPE_MAINTAINER_pn-apr-util = "Hongxu Jia " +RECIPE_MAINTAINER_pn-apt = "Saul Wold " +RECIPE_MAINTAINER_pn-aspell = "Saul Wold " +RECIPE_MAINTAINER_pn-atk = "Ross Burton " +RECIPE_MAINTAINER_pn-at = "Saul Wold " +RECIPE_MAINTAINER_pn-at-spi2-atk = "Ross Burton " +RECIPE_MAINTAINER_pn-at-spi2-core = "Ross Burton " +RECIPE_MAINTAINER_pn-attr = "Chong Lu " +RECIPE_MAINTAINER_pn-augeas = "Paul Eggleton " +RECIPE_MAINTAINER_pn-autoconf = "Robert Yang " +RECIPE_MAINTAINER_pn-autogen = "Robert Yang " +RECIPE_MAINTAINER_pn-automake = "Robert Yang " +RECIPE_MAINTAINER_pn-avahi-ui = "Paul Eggleton " +RECIPE_MAINTAINER_pn-avahi = "Paul Eggleton " +RECIPE_MAINTAINER_pn-babeltrace = "Saul Wold " +RECIPE_MAINTAINER_pn-base-files = "Saul Wold " +RECIPE_MAINTAINER_pn-base-passwd = "Saul Wold " +RECIPE_MAINTAINER_pn-bash = "Hongxu Jia " +RECIPE_MAINTAINER_pn-bc = "Saul Wold " +RECIPE_MAINTAINER_pn-bdwgc = "Richard Purdie " +RECIPE_MAINTAINER_pn-beecrypt = "Chong Lu " +RECIPE_MAINTAINER_pn-bigreqsproto = "Saul Wold " +RECIPE_MAINTAINER_pn-bind = "Kai Kang " +RECIPE_MAINTAINER_pn-binutils = "Robert Yang " +RECIPE_MAINTAINER_pn-bison = "Chong Lu " +RECIPE_MAINTAINER_pn-blktool = "Paul Eggleton " +RECIPE_MAINTAINER_pn-blktrace = "Tom Zanussi " +RECIPE_MAINTAINER_pn-bluez4 = "Cristian Iorga " +RECIPE_MAINTAINER_pn-bluez5 = "Cristian Iorga " +RECIPE_MAINTAINER_pn-bluez-hcidump = "Cristian Iorga " +RECIPE_MAINTAINER_pn-boost = "Saul Wold " +RECIPE_MAINTAINER_pn-btrfs-tools = "Richard Purdie " +RECIPE_MAINTAINER_pn-build-appliance-image = "Saul Wold " +RECIPE_MAINTAINER_pn-builder = "Saul Wold " +RECIPE_MAINTAINER_pn-busybox = "Chen Qi " +RECIPE_MAINTAINER_pn-byacc = "Chong Lu " +RECIPE_MAINTAINER_pn-bzip2 = "Chen Qi " +RECIPE_MAINTAINER_pn-cairo = "Ross Burton " +RECIPE_MAINTAINER_pn-calibrateproto = "Ross Burton " +RECIPE_MAINTAINER_pn-ccache = "Wenzong Fan " +RECIPE_MAINTAINER_pn-cdrtools = "Paul Eggleton " +RECIPE_MAINTAINER_pn-chkconfig = "Wenzong Fan " +RECIPE_MAINTAINER_pn-chkconfig-alternatives-native = "Wenzong Fan " +RECIPE_MAINTAINER_pn-chrpath = "Paul Eggleton " +RECIPE_MAINTAINER_pn-clutter-gst-1.0 = "Ross Burton " +RECIPE_MAINTAINER_pn-clutter-gtk-1.0 = "Ross Burton " +RECIPE_MAINTAINER_pn-clutter = "Ross Burton " +RECIPE_MAINTAINER_pn-clutter-1.0 = "Ross Burton " +RECIPE_MAINTAINER_pn-cmake-native = "Paul Eggleton " +RECIPE_MAINTAINER_pn-cmake = "Paul Eggleton " +RECIPE_MAINTAINER_pn-cogl = "Ross Burton " +RECIPE_MAINTAINER_pn-cogl-1.0 = "Ross Burton " +RECIPE_MAINTAINER_pn-compositeproto = "Ross Burton " +RECIPE_MAINTAINER_pn-connman = "Cristian Iorga " +RECIPE_MAINTAINER_pn-connman-gnome = "Cristian Iorga " +RECIPE_MAINTAINER_pn-consolekit = "Saul Wold " +RECIPE_MAINTAINER_pn-console-tools = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-base = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-clutter = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-directfb = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-full-cmdline = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-lsb-dev = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-lsb = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-lsb-sdk = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-minimal-dev = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-minimal-initramfs = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-minimal-mtdutils = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-minimal = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-rt = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-rt-sdk = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-sato-dev = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-sato = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-sato-sdk = "Saul Wold " +RECIPE_MAINTAINER_pn-core-image-x11 = "Saul Wold " +RECIPE_MAINTAINER_pn-coreutils = "Chen Qi " +RECIPE_MAINTAINER_pn-cpio = "Chen Qi " +RECIPE_MAINTAINER_pn-cracklib ="Hongxu Jia " +RECIPE_MAINTAINER_pn-createrepo = "Paul Eggleton " +RECIPE_MAINTAINER_pn-cronie = "Saul Wold " +RECIPE_MAINTAINER_pn-cross-localedef-native = "Saul Wold " +RECIPE_MAINTAINER_pn-cups = "Saul Wold " +RECIPE_MAINTAINER_pn-curl = "Saul Wold " +RECIPE_MAINTAINER_pn-cwautomacros = "Cristian Iorga " +RECIPE_MAINTAINER_pn-damageproto = "Ross Burton " +RECIPE_MAINTAINER_pn-db = "Cristian Iorga " +RECIPE_MAINTAINER_pn-dbus = "Chong Lu " +RECIPE_MAINTAINER_pn-dbus-ptest = "Chong Lu " +RECIPE_MAINTAINER_pn-dbus-glib = "Chong Lu " +RECIPE_MAINTAINER_pn-dbus-wait = "Chong Lu " +RECIPE_MAINTAINER_pn-desktop-file-utils-native = "Saul Wold " +RECIPE_MAINTAINER_pn-dhcp = "Saul Wold " +RECIPE_MAINTAINER_pn-diffstat = "Chong Lu " +RECIPE_MAINTAINER_pn-diffutils = "Chong Lu " +RECIPE_MAINTAINER_pn-directfb-examples = "Hongxu Jia " +RECIPE_MAINTAINER_pn-directfb = "Hongxu Jia " +RECIPE_MAINTAINER_pn-distcc = "Hongxu Jia " +RECIPE_MAINTAINER_pn-distcc-config = "Paul Eggleton " +RECIPE_MAINTAINER_pn-dmxproto = "Ross Burton " +RECIPE_MAINTAINER_pn-docbook-dsssl-stylesheet = "Paul Eggleton " +RECIPE_MAINTAINER_pn-docbook-dsssl-stylesheets-native = "Paul Eggleton " +RECIPE_MAINTAINER_pn-docbook-sgml-dtd-3.1-native = "Paul Eggleton " +RECIPE_MAINTAINER_pn-docbook-sgml-dtd-4.1-native = "Paul Eggleton " +RECIPE_MAINTAINER_pn-docbook-sgml-dtd-4.5-native = "Paul Eggleton " +RECIPE_MAINTAINER_pn-docbook-sgml-dtd = "Paul Eggleton " +RECIPE_MAINTAINER_pn-docbook-utils = "Paul Eggleton " +RECIPE_MAINTAINER_pn-dosfstools = "Paul Eggleton " +RECIPE_MAINTAINER_pn-dpkg = "Saul Wold " +RECIPE_MAINTAINER_pn-dri2proto = "Ross Burton " +RECIPE_MAINTAINER_pn-dropbear = "Paul Eggleton " +RECIPE_MAINTAINER_pn-dtc = "Saul Wold " +RECIPE_MAINTAINER_pn-e2fsprogs = "Robert Yang " +RECIPE_MAINTAINER_pn-ed = "Saul Wold " +RECIPE_MAINTAINER_pn-eee-acpi-scripts = "Saul Wold " +RECIPE_MAINTAINER_pn-eglibc = "Richard Purdie " +RECIPE_MAINTAINER_pn-eglibc-locale = "Saul Wold " +RECIPE_MAINTAINER_pn-eglibc-mtrace = "Saul Wold " +RECIPE_MAINTAINER_pn-eglibc-scripts = "Saul Wold " +RECIPE_MAINTAINER_pn-elfutils = "Hongxu Jia " +RECIPE_MAINTAINER_pn-enchant = "Cristian Iorga " +RECIPE_MAINTAINER_pn-encodings = "Ross Burton " +RECIPE_MAINTAINER_pn-ethtool = "Paul Eggleton " +RECIPE_MAINTAINER_pn-expat = "Paul Eggleton " +RECIPE_MAINTAINER_pn-file = "Robert Yang " +RECIPE_MAINTAINER_pn-findutils = "Chen Qi " +RECIPE_MAINTAINER_pn-fixesproto = "Ross Burton " +RECIPE_MAINTAINER_pn-flac = "Cristian Iorga " +RECIPE_MAINTAINER_pn-flex = "Chong Lu " +RECIPE_MAINTAINER_pn-font-alias = "Ross Burton " +RECIPE_MAINTAINER_pn-fontconfig = "Ross Burton " +RECIPE_MAINTAINER_pn-fontsproto = "Ross Burton " +RECIPE_MAINTAINER_pn-font-util = "Ross Burton " +RECIPE_MAINTAINER_pn-foomatic-filters = "Saul Wold " +RECIPE_MAINTAINER_pn-formfactor = "Cristian Iorga " +RECIPE_MAINTAINER_pn-fotowall = "Paul Eggleton " +RECIPE_MAINTAINER_pn-freetype = "Ross Burton " +RECIPE_MAINTAINER_pn-fstests = "Richard Purdie " +RECIPE_MAINTAINER_pn-gaku = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gamin = "Saul Wold " +RECIPE_MAINTAINER_pn-gawk = "Chen Qi " +RECIPE_MAINTAINER_pn-gcc = "Richard Purdie " +RECIPE_MAINTAINER_pn-gccmakedep = "Richard Purdie " +RECIPE_MAINTAINER_pn-gcc-runtime = "Saul Wold " +RECIPE_MAINTAINER_pn-gconf = "Saul Wold " +RECIPE_MAINTAINER_pn-gdb = "Richard Purdie " +RECIPE_MAINTAINER_pn-gdbm = "Saul Wold " +RECIPE_MAINTAINER_pn-gdk-pixbuf = "Ross Burton " +RECIPE_MAINTAINER_pn-genext2fs = "Robert Yang " +RECIPE_MAINTAINER_pn-gettext-minimal-native = "Saul Wold " +RECIPE_MAINTAINER_pn-gettext = "Wenzong Fan " +RECIPE_MAINTAINER_pn-ghostscript = "Hongxu Jia " +RECIPE_MAINTAINER_pn-git = "Robert Yang " +RECIPE_MAINTAINER_pn-glew = "Saul Wold " +RECIPE_MAINTAINER_pn-glib-2.0 = "Robert Yang " +RECIPE_MAINTAINER_pn-glibc = "Richard Purdie " +RECIPE_MAINTAINER_pn-glib-networking = "Ross Burton " +RECIPE_MAINTAINER_pn-glproto = "Ross Burton " +RECIPE_MAINTAINER_pn-gmp = "Robert Yang " +RECIPE_MAINTAINER_pn-gnome-common = "Ross Burton " +RECIPE_MAINTAINER_pn-gnome-desktop = "Ross Burton " +RECIPE_MAINTAINER_pn-gnome-doc-utils = "Ross Burton " +RECIPE_MAINTAINER_pn-gnome-icon-theme = "Ross Burton " +RECIPE_MAINTAINER_pn-gnome-mime-data = "Ross Burton " +RECIPE_MAINTAINER_pn-gnu-config = "Robert Yang " +RECIPE_MAINTAINER_pn-gnupg = "Saul Wold " +RECIPE_MAINTAINER_pn-gnutls = "Ross Burton " +RECIPE_MAINTAINER_pn-gperf = "Ross Burton " +RECIPE_MAINTAINER_pn-gpgme = "Paul Eggleton " +RECIPE_MAINTAINER_pn-grep = "Chen Qi " +RECIPE_MAINTAINER_pn-groff = "Hongxu Jia " +RECIPE_MAINTAINER_pn-grub = "Paul Eggleton " +RECIPE_MAINTAINER_pn-gsettings-desktop-schemas = "Ross Burton " +RECIPE_MAINTAINER_pn-gst-ffmpeg = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gst-fluendo-mp3 = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gst-fluendo-mpegdemux = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gst-meta-base = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gst-openmax = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gst-plugin-bluetooth = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gst-plugins-bad = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gst-plugins-base = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gst-plugins-good = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gst-plugins-ugly = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gstreamer = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gstreamer1.0 = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gstreamer1.0-libav = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gstreamer1.0-plugins-bad = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gstreamer1.0-plugins-base = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gstreamer1.0-plugins-good = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gstreamer1.0-plugins-ugly = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gstreamer1.0-rtsp-server = "Cristian Iorga " +RECIPE_MAINTAINER_pn-gtk-doc-stub = "Saul Wold " +RECIPE_MAINTAINER_pn-gtk-doc = "Ross Burton " +RECIPE_MAINTAINER_pn-gtk-engines = "Ross Burton " +RECIPE_MAINTAINER_pn-gtk-sato-engine = "Ross Burton " +RECIPE_MAINTAINER_pn-gtk-theme-torturer = "Ross Burton " +RECIPE_MAINTAINER_pn-gtk-update-icon-cache-native = "Ross Burton " +RECIPE_MAINTAINER_pn-gtk+ = "Ross Burton " +RECIPE_MAINTAINER_pn-gtk+3 = "Ross Burton " +RECIPE_MAINTAINER_pn-guile = "Chong Lu " +RECIPE_MAINTAINER_pn-guilt-native = "Bruce Ashfield " +RECIPE_MAINTAINER_pn-gummiboot = "Darren Hart " +RECIPE_MAINTAINER_pn-gzip = "Chen Qi " +RECIPE_MAINTAINER_pn-hal = "Saul Wold " +RECIPE_MAINTAINER_pn-harfbuzz = "Cristian Iorga " +RECIPE_MAINTAINER_pn-hdparm = "Saul Wold " +RECIPE_MAINTAINER_pn-help2man-native = "Saul Wold " +RECIPE_MAINTAINER_pn-hicolor-icon-theme = "Ross Burton " +RECIPE_MAINTAINER_pn-hostap-conf = "Cristian Iorga " +RECIPE_MAINTAINER_pn-hostap-utils = "Cristian Iorga " +RECIPE_MAINTAINER_pn-hwlatdetect = "Darren Hart " +RECIPE_MAINTAINER_pn-icecc-create-env-native = "Saul Wold " +RECIPE_MAINTAINER_pn-icu = "Ross Burton " +RECIPE_MAINTAINER_pn-initramfs-boot = "Saul Wold " +RECIPE_MAINTAINER_pn-initramfs-framework = "Saul Wold " +RECIPE_MAINTAINER_pn-initramfs-live-boot = "Saul Wold " +RECIPE_MAINTAINER_pn-initramfs-live-install-efi = "Saul Wold " +RECIPE_MAINTAINER_pn-initramfs-live-install = "Saul Wold " +RECIPE_MAINTAINER_pn-initscripts = "Saul Wold " +RECIPE_MAINTAINER_pn-inputproto = "Ross Burton " +RECIPE_MAINTAINER_pn-insserv = "Chong Lu " +RECIPE_MAINTAINER_pn-intltool = "Richard Purdie " +RECIPE_MAINTAINER_pn-iproute2 = "Cristian Iorga " +RECIPE_MAINTAINER_pn-iptables = "Cristian Iorga " +RECIPE_MAINTAINER_pn-iputils = "Saul Wold " +RECIPE_MAINTAINER_pn-irda-utils = "Cristian Iorga " +RECIPE_MAINTAINER_pn-jpeg = "Ross Burton " +RECIPE_MAINTAINER_pn-json-glib = "Ross Burton " +RECIPE_MAINTAINER_pn-kbd = "Saul Wold " +RECIPE_MAINTAINER_pn-kbproto = "Ross Burton " +RECIPE_MAINTAINER_pn-kconfig-frontends = "Saul Wold " +RECIPE_MAINTAINER_pn-kernelshark = "Darren Hart " +RECIPE_MAINTAINER_pn-kern-tools-native = "Bruce Ashfield " +RECIPE_MAINTAINER_pn-kexec-tools = "Richard Purdie " +RECIPE_MAINTAINER_pn-keymaps = "Saul Wold " +RECIPE_MAINTAINER_pn-kmod = "Saul Wold " +RECIPE_MAINTAINER_pn-lame = "Saul Wold " +RECIPE_MAINTAINER_pn-latencytop = "Richard Purdie " +RECIPE_MAINTAINER_pn-ldconfig-native = "Saul Wold " +RECIPE_MAINTAINER_pn-leafpad = "Ross Burton " +RECIPE_MAINTAINER_pn-less = "Saul Wold " +RECIPE_MAINTAINER_pn-liba52 = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libacpi = "Saul Wold " +RECIPE_MAINTAINER_pn-libaio = "Saul Wold " +RECIPE_MAINTAINER_pn-libarchive = "Kai Kang " +RECIPE_MAINTAINER_pn-libart-lgpl = "Ross Burton " +RECIPE_MAINTAINER_pn-libassuan = "Saul Wold " +RECIPE_MAINTAINER_pn-libatomics-ops = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libav = "Paul Eggleton " +RECIPE_MAINTAINER_pn-libbsd = "Saul Wold " +RECIPE_MAINTAINER_pn-libcap = "Saul Wold " +RECIPE_MAINTAINER_pn-libcgroup = "Saul Wold " +RECIPE_MAINTAINER_pn-libcheck = "Saul Wold " +RECIPE_MAINTAINER_pn-libclass-isa-perl = "Saul Wold " +RECIPE_MAINTAINER_pn-libconvert-asn1-perl = "Richard Purdie " +RECIPE_MAINTAINER_pn-libcroco = "Ross Burton " +RECIPE_MAINTAINER_pn-libdaemon = "Saul Wold " +RECIPE_MAINTAINER_pn-libdmx = "Saul Wold " +RECIPE_MAINTAINER_pn-libdrm = "Richard Purdie " +RECIPE_MAINTAINER_pn-libdumpvalue-perl = "Saul Wold " +RECIPE_MAINTAINER_pn-libenv-perl = "Saul Wold " +RECIPE_MAINTAINER_pn-liberation-fonts = "Ross Burton " +RECIPE_MAINTAINER_pn-libevent = "Paul Eggleton " +RECIPE_MAINTAINER_pn-libexif = "Saul Wold " +RECIPE_MAINTAINER_pn-libfakekey = "Ross Burton " +RECIPE_MAINTAINER_pn-libffi = "Saul Wold " +RECIPE_MAINTAINER_pn-libfile-checktree-perl = "Saul Wold " +RECIPE_MAINTAINER_pn-libfm = "Ross Burton " +RECIPE_MAINTAINER_pn-libfontenc = "Ross Burton " +RECIPE_MAINTAINER_pn-libgcc = "Saul Wold " +RECIPE_MAINTAINER_pn-libgcrypt = "Saul Wold " +RECIPE_MAINTAINER_pn-libglade = "Ross Burton " +RECIPE_MAINTAINER_pn-libglu = "Saul Wold " +RECIPE_MAINTAINER_pn-libgpg-error = "Paul Eggleton " +RECIPE_MAINTAINER_pn-libi18n-collate-perl = "Saul Wold " +RECIPE_MAINTAINER_pn-libical = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libice = "Ross Burton " +RECIPE_MAINTAINER_pn-libiconv = "Saul Wold " +RECIPE_MAINTAINER_pn-libid3tag = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libidn = "Saul Wold " +RECIPE_MAINTAINER_pn-libjson = "Richard Purdie " +RECIPE_MAINTAINER_pn-libksba = "Saul Wold " +RECIPE_MAINTAINER_pn-libmad = "Saul Wold " +RECIPE_MAINTAINER_pn-libmatchbox = "Ross Burton " +RECIPE_MAINTAINER_pn-libmpc = "Richard Purdie " +RECIPE_MAINTAINER_pn-libnewt = "Hongxu Jia " +RECIPE_MAINTAINER_pn-libnfsidmap = "Paul Eggleton " +RECIPE_MAINTAINER_pn-libnl = "Saul Wold " +RECIPE_MAINTAINER_pn-libnotify = "Ross Burton " +RECIPE_MAINTAINER_pn-libnss-mdns = "Saul Wold " +RECIPE_MAINTAINER_pn-libogg = "Cristian Iorga " +RECIPE_MAINTAINER_pn-liboil = "Saul Wold " +RECIPE_MAINTAINER_pn-libomxil = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libowl-av = "Ross Burton " +RECIPE_MAINTAINER_pn-libowl = "Ross Burton " +RECIPE_MAINTAINER_pn-libpam = "Ross Burton " +RECIPE_MAINTAINER_pn-libpcap = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libpciaccess = "Richard Purdie " +RECIPE_MAINTAINER_pn-libpcre = "Chong Lu " +RECIPE_MAINTAINER_pn-libpng = "Ross Burton " +RECIPE_MAINTAINER_pn-libpng12 = "Ross Burton " +RECIPE_MAINTAINER_pn-libpod-plainer-perl = "Saul Wold " +RECIPE_MAINTAINER_pn-libproxy = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libpthread-stubs = "Saul Wold " +RECIPE_MAINTAINER_pn-librsvg = "Ross Burton " +RECIPE_MAINTAINER_pn-libsamplerate0 = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libsdl = "Kai Kang " +RECIPE_MAINTAINER_pn-libsm = "Ross Burton " +RECIPE_MAINTAINER_pn-libsndfile1 = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libsoup-2.4 = "Ross Burton " +RECIPE_MAINTAINER_pn-libsoup = "Ross Burton " +RECIPE_MAINTAINER_pn-libtasn1 = "Ross Burton " +RECIPE_MAINTAINER_pn-libtelepathy = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libtheora = "Saul Wold " +RECIPE_MAINTAINER_pn-libtimedate-perl = "Richard Purdie " +RECIPE_MAINTAINER_pn-libtirpc = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libtool = "Robert Yang " +RECIPE_MAINTAINER_pn-libunique = "Saul Wold " +RECIPE_MAINTAINER_pn-libunistring = "Richard Purdie " +RECIPE_MAINTAINER_pn-liburcu = "Saul Wold " +RECIPE_MAINTAINER_pn-liburi-perl = "Kai Kang " +RECIPE_MAINTAINER_pn-libusb1 = "Saul Wold " +RECIPE_MAINTAINER_pn-libusb-compat = "Saul Wold " +RECIPE_MAINTAINER_pn-libuser = "Chong Lu " +RECIPE_MAINTAINER_pn-libvorbis = "Cristian Iorga " +RECIPE_MAINTAINER_pn-libx11-diet = "Kai Kang " +RECIPE_MAINTAINER_pn-libx11 = "Ross Burton " +RECIPE_MAINTAINER_pn-libxau = "Ross Burton " +RECIPE_MAINTAINER_pn-libxcalibrate ="Ross Burton " +RECIPE_MAINTAINER_pn-libxcb = "Ross Burton " +RECIPE_MAINTAINER_pn-libxcomposite = "Ross Burton " +RECIPE_MAINTAINER_pn-libxcursor = "Ross Burton " +RECIPE_MAINTAINER_pn-libxdamage = "Ross Burton " +RECIPE_MAINTAINER_pn-libxdmcp = "Ross Burton " +RECIPE_MAINTAINER_pn-libxext = "Ross Burton " +RECIPE_MAINTAINER_pn-libxfixes = "Ross Burton " +RECIPE_MAINTAINER_pn-libxfont = "Ross Burton " +RECIPE_MAINTAINER_pn-libxft = "Ross Burton " +RECIPE_MAINTAINER_pn-libxinerama = "Ross Burton " +RECIPE_MAINTAINER_pn-libxi = "Ross Burton " +RECIPE_MAINTAINER_pn-libxkbcommon = "Saul Wold " +RECIPE_MAINTAINER_pn-libxkbfile = "Ross Burton " +RECIPE_MAINTAINER_pn-libxml2 = "Hongxu Jia " +RECIPE_MAINTAINER_pn-libxml-namespacesupport-perl = "Saul Wold " +RECIPE_MAINTAINER_pn-libxml-parser-perl = "Hongxu Jia " +RECIPE_MAINTAINER_pn-libxml-perl = "Saul Wold " +RECIPE_MAINTAINER_pn-libxml-sax-perl = "Kai Kang " +RECIPE_MAINTAINER_pn-libxml-simple-perl = "Saul Wold " +RECIPE_MAINTAINER_pn-libxmu = "Ross Burton " +RECIPE_MAINTAINER_pn-libxpm = "Ross Burton " +RECIPE_MAINTAINER_pn-libxp = "Ross Burton " +RECIPE_MAINTAINER_pn-libxrandr = "Ross Burton " +RECIPE_MAINTAINER_pn-libxrender = "Ross Burton " +RECIPE_MAINTAINER_pn-libxres = "Ross Burton " +RECIPE_MAINTAINER_pn-libxscrnsaver = "Ross Burton " +RECIPE_MAINTAINER_pn-libxsettings-client = "Ross Burton " +RECIPE_MAINTAINER_pn-libxslt = "Ross Burton " +RECIPE_MAINTAINER_pn-libxt = "Ross Burton " +RECIPE_MAINTAINER_pn-libxtst = "Ross Burton " +RECIPE_MAINTAINER_pn-libxvmc = "Ross Burton " +RECIPE_MAINTAINER_pn-libxv = "Ross Burton " +RECIPE_MAINTAINER_pn-libxxf86dga = "Ross Burton " +RECIPE_MAINTAINER_pn-libxxf86misc = "Ross Burton " +RECIPE_MAINTAINER_pn-libxxf86vm = "Ross Burton " +RECIPE_MAINTAINER_pn-lighttpd = "Ross Burton " +RECIPE_MAINTAINER_pn-linuxdoc-tools = "Paul Eggleton " +RECIPE_MAINTAINER_pn-linux-dummy = "Saul Wold " +RECIPE_MAINTAINER_pn-linux-firmware = "Cristian Iorga " +RECIPE_MAINTAINER_pn-linux-libc-headers = "Bruce Ashfield " +RECIPE_MAINTAINER_pn-linux-libc-headers-yocto = "Bruce Ashfield " +RECIPE_MAINTAINER_pn-linux-yocto = "Darren Hart " +RECIPE_MAINTAINER_pn-linux-yocto-rt = "Darren Hart " +RECIPE_MAINTAINER_pn-linux-yocto-tiny = "Saul Wold " +RECIPE_MAINTAINER_pn-logrotate = "Robert Yang " +RECIPE_MAINTAINER_pn-lrzsz = "Cristian Iorga " +RECIPE_MAINTAINER_pn-lsbinitscripts = "Saul Wold " +RECIPE_MAINTAINER_pn-lsbtest = "Yi Zhao " +RECIPE_MAINTAINER_pn-lsb = "Hongxu Jia " +RECIPE_MAINTAINER_pn-lsof = "Richard Purdie " +RECIPE_MAINTAINER_pn-ltp = "Robert Yang " +RECIPE_MAINTAINER_pn-lttng-modules = "Richard Purdie " +RECIPE_MAINTAINER_pn-lttng-tools = "Richard Purdie " +RECIPE_MAINTAINER_pn-lttng-ust = "Richard Purdie " +RECIPE_MAINTAINER_pn-lzop = "Saul Wold " +RECIPE_MAINTAINER_pn-lzo = "Saul Wold " +RECIPE_MAINTAINER_pn-lz4 = "Armin Kuster " +RECIPE_MAINTAINER_pn-m4 = "Robert Yang " +RECIPE_MAINTAINER_pn-mailx = "Kai Kang " +RECIPE_MAINTAINER_pn-make = "Robert Yang " +RECIPE_MAINTAINER_pn-makedepend = "Robert Yang " +RECIPE_MAINTAINER_pn-makedevs = "Saul Wold " +RECIPE_MAINTAINER_pn-man-pages = "Saul Wold " +RECIPE_MAINTAINER_pn-man = "Saul Wold " +RECIPE_MAINTAINER_pn-matchbox-config-gtk = "Ross Burton " +RECIPE_MAINTAINER_pn-matchbox-desktop-sato = "Ross Burton " +RECIPE_MAINTAINER_pn-matchbox-desktop = "Ross Burton " +RECIPE_MAINTAINER_pn-matchbox-keyboard = "Ross Burton " +RECIPE_MAINTAINER_pn-matchbox-panel-2 = "Ross Burton " +RECIPE_MAINTAINER_pn-matchbox-session-sato = "Ross Burton " +RECIPE_MAINTAINER_pn-matchbox-session = "Ross Burton " +RECIPE_MAINTAINER_pn-matchbox-terminal = "Ross Burton " +RECIPE_MAINTAINER_pn-matchbox-theme-sato = "Ross Burton " +RECIPE_MAINTAINER_pn-matchbox-wm = "Ross Burton " +RECIPE_MAINTAINER_pn-mc = "Saul Wold " +RECIPE_MAINTAINER_pn-mdadm = "Richard Purdie " +RECIPE_MAINTAINER_pn-menu-cache = "Ross Burton " +RECIPE_MAINTAINER_pn-mesa-demos = "Saul Wold " +RECIPE_MAINTAINER_pn-mesa = "Ross Burton " +RECIPE_MAINTAINER_pn-meta-ide-support = "Jessica Zhang " +RECIPE_MAINTAINER_pn-meta-toolchain-qte = "Paul Eggleton " +RECIPE_MAINTAINER_pn-meta-toolchain = "Jessica Zhang " +RECIPE_MAINTAINER_pn-midori = "Ross Burton " +RECIPE_MAINTAINER_pn-mingetty = "Kai Kang " +RECIPE_MAINTAINER_pn-minicom = "Cristian Iorga " +RECIPE_MAINTAINER_pn-mini-x-session = "Saul Wold " +RECIPE_MAINTAINER_pn-mkelfimage = "Saul Wold " +RECIPE_MAINTAINER_pn-mkfontdir = "Saul Wold " +RECIPE_MAINTAINER_pn-mkfontscale = "Saul Wold " +RECIPE_MAINTAINER_pn-mklibs-native = "Robert Yang " +RECIPE_MAINTAINER_pn-mktemp = "Chong Lu " +RECIPE_MAINTAINER_pn-mobile-broadband-provider-info = "Saul Wold " +RECIPE_MAINTAINER_pn-modutils-initscripts = "Saul Wold " +RECIPE_MAINTAINER_pn-modutils-initscripts = "Saul Wold " +RECIPE_MAINTAINER_pn-mpeg2dec = "Saul Wold " +RECIPE_MAINTAINER_pn-mpfr = "Richard Purdie " +RECIPE_MAINTAINER_pn-msmtp = "Saul Wold " +RECIPE_MAINTAINER_pn-mtdev = "Ross Burton " +RECIPE_MAINTAINER_pn-mtd-utils = "Saul Wold " +RECIPE_MAINTAINER_pn-mtools = "Paul Eggleton " +RECIPE_MAINTAINER_pn-mx-1.0 = "Saul Wold " +RECIPE_MAINTAINER_pn-nasm = "Richard Purdie " +RECIPE_MAINTAINER_pn-nativesdk-packagegroup-qte-toolchain-host = "Paul Eggleton " +RECIPE_MAINTAINER_pn-nativesdk-qemu-helper = "Saul Wold " +RECIPE_MAINTAINER_pn-nativesdk-qt4-tools = "Paul Eggleton " +RECIPE_MAINTAINER_pn-ncurses = "Hongxu Jia " +RECIPE_MAINTAINER_pn-neard = "Cristian Iorga " +RECIPE_MAINTAINER_pn-neon = "Cristian Iorga " +RECIPE_MAINTAINER_pn-netbase = "Cristian Iorga " +RECIPE_MAINTAINER_pn-nettle = "Armin Kuster " +RECIPE_MAINTAINER_pn-net-tools = "Cristian Iorga " +RECIPE_MAINTAINER_pn-nfs-export-root = "Saul Wold " +RECIPE_MAINTAINER_pn-nfs-utils = "Paul Eggleton " +RECIPE_MAINTAINER_pn-npth = "Saul Wold " +RECIPE_MAINTAINER_pn-nspr = "Saul Wold " +RECIPE_MAINTAINER_pn-ocf-linux = "Saul Wold " +RECIPE_MAINTAINER_pn-ocf-linux = "Saul Wold " +RECIPE_MAINTAINER_pn-ofono = "Cristian Iorga " +RECIPE_MAINTAINER_pn-oh-puzzles = "Ross Burton " +RECIPE_MAINTAINER_pn-openjade = "Paul Eggleton " +RECIPE_MAINTAINER_pn-opensp = "Paul Eggleton " +RECIPE_MAINTAINER_pn-openssh = "Paul Eggleton " +RECIPE_MAINTAINER_pn-openssl = "Saul Wold " +RECIPE_MAINTAINER_pn-opkg-collateral = "Saul Wold " +RECIPE_MAINTAINER_pn-opkg-config-base = "Saul Wold " +RECIPE_MAINTAINER_pn-opkg = "Saul Wold " +RECIPE_MAINTAINER_pn-opkg-utils = "Saul Wold " +RECIPE_MAINTAINER_pn-oprofile = "Richard Purdie " +RECIPE_MAINTAINER_pn-oprofileui = "Richard Purdie " +RECIPE_MAINTAINER_pn-oprofileui-server = "Saul Wold " +RECIPE_MAINTAINER_pn-ossp-uuid = "Saul Wold " +RECIPE_MAINTAINER_pn-owl-video = "Ross Burton " +RECIPE_MAINTAINER_pn-packagegroup-base = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-boot = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-buildessential = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-clutter = "Ross Burton " +RECIPE_MAINTAINER_pn-packagegroup-core-device-devel = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-directfb = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-full-cmdline = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-lsb = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-nfs = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-qt4e = "Paul Eggleton " +RECIPE_MAINTAINER_pn-packagegroup-core-qt = "Paul Eggleton " +RECIPE_MAINTAINER_pn-packagegroup-core-sdk = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-ssh-dropbear = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-ssh-openssh = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-standalone-sdk-target = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-tools-debug = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-tools-profile = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-tools-testapps = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-x11-base = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-x11-sato = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-x11 = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-core-x11-xserver = "Saul Wold " +RECIPE_MAINTAINER_pn-packagegroup-qte-toolchain-target = "Paul Eggleton " +RECIPE_MAINTAINER_pn-packagegroup-self-hosted = "Saul Wold " +RECIPE_MAINTAINER_pn-package-index = "Saul Wold " +RECIPE_MAINTAINER_pn-pango = "Ross Burton " +RECIPE_MAINTAINER_pn-parted = "Hongxu Jia " +RECIPE_MAINTAINER_pn-patch = "Hongxu Jia " +RECIPE_MAINTAINER_pn-pax-utils = "Hongxu Jia " +RECIPE_MAINTAINER_pn-pax = "Hongxu Jia " +RECIPE_MAINTAINER_pn-pciutils = "Ross Burton " +RECIPE_MAINTAINER_pn-pcmanfm = "Ross Burton " +RECIPE_MAINTAINER_pn-pcmciautils = "Ross Burton " +RECIPE_MAINTAINER_pn-perf = "Saul Wold " +RECIPE_MAINTAINER_pn-perl = "Hongxu Jia " +RECIPE_MAINTAINER_pn-piglit = "Ross Burton " +RECIPE_MAINTAINER_pn-pigz = "Saul Wold " +RECIPE_MAINTAINER_pn-pixman = "Ross Burton " +RECIPE_MAINTAINER_pn-pkgconfig = "Saul Wold " +RECIPE_MAINTAINER_pn-pm-utils = "Cristian Iorga " +RECIPE_MAINTAINER_pn-pointercal = "Ross Burton " +RECIPE_MAINTAINER_pn-poky-feed-config-opkg = "Saul Wold " +RECIPE_MAINTAINER_pn-pong-clock = "Ross Burton " +RECIPE_MAINTAINER_pn-popt = "Paul Eggleton " +RECIPE_MAINTAINER_pn-portmap = "Saul Wold " +RECIPE_MAINTAINER_pn-powertop = "Richard Purdie " +RECIPE_MAINTAINER_pn-ppp = "Hongxu Jia " +RECIPE_MAINTAINER_pn-ppp-dialin = "Hongxu Jia " +RECIPE_MAINTAINER_pn-prelink = "Mark Hatle " +RECIPE_MAINTAINER_pn-presentproto = "Ross Burton " +RECIPE_MAINTAINER_pn-procps = "Saul Wold " +RECIPE_MAINTAINER_pn-pseudo = "Mark Hatle " +RECIPE_MAINTAINER_pn-psmisc = "Saul Wold " +RECIPE_MAINTAINER_pn-psplash = "Paul Eggleton " +RECIPE_MAINTAINER_pn-pth = "Saul Wold " +RECIPE_MAINTAINER_pn-pulseaudio = "Cristian Iorga " +RECIPE_MAINTAINER_pn-puzzles = "Ross Burton " +RECIPE_MAINTAINER_pn-python-argparse = "Richard Purdie " +RECIPE_MAINTAINER_pn-python = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-dbus = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-distribute = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-docutils = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-gst = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-imaging = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-pycairo = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-pycurl = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-pygobject = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-pygtk = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-pyrex = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-scons = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-setuptools = "Richard Purdie " +RECIPE_MAINTAINER_pn-python-smartpm = "Paul Eggleton " +RECIPE_MAINTAINER_pn-python3 = "Richard Purdie " +RECIPE_MAINTAINER_pn-qemu-helper-native = "Cristian Iorga " +RECIPE_MAINTAINER_pn-qemu = "Cristian Iorga " +RECIPE_MAINTAINER_pn-qmmp = "Hongxu Jia " +RECIPE_MAINTAINER_pn-qt4e-demo-image = "Paul Eggleton " +RECIPE_MAINTAINER_pn-qt4-embedded = "Paul Eggleton " +RECIPE_MAINTAINER_pn-qt4-graphics-system = "Paul Eggleton " +RECIPE_MAINTAINER_pn-qt4-native = "Paul Eggleton " +RECIPE_MAINTAINER_pn-qt4-x11-free = "Paul Eggleton " +RECIPE_MAINTAINER_pn-qt-demo-init = "Paul Eggleton " +RECIPE_MAINTAINER_pn-qt-mobility-embedded = "Paul Eggleton " +RECIPE_MAINTAINER_pn-qt-mobility-x11 = "Paul Eggleton " +RECIPE_MAINTAINER_pn-quicky = "Paul Eggleton " +RECIPE_MAINTAINER_pn-quilt = "Chong Lu " +RECIPE_MAINTAINER_pn-quota = "Cristian Iorga " +RECIPE_MAINTAINER_pn-randrproto = "Ross Burton " +RECIPE_MAINTAINER_pn-readline = "Hongxu Jia " +RECIPE_MAINTAINER_pn-recordproto = "Ross Burton " +RECIPE_MAINTAINER_pn-remake = "Robert Yang " +RECIPE_MAINTAINER_pn-renderproto = "Ross Burton " +RECIPE_MAINTAINER_pn-resolvconf = "Saul Wold " +RECIPE_MAINTAINER_pn-resourceproto = "Ross Burton " +RECIPE_MAINTAINER_pn-rgb = "Saul Wold " +RECIPE_MAINTAINER_pn-rpcbind = "Hongxu Jia " +RECIPE_MAINTAINER_pn-rpm = "Mark Hatle " +RECIPE_MAINTAINER_pn-rpmresolve = "Paul Eggleton " +RECIPE_MAINTAINER_pn-rsync = "Robert Yang " +RECIPE_MAINTAINER_pn-rt-tests = "Darren Hart " +RECIPE_MAINTAINER_pn-run-postinsts = "Cristian Iorga " +RECIPE_MAINTAINER_pn-rxvt-unicode = "Saul Wold " +RECIPE_MAINTAINER_pn-sato-icon-theme = "Ross Burton " +RECIPE_MAINTAINER_pn-sato-screenshot = "Saul Wold " +RECIPE_MAINTAINER_pn-sbc = "Cristian Iorga " +RECIPE_MAINTAINER_pn-screen = "Ross Burton " +RECIPE_MAINTAINER_pn-scrnsaverproto = "Ross Burton " +RECIPE_MAINTAINER_pn-sed = "Chen Qi " +RECIPE_MAINTAINER_pn-setserial = "Saul Wold " +RECIPE_MAINTAINER_pn-settings-daemon = "Ross Burton " +RECIPE_MAINTAINER_pn-sgml-common = "Paul Eggleton " +RECIPE_MAINTAINER_pn-sgmlspl = "Paul Eggleton " +RECIPE_MAINTAINER_pn-shadow = "Chen Qi " +RECIPE_MAINTAINER_pn-shadow-securetty = "Chen Qi " +RECIPE_MAINTAINER_pn-shadow-sysroot = "Saul Wold " +RECIPE_MAINTAINER_pn-shared-mime-info = "Ross Burton " +RECIPE_MAINTAINER_pn-shutdown-desktop = "Saul Wold " +RECIPE_MAINTAINER_pn-slang = "Kai Kang " +RECIPE_MAINTAINER_pn-socat = "Hongxu Jia " +RECIPE_MAINTAINER_pn-speex = "Cristian Iorga " +RECIPE_MAINTAINER_pn-sqlite3 = "Saul Wold " +RECIPE_MAINTAINER_pn-squashfs-tools = "Saul Wold " +RECIPE_MAINTAINER_pn-startup-notification = "Saul Wold " +RECIPE_MAINTAINER_pn-stat = "Chen Qi " +RECIPE_MAINTAINER_pn-strace = "Chong Lu " +RECIPE_MAINTAINER_pn-subversion = "Richard Purdie " +RECIPE_MAINTAINER_pn-sudo = "Chen Qi " +RECIPE_MAINTAINER_pn-swabber-native = "Saul Wold " +RECIPE_MAINTAINER_pn-sysfsutils = "Chen Qi " +RECIPE_MAINTAINER_pn-sysklogd = "Chen Qi " +RECIPE_MAINTAINER_pn-syslinux = "Darren Hart " +RECIPE_MAINTAINER_pn-sysprof = "Tom Zanussi " +RECIPE_MAINTAINER_pn-sysstat = "Chen Qi " +RECIPE_MAINTAINER_pn-systemtap = "Saul Wold " +RECIPE_MAINTAINER_pn-systemtap-uprobes = "Tom Zanussi " +RECIPE_MAINTAINER_pn-sysvinit-inittab = "Saul Wold " +RECIPE_MAINTAINER_pn-sysvinit = "Saul Wold " +RECIPE_MAINTAINER_pn-taglib = "Cristian Iorga " +RECIPE_MAINTAINER_pn-tar-replacement-native = "Saul Wold " +RECIPE_MAINTAINER_pn-tar = "Chen Qi " +RECIPE_MAINTAINER_pn-tcf-agent = "Richard Purdie " +RECIPE_MAINTAINER_pn-tcl = "Chong Lu " +RECIPE_MAINTAINER_pn-tcp-wrappers = "Saul Wold " +RECIPE_MAINTAINER_pn-tcp-wrappers = "Saul Wold " +RECIPE_MAINTAINER_pn-telepathy-glib = "Cristian Iorga " +RECIPE_MAINTAINER_pn-telepathy-idle = "Cristian Iorga " +RECIPE_MAINTAINER_pn-telepathy-mission-control = "Cristian Iorga " +RECIPE_MAINTAINER_pn-telepathy-python = "Cristian Iorga " +RECIPE_MAINTAINER_pn-texi2html = "Saul Wold " +RECIPE_MAINTAINER_pn-texinfo = "Saul Wold " +RECIPE_MAINTAINER_pn-tiff = "Saul Wold " +RECIPE_MAINTAINER_pn-time = "Robert Yang " +RECIPE_MAINTAINER_pn-tiny-init = "Saul Wold " +RECIPE_MAINTAINER_pn-trace-cmd = "Darren Hart " +RECIPE_MAINTAINER_pn-tremor = "Cristian Iorga " +RECIPE_MAINTAINER_pn-tslib = "Paul Eggleton " +RECIPE_MAINTAINER_pn-ttf-bitstream-vera = "Ross Burton " +RECIPE_MAINTAINER_pn-tzcode-native = "Robert Yang " +RECIPE_MAINTAINER_pn-tzdata = "Robert Yang " +RECIPE_MAINTAINER_pn-ubootchart = "Saul Wold " +RECIPE_MAINTAINER_pn-u-boot-fw-utils = "Saul Wold " +RECIPE_MAINTAINER_pn-u-boot-mkimage = "Saul Wold " +RECIPE_MAINTAINER_pn-udev-extraconf = "Saul Wold " +RECIPE_MAINTAINER_pn-udev = "Saul Wold " +RECIPE_MAINTAINER_pn-unifdef = "Richard Purdie " +RECIPE_MAINTAINER_pn-unzip = "Saul Wold " +RECIPE_MAINTAINER_pn-update-rc.d = "Saul Wold " +RECIPE_MAINTAINER_pn-usbinit = "Saul Wold " +RECIPE_MAINTAINER_pn-usbutils = "Saul Wold " +RECIPE_MAINTAINER_pn-unfs3 = "Paul Eggleton " +RECIPE_MAINTAINER_pn-util-linux = "Saul Wold " +RECIPE_MAINTAINER_pn-util-macros = "Ross Burton " +RECIPE_MAINTAINER_pn-v86d = "Richard Purdie " +RECIPE_MAINTAINER_pn-vala = "Ross Burton " +RECIPE_MAINTAINER_pn-valgrind = "Saul Wold " +RECIPE_MAINTAINER_pn-videoproto = "Ross Burton " +RECIPE_MAINTAINER_pn-vte ="Ross Burton " +RECIPE_MAINTAINER_pn-watchdog = "Saul Wold " +RECIPE_MAINTAINER_pn-wayland = "Ross Burton " +RECIPE_MAINTAINER_pn-webkit-gtk = "Ross Burton " +RECIPE_MAINTAINER_pn-web-webkit = "Ross Burton " +RECIPE_MAINTAINER_pn-weston = "Ross Burton " +RECIPE_MAINTAINER_pn-wget = "Robert Yang " +RECIPE_MAINTAINER_pn-which = "Saul Wold " +RECIPE_MAINTAINER_pn-wireless-tools = "Cristian Iorga " +RECIPE_MAINTAINER_pn-wpa-supplicant = "Cristian Iorga " +RECIPE_MAINTAINER_pn-x11-common = "Ross Burton " +RECIPE_MAINTAINER_pn-x11perf = "Richard Purdie " +RECIPE_MAINTAINER_pn-x11vnc = "Richard Purdie " +RECIPE_MAINTAINER_pn-x264 = "Paul Eggleton " +RECIPE_MAINTAINER_pn-xauth = "Ross Burton " +RECIPE_MAINTAINER_pn-xcb-proto = "Ross Burton " +RECIPE_MAINTAINER_pn-xcb-util-image = "Ross Burton " +RECIPE_MAINTAINER_pn-xcb-util-keysyms = "Ross Burton " +RECIPE_MAINTAINER_pn-xcb-util = "Ross Burton " +RECIPE_MAINTAINER_pn-xcb-util-renderutil = "Saul Wold " +RECIPE_MAINTAINER_pn-xcb-util-wm = "Ross Burton " +RECIPE_MAINTAINER_pn-xcmiscproto = "Ross Burton " +RECIPE_MAINTAINER_pn-xcursor-transparent-theme = "Ross Burton " +RECIPE_MAINTAINER_pn-xdg-utils = "Ross Burton " +RECIPE_MAINTAINER_pn-xdpyinfo = "Ross Burton " +RECIPE_MAINTAINER_pn-xev = "Ross Burton " +RECIPE_MAINTAINER_pn-xextproto = "Ross Burton " +RECIPE_MAINTAINER_pn-xeyes = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86dgaproto = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86driproto = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-input-evdev = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-input-keyboard = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-input-mouse = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-input-synaptics = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-input-vmmouse = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86miscproto = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-video-fbdev = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-video-intel = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-video-omapfb = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-video-omap = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-video-vesa = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86-video-vmware = "Ross Burton " +RECIPE_MAINTAINER_pn-xf86vidmodeproto = "Ross Burton " +RECIPE_MAINTAINER_pn-xhost = "Ross Burton " +RECIPE_MAINTAINER_pn-xineramaproto = "Ross Burton " +RECIPE_MAINTAINER_pn-xinetd = "Richard Purdie " +RECIPE_MAINTAINER_pn-xinit = "Ross Burton " +RECIPE_MAINTAINER_pn-xinput = "Ross Burton " +RECIPE_MAINTAINER_pn-xinput-calibrator = "Ross Burton " +RECIPE_MAINTAINER_pn-xkbcomp = "Ross Burton " +RECIPE_MAINTAINER_pn-xkeyboard-config = "Ross Burton " +RECIPE_MAINTAINER_pn-xmodmap = "Ross Burton " +RECIPE_MAINTAINER_pn-xorg-minimal-fonts = "Ross Burton " +RECIPE_MAINTAINER_pn-xprop = "Ross Burton " +RECIPE_MAINTAINER_pn-xproto = "Ross Burton " +RECIPE_MAINTAINER_pn-xrandr = "Ross Burton " +RECIPE_MAINTAINER_pn-xrestop = "Ross Burton " +RECIPE_MAINTAINER_pn-xserver-nodm-init = "Ross Burton " +RECIPE_MAINTAINER_pn-xserver-xf86-config = "Ross Burton " +RECIPE_MAINTAINER_pn-xserver-xorg = "Ross Burton " +RECIPE_MAINTAINER_pn-xset = "Ross Burton " +RECIPE_MAINTAINER_pn-xtrans = "Ross Burton " +RECIPE_MAINTAINER_pn-xtscal = "Ross Burton " +RECIPE_MAINTAINER_pn-xvideo-tests = "Cristian Iorga " +RECIPE_MAINTAINER_pn-xvinfo = "Ross Burton " +RECIPE_MAINTAINER_pn-xwininfo = "Ross Burton " +RECIPE_MAINTAINER_pn-xz = "Chen Qi " +RECIPE_MAINTAINER_pn-yasm = "Paul Eggleton " +RECIPE_MAINTAINER_pn-zaurusd = "Paul Eggleton " +RECIPE_MAINTAINER_pn-zip = "Chen Qi " +RECIPE_MAINTAINER_pn-zlib = "Chen Qi " diff --git a/meta-yocto/conf/distro/include/package_regex.inc b/meta-yocto/conf/distro/include/package_regex.inc new file mode 100644 index 0000000000..92202fd51f --- /dev/null +++ b/meta-yocto/conf/distro/include/package_regex.inc @@ -0,0 +1,367 @@ +# package_regex.inc - This file contains data that tracks +# upstream project associated with a given recipe. This list is needed +# for recipes that version information can not be automagically discovered. +# As we automate this checking, this file will slowly be reduced. +#" +# This data is used by the package reporting system (packages.yoctoproject.org) +#" +# The format is as a bitbake variable override for each recipe +#" +# REGEX_URI_pn- = ""recipe_url" +# - This is the url used by the package checking system to +# get the latest version of the package +# REGEX_pn- = ""package_regex" +# - This is the regex the package checking system uses to +# parse the page found at REGEX_URI_pn- +# +COMMON_REGEX = "((\d+[\.\-_]*)+)" +#This will need to be changed a little bit when versions are bigger than 9. +REGEX_URI_pn-acpid = "http://sourceforge.net/projects/acpid/files/acpid/" +REGEX_pn-acpid = "[hH][rR][eE][fF]=\"/projects/acpid/files/acpid/(acpid\-)?(?P(\d\.(\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-adt-installer = "http://code.google.com/p/opkg/downloads/list" +REGEX_URI_pn-arptables = "http://sourceforge.net/projects/ebtables/files/arptables/" +REGEX_pn-arptables = "[hH][rR][eE][fF]=\"/projects/ebtables/files/arptables/arptables-v(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-beecrypt = "http://sourceforge.net/projects/beecrypt/files/beecrypt/" +REGEX_pn-beecrypt = "[hH][rR][eE][fF]=\"/projects/beecrypt/files/beecrypt/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-beecrypt-native = "http://sourceforge.net/projects/beecrypt/files/beecrypt/" +REGEX_pn-beecrypt-native = "[hH][rR][eE][fF]=\"/projects/beecrypt/files/beecrypt/(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-bdwgc = "[hH][rR][eE][fF]=\"gc\-(?P((\d+[a-z]?[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-bind = "ftp://ftp.isc.org/isc/bind9/" +REGEX_pn-bind = "[hH][rR][eE][fF]=\"(?P((P?\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-bjam-native = "http://sourceforge.net/projects/boost/files/boost/" +REGEX_pn-bjam-native = "[hH][rR][eE][fF]=\"/projects/boost/files/boost/(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-blktool = "[hH][rR][eE][fF]=\"blktool_(?P((\d+[\.\-_]*)+))\.(diff|orig\.tar)\.gz\"" +REGEX_URI_pn-boost = "http://sourceforge.net/projects/boost/files/boost/" +REGEX_pn-boost = "[hH][rR][eE][fF]=\"/projects/boost/files/boost/(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-btrfs-tools = "(?P(\d+(\.\d+)*(\-rc\d+)*))" +REGEX_pn-build-appliance-image = "(?P([0-9][\.|_]?)+)$" +REGEX_URI_pn-bzip2 = "http://www.bzip.org/downloads.html" +REGEX_pn-chkconfig-alternatives-native = "chkconfig\-(?P((\d+[\.\-_]*)+))" +REGEX_URI_pn-chrpath = "http://alioth.debian.org/frs/?group_id=31052" +REGEX_pn-chrpath = "[hH][rR][eE][fF]=\"/frs/download.php/file/\d+/chrpath-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_pn-cmake = "[hH][rR][eE][fF]=\"cmake\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_pn-cmake-native = "[hH][rR][eE][fF]=\"cmake\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_pn-nativeesdk-cmake = "[hH][rR][eE][fF]=\"cmake\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-console-tools = "http://sourceforge.net/projects/lct/files/console-tools/" +REGEX_pn-console-tools = "[hH][rR][eE][fF]=\"/projects/lct/files/console-tools/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-cracklib = "http://sourceforge.net/projects/cracklib/files/cracklib/" +REGEX_pn-cracklib = "[hH][rR][eE][fF]=\"/projects/cracklib/files/cracklib/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-createrepo = "http://createrepo.baseurl.org/download/" +REGEX_pn-createrepo = "[hH][rR][eE][fF]=\"createrepo\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-createrepo-native = "http://createrepo.baseurl.org/download/" +REGEX_pn-createrepo-native = "[hH][rR][eE][fF]=\"createrepo\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-cups = "http://www.cups.org/software.php" +REGEX_pn-cups = "cups\-(?P((\d+[\.\-_]*)+))\-source\.tar\.gz<\/tt>" +REGEX_URI_pn-curlpp = "http://code.google.com/p/curlpp/downloads/list" +REGEX_URI_pn-cwautomacros = "http://sourceforge.net/projects/cwautomacros.berlios/files/" +REGEX_pn-cwautomacros = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/cwautomacros.berlios/files/cwautomacros\-(?P(\d+))\.tar\.bz2\/download"" +REGEX_URI_pn-cwautomacros-native = "http://sourceforge.net/projects/cwautomacros.berlios/files/" +REGEX_pn-cwautomacros-native = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/cwautomacros.berlios/files/cwautomacros\-(?P(\d+))\.tar\.bz2\/download\"" +REGEX_URI_pn-db = "http://www.oracle.com/technetwork/products/berkeleydb/downloads/index-082944.html" +REGEX_pn-db = "[hH][rR][eE][fF]=\"http://download.oracle.com/otn/berkeley-db/db-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-db-native = "http://www.oracle.com/technetwork/products/berkeleydb/downloads/index-082944.html" +REGEX_pn-db-native = "[hH][rR][eE][fF]=\"http://download.oracle.com/otn/berkeley-db/db-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-nativesdk-db = "http://www.oracle.com/technetwork/products/berkeleydb/downloads/index-082944.html" +REGEX_pn-nativesdk-db = "[hH][rR][eE][fF]=\"http://download.oracle.com/otn/berkeley-db/db-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-distcc = "http://code.google.com/p/distcc/downloads/list" +REGEX_pn-distcc = "[hH][rR][eE][fF]=\"//distcc.googlecode.com/files/distcc-(?P((\d+[\.\-_]*)+))\.tar\.bz2\"" +REGEX_URI_pn-docbook-dsssl-stylesheets-native = "http://sourceforge.net/projects/docbook/files/docbook-dsssl/" +REGEX_pn-docbook-dsssl-stylesheets-native = "[hH][rR][eE][fF]=\"/projects/docbook/files/docbook-dsssl/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-docbook-sgml-dtd-3.1-native = "http://docbook.org/sgml/3.1/" +PRSPV_pn-docbook-sgml-dtd-3.1-native = "${@d.getVar('PV',1).replace('.','')}" +REGEX_URI_pn-docbook-sgml-dtd-4.1-native = "http://docbook.org/sgml/4.1/" +PRSPV_pn-docbook-sgml-dtd-4.1-native = "${@d.getVar('PV',1).replace('.','')}" +REGEX_URI_pn-docbook-sgml-dtd-4.5-native = "http://docbook.org/sgml/4.5/" +REGEX_URI_pn-e2fsprogs = "http://sourceforge.net/projects/e2fsprogs/files/e2fsprogs/" +REGEX_pn-e2fsprogs = "[hH][rR][eE][fF]=\"/projects/e2fsprogs/files/e2fsprogs/v(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-elfutils = "[hH][rR][eE][fF]=\"(elfutils\-)?(?P((\d+[\.\-_]*)+))(/|\.tar\.bz2)\"" +REGEX_URI_pn-expat = "http://sourceforge.net/projects/expat/files/expat/" +REGEX_pn-expat-native = "[hH][rR][eE][fF]=\"/projects/expat/files/expat/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-expat-native = "http://sourceforge.net/projects/expat/files/expat/" +REGEX_pn-expat = "[hH][rR][eE][fF]=\"/projects/expat/files/expat/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-nativesdk-expat = "http://sourceforge.net/projects/expat/files/expat/" +REGEX_pn-nativesdk-expat = "[hH][rR][eE][fF]=\"/projects/expat/files/expat/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-fetchmail = "http://sourceforge.net/projects/fetchmail.berlios/files/" +REGEX_URI_pn-flac = "http://sourceforge.net/projects/flac/files/flac-linux-i386/" +REGEX_pn-flac = "[hH][rR][eE][fF]=\"/projects/flac/files/flac-linux-i386/flac\-(?P((\d+[\.\-_]*)+))\-linux\-i386/\"" +REGEX_URI_pn-flex = "http://sourceforge.net/projects/flex/files/" +REGEX_pn-flex = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/flex/files/flex-(?P((\d+[\.\-_]*)+)).tar.gz/download\"" +REGEX_pn-foomatic-filters = "[hH][rR][eE][fF]=\"foomatic-filters-(?P((\d|\d\d)\.*)+)\.tar\.gz\"" +REGEX_URI_pn-fotowall = "https://code.google.com/p/fotowall/downloads/list" +REGEX_pn-fotowall = "[hH][rR][eE][fF]=\"//fotowall.googlecode.com/files/[F|f]otowall\-(?P((\d+[\.\-_]*)+))\.tar\.bz2\"" +REGEX_URI_pn-freetype = "http://sourceforge.net/projects/freetype/files/freetype2" +REGEX_pn-freetype = "[hH][rR][eE][fF]=\"/projects/freetype/files/freetype\d/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-freetype-native = "http://sourceforge.net/projects/freetype/files/freetype2" +REGEX_pn-freetype-native = "[hH][rR][eE][fF]=\"/projects/freetype/files/freetype\d/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-git = "http://code.google.com/p/git-core/downloads/list" +REGEX_pn-git = "[hH][rR][eE][fF]=\"//git-core.googlecode.com/files/git-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-glew = "http://sourceforge.net/projects/glew/files/glew" +REGEX_pn-glew = " [hH][rR][eE][fF]=\"/projects/glew/files/glew/(?P((\d+[\.\-_]*)+))/\"" +#REGEX_pn-gnutls = "ftp://ftp.gnutls.org/gcrypt/gnutls/" +REGEX_pn-gstreamer = "[hH][rR][eE][fF]=\"gstreamer\-(?P(0\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gstreamer1.0 = "[hH][rR][eE][fF]=\"gstreamer\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gst-ffmpeg = "[hH][rR][eE][fF]=\"gst-ffmpeg\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gst-fluendo-mpegdemux = "[hH][rR][eE][fF]=\"gst-fluendo-mpegdemux\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gst-fluendo-mp3 = "[hH][rR][eE][fF]=\"gst-fluendo-mp3\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gstreamer1.0-plugins-base = "[hH][rR][eE][fF]=\"gst\-plugins\-base\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gst-plugins-base = "[hH][rR][eE][fF]=\"gst\-plugins\-base\-(?P(0\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gstreamer1.0-plugins-bad = "[hH][rR][eE][fF]=\"gst\-plugins\-bad\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gst-plugins-bad = "[hH][rR][eE][fF]=\"gst\-plugins\-bad\-(?P(0\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gst-plugins-gl = "[hH][rR][eE][fF]=\"gst\-plugins\-gl\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gstreamer1.0-plugins-good = "[hH][rR][eE][fF]=\"gst\-plugins\-good\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gst-plugins-good = "[hH][rR][eE][fF]=\"gst\-plugins\-good\-(?P(0\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gstreamer1.0-libav = "[hH][rR][eE][fF]=\"gst\-libav\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gstreamer1.0-omx = "[hH][rR][eE][fF]=\"gst\-omx\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gst-openmax = "[hH][rR][eE][fF]=\"gst\-openmax\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gstreamer1.0-plugins-ugly = "[hH][rR][eE][fF]=\"gst\-plugins\-ugly\-(?P(\d+\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gst-plugins-ugly = "[hH][rR][eE][fF]=\"gst\-plugins\-ugly\-(?P(0\.\d*[0|2|4|6|8]\.\d+))\.tar\.(gz|xz|bz2)\"" +REGEX_pn-gtk+ = "[hH][rR][eE][fF]=\"gtk\+\-(?P((\d+[\.\-_]*)+))\.tar\.xz\"" +REGEX_pn-gtk+3 = "[hH][rR][eE][fF]=\"gtk\+\-(?P((\d+[\.\-_]*)+))\.tar\.xz\"" +REGEX_pn-gtk-update-icon-cache-native = "[hH][rR][eE][fF]=\"gtk\+\-(?P((\d+[\.\-_]*)+))\.tar\.xz\"" +REGEX_pn-webkit-gtk = "[hH][rR][eE][fF]=\"webkitgtk\-(?P((\d+[\.\-_]*)+))\.tar\.xz\"" +REGEX_URI_pn-hdparm = "http://sourceforge.net/projects/hdparm/files/hdparm/" +REGEX_pn-hdparm = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/hdparm/files/hdparm/hdparm-(?P((\d+[\.\-_]*)+)).tar.gz/download\"" +REGEX_URI_pn-icu = "http://site.icu-project.org/download" +REGEX_pn-icu = "[hH][rR][eE][fF]=\"http://site.icu-project.org/download/((\d+[\.\-_]*)+)#(TOC\-)?ICU4J\-Download\" rel=\"nofollow\">()?(?P((\d+[\.\-_]*)+))()?" +REGEX_URI_pn-intltool = "https://launchpad.net/intltool/+download" +REGEX_pn-intltool = "[hH][rR][eE][fF]=\"https://launchpad.net/intltool/trunk/(?P((\d+[\.\-_]*)+))/\+download/intltool\-(\d+[\.\-_]*)+\.tar\.gz\"" +REGEX_URI_pn-intltool-native = "https://launchpad.net/intltool/+download" +REGEX_pn-intltool-native = "[hH][rR][eE][fF]=\"https://launchpad.net/intltool/trunk/(?P((\d+[\.\-_]*)+))/\+download/intltool\-(\d+[\.\-_]*)+\.tar\.gz\"" +REGEX_URI_pn-irda-utils = "http://sourceforge.net/projects/irda/files/irda-utils/" +REGEX_pn-irda-utils = "[hH][rR][eE][fF]=\"/projects/irda/files/irda-utils/(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-iputils = "[Hh][Rr][Ee][Ff]=\"iputils\-(?P(s\d+))\.tar\.bz2\"" +REGEX_URI_pn-jpeg = "http://www.ijg.org/files/" +REGEX_pn-jpeg = "[hH][rR][eE][fF]=\"jpegsrc.v(?P((\d+[a-z]*\d*)+))\.tar\.gz"" +REGEX_URI_pn-js = "http://ftp.mozilla.org/pub/mozilla.org/js/" +REGEX_pn-js = "[hH][rR][eE][fF]=\"js-?(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-json-c = "http://s3.amazonaws.com/json-c_releases/" +REGEX_pn-json-c = "releases/json-c-(?P(\d+[\.\-_]*)+).tar.gz" +REGEX_URI_pn-kconfig-frontends = "http://ymorin.is-a-geek.org/download/kconfig-frontends/" +REGEX_pn-kconfig-frontends = "[hH][rR][eE][fF]=\'kconfig\-frontends\-(?P((\d+[\.\-]*)+))\.tar\.xz\'" +GIT_REGEX_pn-kern-tools-native = "HEEEAD" +REGEX_URI_pn-lame = "http://sourceforge.net/projects/lame/files/lame/" +REGEX_pn-lame = "[hH][rR][eE][fF]=\"/projects/lame/files/lame/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-less = "http://www.greenwoodsoftware.com/less/download.html" +REGEX_pn-less = "[hH][rR][eE][fF]=\"less\-(?P(\d+))\.tar\.gz\"" +REGEX_URI_pn-liba52 = "http://liba52.sourceforge.net/downloads.html" +REGEX_pn-liba52 = "[hH][rR][eE][fF]=\"/files/a52\w*\-(?P((\d+[a-z]?[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-libacpi = "http://www.ngolde.de/libacpi.html" +REGEX_URI_pn-libaio = "http://ftp.debian.org/debian/pool/main/liba/libaio/" +REGEX_pn-libaio = "[hH][rR][eE][fF]=\"libaio_(?P((\d+[\.\-_]*)+)).orig.tar.gz\"" +REGEX_URI_pn-libarchive = "http://www.libarchive.org/" +REGEX_pn-libarchive = "[hH][rR][eE][fF]=\"downloads/libarchive\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-libcgroup = "http://sourceforge.net/projects/libcg/files/libcgroup/" +#REGEX_pn-libcgroup = "[hH][rR][eE][fF]=\"/projects/libcg/files/libcgroup/v?(?P((\.?\d+[\.\-_]*)+(rc\d?)*)+)/\"" +REGEX_pn-libcgroup = "[hH][rR][eE][fF]=\"/projects/libcg/files/libcgroup/v?(?P((\.?\d+[\.\-_]*))+)/\"" +REGEX_URI_pn-libcheck = "http://sourceforge.net/projects/check/files/check/" +REGEX_pn-libcheck = "[hH][rR][eE][fF]=\"/projects/check/files/check/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-libdnet = "http://code.google.com/p/libdnet/downloads/list" +#REGEX_URI_pn-libevent = "http://sourceforge.net/projects/levent/files/libevent/libevent-2.0/" +REGEX_URI_pn-libevent = "http://libevent.org/" +#REGEX_pn-libevent = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/levent/files/libevent/libevent-2.0/libevent-(?P((\d+[\.\-_]*)+))\-stable\.tar\.gz/download\"" +REGEX_pn-libevent = "[hH][rR][eE][fF]=\"https://github.com/downloads/libevent/libevent/libevent-(?P((\d+[\.\-_]*)+))\-stable\.tar\.gz\"" +REGEX_URI_pn-libexif = "http://sourceforge.net/projects/libexif/files/libexif/" +REGEX_pn-libexif = "[hH][rR][eE][fF]=\"/projects/libexif/files/libexif/(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-libffi = "[hH][rR][eE][fF]=\"libffi\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_pn-libffi-native = "[hH][rR][eE][fF]=\"ftp://sourceware.org:21/pub/libffi/libffi\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_pn-nativesdk-libffi = "[hH][rR][eE][fF]=\"ftp://sourceware.org:21/pub/libffi/libffi\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-libfm = "http://sourceforge.net/projects/pcmanfm/files/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/PCManFM/" +REGEX_pn-libfm = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/pcmanfm/files/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/PCManFM/pcmanfm-(?P((\d+[\.\-_]*)+)).tar.gz/download\"" +REGEX_URI_pn-libical = "http://sourceforge.net/projects/libical/files/libical/" +REGEX_pn-libical = "[hH][rR][eE][fF]=\"/projects/libical/files/libical/libical-(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-libid3tag = "http://sourceforge.net/projects/mad/files/libid3tag/" +REGEX_pn-libid3tag = "[hH][rR][eE][fF]=\"/projects/mad/files/libid3tag/(?P((\d+[\.\-_]*)+([a-z]?)))/\"" +REGEX_URI_pn-libmad = "http://sourceforge.net/projects/mad/files/libmad/" +REGEX_pn-libmad = "[hH][rR][eE][fF]=\"/projects/mad/files/libmad/(?P((\d+[\.\-_]*)+([a-z]?)))/\"" +REGEX_URI_pn-libogg = "http://downloads.xiph.org/releases/ogg/" +REGEX_pn-libogg = "[hH][rR][eE][fF]=\"libogg\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-libmpc = "http://www.multiprecision.org/index.php?prog=mpc&page=download" +REGEX_URI_pn-libomxil = "http://sourceforge.net/projects/omxil/files/omxil/" +REGEX_pn-libomxil = "[hH][rR][eE][fF]=\"/projects/omxil/files/omxil/Bellagio.20(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-libpcap = "http://www.tcpdump.org/release/" +REGEX_pn-libpcap = "[hH][rR][eE][fF]=\"libpcap-(?P((\d+[\.\-_]*)+)).tar.gz\"" +REGEX_URI_pn-libpcre = "http://sourceforge.net/projects/pcre/files/pcre/" +REGEX_pn-libpcre = "[hH][rR][eE][fF]=\"/projects/pcre/files/pcre/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-libpcre-native = "http://sourceforge.net/projects/pcre/files/pcre/" +REGEX_pn-libpcre-native = "[hH][rR][eE][fF]=\"/projects/pcre/files/pcre/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-libpfm4 = "http://sourceforge.net/projects/perfmon2/files/libpfm4/" +REGEX_URI_pn-libpng = "http://sourceforge.net/projects/libpng/files/" +REGEX_pn-libpng = "[hH][rR][eE][fF]=\"/projects/libpng/files/latest/download\?source=files\" title=\"/libpng\d+(/(\d+\.?)+/)?libpng-(?P((\d+[\.\-_]*)+)).tar.gz" +REGEX_URI_pn-libpng-native = "ftp://ftp.simplesystems.org/pub/libpng/png/src/" +REGEX_pn-libpng-native = "[hH][rR][eE][fF]=\"ftp://ftp.simplesystems.org:21/pub/libpng/png/src/libpng-(?P((\d+[\.\-_]*)+)).tar.gz"" +REGEX_URI_pn-libpng12 = "http://sourceforge.net/projects/libpng/files/libpng12/" +REGEX_pn-libpng12 = "[hH][rR][eE][fF]=\"/projects/libpng/files/libpng12/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-libproxy = "http://code.google.com/p/libproxy/downloads/list" +REGEX_pn-libtheora = "[Hh][Rr][Ee][Ff]=\"libtheora\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-libsamplerate0 = "http://www.mega-nerd.com/SRC/download.html" +REGEX_pn-libsamplerate0 = "[hH][rR][eE][fF]=\"libsamplerate\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-libtirpc = "http://sourceforge.net/projects/libtirpc/files/libtirpc/" +REGEX_pn-libtirpc = "[hH][rR][eE][fF]=\"/projects/libtirpc/files/libtirpc/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-libusb-compat = "http://sourceforge.net/projects/libusb/files/libusb-compat-0.1/" +REGEX_pn-libusb-compat = "[hH][rR][eE][fF]=\"/projects/libusb/files/libusb-compat-0.1/libusb-compat-(?P((\d+[\.\-_]*)+))/"" +REGEX_URI_pn-libusb1 = "http://sourceforge.net/projects/libusb/files/libusb-1.0/" +REGEX_pn-libusb1 = "[hH][rR][eE][fF]=\"/projects/libusb/files/libusb-1.0/libusb-(?P((\d+[\.\-_]*)+))/"" +REGEX_URI_pn-libvorbis = "http://downloads.xiph.org/releases/vorbis/" +REGEX_pn-libvorbis = "[hH][rR][eE][fF]=\"libvorbis-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_pn-libxslt = "[Hh][Rr][Ee][Ff]=\"libxslt\-(?P((\d+\.*)+))\.tar\.gz\"" +REGEX_pn-linux-libc-headers-yocto = "v((?P((\d+[\.\-_]*)+)))" +REGEX_URI_pn-lrzsz = "http://ohse.de/uwe/software/lrzsz.html" +REGEX_URI_pn-lsb = "http://sourceforge.net/projects/lsb/files/lsb_release/" +REGEX_pn-lsb = "[hH][rR][eE][fF]=\"/projects/lsb/files/lsb_release/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-lsbinitscripts = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/" +REGEX_pn-lsbinitscripts = "[hH][rR][eE][fF]=\"initscripts\-(?P((\d+[\.\-_]*)+))\.tar\.bz2/\"" +REGEX_URI_pn-ltp = "http://sourceforge.net/projects/ltp/files/LTP%20Source" +REGEX_pn-ltp = "[hH][rR][eE][fF]=\"/projects/ltp/files/LTP%20Source/ltp\-(?P(\d+))/\"" +REGEX_URI_pn-lzop = "http://www.lzop.org/download/" +REGEX_pn-lzop = "[hH][rR][eE][fF]=\"lzop\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-lzop-native = "http://www.lzop.org/download/" +REGEX_pn-lzop-native = "[hH][rR][eE][fF]=\"lzop\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-nativesdk-lzop = "http://www.lzop.org/download/" +REGEX_pn-nativesdk-lzop = "[hH][rR][eE][fF]=\"lzop\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-mailx = "http://sourceforge.net/projects/heirloom/files/heirloom-mailx/" +REGEX_pn-mailx = "[hH][rR][eE][fF]=\"/projects/heirloom/files/heirloom-mailx/(?P((\d+[\.]*)+))/\"" +REGEX_URI_pn-memcached = "http://code.google.com/p/memcached/downloads/list" +REGEX_URI_pn-menu-cache = "http://sourceforge.net/projects/lxde/files/menu-cache/" +REGEX_pn-menu-cache = "[hH][rR][eE][fF]=\"/projects/lxde/files/menu\-cache/menu-cache%20(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-mesa = "[hH][rR][eE][fF]=\"MesaLib-(?P((\d+[\.\-_]*)+))(\-rc\d+)*.tar.gz\"" +REGEX_URI_pn-mesa-glsl-native = "ftp://ftp.freedesktop.org/pub/mesa/" +REGEX_pn-mesa-glsl-native = "[hH][rR][eE][fF]=\"ftp://ftp.freedesktop.org:21/pub/mesa/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-minicom = "https://alioth.debian.org/frs/?group_id=30018" +REGEX_pn-minicom = "[hH][rR][eE][fF]=\"/frs/download.php/file/\d+/minicom\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-mingetty = "http://sourceforge.net/projects/mingetty/files/mingetty" +REGEX_pn-mingetty = "[hH][rR][eE][fF]=\"/projects/mingetty/files/mingetty/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-mpeg2dec = "http://libmpeg2.sourceforge.net/downloads.html" +REGEX_pn-mpeg2dec = "[hH][rR][eE][fF]=\"/files/mpeg2dec-(?P((\d+[\.\-_]*)+)).tar.gz\"" +REGEX_URI_pn-mpfr = "http://ftp.gnu.org/gnu/mpfr/" +REGEX_pn-mpfr = "[hH][rR][eE][fF]=\"mpfr-(?P((\d+[\.\-_]*)+)).tar.gz"" +REGEX_URI_pn-mpfr-native = "http://ftp.gnu.org/gnu/mpfr/" +REGEX_pn-mpfr-native = "[hH][rR][eE][fF]=\"mpfr-(?P((\d+[\.\-_]*)+)).tar.gz\"" +REGEX_URI_pn-msmtp = "http://sourceforge.net/projects/msmtp/files/msmtp/" +REGEX_pn-msmtp = "[hH][rR][eE][fF]=\"/projects/msmtp/files/msmtp/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-nativesdk-mpfr = "http://ftp.gnu.org/gnu/mpfr/" +REGEX_pn-nativesdk-mpfr = "[hH][rR][eE][fF]=\"mpfr-(?P((\d+[\.\-_]*)+)).tar.gz\"" +REGEX_URI_pn-net-snmp = "http://sourceforge.net/projects/net-snmp/files/net-snmp/" +REGEX_pn-net-snmp = "[hH][rR][eE][fF]=\"/projects/net-snmp/files/net-snmp/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-netcat = "http://sourceforge.net/projects/netcat/files/netcat/" +REGEX_pn-netcat = "[hH][rR][eE][fF]=\"/projects/netcat/files/netcat/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-nfs-utils = "http://sourceforge.net/projects/nfs/files/nfs-utils/" +REGEX_pn-nfs-utils = "[hH][rR][eE][fF]=\"/projects/nfs/files/nfs-utils/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-ocf-linux = "http://sourceforge.net/projects/ocf-linux/files/ocf-linux/" +REGEX_pn-ocf-linux = "[hH][rR][eE][fF]=\"/projects/ocf-linux/files/ocf-linux/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-openjade-native = "http://sourceforge.net/projects/openjade/files/openjade/" +REGEX_pn-openjade-native = "[hH][rR][eE][fF]=\"/projects/openjade/files/openjade/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-opensp = "http://sourceforge.net/projects/openjade/files/opensp/" +REGEX_pn-opensp = "[hH][rR][eE][fF]=\"/projects/openjade/files/opensp/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-opensp-native = "http://sourceforge.net/projects/openjade/files/opensp/" +REGEX_pn-opensp-native = "[hH][rR][eE][fF]=\"/projects/openjade/files/opensp/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-opkg = "http://code.google.com/p/opkg/downloads/list" +REGEX_URI_pn-oprofile = "http://sourceforge.net/projects/oprofile/files/oprofile/" +REGEX_pn-oprofile = "[hH][rR][eE][fF]=\"/projects/oprofile/files/oprofile/oprofile-(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-ossp-uuid = "http://code.google.com/p/gnome-build-stage-1/downloads/list" +REGEX_URI_pn-pcmanfm = "http://sourceforge.net/projects/pcmanfm/files/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/PCManFM/" +REGEX_pn-pcmanfm = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/pcmanfm/files/PCManFM.20.2B.20Libfm.20.28tarball.20release.29/PCManFM/pcmanfm-(?P((\d+[\.\-_]*)+)).tar.gz/download\"" +REGEX_URI_pn-procps = "http://procps.sourceforge.net/download.html" +REGEX_pn-procps = "[hH][rR][eE][fF]=\"procps\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-powertop = "https://01.org/powertop/downloads" +REGEX_URI_pn-pptp-linux = "http://sourceforge.net/projects/pptpclient/files/pptp/" +REGEX_pn-pptp-linux = "[hH][rR][eE][fF]=\"/projects/pptpclient/files/pptp/pptp-(?P((\d+[\.\-_]*)+))/\"" +GIT_REGEX_pn-prelink = "cross_prelink" +REGEX_pn-prelink = "(?Pcross_prelink)" +REGEX_URI_pn-psmisc = "http://sourceforge.net/projects/psmisc/files/psmisc/" +REGEX_pn-psmisc = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/psmisc/files/psmisc/psmisc\-(?P((\d+[\.\-_]*)+))\.tar\.gz/download\"" +REGEX_URI_pn-ptpd = "http://sourceforge.net/projects/ptpd/files/ptpd/" +REGEX_pn-ptpd = "[hH][rR][eE][fF]=\"/projects/ptpd/files/ptpd/(?P((\d+[\.\-_]*)+))/stats/timeline\"" +REGEX_URI_pn-python-argparse = "https://code.google.com/p/argparse/downloads/list" +REGEX_URI_pn-python-docutils = "http://sourceforge.net/projects/docutils/files/docutils/" +REGEX_pn-python-docutils = "[hH][rR][eE][fF]=\"/projects/docutils/files/docutils/(?P((\d+[\.\-_]*)+)).*/\"" +REGEX_URI_pn-python-numpy = "http://sourceforge.net/projects/numpy/files/NumPy/" +REGEX_pn-python-numpy = "[hH][rR][eE][fF]=\"/projects/numpy/files/latest/download\?source=files\" title=\"/NumPy/(\d+\.?)+/numpy-(?P((\d+[\.\-_]*)+)).tar.gz" +REGEX_URI_pn-python-pycurl = "http://pycurl.sourceforge.net/download/" +REGEX_pn-python-pycurl = "[hH][rR][eE][fF]=\"pycurl-(?P((\d+[\.\-_]*)+)).tar.gz\"" +REGEX_URI_pn-python-scons = "http://sourceforge.net/projects/scons/files/scons/" +REGEX_pn-python-scons = "[hH][rR][eE][fF]=\"/projects/scons/files/scons/(?P((\d+[\.\-_]*)+)).*/\"" +REGEX_URI_pn-python-scons-native = "http://sourceforge.net/projects/scons/files/scons/" +REGEX_pn-python-scons-native = "[hH][rR][eE][fF]=\"/projects/scons/files/scons/(?P((\d+[\.\-_]*)+)).*/\"" +REGEX_pn-python-setuptools = "[hH][rR][eE][fF]=\"setuptools\-(?P((\d+([a-z]\d+)?[\.\-_]*)+))\.(tar\.gz|\.zip)\"" +REGEX_URI_pn-quota = "http://sourceforge.net/projects/linuxquota/files/quota-tools/" +REGEX_pn-quota = "[hH][rR][eE][fF]=\"/projects/linuxquota/files/quota-tools/(?P((\d+[\.\-_]*)+([-\w\d]+)))/\"" +REGEX_pn-remake = "(?P(\d+\.(\d+\.)*\d*(\+dbg\-\d+(\.\d+)*)*))" +REGEX_URI_pn-rpcbind = "http://sourceforge.net/projects/rpcbind/files/rpcbind/" +REGEX_pn-rpcbind = "[hH][rR][eE][fF]=\"/projects/rpcbind/files/rpcbind/(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-rpm = "[hH][rR][eE][fF]=\"rpm\-(?P((\d+[\.\-_]*)+)\-(\d+[\.]*)+)\.src\.rpm\"" +REGEX_pn-rpm-native = "[hH][rR][eE][fF]=\"rpm\-(?P((\d+[\.\-_]*)+)\-(\d+[\.]*)+)\.src\.rpm\"" +REGEX_URI_pn-setserial = "http://sourceforge.net/projects/setserial/files/setserial/" +REGEX_pn-setserial = "[hH][rR][eE][fF]=\"/projects/setserial/files/setserial/(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-shared-mime-info = "[hH][rR][eE][fF]=\"shared\-mime\-info\-(?P((\d+[\.\-_]*)+))\.tar\.(bz2|gz|xz)\"" +REGEX_pn-shared-mime-info-native = "[hH][rR][eE][fF]=\"shared\-mime\-info\-(?P((\d+[\.\-_]*)+))\.tar\.(bz2|gz|xz)\"" +REGEX_URI_pn-socat = "http://www.dest-unreach.org/socat/download/" +REGEX_pn-socat = "[hH][rR][eE][fF]=\"socat\-(?P((\d+[\.\-]*)+))\.tar\.bz2\"" +REGEX_URI_pn-speex = "http://downloads.us.xiph.org/releases/speex/" +REGEX_pn-speex = "[hH][rR][eE][fF]=\"speex\-(?P((\d+\.*)+))\.tar\.gz\"" +REGEX_URI_pn-sqlite3 = "http://www.sqlite.org/download.html" +REGEX_pn-sqlite3 = "sqlite-autoconf-(?P(\d+)).tar.gz" +REGEX_URI_pn-sqlite3-native = "http://www.sqlite.org/download.html" +REGEX_pn-sqlite3-native = "[hH][rR][eE][fF]=\"/sqlite-autoconf-(?P(\d+)).tar.gz\"" +REGEX_URI_pn-nativesdk-sqlite3 = "http://www.sqlite.org/download.html" +REGEX_pn-nativesdk-sqlite3 = "[hH][rR][eE][fF]=\"/sqlite-autoconf-(?P(\d+)).tar.gz\"" +REGEX_URI_pn-squashfs-tools = "http://sourceforge.net/projects/squashfs/files/squashfs/" +REGEX_pn-squashfs-tools = "[hH][rR][eE][fF]=\"/projects/squashfs/files/squashfs/squashfs(?P((\d+[\.\-_]*)+)).*/\"" +REGEX_URI_pn-strace = "http://sourceforge.net/projects/strace/files/strace/" +REGEX_pn-strace = "[hH][rR][eE][fF]=\"/projects/strace/files/strace/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-strace-native = "http://sourceforge.net/projects/strace/files/strace/" +REGEX_pn-strace-native = "[hH][rR][eE][fF]=\"/projects/strace/files/strace/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-stunnel = "http://www.stunnel.org/downloads.html" +REGEX_pn-stunnel = "[hH][rR][eE][fF]=\"downloads/stunnel-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-sysfsutils = "http://sourceforge.net/projects/linux-diag/files/sysfsutils/" +REGEX_pn-sysfsutils = "[hH][rR][eE][fF]=\"/projects/linux-diag/files/sysfsutils/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-sysstat = "http://sebastien.godard.pagesperso-orange.fr/download.html" +REGEX_pn-sysstat = "[hH][rR][eE][fF]=\"http://pagesperso-orange.fr/sebastien.godard/sysstat\-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-taglib = "http://github.com/taglib/taglib/releases/" +REGEX_URI_pn-tcl = "http://sourceforge.net/projects/tcl/files/Tcl/" +REGEX_pn-tcl = "[hH][rR][eE][fF]=\"/projects/tcl/files/Tcl/(?P((\d+(b\d+)?[\.\-_]*)+))/\"" +REGEX_URI_pn-tcl-native = "http://sourceforge.net/projects/tcl/files/Tcl/" +REGEX_pn-tcl-native = "[hH][rR][eE][fF]=\"/projects/tcl/files/Tcl/(?P((\d+(b\d+)?[\.\-_]*)+))/\"" +REGEX_URI_pn-tcpreplay = "http://sourceforge.net/projects/tcpreplay/files/tcpreplay/" +REGEX_pn-tcpreplay = "[hH][rR][eE][fF]=\"/projects/tcpreplay/files/tcpreplay/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-tiff-native = "ftp://ftp.remotesensing.org/pub/libtiff/" +REGEX_pn-tiff-native = "[hH][rR][eE][fF]=\"ftp://ftp.remotesensing.org:21/pub/libtiff/tiff-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-tslib = "http://sourceforge.net/projects/tslib.berlios/files/" +REGEX_URI_pn-traceroute = "http://sourceforge.net/projects/traceroute/files/traceroute/" +REGEX_pn-traceroute = "[hH][rR][eE][fF]=\"/projects/traceroute/files/traceroute/traceroute-(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-tslib = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/tslib.berlios/files/tslib\-(?P((\d+[\.\-_]*)+))\.tar\.bz2/download\"" +REGEX_URI_pn-tunctl = "http://sourceforge.net/projects/tunctl/files/tunctl/" +REGEX_pn-tunctl = "[hH][rR][eE][fF]=\"/projects/tunctl/files/tunctl/(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-tzdata = "[hH][rR][eE][fF]=\"tzdata(?P((\d+[a-z])+))\.tar\.gz\"" +REGEX_URI_pn-unzip = "http://sourceforge.net/projects/infozip/files/UnZip%206.x%20%28latest%29/UnZip%206.0/" +REGEX_pn-unzip = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/infozip/files/UnZip%206.x%20%28latest%29/UnZip%206.0/unzip(?P(\d+))\.tar\.gz/download\"" +PRSPV_pn-unzip = "${@d.getVar('PV',1).replace('.','')}" +REGEX_URI_pn-unzip-native = "http://sourceforge.net/projects/infozip/files/UnZip%206.x%20%28latest%29/UnZip%206.0/" +REGEX_pn-unzip-native = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/infozip/files/UnZip%206.x%20%28latest%29/UnZip%206.0/unzip(?P(\d+))\.tar\.gz/download\"" +PRSPV_pn-unzip-native = "${@d.getVar('PV',1).replace('.','')}" +#REGEX_URI_pn-v86d = "http://dev.gentoo.org/~spock/projects/uvesafb/archive/" +REGEX_pn-v86d = "[hH][rR][eE][fF]=\"v86d\-(?P((\d+[\.]*)+))\.tar\.bz2\"" +REGEX_URI_pn-vblade = "http://sourceforge.net/projects/aoetools/files/vblade/" +REGEX_pn-vblade = "[hH][rR][eE][fF]=\"/projects/aoetools/files/vblade/vblade-(?P((\d+[\.\-_]*)+))\.tgz/stats/timeline\"" +REGEX_URI_pn-vsftpd = "https://security.appspot.com/vsftpd.html" +REGEX_pn-vsftpd = "[hH][rR][eE][fF]=\"https://security.appspot.com/downloads/vsftpd-(?P((\d+[\.\-_]*)+))\.tar\.gz\"" +REGEX_URI_pn-watchdog = "http://sourceforge.net/projects/watchdog/files/watchdog/" +REGEX_pn-watchdog = "[hH][rR][eE][fF]=\"/projects/watchdog/files/watchdog/(?P((\d+[\.\-_]*)+))/\"" +REGEX_URI_pn-wireless-tools = "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html" +REGEX_pn-wireless-tools = "[hH][rR][eE][fF]=\"wireless_tools\.(?P(\d+))\.tar\.gz\"" +REGEX_URI_pn-x11vnc = "http://sourceforge.net/projects/libvncserver/files/x11vnc/" +REGEX_pn-x11vnc = "[hH][rR][eE][fF]=\"/projects/libvncserver/files/x11vnc/(?P((\d+[\.\-_]*)+))/\"" +REGEX_pn-xdg-utils = "[hH][rR][eE][fF]=\"xdg\-utils\-(?P((\d+[\.\-_]*)+))\.(tar\.gz|tgz)\"" +REGEX_pn-xf86-video-omap = "(?P(\d+\.(\d\.?)*))" +REGEX_URI_pn-zip = "http://sourceforge.net/projects/infozip/files/Zip%203.x%20%28latest%29/3.0/" +REGEX_pn-zip = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/infozip/files/Zip%203.x%20%28latest%29/3.0/zip(?P(\d+))\.tar\.gz/download\"" +PRSPV_pn-zip = "${@d.getVar('PV',1).replace('.','')}" +REGEX_URI_pn-zip-native = "http://sourceforge.net/projects/infozip/files/Zip%203.x%20%28latest%29/3.0/" +REGEX_pn-zip-native = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/infozip/files/Zip%203.x%20%28latest%29/3.0/zip(?P(\d+))\.tar\.gz/download\"" +PRSPV_pn-zip-native = "${@d.getVar('PV',1).replace('.','')}" +REGEX_URI_pn-zisofs-tools-native ="http://pkgs.fedoraproject.org/repo/pkgs/zisofs-tools/" + +# Regex used to parse tags and extract version +GITTAGREGEX_pn-build-appliance-image = "(?P(([0-9][\.|_]?)+[0-9]))" +GITTAGREGEX_pn-chkconfig-alternatives-native = "chkconfig\-(?P((\d+[\.\-_]*)+))" +GITTAGREGEX_pn-remake = "(?P(\d+\.(\d+\.)*\d*(\+dbg\d+(\.\d+)*)*))" +GITTAGREGEX_pn-xf86-video-omap = "(?P(\d+\.(\d\.?)*))" diff --git a/meta-yocto/conf/distro/include/poky-floating-revisions.inc b/meta-yocto/conf/distro/include/poky-floating-revisions.inc new file mode 100644 index 0000000000..5b8c3a0ea8 --- /dev/null +++ b/meta-yocto/conf/distro/include/poky-floating-revisions.inc @@ -0,0 +1,74 @@ +# +# Package Versions for cutting edge testing: +# + +#SRCREV_pn-opkg-native ?= "${AUTOREV}" +#SRCREV_pn-opkg-sdk ?= "${AUTOREV}" +#SRCREV_pn-opkg ?= "${AUTOREV}" +#SRCREV_pn-opkg-utils-naitve ?= "${AUTOREV}" +#SRCREV_pn-opkg-utils ?= "${AUTOREV}" +SRCREV_pn-gconf-dbus ?= "${AUTOREV}" +SRCREV_pn-matchbox-common ?= "${AUTOREV}" +SRCREV_pn-matchbox-config-gtk ?= "${AUTOREV}" +SRCREV_pn-matchbox-desktop ?= "${AUTOREV}" +SRCREV_pn-matchbox-keyboard ?= "${AUTOREV}" +SRCREV_pn-matchbox-panel ?= "${AUTOREV}" +SRCREV_pn-matchbox-panel-2 ?= "${AUTOREV}" +SRCREV_pn-matchbox-themes-extra ?= "${AUTOREV}" +SRCREV_pn-matchbox-terminal ?= "${AUTOREV}" +SRCREV_pn-matchbox-wm ?= "${AUTOREV}" +SRCREV_pn-matchbox-wm-2 ?= "${AUTOREV}" +SRCREV_pn-settings-daemon ?= "${AUTOREV}" +SRCREV_pn-screenshot ?= "${AUTOREV}" +SRCREV_pn-libfakekey ?= "${AUTOREV}" +SRCREV_pn-oprofileui ?= "${AUTOREV}" +SRCREV_pn-zaurusd ?= "${AUTOREV}" +SRCREV_pn-libowl-av ?= "${AUTOREV}" +SRCREV_pn-owl-video ?= "${AUTOREV}" +SRCREV_pn-psplash ?= "${AUTOREV}" +SRCREV_pn-exmap-console ?= "${AUTOREV}" +SRCREV_pn-gtk-sato-engine ?= "${AUTOREV}" +SRCREV_pn-matchbox-theme-sato ?= "${AUTOREV}" +SRCREV_pn-matchbox-theme-sato-2 ?= "${AUTOREV}" +SRCREV_pn-sato-icon-theme ?= "${AUTOREV}" +SRCREV_pn-matchbox-desktop-sato ?= "${AUTOREV}" +SRCREV_pn-oh-puzzles ?= "${AUTOREV}" +SRCREV_pn-libowl ?= "${AUTOREV}" +SRCREV_pn-matchbox-applet-light ?= "${AUTOREV}" +SRCREV_pn-fstests ?= "${AUTOREV}" +SRCREV_pn-xvideo-tests ?= "${AUTOREV}" +SRCREV_pn-clutter ?= "${AUTOREV}" +SRCREV_pn-clutter-gst ?= "${AUTOREV}" +SRCREV_pn-gaku ?= "${AUTOREV}" +SRCREV_pn-gypsy ?= "${AUTOREV}" +#SRCREV_pn-webkit-gtk ?= "${AUTOREV}" +SRCREV_pn-aaina ?= "${AUTOREV}" +SRCREV_pn-clutter-cairo ?= "${AUTOREV}" +SRCREV_pn-table ?= "${AUTOREV}" +SRCREV_pn-libmatchbox ?= "${AUTOREV}" +SRCREV_pn-tasks ?= "${AUTOREV}" +SRCREV_pn-ofono ?= "${AUTOREV}" + +SRCREV_pn-dri2proto = "${AUTOREV}" +#PREFERRED_VERSION_dri2proto ?= "1.99.1+git%" +SRCREV_pn-libdrm = "${AUTOREV}" +#PREFERRED_VERSION_libdrm ?= "2.4.0+git%" +SRCREV_pn-libxcb = "${AUTOREV}" +#PREFERRED_VERSION_libxcb ?= "1.1.90.1+gitr%" +SRCREV_pn-lib-proto = "${AUTOREV}" +#PREFERRED_VERSION_xcb-proto ?= "1.2+gitr%" +SRCREV_pn-libxcb-sdk = "${AUTOREV}" +#PREFERRED_VERSION_libxcb-sdk ?= "1.1.90.1+gitr%" +SRCREV_pn-xf86-input-evdev = "${AUTOREV}" +#PREFERRED_VERSION_xf86-input-evdev ?= "2.0.4" +SRCREV_pn-xf86-input-mouse = "${AUTOREV}" +#PREFERRED_VERSION_xf86-input-mouse ?= "1.3.0+git%" +SRCREV_pn-xf86-input-keyboard = "${AUTOREV}" +#PREFERRED_VERSION_xf86-input-keyboard ?= "1.3.1+git%" +SRCREV_pn-xf86-input-synaptics = "${AUTOREV}" +#PREFERRED_VERSION_xf86-input-synaptics ?= "0.15.2+git%" + +#SRCDATE_oprofile ?= "${DATE}" + +PREFERRED_VERSION_oprofile ?= "0.9.4+cvs${SRCDATE_oprofile}" + diff --git a/meta-yocto/conf/distro/include/recipe_color.inc b/meta-yocto/conf/distro/include/recipe_color.inc new file mode 100644 index 0000000000..7e5050059c --- /dev/null +++ b/meta-yocto/conf/distro/include/recipe_color.inc @@ -0,0 +1,437 @@ +# This is a "burndown" list of recipes that need to be reviewed +# and corrected based on their color they may have some issues. +# If a recipe is fixed and OK, then its entry can be removed. +# +# The format is as a bitbake variable override for each recipe +# +# RECIPE_COLOR_pn- = "yellow|red" +# yellow - recipe needs review and might have issues +# including verification of dependencies +# red - recipe has some known issue that needs correction +# but does not prevent the build +# +# Please keep this list in alphabetical order. +# + +# Default for all recipes not specified here +RECIPE_COLOR = "green" + +RECIPE_COLOR_pn-aaina = "red" +RECIPE_COLOR_pn-abiword-embedded = "red" +RECIPE_COLOR_pn-acl = "yellow" +RECIPE_COLOR_pn-apmd = "yellow" +RECIPE_COLOR_pn-apt = "red" +RECIPE_COLOR_pn-aspell = "red" +RECIPE_COLOR_pn-at = "yellow" +RECIPE_COLOR_pn-atk = "yellow" +RECIPE_COLOR_pn-attr = "yellow" +RECIPE_COLOR_pn-autoconf="red" +RECIPE_COLOR_pn-avahi = "yellow" +RECIPE_COLOR_pn-avahi-ui = "yellow" +RECIPE_COLOR_pn-base-files = "yellow" +RECIPE_COLOR_pn-base-passwd = "yellow" +RECIPE_COLOR_pn-bash = "yellow" +RECIPE_COLOR_pn-bc = "yellow" +RECIPE_COLOR_pn-blktool = "yellow" +RECIPE_COLOR_pn-blktrace = "red" +RECIPE_COLOR_pn-bluez-dtl1-workaround="yellow" +RECIPE_COLOR_pn-boost = "yellow" +RECIPE_COLOR_pn-busybox = "yellow" +RECIPE_COLOR_pn-bzip2 = "yellow" +RECIPE_COLOR_pn-calibrateproto = "yellow" +RECIPE_COLOR_pn-cdrtools = "yellow" +RECIPE_COLOR_pn-chrpath = "yellow" +RECIPE_COLOR_pn-claws-mail = "red" +RECIPE_COLOR_pn-claws-plugin-gtkhtml2-viewer = "red" +RECIPE_COLOR_pn-claws-plugin-maildir = "red" +RECIPE_COLOR_pn-claws-plugin-mailmbox = "red" +RECIPE_COLOR_pn-claws-plugin-rssyl = "red" +RECIPE_COLOR_pn-clipboard-manager = "red" +RECIPE_COLOR_pn-clutter-gst-1.8 = "red" +RECIPE_COLOR_pn-clutter-gtk-1.8 = "red" +RECIPE_COLOR_pn-compositeproto = "yellow" +RECIPE_COLOR_pn-console-tools = "red" +RECIPE_COLOR_pn-core-image-clutter = "red" +RECIPE_COLOR_pn-cpio = "yellow" +RECIPE_COLOR_pn-cronie = "yellow" +RECIPE_COLOR_pn-cross-localedef = "red" +RECIPE_COLOR_pn-cups = "red" +RECIPE_COLOR_pn-curl = "yellow" +RECIPE_COLOR_pn-cwautomacros = "yellow" +RECIPE_COLOR_pn-damageproto = "yellow" +RECIPE_COLOR_pn-db = "yellow" +RECIPE_COLOR_pn-dbus-glib = "yellow" +RECIPE_COLOR_pn-dbus-wait = "yellow" +RECIPE_COLOR_pn-desktop-file-utils-native = "red" +RECIPE_COLOR_pn-dmxproto = "yellow" +RECIPE_COLOR_pn-docbook-dsssl-stylesheet = "yellow" +RECIPE_COLOR_pn-docbook-sgml-dtd = "yellow" +RECIPE_COLOR_pn-docbook-utils = "yellow" +RECIPE_COLOR_pn-dosfstools = "yellow" +RECIPE_COLOR_pn-dri2proto = "yellow" +RECIPE_COLOR_pn-dropbear = "yellow" +RECIPE_COLOR_pn-dtc = "red" +RECIPE_COLOR_pn-e2fsprogs = "yellow" +RECIPE_COLOR_pn-ed = "yellow" +RECIPE_COLOR_pn-eggdbus = "yellow" +RECIPE_COLOR_pn-empathy = "red" +RECIPE_COLOR_pn-encodings = "yellow" +RECIPE_COLOR_pn-epdfview = "red" +RECIPE_COLOR_pn-expat = "yellow" +RECIPE_COLOR_pn-farsight2 = "red" +RECIPE_COLOR_pn-findutils = "yellow" +RECIPE_COLOR_pn-fixesproto = "yellow" +RECIPE_COLOR_pn-font-alias = "yellow" +RECIPE_COLOR_pn-fontcacheproto = "yellow" +RECIPE_COLOR_pn-fontconfig = "yellow" +RECIPE_COLOR_pn-fontsproto = "yellow" +RECIPE_COLOR_pn-font-util = "yellow" +RECIPE_COLOR_pn-formfactor = "yellow" +RECIPE_COLOR_pn-freetype = "yellow" +RECIPE_COLOR_pn-fuse = "red" +RECIPE_COLOR_pn-galago-daemon = "yellow" +RECIPE_COLOR_pn-gawk = "red" +RECIPE_COLOR_pn-gcalctool = "red" +RECIPE_COLOR_pn-gccmakedep = "yellow" +RECIPE_COLOR_pn-gconf-dbus = "yellow" +RECIPE_COLOR_pn-gdk-pixbuf-csource-native = "yellow" +RECIPE_COLOR_pn-genext2fs = "yellow" +RECIPE_COLOR_pn-ghostscript = "red" +RECIPE_COLOR_pn-glib-2.0 = "yellow" +RECIPE_COLOR_pn-glibc = "yellow" +RECIPE_COLOR_pn-glproto = "yellow" +RECIPE_COLOR_pn-gnome-common = "yellow" +RECIPE_COLOR_pn-gnome-doc-utils = "yellow" +RECIPE_COLOR_pn-gnome-keyring = "yellow" +RECIPE_COLOR_pn-gnome-mime-data = "yellow" +RECIPE_COLOR_pn-gnome-settings-daemon = "red" +RECIPE_COLOR_pn-gnome-terminal = "red" +RECIPE_COLOR_pn-gnome-vfs = "yellow" +RECIPE_COLOR_pn-gnutls = "yellow" +RECIPE_COLOR_pn-gobject-introspection = "yellow" +RECIPE_COLOR_pn-gperf = "yellow" +RECIPE_COLOR_pn-gpgme = "yellow" +RECIPE_COLOR_pn-grep = "yellow" +RECIPE_COLOR_pn-groff = "red" +RECIPE_COLOR_pn-gtk+ = "yellow" +RECIPE_COLOR_pn-gtk-doc = "red" +RECIPE_COLOR_pn-gtk-sato-engine = "yellow" +RECIPE_COLOR_pn-gtk-theme-torturer = "red" +RECIPE_COLOR_pn-guilt-native = "red" +RECIPE_COLOR_pn-gzip = "yellow" +RECIPE_COLOR_pn-hal = "yellow" +RECIPE_COLOR_pn-hal-info = "yellow" +RECIPE_COLOR_pn-hdparm = "red" +RECIPE_COLOR_pn-hicolor-icon-theme = "yellow" +RECIPE_COLOR_pn-hostap-conf = "red" +RECIPE_COLOR_pn-hostap-utils="yellow" +RECIPE_COLOR_pn-icon-naming-utils = "red" +RECIPE_COLOR_pn-icu = "yellow" +RECIPE_COLOR_pn-initramfs-boot = "yellow" +RECIPE_COLOR_pn-initramfs-live-boot = "yellow" +RECIPE_COLOR_pn-initramfs-live-install = "yellow" +RECIPE_COLOR_pn-initscripts = "yellow" +RECIPE_COLOR_pn-inputproto = "yellow" +RECIPE_COLOR_pn-insserv = "yellow" +RECIPE_COLOR_pn-iproute2 = "yellow" +RECIPE_COLOR_pn-iputils="red" +RECIPE_COLOR_pn-iso-codes = "red" +RECIPE_COLOR_pn-jpeg = "yellow" +RECIPE_COLOR_pn-js = "yellow" +RECIPE_COLOR_pn-kbproto = "yellow" +RECIPE_COLOR_pn-kern-tools-native = "red" +RECIPE_COLOR_pn-keymaps = "yellow" +RECIPE_COLOR_pn-kf = "red" +RECIPE_COLOR_pn-latencytop = "yellow" +RECIPE_COLOR_pn-ldconfig-native = "red" +RECIPE_COLOR_pn-leafpad = "yellow" +RECIPE_COLOR_pn-liba52="yellow" +RECIPE_COLOR_pn-libacpi = "red" +RECIPE_COLOR_pn-libart-lgpl = "yellow" +RECIPE_COLOR_pn-libassuan = "yellow" +RECIPE_COLOR_pn-libatomics-ops = "yellow" +RECIPE_COLOR_pn-libcap = "yellow" +RECIPE_COLOR_pn-libcroco = "yellow" +RECIPE_COLOR_pn-libdaemon = "yellow" +RECIPE_COLOR_pn-libdmx = "yellow" +RECIPE_COLOR_pn-liberation-fonts = "yellow" +RECIPE_COLOR_pn-libetpan = "red" +RECIPE_COLOR_pn-libfakekey = "yellow" +RECIPE_COLOR_pn-libffi = "red" +RECIPE_COLOR_pn-libfm = "yellow" +RECIPE_COLOR_pn-libfontenc = "yellow" +RECIPE_COLOR_pn-libfribidi = "red" +RECIPE_COLOR_pn-libgalago = "red" +RECIPE_COLOR_pn-libgcrypt = "yellow" +RECIPE_COLOR_pn-libgdbus = "yellow" +RECIPE_COLOR_pn-libglade = "yellow" +RECIPE_COLOR_pn-libgnomecanvas = "red" +RECIPE_COLOR_pn-libgnomekbd = "red" +RECIPE_COLOR_pn-libgnome-keyring = "yellow" +RECIPE_COLOR_pn-libgpg-error = "yellow" +RECIPE_COLOR_pn-libgsf = "red" +RECIPE_COLOR_pn-libgtkstylus = "red" +RECIPE_COLOR_pn-libice = "yellow" +RECIPE_COLOR_pn-libid3tag="yellow" +RECIPE_COLOR_pn-liblbxutil = "yellow" +RECIPE_COLOR_pn-libmatchbox = "yellow" +RECIPE_COLOR_pn-libnice = "red" +RECIPE_COLOR_pn-liboil = "yellow" +RECIPE_COLOR_pn-libomxil = "red" +RECIPE_COLOR_pn-libopensync = "red" +RECIPE_COLOR_pn-libopensync-plugin-evolution2 = "red" +RECIPE_COLOR_pn-libopensync-plugin-file = "red" +RECIPE_COLOR_pn-libopensync-plugin-google-calendar = "red" +RECIPE_COLOR_pn-libopensync-plugin-irmc = "red" +RECIPE_COLOR_pn-libopensync-plugin-syncml = "red" +RECIPE_COLOR_pn-libopensync-plugin-vformat = "red" +RECIPE_COLOR_pn-libowl = "yellow" +RECIPE_COLOR_pn-libowl-av = "yellow" +RECIPE_COLOR_pn-libpam = "yellow" +RECIPE_COLOR_pn-libpciaccess = "yellow" +RECIPE_COLOR_pn-libpng = "yellow" +RECIPE_COLOR_pn-librsvg = "yellow" +RECIPE_COLOR_pn-libsm = "yellow" +RECIPE_COLOR_pn-libsoup = "red" +RECIPE_COLOR_pn-libsoup-2.4 = "yellow" +RECIPE_COLOR_pn-libsync = "red" +RECIPE_COLOR_pn-libsyncml = "red" +RECIPE_COLOR_pn-libtasn1 = "yellow" +RECIPE_COLOR_pn-libtelepathy = "red" +RECIPE_COLOR_pn-libtirpc = "yellow" +RECIPE_COLOR_pn-libunique = "yellow" +RECIPE_COLOR_pn-liburcu = "yellow" +RECIPE_COLOR_pn-libusb1 = "yellow" +RECIPE_COLOR_pn-libuser = "yellow" +RECIPE_COLOR_pn-libx11 = "yellow" +RECIPE_COLOR_pn-libxau = "yellow" +RECIPE_COLOR_pn-libxaw = "red" +RECIPE_COLOR_pn-libxcalibrate = "yellow" +RECIPE_COLOR_pn-libxcb = "yellow" +RECIPE_COLOR_pn-libxcomposite = "yellow" +RECIPE_COLOR_pn-libxcursor = "yellow" +RECIPE_COLOR_pn-libxdamage = "yellow" +RECIPE_COLOR_pn-libxdmcp = "yellow" +RECIPE_COLOR_pn-libxevie = "red" +RECIPE_COLOR_pn-libxext = "yellow" +RECIPE_COLOR_pn-libxfixes = "yellow" +RECIPE_COLOR_pn-libxfont = "yellow" +RECIPE_COLOR_pn-libxft = "yellow" +RECIPE_COLOR_pn-libxi = "yellow" +RECIPE_COLOR_pn-libxinerama = "yellow" +RECIPE_COLOR_pn-libxkbfile = "yellow" +RECIPE_COLOR_pn-libxkbui = "red" +RECIPE_COLOR_pn-libxklavier = "red" +RECIPE_COLOR_pn-libxml2 = "yellow" +RECIPE_COLOR_pn-libxmu = "yellow" +RECIPE_COLOR_pn-libxp = "yellow" +RECIPE_COLOR_pn-libxpm = "yellow" +RECIPE_COLOR_pn-libxprintapputil = "yellow" +RECIPE_COLOR_pn-libxprintutil = "yellow" +RECIPE_COLOR_pn-libxrandr = "yellow" +RECIPE_COLOR_pn-libxrender = "yellow" +RECIPE_COLOR_pn-libxres = "yellow" +RECIPE_COLOR_pn-libxscrnsaver = "yellow" +RECIPE_COLOR_pn-libxsettings-client = "yellow" +RECIPE_COLOR_pn-libxslt = "yellow" +RECIPE_COLOR_pn-libxt = "yellow" +RECIPE_COLOR_pn-libxtrap = "yellow" +RECIPE_COLOR_pn-libxtst = "yellow" +RECIPE_COLOR_pn-libxv = "yellow" +RECIPE_COLOR_pn-libxvmc = "yellow" +RECIPE_COLOR_pn-libxxf86misc = "yellow" +RECIPE_COLOR_pn-libxxf86vm = "yellow" +RECIPE_COLOR_pn-lighttpd = "yellow" +RECIPE_COLOR_pn-linuxdoc-tools = "yellow" +RECIPE_COLOR_pn-loudmouth = "red" +RECIPE_COLOR_pn-lrzsz="yellow" +RECIPE_COLOR_pn-lttng-modules = "yellow" +RECIPE_COLOR_pn-lttng-tools = "yellow" +RECIPE_COLOR_pn-lttng-ust = "yellow" +RECIPE_COLOR_pn-babeltrace = "yellow" +RECIPE_COLOR_pn-makedevs = "yellow" +RECIPE_COLOR_pn-man = "red" +RECIPE_COLOR_pn-man-pages = "red" +RECIPE_COLOR_pn-matchbox-config-gtk = "yellow" +RECIPE_COLOR_pn-matchbox-desktop = "yellow" +RECIPE_COLOR_pn-matchbox-desktop-sato = "yellow" +RECIPE_COLOR_pn-matchbox-keyboard = "yellow" +RECIPE_COLOR_pn-matchbox-panel-2 = "yellow" +RECIPE_COLOR_pn-matchbox-session = "yellow" +RECIPE_COLOR_pn-matchbox-session-sato = "yellow" +RECIPE_COLOR_pn-matchbox-terminal = "yellow" +RECIPE_COLOR_pn-matchbox-theme-sato = "yellow" +RECIPE_COLOR_pn-matchbox-theme-sato-2 = "yellow" +RECIPE_COLOR_pn-matchbox-themes-extra = "red" +RECIPE_COLOR_pn-matchbox-themes-gtk = "red" +RECIPE_COLOR_pn-matchbox-wm = "yellow" +RECIPE_COLOR_pn-mc = "red" +RECIPE_COLOR_pn-mdadm = "yellow" +RECIPE_COLOR_pn-menu-cache = "yellow" +RECIPE_COLOR_pn-mesa-demos = "red" +RECIPE_COLOR_pn-meta-ide-support = "red" +RECIPE_COLOR_pn-meta-toolchain = "red" +RECIPE_COLOR_pn-mingetty = "red" +RECIPE_COLOR_pn-mktemp="red" +RECIPE_COLOR_pn-mobile-broadband-provider-info = "red" +RECIPE_COLOR_pn-moblin-proto = "red" +RECIPE_COLOR_pn-module-init-tools = "yellow" +RECIPE_COLOR_pn-modutils-collateral = "red" +RECIPE_COLOR_pn-modutils-initscripts = "yellow" +RECIPE_COLOR_pn-msynctool = "yellow" +RECIPE_COLOR_pn-mtd-utils = "yellow" +RECIPE_COLOR_pn-mtools = "yellow" +RECIPE_COLOR_pn-neon = "yellow" +RECIPE_COLOR_pn-netbase = "yellow" +RECIPE_COLOR_pn-nfs-utils = "yellow" +RECIPE_COLOR_pn-oh-puzzles = "yellow" +RECIPE_COLOR_pn-openjade = "yellow" +RECIPE_COLOR_pn-openobex = "red" +RECIPE_COLOR_pn-opensp = "yellow" +RECIPE_COLOR_pn-openssh = "yellow" +RECIPE_COLOR_pn-openswan = "red" +RECIPE_COLOR_pn-opkg = "yellow" +RECIPE_COLOR_pn-opkg-collateral = "yellow" +RECIPE_COLOR_pn-opkg-config-base = "yellow" +RECIPE_COLOR_pn-opkg_nogpg = "yellow" +RECIPE_COLOR_pn-opkg-utils = "yellow" +RECIPE_COLOR_pn-oprofile = "yellow" +RECIPE_COLOR_pn-oprofileui = "yellow" +RECIPE_COLOR_pn-owl-video = "yellow" +RECIPE_COLOR_pn-package-index = "red" +RECIPE_COLOR_pn-pax = "yellow" +RECIPE_COLOR_pn-pax-utils = "yellow" +RECIPE_COLOR_pn-pciutils = "yellow" +RECIPE_COLOR_pn-pcmanfm = "yellow" +RECIPE_COLOR_pn-pcmciautils = "yellow" +RECIPE_COLOR_pn-pixman = "yellow" +RECIPE_COLOR_pn-pkgconfig = "yellow" +RECIPE_COLOR_pn-pm-utils = "yellow" +RECIPE_COLOR_pn-pointercal = "yellow" +RECIPE_COLOR_pn-poky-feed-config-opkg = "yellow" +RECIPE_COLOR_pn-polkit = "yellow" +RECIPE_COLOR_pn-polkit-gnome = "yellow" +RECIPE_COLOR_pn-pong-clock = "red" +RECIPE_COLOR_pn-poppler = "red" +RECIPE_COLOR_pn-poppler-data = "red" +RECIPE_COLOR_pn-portmap = "yellow" +RECIPE_COLOR_pn-powertop = "yellow" +RECIPE_COLOR_pn-ppp-dialin = "red" +RECIPE_COLOR_pn-printproto = "yellow" +RECIPE_COLOR_pn-prism-firmware = "red" +RECIPE_COLOR_pn-procps = "red" +RECIPE_COLOR_pn-psmisc = "red" +RECIPE_COLOR_pn-psplash = "yellow" +RECIPE_COLOR_pn-pth = "yellow" +RECIPE_COLOR_pn-puzzles = "red" +RECIPE_COLOR_pn-python-gst="red" +RECIPE_COLOR_pn-python-pycurl = "yellow" +RECIPE_COLOR_pn-python-pygtk="red" +RECIPE_COLOR_pn-python="red" +RECIPE_COLOR_pn-qemu = "yellow" +RECIPE_COLOR_pn-qemu-config = "red" +RECIPE_COLOR_pn-qemu-helper-native = "yellow" +RECIPE_COLOR_pn-qemu-helper-nativesdk = "yellow" +RECIPE_COLOR_pn-quota = "yellow" +RECIPE_COLOR_pn-randrproto = "yellow" +RECIPE_COLOR_pn-readline = "yellow" +RECIPE_COLOR_pn-recordproto = "yellow" +RECIPE_COLOR_pn-renderproto = "yellow" +RECIPE_COLOR_pn-resourceproto = "yellow" +RECIPE_COLOR_pn-rpcbind = "yellow" +RECIPE_COLOR_pn-rpm = "yellow" +RECIPE_COLOR_pn-run-postinsts = "red" +RECIPE_COLOR_pn-rxvt-unicode = "yellow" +RECIPE_COLOR_pn-sato-icon-theme = "yellow" +RECIPE_COLOR_pn-screen = "yellow" +RECIPE_COLOR_pn-screenshot = "yellow" +RECIPE_COLOR_pn-scrnsaverproto = "yellow" +RECIPE_COLOR_pn-sed = "yellow" +RECIPE_COLOR_pn-setserial = "red" +RECIPE_COLOR_pn-settings-daemon = "yellow" +RECIPE_COLOR_pn-sgml-common = "yellow" +RECIPE_COLOR_pn-sgmlspl = "yellow" +RECIPE_COLOR_pn-shadow = "yellow" +RECIPE_COLOR_pn-shasum-native = "red" +RECIPE_COLOR_pn-signgp-native = "red" +RECIPE_COLOR_pn-spectrum-fw = "red" +RECIPE_COLOR_pn-sqlite3 = "yellow" +RECIPE_COLOR_pn-startup-notification = "yellow" +RECIPE_COLOR_pn-stat = "red" +RECIPE_COLOR_pn-strace = "yellow" +RECIPE_COLOR_pn-sudo = "yellow" +RECIPE_COLOR_pn-swabber = "red" +RECIPE_COLOR_pn-sysfsutils = "yellow" +RECIPE_COLOR_pn-sysklogd = "red" +RECIPE_COLOR_pn-syslinux = "yellow" +RECIPE_COLOR_pn-sysprof = "red" +RECIPE_COLOR_pn-sysvinit = "yellow" +RECIPE_COLOR_pn-table = "red" +RECIPE_COLOR_pn-tar = "yellow" +RECIPE_COLOR_pn-packagegroup-base = "red" +RECIPE_COLOR_pn-packagegroup-core-sdk = "red" +RECIPE_COLOR_pn-packagegroup-core-standalone-sdk-target = "red" +RECIPE_COLOR_pn-packagegroup-sdk-host = "red" +RECIPE_COLOR_pn-tcf-agent = "yellow" +RECIPE_COLOR_pn-tcp-wrappers = "yellow" +RECIPE_COLOR_pn-telepathy-farsight = "red" +RECIPE_COLOR_pn-telepathy-gabble = "red" +RECIPE_COLOR_pn-tidy = "red" +RECIPE_COLOR_pn-time = "yellow" +RECIPE_COLOR_pn-tinylogin = "yellow" +RECIPE_COLOR_pn-trapproto = "yellow" +RECIPE_COLOR_pn-tslib = "yellow" +RECIPE_COLOR_pn-ttf-bitstream-vera = "yellow" +RECIPE_COLOR_pn-tzdata = "yellow" +RECIPE_COLOR_pn-ubootchart = "red" +RECIPE_COLOR_pn-u-boot-mkimage = "red" +RECIPE_COLOR_pn-udev = "yellow" +RECIPE_COLOR_pn-udev-extraconf = "yellow" +RECIPE_COLOR_pn-unfs-server = "red" +RECIPE_COLOR_pn-unzip = "yellow" +RECIPE_COLOR_pn-update-rc.d = "yellow" +RECIPE_COLOR_pn-usbinit = "red" +RECIPE_COLOR_pn-util-macros = "yellow" +RECIPE_COLOR_pn-v86d = "yellow" +RECIPE_COLOR_pn-valgrind = "yellow" +RECIPE_COLOR_pn-videoproto = "yellow" +RECIPE_COLOR_pn-watchdog = "yellow" +RECIPE_COLOR_pn-wbxml2 = "red" +RECIPE_COLOR_pn-webkit-gtk = "yellow" +RECIPE_COLOR_pn-web-webkit = "yellow" +RECIPE_COLOR_pn-which = "yellow" +RECIPE_COLOR_pn-wireless-tools="yellow" +RECIPE_COLOR_pn-wv = "red" +RECIPE_COLOR_pn-xbacklight = "red" +RECIPE_COLOR_pn-xcb-proto = "yellow" +RECIPE_COLOR_pn-xcb-util = "yellow" +RECIPE_COLOR_pn-xcmiscproto = "yellow" +RECIPE_COLOR_pn-xcursor-transparent-theme = "yellow" +RECIPE_COLOR_pn-xev = "red" +RECIPE_COLOR_pn-xextproto = "yellow" +RECIPE_COLOR_pn-xeyes = "red" +RECIPE_COLOR_pn-xf86bigfontproto = "yellow" +RECIPE_COLOR_pn-xf86dgaproto = "yellow" +RECIPE_COLOR_pn-xf86driproto = "yellow" +RECIPE_COLOR_pn-xf86-input-synaptics = "red" +RECIPE_COLOR_pn-xf86miscproto = "yellow" +RECIPE_COLOR_pn-xf86rushproto = "yellow" +RECIPE_COLOR_pn-xf86-video-intel = "red" +RECIPE_COLOR_pn-xf86-video-omapfb = "red" +RECIPE_COLOR_pn-xf86vidmodeproto = "yellow" +RECIPE_COLOR_pn-xineramaproto = "yellow" +RECIPE_COLOR_pn-xinetd="red" +RECIPE_COLOR_pn-xkeyboard-config = "yellow" +RECIPE_COLOR_pn-xorg-minimal-fonts = "yellow" +RECIPE_COLOR_pn-xournal = "red" +RECIPE_COLOR_pn-xproto = "yellow" +RECIPE_COLOR_pn-xproxymanagementprotocol = "yellow" +RECIPE_COLOR_pn-xrdb = "red" +RECIPE_COLOR_pn-xrestop = "yellow" +RECIPE_COLOR_pn-xtrans = "yellow" +RECIPE_COLOR_pn-xtscal = "yellow" +RECIPE_COLOR_pn-xz = "yellow" +RECIPE_COLOR_pn-yaffs2-utils = "red" +RECIPE_COLOR_pn-zeroconf = "red" +RECIPE_COLOR_pn-zip = "yellow" +RECIPE_COLOR_pn-zlib = "yellow" diff --git a/meta-yocto/conf/distro/include/upstream_tracking.inc b/meta-yocto/conf/distro/include/upstream_tracking.inc new file mode 100644 index 0000000000..350326b9ed --- /dev/null +++ b/meta-yocto/conf/distro/include/upstream_tracking.inc @@ -0,0 +1,254 @@ +# upstream_tracking.inc - This file contains data that tracks the +# upstream project associated with a given recipe. This list is needed +# for recipes that version information can not be automagically discovered. +# As we automate this checking, this file will slowed be reduced. +# +# This data is used by the package reporting system (packages.yoctoproject.org) +# +# The format is as a bitbake variable override for each recipe +# +# RECIPE_UPSTREAM_VERSION_pn- = "" +# RECIPE_UPSTREAM_DATE_pn- = "Mmm dd, YYYY" +# - This is the latest upstream version and date +# RECIPE_NO_UPDATE_REASON_pn- = "" +# - Used to note why a recipe should not be upgraded to a newer versoin +# CHECK_DATE_pn- = "Mmm dd, YYYY" +# - This is the date that upstream was last manually checked over time +# this should be removed as we automate this checking +# +# These entries will slowly be removed as we can automatically determine +# the information in this file. So for existing recipes that we can get +# from the package reporting system, the entries here can be removed. +# +# Please keep this list in alphabetical order. +# +RECIPE_UPSTREAM_VERSION_pn-adt-installer = "1.1" +CHECK_DATE_pn-adt-installer = "Sep 11, 2012" +RECIPE_UPSTREAM_DATE_pn-avahi-ui = "Oct 01, 2010" +RECIPE_UPSTREAM_VERSION_pn-avahi = "0.6.31" +RECIPE_UPSTREAM_DATE_pn-avahi = "Oct 01, 2010" +RECIPE_UPSTREAM_VERSION_pn-bash = "4.2" +RECIPE_UPSTREAM_DATE_pn-bash = "Dec 01, 2009" +RECIPE_UPSTREAM_VERSION_pn-bc = "1.06" +CHECK_DATA_pn-bc = "Jul 27, 2012" +RECIPE_UPSTREAM_DATE_pn-bc = "Nov 01, 2000" +RECIPE_UPSTREAM_VERSION_pn-bdwgc = "gc-7.2d" +CHECK_DATE_pn-bdwgc = "Aug 27, 2012" +RECIPE_NO_UPDATE_REASON_pn-bluez4 = "BlueZ 5.x is not backward-compatible; components that interact with bluez not updated" +RECIPE_NO_UPDATE_REASON_pn-build-appliance = "Always reports behind" +RECIPE_NO_UPDATE_REASON_pn-cdrtools = "v3.x uses incompatible CDDL license" +RECIPE_UPSTREAM_VERSION_pn-clutter = "1.10.0" +RECIPE_UPSTREAM_DATE_pn-clutter = "Mar 22, 2012" +CHECK_DATE_pn-clutter = "Aug 28, 2012" +RECIPE_UPSTREAM_VERSION_pn-core-image-minimal = "1.0" +RECIPE_NO_UPDATE_REASON_pn-createrepo = "Versions after 0.9.* use YUM, so we hold at 0.4.11" +RECIPE_UPSTREAM_VERSION_pn-cups = "1.6.2" +RECIPE_UPSTREAM_DATE_pn-cups = "Mar 18, 2013" +CHECK_DATE_pn-cups = "Jun 11, 2013" +RECIPE_NO_UPDATE_REASON_pn-db= "API compatibility issue" +RECIPE_NO_UPDATE_REASON_pn-dbus = "D-BUS 1.7.x is the development version, not stable." +RECIPE_NO_UPDATE_REASON_pn-docbook-sgml-dtd-3.1-native = "PRS Reports Incorrectly" +RECIPE_NO_UPDATE_REASON_pn-docbook-sgml-dtd-4.1-native = "PRS Reports Incorrectly" +RECIPE_NO_UPDATE_REASON_pn-docbook-sgml-dtd-4.5-native = "PRS Reports Incorrectly" +RECIPE_UPSTREAM_VERSION_pn-eee-acpi-scripts = "1.1.12+9d4cdedca25b396405f8587f9c4fbf8229e041c2" +RECIPE_UPSTREAM_DATE_pn-eee-acpi-scripts = "Oct 3, 2011" +CHECK_DATE_pn-eee-acpi-scripts = "Aug 28, 2012" +RECIPE_UPSTREAM_VERSION_pn-formfactor = "0.0" +RECIPE_UPSTREAM_DATE_pn-formfactor = "n/a" +RECIPE_UPSTREAM_VERSION_pn-fstests="0.0+svnr426" +CHECK_DATE_pn-fstests = "Jul 06, 2011" +RECIPE_UPSTREAM_VERSION_pn-gaku="0.0+svnr399" +RECIPE_NO_UPDATE_REASON_pn-gawk = "Version 4.1.0 requires Automake 1.13, but have 1.12.6" +RECIPE_UPSTREAM_DATE_pn-gaku="Jul 03, 2008" +CHECK_DATE_pn-gaku = "Aug 29, 2012" +RECIPE_UPSTREAM_VERSION_pn-gdk-pixbuf = "2.27.2" +RECIPE_UPSTREAM_DATE_pn-gdk-pixbuf = "Mar 3, 2013" +CHECK_DATE_pn-gdk-pixbuf = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-gdk-pixbuf = "2.27.2 is unstable" +RECIPE_UPSTREAM_VERSION_pn-glibc = "2.11.2" +RECIPE_UPSTREAM_DATE_pn-glibc = "May 01, 2010" +RECIPE_NO_UPDATE_REASON_pn-glibc = "two glibc plugins are based on 2.10.1" +RECIPE_NO_UPDATE_REASON_pn-glib-networking = "Pending Glib-2.0 Update" +RECIPE_UPSTREAM_VERSION_pn-gnome-desktop = "3.7.90" +RECIPE_UPSTREAM_DATE_pn-gnome-desktop = "Feb 19, 2013" +CHECK_DATE_pn-gnome-desktop = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-gnome-desktop = "waiting for the sato gtk3 port" +RECIPE_UPSTREAM_VERSION_pn-gnome-icon-theme = "3.7.4" +RECIPE_UPSTREAM_DATE_pn-gnome-icon-theme = "Jan 17, 2013" +CHECK_DATE_pn-gnome-icon-theme = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-gnome-icon-theme = "waiting for the sato gtk3 port" +RECIPE_UPSTREAM_VERSION_pn-gnome-keyring = "3.7.91" +RECIPE_UPSTREAM_DATE_pn-gnome-keyring = "Mar 4, 2013" +CHECK_DATE_pn-gnome-keyring = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-gnome-keyring = "waiting for the sato gtk3 port" +RECIPE_NO_UPDATE_REASON_pn-gobject_introspection = "Does not cross-compile" +RECIPE_NO_UPDATE_REASON_pn-groff = "1.18.1.4 is latest GPLv2 Version no 1.21" +RECIPE_NO_UPDATE_REASON_pn-grub="grub2 is a different thing" +RECIPE_UPSTREAM_DATE_pn-gst-meta-base="n/a" +RECIPE_NO_UPDATE_REASON_pn-gst-plugins-base = "not compatible with gst-fluendo 0.10.x" +RECIPE_NO_UPDATE_REASON_pn-gst-ffmpeg = "not compatible with gst-fluendo 0.10.x" +RECIPE_NO_UPDATE_REASON_pn-gst-plugins-bad = "not compatible with gst-fluendo 0.10.x" +RECIPE_NO_UPDATE_REASON_pn-gst-plugins-good = "not compatible with gst-fluendo 0.10.x" +RECIPE_NO_UPDATE_REASON_pn-gst-plugins-ugly = "not compatible with gst-fluendo 0.10.x" +RECIPE_NO_UPDATE_REASON_pn-gstreamer=" not compatible with gst-fluendo 0.10.x " +RECIPE_NO_UPDATE_REASON_pn-gtk+ = "Do not upgrade to version: 2.99.2 because prefer stable tree" +RECIPE_NO_UPDATE_REASON_pn-gtk-doc-stub = "PRS Reports Incorrectly" +RECIPE_UPSTREAM_VERSION_pn-gtk-engines = "2.91.1" +RECIPE_UPSTREAM_DATE_pn-gtk-engines = "Oct 9, 2010" +CHECK_DATE_pn-gtk-engines = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-gtk-engines = "2.91.1 is a 3.0 beta release" +RECIPE_UPSTREAM_VERSION_pn-icu = "4.8.1.1" +RECIPE_UPSTREAM_DATE_pn-icu = "Oct 10, 2011" +CHECK_DATE_pn-icu = "Aug 29, 2012" +RECIPE_UPSTREAM_VERSION_pn-initscripts = "9.40" +RECIPE_UPSTREAM_DATE_pn-initscripts = "Aug 06, 2012" +CHECK_DATE_pn-initscripts = "Aug 29, 2012" +RECIPE_UPSTREAM_VERSION_pn-inputproto = "2.2.99.1" +RECIPE_UPSTREAM_DATE_pn-inputproto = "Jan 5, 2013" +CHECK_DATE_pn-inputproto = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-inputproto = "2.2.99.1 is unstable" +RECIPE_UPSTREAM_VERSION_pn-jpeg = "9" +RECIPE_UPSTREAM_DATE_pn-jpeg = "Jan 13, 2013" +CHECK_DATE_pn-jpeg = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-jpeg = "webkit-gtk 1.8.3 doesn't work with jpeg 9" +RECIPE_NO_UPDATE_REASON_pn-kconfig-frontends = "PRS Reports Incorrectly" +RECIPE_NO_UPDATE_REASON_pn-kernelshark = "0.2 is the latest version." +RECIPE_UPSTREAM_VERSION_pn-keymaps = "1.0" +RECIPE_UPSTREAM_DATE_pn-keymaps = "n/a" +RECIPE_UPSTREAM_VERSION_pn-kmod = "9" +RECIPE_UPSTREAM_DATE_pn-kmod = "Jun 19, 2012" +CHECK_DATE_pn-kmod = "Jul 27, 2012" +CHECK_DATE_pn-latencytop = "Jul 30, 2014" +RECIPE_NO_UPDATE_REASON_pn-liberation-fonts = "2.00.0 - fontforge package required " +RECIPE_UPSTREAM_VERSION_pn-libgnome-keyring = "3.7.91" +RECIPE_UPSTREAM_DATE_pn-libgnome-keyring = "Mar 4, 2013" +CHECK_DATE_pn-libgnome-keyring = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-libgnome-keyring = "waiting for the sato gtk3 port" +RECIPE_UPSTREAM_VERSION_pn-libiconv = "1.14" +RECIPE_UPSTREAM_DATE_pn-libiconv = "Aug 07, 2011" +CHECK_DATE_pn-libiconv = "Aug 30, 2012" +RECIPE_NO_UPDATE_REASON_pn-libnl = "libnl-3.2.2 is incompatible with libnl2, so no Upgrade" +RECIPE_UPSTREAM_VERSION_pn-libsoup = "2.41.90" +RECIPE_UPSTREAM_VERSION_pn-libpng = "1.6.6" +RECIPE_UPSTREAM_DATE_pn-libpng = "Sep 16, 2013" +CHECK_DATE_pn-libpng = "Oct 02, 2013" +RECIPE_UPSTREAM_VERSION_pn-libpng12 = "1.2.50" +RECIPE_UPSTREAM_DATE_pn-libpng12 = "Jul 10, 2012" +CHECK_DATE_pn-libpng12 = "Oct 02, 2013" +RECIPE_UPSTREAM_DATE_pn-libsoup = "Feb 19, 2013" +CHECK_DATE_pn-libsoup = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-libsoup = "2.41.90 is unstable" +RECIPE_NO_UPDATE_REASON_pn-libtheora = "1.1.1 is latest stable release not 1.2.0alpha1" +RECIPE_NO_UPDATE_REASON_pn-libunique = "Do not upgrade to version: 2.91.4 because it requires gtk+ >= 2.90.0 and the stable version of gtk+ used by poky is 2.20.1" +RECIPE_UPSTREAM_VERSION_pn-liburcu = "0.7.0" +RECIPE_UPSTREAM_DATE_pn-liburcu = "May 25, 2012" +CHECK_DATE_pn-liburcu = "Aug 30, 2012" +RECIPE_UPSTREAM_VERSION_pn-libusb = "1.0.9" +RECIPE_UPSTREAM_DATE_pn-libusb = "Apr 20, 2012" +CHECK_DATE_pn-libusb = "Aug 30, 2012" +RECIPE_UPSTREAM_DATE_pn-linuxdoc-tools-native = "Nov 22, 2009" +RECIPE_UPSTREAM_VERSION_pn-linuxdoc-tools-native = "0.9.66" +CHECK_DATE_pn-linuxdoc-tools-native = "Aug 31, 2012" +RECIPE_NO_UPDATE_REASON-libxml2 = "only release candidates available " +RECIPE_UPSTREAM_VERSION_pn-lsbtest = "1.0" +CHECK_DATE_pn-lsof = "Jul 30, 2014" +RECIPE_UPSTREAM_VERSION_pn-lz4 = "122" +RECIPE_UPSTREAM_DATE_pn-lz4 = "Aug 28, 2014" +CHECK_DATE_pn-lz4 = "Aug 30, 2014" +RECIPE_UPSTREAM_VERSION_pn-meta-ide-support = "check" +RECIPE_UPSTREAM_VERSION_pn-minicom = "2.6.2" +RECIPE_UPSTREAM_DATE_pn-minicom = "Feb 06, 2013" +CHECK_DATE_pn-minicom = "Oct 22, 2013" +RECIPE_UPSTREAM_DATE_pn-module-init-tools = "Jun 02, 2011" +RECIPE_UPSTREAM_VERSION_pn-module-init-tools = "3.15" +CHECK_DATE_pn-module-init-tools = "Aug 31, 2012" +RECIPE_UPSTREAM_DATE_pn-modutils-initscripts = "n/a" +RECIPE_NO_UPDATE_REASON_pn-mpeg2dec = "Why are we currently at 0.4.1?" +RECIPE_NO_UPDATE_REASON_pn-mx-1.0 = "PRS 1.99 is dev version" +CHECK_DATE_pn-nettle = "Aug 21, 2014" +RECIPE_NO_UPDATE_REASON_pn-nettle = "3.0.0 breaks gnutls, api changes" +RECIPE_UPSTREAM_VERSION_pn-ofono = "1.6" +RECIPE_UPSTREAM_DATE_pn-ofono="Apr 20, 2012" +CHECK_DATE_pn-ofono = "Aug 31, 2012" +RECIPE_NO_UPDATE_REASON_pn-openssl = "1.0.1 is beta 1.0.0c is latest" +RECIPE_UPSTREAM_DATE_pn-opkg-collateral = "n/a" +RECIPE_UPSTREAM_VERSION_pn-opkg = "0.1.8" +RECIPE_NO_UPDATE_REASON_pn-oprofileui-server = "PRS Reports Incorrectly" +CHECK_DATE_pn-opkg = "Aug 31, 2012" +RECIPE_UPSTREAM_DATE_pn-opkg = "Feb 01, 2010" +RECIPE_NO_UPDATE_REASON_pn-pkgconfig = "removes glib-conf, adds circular depends" +RECIPE_UPSTREAM_VERSION_pn-pointercal = "0.0" +RECIPE_UPSTREAM_DATE_pn-pointercal = "n/a" +RECIPE_UPSTREAM_DATE_pn-poky-feed-config-opkg = "n/a" +RECIPE_UPSTREAM_DATE_pn-polkit = "Jan 09, 2013" +RECIPE_UPSTREAM_VERSION_pn-polkit = "0.110" +CHECK_DATE_pn-polkit = "Mar 14, 2013" +RECIPE_NO_UPDATE_REASON_pn-polkit = "requires spidermonkey 1.8.5, not available in poky" +RECIPE_UPSTREAM_VERSION_pn-pong-clock = "1.0" +RECIPE_NO_UPDATE_REASON_pn-powertop = "Do not upgrade to version 1.97 since it's a beta release of the comming PowerTOP 2.0" +RECIPE_UPSTREAM_VERSION_pn-ppp-dialin = "check" +RECIPE_UPSTREAM_VERSION_pn-prelink="1.0+git1+9552f214c7faa816fdb55b289a457f0cab034f00" +RECIPE_NO_UPDATE_REASON_pn-python-distribute = "0.7.3 only upgrades 0.6.32, can't install on its own, also obsolete" +RECIPE_UPSTREAM_VERSION_pn-python-distribute = "0.7.3" +RECIPE_NO_UPDATE_REASON_pn-python-pygobject = "Newer versions of python-pygobject depend on gobject-introspection which doesn't cross-compile" +RECIPE_UPSTREAM_VERSION_pn-python-pygobject = "3.13.3" +CHECK_DATE_pn-prelink = "Aug 31, 2012" +RECIPE_UPSTREAM_DATE_pn-qemu-helper-native = "n/a" +RECIPE_NO_UPDATE_REASON_pn-qemugl = "Do not upgrade to version: 33466cd8 because the upstream is broken in x86_64 build" +RECIPE_UPSTREAM_VERSION_pn-rpm = "5.4.10" +RECIPE_UPSTREAM_DATE_pn-rpm = "Jul 06, 2012" +CHECK_DATE_pn-rpm = "Sep 03, 2012" +RECIPE_UPSTREAM_VERSION_pn-run-postinsts = "check" +RECIPE_NO_UPDATE_REASON_pn-sato-screenshot = "PRS Reports Incorrectly" +RECIPE_NO_UPDATE_REASON_pn-socat = "2.0.0 is beta" +RECIPE_UPSTREAM_VERSION_pn-sqlite3 = "3.8.0.2" +RECIPE_UPSTREAM_DATE_pn-sqlite3 = "Sep 03, 2013" +CHECK_DATE_pn-sqlite3= "Oct 02, 2013" +RECIPE_UPSTREAM_VERSION_pn-squashfs-tools = "4.2" +RECIPE_UPSTREAM_DATE_pn-squashfs-tools = "Feb 28, 2011" +CHECK_DATE_pn-squashfs-tools = "Nov 09, 2012" +RECIPE_NO_UPDATE_REASON_pn-syslinux="Waiting for 4.06 for 3.3 kernel headers support" +RECIPE_NO_UPDATE_REASON_pn-texinfo = "Checking script parses directory wrong" +RECIPE_UPSTREAM_VERSION_pn-tinylogin = "1.4" +CHECK_DATE_pn-tinylogin = "Sep 03, 2012" +RECIPE_UPSTREAM_DATE_pn-tinylogin = "Jan 03, 2003" +RECIPE_NO_UPDATE_REASON_pn-tinylogin = "TinyLogin was merged into BusyBox." +RECIPE_UPSTREAM_VERSION_pn-tremor="20120122" +RECIPE_UPSTREAM_DATE_pn-tremor="Jan 22, 2012" +CHECK_DATE_pn-tremor = "Mar 11, 2013" +RECIPE_NO_UPDATE_REASON_pn-tremor = "Same revision on different SVN modules" +RECIPE_UPSTREAM_VERSION_pn-ubootchart = "0.0+r12" +CHECK_DATE_pn-ubootchart = "Sep 11, 2012" +RECIPE_UPSTREAM_DATE_pn-udev-extraconf = "n/a" +RECIPE_UPSTREAM_VERSION_pn-unifdef-native="2.6.18+git" +RECIPE_UPSTREAM_DATE_pn-unifdef-native = "Feb 05, 2011" +CHECK_DATE_pn-unifdef-native = "Sep 03, 2012" +RECIPE_UPSTREAM_VERSION_pn-unzip = "6.0" +RECIPE_UPSTREAM_DATE_pn-unzip = "Apr 25, 2009" +CHECK_DATE_pn-unzip = "Sep 03, 2012" +RECIPE_UPSTREAM_VERSION_pn-usbinit = "n/a" +RECIPE_UPSTREAM_VERSION_pn-usbutils = "006" +RECIPE_UPSTREAM_DATE_pn-usbutils = "Jul 06, 2012" +CHECK_DATE_pn-usbutils = "Sep 03, 2012" +RECIPE_NO_UPDATE_REASON_pn-vte = "Pending Glib-2.0 Update" +RECIPE_UPSTREAM_VERSION_pn-webkit-gtk = "1.10.2" +RECIPE_UPSTREAM_DATE_pn-webkit-gtk = "Dec 12, 2012" +CHECK_DATE_pn-webkit-gtk = "Mar 5, 2013" +RECIPE_NO_UPDATE_REASON_pn-webkit-gtk = ">= 1.10.2 needs ruby" +RECIPE_UPSTREAM_DATE_pn-x11-common="Sep 22, 2008" +RECIPE_UPSTREAM_VERSION_pn-x11-common = "1:7.6" +CHECK_DAte_pn-x11-common = "Sep 03, 2012" +RECIPE_NO_UPDATE_REASON_pn-xdg-utils = "only release candidates available " +RECIPE_UPSTREAM_VERSION_pn-xev = "1.0.4" +RECIPE_UPSTREAM_DATE_pn-xev = "Oct 13, 2009" +CHECK_DATE_pn-xev = "Sep 04, 2012" +CHECK_DATE_pn-xinetd = "Jul 30, 2014" +RECIPE_UPSTREAM_DATE_pn-xorg-minimal-fonts = "n/a" +RECIPE_UPSTREAM_DATE_pn-xserver-nodm-init="" +RECIPE_UPSTREAM_VERSION_pn-xz = "5.0.4" +RECIPE_UPSTREAM_DATE_pn-xz = "unknown" +CHECK_DATE_pn-xz = "Sep 04, 2012" +RECIPE_NO_UPDATE_REASON_pn-zaurusd = "SVN rev 426 is last Stable release" +RECIPE_UPSTREAM_VERSION_pn-zip = "3.0" +RECIPE_UPSTREAM_DATE_pn-zip = "Sep 01, 2009" +CHECK_DATE_pn-zip = "Sep 04, 2012" diff --git a/meta-yocto/conf/distro/poky-bleeding.conf b/meta-yocto/conf/distro/poky-bleeding.conf new file mode 100644 index 0000000000..2d3e046a45 --- /dev/null +++ b/meta-yocto/conf/distro/poky-bleeding.conf @@ -0,0 +1,11 @@ +PREFERRED_VERSION_glib-2.0 ?= "2.17.4" +PREFERRED_VERSION_glib-2.0-native ?= "2.17.4" +PREFERRED_VERSION_atk ?= "1.22.0" +PREFERRED_VERSION_pango ?= "1.21.2" +PREFERRED_VERSION_gtk+ ?= "2.13.3" + +require conf/distro/include/poky-floating-revisions.inc +require conf/distro/poky.conf + +DISTRO = "poky-bleeding" +DISTROOVERRIDES = "poky" diff --git a/meta-yocto/conf/distro/poky-lsb.conf b/meta-yocto/conf/distro/poky-lsb.conf new file mode 100644 index 0000000000..b0c2cf87f5 --- /dev/null +++ b/meta-yocto/conf/distro/poky-lsb.conf @@ -0,0 +1,14 @@ + +require conf/distro/poky.conf +require conf/distro/include/security_flags.inc + +DISTRO = "poky-lsb" +DISTROOVERRIDES = "poky:linuxstdbase" + +DISTRO_FEATURES_append = " pam largefile opengl" +PREFERRED_PROVIDER_virtual/libx11 = "libx11" + +# Ensure the kernel nfs server is enabled +KERNEL_FEATURES_append_pn-linux-yocto = " features/nfsd/nfsd-enable.scc" + + diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf new file mode 100644 index 0000000000..fb4bf41e0d --- /dev/null +++ b/meta-yocto/conf/distro/poky-tiny.conf @@ -0,0 +1,145 @@ +# Distribution definition for: poky-tiny +# +# Copyright (c) 2011, Intel Corporation. +# All rights reserved. +# +# This file is released under the MIT license as described in +# ../meta/COPYING.MIT. +# +# Poky-tiny is intended to define a tiny Linux system comprised of a +# Linux kernel tailored to support each specific MACHINE and busybox. +# Poky-tiny sets some basic policy to ensure a usable system while still +# keeping the rootfs and kernel image as small as possible. +# +# The policies defined are intended to meet the following goals: +# o Serial consoles only (no framebuffer or VGA console) +# o Basic support for IPV4 networking +# o Single user ash shell +# o Static images (no support for adding packages or libraries later) +# o Read-only or RAMFS root filesystem +# o Combined Linux kernel + rootfs in under 4MB +# o Allow the user to select between eglibc or uclibc with the TCLIBC variable +# +# This is currently a partial definition, the following tasks remain: +# [ ] Integrate linux-yocto-tiny ktype into linux-yocto +# [ ] Define linux-yocto-tiny configs for all supported BSPs +# [ ] Drop ldconfig from the installation +# [ ] Modify the runqemu scripts to work with ext2 parameter: +# runqemu qemux86 qemuparams="-nographic" bootparams="console=ttyS0,115200 root=0800" +# [ ] Modify busybox to allow for DISTRO_FEATURES-like confiruration + +require conf/distro/poky.conf +DISTRO = "poky-tiny" + +# FIXME: consider adding a new "tiny" feature +#DISTRO_FEATURES_append = " tiny" + +# Distro config is evaluated after the machine config, so we have to explicitly +# set the kernel provider to override a machine config. +PREFERRED_PROVIDER_virtual/kernel = "linux-yocto-tiny" +PREFERRED_VERSION_linux-yocto-tiny = "3.14%" + +# We can use packagegroup-core-boot, but in the future we may need a new packagegroup-core-tiny +#POKY_DEFAULT_EXTRA_RDEPENDS += "packagegroup-core-boot" +# Drop kernel-module-af-packet from RRECOMMENDS +POKY_DEFAULT_EXTRA_RRECOMMENDS = "" + +# FIXME: what should we do with this? +TCLIBCAPPEND = "" + +# Disable wide char support for ncurses as we don't include it in +# in the LIBC features below. +# Leave native enable to avoid build failures +ENABLE_WIDEC = "false" +ENABLE_WIDEC_class-native = "true" + +# Drop native language support. This removes the +# eglibc->bash->gettext->libc-posix-clang-wchar dependency. +USE_NLS="no" + +# Reconfigure eglibc for a smaller installation +# Comment out any of the lines below to disable them in the build +DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt" +DISTRO_FEATURES_LIBC_TINY_append_x86-64 = " libc-libm-big" + +# Required for "who" +DISTRO_FEATURES_LIBC_MINIMAL = "libc-utmp libc-getlogin" +DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp" +DISTRO_FEATURES_LIBC_NET = "libc-inet libc-nis" + +DISTRO_FEATURES_LIBC = "${DISTRO_FEATURES_LIBC_TINY} \ + ${DISTRO_FEATURES_LIBC_MINIMAL} \ + ${DISTRO_FEATURES_LIBC_REGEX} \ + ${DISTRO_FEATURES_LIBC_NET} \ + " + +# Comment out any of the lines below to disable them in the build +# DISTRO_FEATURES options: +# alsa bluetooth ext2 irda pcmcia usbgadget usbhost wifi nfs zeroconf pci +DISTRO_FEATURES_TINY = "pci" +DISTRO_FEATURES_NET = "ipv4" +DISTRO_FEATURES_USB = "usbhost" +#DISTRO_FEATURES_USBGADGET = "usbgadget" +#DISTRO_FEATURES_WIFI = "wifi" + +DISTRO_FEATURES = "${DISTRO_FEATURES_TINY} \ + ${DISTRO_FEATURES_NET} \ + ${DISTRO_FEATURES_USB} \ + ${DISTRO_FEATURES_USBGADGET} \ + ${DISTRO_FEATURES_WIFI} \ + ${DISTRO_FEATURES_LIBC} \ + " + +# Enable LFS - see bug YOCTO #5865 +DISTRO_FEATURES_append_libc-uclibc = " largefile" + +DISTRO_FEATURES_class-native = "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC} ${POKY_DEFAULT_DISTRO_FEATURES}" + +# Use tmpdevfs and the busybox runtime services +VIRTUAL-RUNTIME_dev_manager = "" +VIRTUAL-RUNTIME_login_manager = "" +VIRTUAL-RUNTIME_init_manager = "tiny-init" +VIRTUAL-RUNTIME_keymaps = "" + +# FIXME: Consider adding "modules" to MACHINE_FEATURES and using that in +# packagegroup-core-base to select modutils-initscripts or not. Similar with "net" and +# netbase. + +# By default we only support ext2 and initramfs. We don't build live as that +# pulls in a lot of dependencies for the live image and the installer, like +# udev, grub, etc. These pull in gettext, which fails to build with wide +# character support. +IMAGE_FSTYPES = "ext2 cpio.gz" + +# Drop v86d from qemu dependency list (we support serial) +# Drop grub from meta-intel BSPs +# FIXME: A different mechanism is needed here. We could define -tiny +# variants of all compatible machines, but that leads to a lot +# more machine configs to maintain long term. +MACHINE_ESSENTIAL_EXTRA_RDEPENDS = "" + +# The mtrace script included by eglibc is a perl script. This means the system +# will build perl in case this package is installed. Since we don't care about +# this script for the purposes of tiny, remove the dependency from here. +RDEPENDS_${PN}-mtrace_pn-eglibc = "" + +INHERIT += "blacklist" +PNBLACKLIST[build-appliance-image] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-base] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-clutter] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-directfb] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-full-cmdline] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-lsb] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-lsb-dev] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-lsb-sdk] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-rt] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-rt-sdk] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-sato] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-sato-dev] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-sato-sdk] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-x11] = "not buildable with poky-tiny" +PNBLACKLIST[qt4e-demo-image] = "not buildable with poky-tiny" +PNBLACKLIST[core-image-weston] = "not buildable with poky-tiny" + +# Disable python usage in opkg-utils since it won't build with tiny config +PACKAGECONFIG_pn-opkg-utils = "" diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf new file mode 100644 index 0000000000..d9ada7c109 --- /dev/null +++ b/meta-yocto/conf/distro/poky.conf @@ -0,0 +1,120 @@ +DISTRO = "poky" +DISTRO_NAME = "Poky (Yocto Project Reference Distro)" +DISTRO_VERSION = "1.7.2" +DISTRO_CODENAME = "dizzy" +SDK_VENDOR = "-pokysdk" +SDK_VERSION := "${@'${DISTRO_VERSION}'.replace('snapshot-${DATE}','snapshot')}" + +MAINTAINER = "Poky " + +TARGET_VENDOR = "-poky" + +LOCALCONF_VERSION = "1" +LAYER_CONF_VERSION ?= "6" + +# Override these in poky based distros +POKY_DEFAULT_DISTRO_FEATURES = "largefile opengl ptest multiarch wayland" +POKY_DEFAULT_EXTRA_RDEPENDS = "packagegroup-core-boot" +POKY_DEFAULT_EXTRA_RRECOMMENDS = "kernel-module-af-packet" + +DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC} ${POKY_DEFAULT_DISTRO_FEATURES}" + +PREFERRED_VERSION_linux-yocto ?= "3.14%" +PREFERRED_VERSION_linux-yocto_qemux86 ?= "3.14%" +PREFERRED_VERSION_linux-yocto_qemux86-64 ?= "3.14%" +PREFERRED_VERSION_linux-yocto_qemuarm ?= "3.14%" +PREFERRED_VERSION_linux-yocto_qemumips ?= "3.14%" +PREFERRED_VERSION_linux-yocto_qemumips64 ?= "3.14%" +PREFERRED_VERSION_linux-yocto_qemuppc ?= "3.14%" + +SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${IMAGE_BASENAME}-${TUNE_PKGARCH}" +SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}" + +EXTRAOPKGCONFIG = "poky-feed-config-opkg" + +DISTRO_EXTRA_RDEPENDS += " ${POKY_DEFAULT_EXTRA_RDEPENDS}" +DISTRO_EXTRA_RRECOMMENDS += " ${POKY_DEFAULT_EXTRA_RRECOMMENDS}" + +POKYQEMUDEPS = "${@bb.utils.contains("INCOMPATIBLE_LICENSE", "GPLv3", "", "packagegroup-core-device-devel",d)}" +DISTRO_EXTRA_RDEPENDS_append_qemuarm = " ${POKYQEMUDEPS}" +DISTRO_EXTRA_RDEPENDS_append_qemumips = " ${POKYQEMUDEPS}" +DISTRO_EXTRA_RDEPENDS_append_qemuppc = " ${POKYQEMUDEPS}" +DISTRO_EXTRA_RDEPENDS_append_qemux86 = " ${POKYQEMUDEPS}" +DISTRO_EXTRA_RDEPENDS_append_qemux86-64 = " ${POKYQEMUDEPS}" + +TCLIBCAPPEND = "" + +QEMU_TARGETS ?= "arm i386 mips mipsel ppc x86_64" +# Other QEMU_TARGETS "mips64 mips64el sh4" + +PREMIRRORS ??= "\ +bzr://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +cvs://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +gitsm://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +hg://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +osc://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +p4://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +svk://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +svn://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" + +MIRRORS =+ "\ +ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ +https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" + +# The CONNECTIVITY_CHECK_URI's are used to test whether we can succesfully +# fetch from the network (and warn you if not). To disable the test set +# the variable to be empty. +# Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=HEAD + +CONNECTIVITY_CHECK_URIS ?= " \ + https://eula-downloads.yoctoproject.org/index.php \ + http://bugzilla.yoctoproject.org/report.cgi" + +SANITY_TESTED_DISTROS ?= " \ + Poky-1.4 \n \ + Poky-1.5 \n \ + Poky-1.6 \n \ + Poky-1.7 \n \ + Ubuntu-12.04 \n \ + Ubuntu-13.10 \n \ + Ubuntu-14.04 \n \ + Fedora-19 \n \ + Fedora-20 \n \ + CentOS-6.4 \n \ + CentOS-6.5 \n \ + Debian-7.0 \n \ + Debian-7.1 \n \ + Debian-7.2 \n \ + Debian-7.3 \n \ + Debian-7.4 \n \ + Debian-7.5 \n \ + Debian-7.6 \n \ + Debian-7.7 \n \ + SUSE-LINUX-12.2 \n \ + openSUSE-project-12.3 \n \ + openSUSE-project-13.1 \n \ + " + +# Default hash policy for distro +BB_SIGNATURE_HANDLER ?= 'OEBasicHash' +# +# OELAYOUT_ABI allows us to notify users when the format of TMPDIR changes in +# an incompatible way. Such changes should usually be detailed in the commit +# that breaks the format and have been previously discussed on the mailing list +# with general agreement from the core team. +# +OELAYOUT_ABI = "8" + +# add poky sanity bbclass +INHERIT += "poky-sanity" + +# QA check settings - a little stricter than the OE-Core defaults +WARN_QA = "textrel files-invalid incompatible-license xorg-driver-abi libdir \ + unknown-configure-option build-deps file-rdeps" +ERROR_QA = "dev-so debug-deps dev-deps debug-files arch pkgconfig la perms \ + useless-rpaths rpaths staticdev ldflags pkgvarcheck already-stripped \ + compile-host-path dep-cmp installed-vs-shipped install-host-path \ + packages-list perm-config perm-line perm-link pkgv-undefined \ + pn-overrides split-strip var-undefined version-going-backwards" diff --git a/meta-yocto/conf/layer.conf b/meta-yocto/conf/layer.conf new file mode 100644 index 0000000000..9942b518ee --- /dev/null +++ b/meta-yocto/conf/layer.conf @@ -0,0 +1,16 @@ +# We have a conf and classes directory, add to BBPATH +BBPATH =. "${LAYERDIR}:" + +# We have recipes-* directories, add to BBFILES +BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ + ${LAYERDIR}/recipes-*/*/*.bbappend" + +BBFILE_COLLECTIONS += "yocto" +BBFILE_PATTERN_yocto = "^${LAYERDIR}/" +BBFILE_PRIORITY_yocto = "5" + +# This should only be incremented on significant changes that will +# cause compatibility issues with other layers +LAYERVERSION_yocto = "2" + +LAYERDEPENDS_yocto = "core" diff --git a/meta-yocto/conf/local.conf.sample b/meta-yocto/conf/local.conf.sample new file mode 100644 index 0000000000..93c85c222e --- /dev/null +++ b/meta-yocto/conf/local.conf.sample @@ -0,0 +1,231 @@ +# +# This file is your local configuration file and is where all local user settings +# are placed. The comments in this file give some guide to the options a new user +# to the system might want to change but pretty much any configuration option can +# be set in this file. More adventurous users can look at local.conf.extended +# which contains other examples of configuration which can be placed in this file +# but new users likely won't need any of them initially. +# +# Lines starting with the '#' character are commented out and in some cases the +# default values are provided as comments to show people example syntax. Enabling +# the option is a question of removing the # character and making any change to the +# variable as required. + +# +# Machine Selection +# +# You need to select a specific machine to target the build with. There are a selection +# of emulated machines available which can boot and run in the QEMU emulator: +# +#MACHINE ?= "qemuarm" +#MACHINE ?= "qemumips" +#MACHINE ?= "qemuppc" +#MACHINE ?= "qemux86" +#MACHINE ?= "qemux86-64" +# +# There are also the following hardware board target machines included for +# demonstration purposes: +# +#MACHINE ?= "beaglebone" +#MACHINE ?= "genericx86" +#MACHINE ?= "genericx86-64" +#MACHINE ?= "mpc8315e-rdb" +#MACHINE ?= "edgerouter" +# +# This sets the default machine to be qemux86 if no other machine is selected: +MACHINE ??= "qemux86" + +# +# Where to place downloads +# +# During a first build the system will download many different source code tarballs +# from various upstream projects. This can take a while, particularly if your network +# connection is slow. These are all stored in DL_DIR. When wiping and rebuilding you +# can preserve this directory to speed up this part of subsequent builds. This directory +# is safe to share between multiple builds on the same machine too. +# +# The default is a downloads directory under TOPDIR which is the build directory. +# +#DL_DIR ?= "${TOPDIR}/downloads" + +# +# Where to place shared-state files +# +# BitBake has the capability to accelerate builds based on previously built output. +# This is done using "shared state" files which can be thought of as cache objects +# and this option determines where those files are placed. +# +# You can wipe out TMPDIR leaving this directory intact and the build would regenerate +# from these files if no changes were made to the configuration. If changes were made +# to the configuration, only shared state files where the state was still valid would +# be used (done using checksums). +# +# The default is a sstate-cache directory under TOPDIR. +# +#SSTATE_DIR ?= "${TOPDIR}/sstate-cache" + +# +# Where to place the build output +# +# This option specifies where the bulk of the building work should be done and +# where BitBake should place its temporary files and output. Keep in mind that +# this includes the extraction and compilation of many applications and the toolchain +# which can use Gigabytes of hard disk space. +# +# The default is a tmp directory under TOPDIR. +# +#TMPDIR = "${TOPDIR}/tmp" + +# +# Default policy config +# +# The distribution setting controls which policy settings are used as defaults. +# The default value is fine for general Yocto project use, at least initially. +# Ultimately when creating custom policy, people will likely end up subclassing +# these defaults. +# +DISTRO ?= "poky" +# As an example of a subclass there is a "bleeding" edge policy configuration +# where many versions are set to the absolute latest code from the upstream +# source control systems. This is just mentioned here as an example, its not +# useful to most new users. +# DISTRO ?= "poky-bleeding" + +# +# Package Management configuration +# +# This variable lists which packaging formats to enable. Multiple package backends +# can be enabled at once and the first item listed in the variable will be used +# to generate the root filesystems. +# Options are: +# - 'package_deb' for debian style deb files +# - 'package_ipk' for ipk files are used by opkg (a debian style embedded package manager) +# - 'package_rpm' for rpm style packages +# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk" +# We default to rpm: +PACKAGE_CLASSES ?= "package_rpm" + +# +# SDK/ADT target architecture +# +# This variable specifies the architecture to build SDK/ADT items for and means +# you can build the SDK packages for architectures other than the machine you are +# running the build on (i.e. building i686 packages on an x86_64 host). +# Supported values are i686 and x86_64 +#SDKMACHINE ?= "i686" + +# +# Extra image configuration defaults +# +# The EXTRA_IMAGE_FEATURES variable allows extra packages to be added to the generated +# images. Some of these options are added to certain image types automatically. The +# variable can contain the following options: +# "dbg-pkgs" - add -dbg packages for all installed packages +# (adds symbol information for debugging/profiling) +# "dev-pkgs" - add -dev packages for all installed packages +# (useful if you want to develop against libs in the image) +# "ptest-pkgs" - add -ptest packages for all ptest-enabled packages +# (useful if you want to run the package test suites) +# "tools-sdk" - add development tools (gcc, make, pkgconfig etc.) +# "tools-debug" - add debugging tools (gdb, strace) +# "eclipse-debug" - add Eclipse remote debugging support +# "tools-profile" - add profiling tools (oprofile, exmap, lttng, valgrind) +# "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.) +# "debug-tweaks" - make an image suitable for development +# e.g. ssh root access has a blank password +# There are other application targets that can be used here too, see +# meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details. +# We default to enabling the debugging tweaks. +EXTRA_IMAGE_FEATURES = "debug-tweaks" + +# +# Additional image features +# +# The following is a list of additional classes to use when building images which +# enable extra features. Some available options which can be included in this variable +# are: +# - 'buildstats' collect build statistics +# - 'image-mklibs' to reduce shared library files size for an image +# - 'image-prelink' in order to prelink the filesystem image +# - 'image-swab' to perform host system intrusion detection +# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink +# NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended +USER_CLASSES ?= "buildstats image-mklibs image-prelink" + +# +# Runtime testing of images +# +# The build system can test booting virtual machine images under qemu (an emulator) +# after any root filesystems are created and run tests against those images. To +# enable this uncomment this line. See classes/testimage(-auto).bbclass for +# further details. +#TEST_IMAGE = "1" +# +# Interactive shell configuration +# +# Under certain circumstances the system may need input from you and to do this it +# can launch an interactive shell. It needs to do this since the build is +# multithreaded and needs to be able to handle the case where more than one parallel +# process may require the user's attention. The default is iterate over the available +# terminal types to find one that works. +# +# Examples of the occasions this may happen are when resolving patches which cannot +# be applied, to use the devshell or the kernel menuconfig +# +# Supported values are auto, gnome, xfce, rxvt, screen, konsole (KDE 3.x only), none +# Note: currently, Konsole support only works for KDE 3.x due to the way +# newer Konsole versions behave +#OE_TERMINAL = "auto" +# By default disable interactive patch resolution (tasks will just fail instead): +PATCHRESOLVE = "noop" + +# +# Disk Space Monitoring during the build +# +# Monitor the disk space during the build. If there is less that 1GB of space or less +# than 100K inodes in any key build location (TMPDIR, DL_DIR, SSTATE_DIR), gracefully +# shutdown the build. If there is less that 100MB or 1K inodes, perform a hard abort +# of the build. The reason for this is that running completely out of space can corrupt +# files and damages the build in ways which may not be easily recoverable. +BB_DISKMON_DIRS = "\ + STOPTASKS,${TMPDIR},1G,100K \ + STOPTASKS,${DL_DIR},1G,100K \ + STOPTASKS,${SSTATE_DIR},1G,100K \ + ABORT,${TMPDIR},100M,1K \ + ABORT,${DL_DIR},100M,1K \ + ABORT,${SSTATE_DIR},100M,1K" + +# +# Shared-state files from other locations +# +# As mentioned above, shared state files are prebuilt cache data objects which can +# used to accelerate build time. This variable can be used to configure the system +# to search other mirror locations for these objects before it builds the data itself. +# +# This can be a filesystem directory, or a remote url such as http or ftp. These +# would contain the sstate-cache results from previous builds (possibly from other +# machines). This variable works like fetcher MIRRORS/PREMIRRORS and points to the +# cache locations to check for the shared objects. +# NOTE: if the mirror uses the same structure as SSTATE_DIR, you need to add PATH +# at the end as shown in the examples below. This will be substituted with the +# correct path within the directory structure. +#SSTATE_MIRRORS ?= "\ +#file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \ +#file://.* file:///some/local/dir/sstate/PATH" + + +# +# Qemu configuration +# +# By default qemu will build with a builtin VNC server where graphical output can be +# seen. The two lines below enable the SDL backend too. This assumes there is a +# libsdl library available on your build system. +PACKAGECONFIG_append_pn-qemu-native = " sdl" +PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl" +ASSUME_PROVIDED += "libsdl-native" + + +# CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to +# track the version of this file when it was generated. This can safely be ignored if +# this doesn't mean anything to you. +CONF_VERSION = "1" diff --git a/meta-yocto/conf/local.conf.sample.extended b/meta-yocto/conf/local.conf.sample.extended new file mode 100644 index 0000000000..1995732619 --- /dev/null +++ b/meta-yocto/conf/local.conf.sample.extended @@ -0,0 +1,374 @@ +# BBMASK is a regular expression that can be used to tell BitBake to ignore +# certain recipes. +#BBMASK = "" + +# +# Parallelism Options +# +# These two options control how much parallelism BitBake should use. The first +# option determines how many tasks bitbake should run in parallel: +# +#BB_NUMBER_THREADS ?= "4" +# +# Default to setting automatically based on cpu count +#BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}" +# +# The second option controls how many processes make should run in parallel when +# running compile tasks: +# +#PARALLEL_MAKE ?= "-j 4" +# +# Default to setting automatically based on cpu count +#PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}" +# +# For a quad-core machine, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would +# be appropriate for example. + + +# glibc configurability is used to reduce minimal image's size. +# the all supported glibc options are listed in DISTRO_FEATURES_LIBC +# and disabled by default. Uncomment and copy the DISTRO_FEATURES_LIBC +# and DISTRO_FEATURES definitions to local.conf to enable the options. +#DISTRO_FEATURES_LIBC = "ipv6 libc-backtrace libc-big-macros libc-bsd libc-cxx-tests libc-catgets libc-charsets libc-crypt \ +# libc-crypt-ufc libc-db-aliases libc-envz libc-fcvt libc-fmtmsg libc-fstab libc-ftraverse \ +# libc-getlogin libc-idn libc-inet libc-inet-anl libc-libm libc-locales libc-locale-code \ +# libc-memusage libc-nis libc-nsswitch libc-rcmd libc-rtld-debug libc-spawn libc-streams libc-sunrpc \ +# libc-utmp libc-utmpx libc-wordexp libc-posix-clang-wchar libc-posix-regexp libc-posix-regexp-glibc \ +# libc-posix-wchar-io" + +#DISTRO_FEATURES = "alsa bluetooth ext2 irda pcmcia usbgadget usbhost wifi nfs zeroconf pci ${DISTRO_FEATURES_LIBC}" + +# If you want to get an image based on directfb without x11, Please copy this variable to build/conf/local.conf +#DISTRO_FEATURES = "alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g directfb ${DISTRO_FEATURES_LIBC}" + +# ENABLE_BINARY_LOCALE_GENERATION controls the generation of binary locale +# packages at build time using qemu-native. Disabling it (by setting it to 0) +# will save some build time at the expense of breaking i18n on devices with +# less than 128MB RAM. +#ENABLE_BINARY_LOCALE_GENERATION = "1" + +# Set GLIBC_GENERATE_LOCALES to the locales you wish to generate should you not +# wish to perform the time-consuming step of generating all LIBC locales. +# NOTE: If removing en_US.UTF-8 you will also need to uncomment, and set +# appropriate value for IMAGE_LINGUAS. +# WARNING: this may break localisation! +#GLIBC_GENERATE_LOCALES = "en_GB.UTF-8 en_US.UTF-8" +#IMAGE_LINGUAS ?= "en-gb" + +# The following are used to control options related to debugging. +# +# Uncomment this to change the optimization to make debugging easer, at the +# possible cost of performance. +# DEBUG_BUILD = "1" +# +# Uncomment this to disable the stripping of the installed binaries +# INHIBIT_PACKAGE_STRIP = "1" +# +# Uncomment this to disable the split of the debug information into -dbg files +# INHIBIT_PACKAGE_DEBUG_SPLIT = "1" +# +# When splitting debug information, the following controls the results of the +# file splitting. +# +# .debug (default): +# When splitting the debug information will be placed into +# a .debug directory in the same dirname of the binary produced: +# /bin/foo -> /bin/.debug/foo +# +# debug-file-directory: +# When splitting the debug information will be placed into +# a central debug-file-directory, /usr/lib/debug: +# /bin/foo -> /usr/lib/debug/bin/foo.debug +# +# Any source code referenced in the debug symbols will be copied +# and made available within the /usr/src/debug directory +# +#PACKAGE_DEBUG_SPLIT_STYLE = '.debug' +# PACKAGE_DEBUG_SPLIT_STYLE = 'debug-file-directory' + +# Uncomment these to build a package such that you can use gprof to profile it. +# NOTE: This will only work with 'linux' targets, not +# 'linux-uclibc', as uClibc doesn't provide the necessary +# object files. Also, don't build glibc itself with these +# flags, or it'll fail to build. +# +# PROFILE_OPTIMIZATION = "-pg" +# SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}" +# LDFLAGS =+ "-pg" + +# TCMODE controls the characteristics of the generated packages/images by +# telling poky which toolchain 'profile' to use. +# +# The default is "default" which uses the internal toolchain. With +# additional layers, it is possible to set this to use a precompiled +# external toolchain. One example is the Sourcery G++ Toolchain, support +# for which is now in the separate meta-sourcery layer: +# +# http://github.com/MentorEmbedded/meta-sourcery/ +# +# meta-sourcery can be used as a template for adding support for other +# external toolchains. See the link above for further details. +# +# TCMODE points the system to a file in conf/distro/include/tcmode-${TCMODE}.inc, +# so for meta-sourcery which has conf/distro/include/tcmode-external-sourcery.inc +# you would set it as follows: +# +# TCMODE ?= "external-sourcery" + +# mklibs library size optimization is more useful to smaller images, +# and less useful for bigger images. Also mklibs library optimization +# can break the ABI compatibility, so should not be applied to the +# images which are to be extended or upgraded later. +#This enabled mklibs library size optimization just for the specified image. +#MKLIBS_OPTIMIZED_IMAGES ?= "core-image-minimal" +#This enable mklibs library size optimization will be for all the images. +#MKLIBS_OPTIMIZED_IMAGES ?= "all" + +# Uncomment this if your host distribution provides the help2man tool. +#ASSUME_PROVIDED += "help2man-native" + +# This value is currently used by pseudo to determine if the recipe should +# build both the 32-bit and 64-bit wrapper libraries on a 64-bit build system. +# +# Pseudo will attempt to determine if a 32-bit wrapper is necessary, but +# it doesn't always guess properly. If you have 32-bit executables on +# your 64-bit build system, you likely want to set this to "0", +# otherwise you could end up with incorrect file attributes on the +# target filesystem. +# +# Default is to not build 32 bit libs on 64 bit systems, uncomment this +# if you need the 32 bits libs +#NO32LIBS = "0" + +# Uncomment the following lines to enable multilib builds +#require conf/multilib.conf +#MULTILIBS = "multilib:lib32" +#DEFAULTTUNE_virtclass-multilib-lib32 = "x86" + +# Set RPM_PREFER_COLOR to configure preferred ABI when using rpm packaging +# backend to generate a rootfs, choices are: +# 1: ELF32 wins +# 2: ELF64 wins +# 3: ELF64 N32 wins (for mips64 or mips64el only) +#RPM_PREFER_COLOR ?= "2" + +# The network based PR service host and port +# Uncomment the following lines to enable PRservice. +# Set PRSERV_HOST to 'localhost:0' to automatically +# start local PRService. +# Set to other values to use remote PRService. +#PRSERV_HOST = "localhost:0" + +# Additional image generation features +# +# The following is a list of classes to import to use in the generation of images +# currently an example class is image_types_uboot +# IMAGE_CLASSES = " image_types_uboot" + +# Incremental rpm image generation, the rootfs would be totally removed +# and re-created in the second generation by default, but with +# INC_RPM_IMAGE_GEN = "1", the rpm based rootfs would be kept, and will +# do update(remove/add some pkgs) on it. NOTE: This is not suggested +# when you want to create a productive rootfs +#INC_RPM_IMAGE_GEN = "1" + +# This is a list of packages that require a commercial license to ship +# product. If shipped as part of an image these packages may have +# implications so they are disabled by default. To enable them, +# un-comment the below as appropriate. +#LICENSE_FLAGS_WHITELIST = "commercial_gst-fluendo-mp3 \ +# commercial_gst-openmax \ +# commercial_gst-plugins-ugly \ +# commercial_lame \ +# commercial_libmad \ +# commercial_libomxil \ +# commercial_mpeg2dec \ +# commercial_qmmp" + + +# +# Disk space monitor, take action when the disk space or the amount of +# inode is running low, it is enabled when BB_DISKMON_DIRS is set. +# +# Set the directory for the monitor, the format is: +# "action,directory,minimum_space,minimum_free_inode" +# +# The "action" must be set and should be one of: +# ABORT: Immediately abort +# STOPTASKS: The new tasks can't be executed any more, will stop the build +# when the running tasks have been done. +# WARN: show warnings (see BB_DISKMON_WARNINTERVAL for more information) +# +# The "directory" must be set, any directory is OK. +# +# Either "minimum_space" or "minimum_free_inode" (or both of them) +# should be set, otherwise the monitor would not be enabled, +# the unit can be G, M, K or none, but do NOT use GB, MB or KB +# (B is not needed). +#BB_DISKMON_DIRS = "STOPTASKS,${TMPDIR},1G,100K WARN,${SSTATE_DIR},1G,100K" +# +# Set disk space and inode interval (only works when the action is "WARN", +# the unit can be G, M, or K, but do NOT use the GB, MB or KB +# (B is not needed), the format is: +# "disk_space_interval,disk_inode_interval", the default value is +# "50M,5K" which means that it would warn when the free space is +# lower than the minimum space(or inode), and would repeat the warning +# when the disk space reduces 50M (or the amount of inode reduces 5k). +#BB_DISKMON_WARNINTERVAL = "50M,5K" + +# Archive the source and put them to ${DEPLOY_DIR}/sources/. +# +#INHERIT += "archiver" +# +# The tarball for the patched source will be created by default, and you +# can configure the archiver as follow: +# +# Create archive for: +# 1) original (or unpacked) source: +#ARCHIVER_MODE[src] = "original" +# 2) patched source: (default) +#ARCHIVER_MODE[src] = "patched" +# 3) configured source: +#ARCHIVER_MODE[src] = "configured" +# +# 4) the patches between do_unpack and do_patch: +#ARCHIVER_MODE[diff] = "1" +# set the files that you'd like to exclude from the diff: +#ARCHIVER_MODE[diff-exclude] ?= ".pc autom4te.cache patches" +# +# 5) the environment data, similar to 'bitbake -e recipe': +#ARCHIVER_MODE[dumpdata] = "1" +# +# 6) the recipe (.bb and .inc): +#ARCHIVER_MODE[recipe] = "1" +# +# 7) Whether output the .src.rpm package: +#ARCHIVER_MODE[srpm] = "1" +# +# 8) Filter the license, the recipe whose license in +# COPYLEFT_LICENSE_INCLUDE will be included, and in +# COPYLEFT_LICENSE_EXCLUDE will be excluded. +#COPYLEFT_LICENSE_INCLUDE = 'GPL* LGPL*' +#COPYLEFT_LICENSE_EXCLUDE = 'CLOSED Proprietary' +# +# 9) Config the recipe type that will be archived, the type can be +# target, native, nativesdk, cross, crosssdk and cross-canadian, +# you can set one or more types. Archive all types by default. +#COPYLEFT_RECIPE_TYPES = 'target' +# + +# Remove the old image before the new one generated to save disk space +#RM_OLD_IMAGE = "1" + +# +# GCC/LD FLAGS to enable more secure code generation +# +# By including the security_flags include file you enable flags +# to the compiler and linker that cause them to generate more secure +# code, this is enabled by default in the poky-lsb distro. +# This does affect compile speed slightly. +# +# Use the following line to enable the security compiler and linker flags to your build +#require conf/distro/include/security_flags.inc + +# Image level user/group configuration. +# Inherit extrausers to make the setting of EXTRA_USERS_PARAMS effective. +#INHERIT += "extrausers" +# User / group settings +# The settings are sperated by the ; character. +# Each setting is actually a command. The supported commands are useradd, +# groupadd, userdel, groupdel, usermod and groupmod. +#EXTRA_USERS_PARAMS = "\ +#useradd -p '' tester; \ +#groupadd developers; \ +#userdel nobody; \ +#groupdel video; \ +#groupmod -g 1020 developers; \ +#usermod -s /bin/sh tester; \ +#" + +# Various packages dynamically add users and groups to the system at package +# install time. For programs that do not care what the uid/gid is of the +# resulting users/groups, the order of the install will determine the final +# uid/gid. This can lead to non-deterministic uid/gid values from one build +# to another. Use the following settings to specify that all user/group adds +# should be created based on a static passwd/group file. +# +# Note, if you enable or disable the useradd-staticids in a configured system, +# the TMPDIR may contain incorrect uid/gid values. Clearing the TMPDIR +# will correct this condition. +# +# By default the system looks in the BBPATH for files/passwd and files/group +# the default can be overriden by spefying USERADD_UID/GID_TABLES. +# +#USERADDEXTENSION = "useradd-staticids" +#USERADD_UID_TABLES = "files/passwd" +#USERADD_GID_TABLES = "files/group" +# +# In order to prevent generating a system where a dynamicly assigned uid/gid +# can exist, you should enable the following setting. This will force the +# system to error out if the user/group name is not defined in the +# files/passwd or files/group (or specified replacements.) +#USERADD_ERROR_DYNAMIC = "1" + +# Enabling FORTRAN +# Note this is not officially supported and is just illustrated here to +# show an example of how it can be done +# You'll also need your fortran recipe to depend on libgfortran +#FORTRAN_forcevariable = ",fortran" +#RUNTIMETARGET_append_pn-gcc-runtime = " libquadmath" + +# +# Kernel image features +# +# The INITRAMFS_IMAGE image variable will cause an additional recipe to +# be built as a dependency to the what ever rootfs recipe you might be +# using such as core-image-sato. The initramfs might be needed for +# the initial boot of of the target system such as to load kernel +# modules prior to mounting the root file system. +# +# INITRAMFS_IMAGE_BUNDLE variable controls if the image recipe +# specified by the INITRAMFS_IMAGE will be run through an extra pass +# through the kernel compilation in order to build a single binary +# which contains both the kernel image and the initramfs. The +# combined binary will be deposited into the tmp/deploy directory. +# NOTE: You can set INITRAMFS_IMAGE in an image recipe, but +# INITRAMFS_IMAGE_BUNDLE can only be set in a conf file. +# +#INITRAMFS_IMAGE = "core-image-minimal-initramfs" +#INITRAMFS_IMAGE_BUNDLE = "1" + +# +# IPK Hierarchical feed +# +# In some cases it may be desirable not to have all package files in the same +# directory. An example would be when package feeds are to be uploaded to a +# shared webhosting service or transferred to a Windows machine which may have +# problems with directories containing multiple thousands of files. +# +# If the IPK_HIERARCHICAL_FEED variable is set to "1", packages will be split +# between subdirectories in a similar way to how Debian package feeds are +# organised. In the hierarchical feed, package files are written to +# ///, where pkg_prefix is the first +# letter of the package file name for non-lib packages or "lib" plus the 4th +# letter of the package file name for lib packages (eg, 'l' for less, 'libc' for +# libc6). pkg_subdir is the root of the package file name, discarding the +# version and architecture parts and the common suffixes '-dbg', '-dev', '-doc', +# '-staticdev', '-locale' and '-locale-*' which are listed in +# meta/conf/bitbake.conf. +# +# If IPK_HIERARCHICAL_FEED is unset or set to any other value, the traditional +# feed layout is used where package files are placed in //. +# +#IPK_HIERARCHICAL_FEED = "1" +# + +# Using RPM4 +# +# Currently the rootfs_rpm code has a hard depends on rpmresolve:do_populate_sysroot, +# when using rpm4 the rpmresolve code will not compile due to a missing header file. +# That dependency needs to be removed when using RPM4, also the PREFRRED_VERSION needs +# to be set. This example shows how to enable rpm4 +# PREFERRED_VERSION_rpm = "4.11.2" +# PREFERRED_VERSION_rpm-native = "4.11.2" +# RPMROOTFSDEPENDS_remove = "rpmresolve-native:do_populate_sysroot" diff --git a/meta-yocto/conf/site.conf.sample b/meta-yocto/conf/site.conf.sample new file mode 100644 index 0000000000..c551e8fb0c --- /dev/null +++ b/meta-yocto/conf/site.conf.sample @@ -0,0 +1,31 @@ +# +# local.conf covers user settings, site.conf covers site specific information +# such as proxy server addresses and optionally any shared download location +# +# SITE_CONF_VERSION is increased each time build/conf/site.conf +# changes incompatibly +SCONF_VERSION = "1" + +# Uncomment to cause CVS to use the proxy host specified +#CVS_PROXY_HOST = "proxy.example.com" +#CVS_PROXY_PORT = "81" + +# For svn, you need to create ~/.subversion/servers containing: +#[global] +#http-proxy-host = proxy.example.com +#http-proxy-port = 81 +# + +# To use git with a proxy, you must use an external git proxy command, such as +# the one provided by scripts/oe-git-proxy.sh. To use this script, copy it to +# your PATH and uncomment the following: +#GIT_PROXY_COMMAND ?= "oe-git-proxy" +#ALL_PROXY ?= "socks://socks.example.com:1080" +#or +#ALL_PROXY ?= "https://proxy.example.com:8080" +# If you wish to use certain hosts without the proxy, specify them in NO_PROXY. +# See the script for details on syntax. + +# Uncomment this to use a shared download directory +#DL_DIR = "/some/shared/download/directory/" + diff --git a/meta-yocto/recipes-core/busybox/busybox/poky-tiny/defconfig b/meta-yocto/recipes-core/busybox/busybox/poky-tiny/defconfig new file mode 100644 index 0000000000..0a5d5c918d --- /dev/null +++ b/meta-yocto/recipes-core/busybox/busybox/poky-tiny/defconfig @@ -0,0 +1,1009 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.19.3 +# Wed Nov 30 09:33:16 2011 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +# CONFIG_DESKTOP is not set +# CONFIG_EXTRA_COMPAT is not set +# CONFIG_INCLUDE_SUSv2 is not set +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_PLATFORM_LINUX=y +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_SHOW_USAGE=y +# CONFIG_FEATURE_VERBOSE_USAGE is not set +CONFIG_FEATURE_COMPRESS_USAGE=y +# CONFIG_FEATURE_INSTALLER is not set +# CONFIG_INSTALL_NO_USR is not set +CONFIG_LOCALE_SUPPORT=y +# CONFIG_UNICODE_SUPPORT is not set +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=0 +CONFIG_LAST_SUPPORTED_WCHAR=0 +# CONFIG_UNICODE_COMBINING_WCHARS is not set +# CONFIG_UNICODE_WIDE_WCHARS is not set +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +# CONFIG_UNICODE_PRESERVE_BROKEN is not set +CONFIG_LONG_OPTS=y +CONFIG_FEATURE_DEVPTS=y +# CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_FEATURE_UTMP=y +# CONFIG_FEATURE_WTMP is not set +CONFIG_FEATURE_PIDFILE=y +CONFIG_FEATURE_SUID=y +CONFIG_FEATURE_SUID_CONFIG=y +CONFIG_FEATURE_SUID_CONFIG_QUIET=y +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y +CONFIG_FEATURE_HAVE_RPC=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +CONFIG_LFS=y +CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_WERROR is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options ("make install" behavior) +# +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_FEATURE_SYSTEMD=y +CONFIG_FEATURE_RTMINMAX=y +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SIZE_VS_SPEED=2 +CONFIG_FEATURE_FAST_TOP=y +# CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_FEATURE_USE_TERMIOS=y +CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 +# CONFIG_FEATURE_EDITING_VI is not set +CONFIG_FEATURE_EDITING_HISTORY=15 +CONFIG_FEATURE_EDITING_SAVEHISTORY=y +# CONFIG_FEATURE_REVERSE_SEARCH is not set +CONFIG_FEATURE_TAB_COMPLETION=y +CONFIG_FEATURE_USERNAME_COMPLETION=y +CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_FEATURE_COPYBUF_KB=4 +CONFIG_FEATURE_SKIP_ROOTFS=y +CONFIG_MONOTONIC_SYSCALL=y +CONFIG_IOCTL_HEX2STR_ERROR=y +CONFIG_FEATURE_HWIB=y + +# +# Applets +# + +# +# Archival Utilities +# +# CONFIG_FEATURE_SEAMLESS_XZ is not set +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +CONFIG_AR=y +# CONFIG_FEATURE_AR_LONG_FILENAMES is not set +# CONFIG_FEATURE_AR_CREATE is not set +CONFIG_BUNZIP2=y +# CONFIG_BZIP2 is not set +CONFIG_CPIO=y +# CONFIG_FEATURE_CPIO_O is not set +# CONFIG_FEATURE_CPIO_P is not set +# CONFIG_DPKG is not set +# CONFIG_DPKG_DEB is not set +# CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY is not set +CONFIG_GUNZIP=y +CONFIG_GZIP=y +# CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set +# CONFIG_LZOP is not set +# CONFIG_LZOP_COMPR_HIGH is not set +# CONFIG_RPM2CPIO is not set +# CONFIG_RPM is not set +CONFIG_TAR=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +# CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +# CONFIG_FEATURE_TAR_LONG_OPTIONS is not set +# CONFIG_FEATURE_TAR_TO_COMMAND is not set +# CONFIG_FEATURE_TAR_UNAME_GNAME is not set +# CONFIG_FEATURE_TAR_NOPRESERVE_TIME is not set +# CONFIG_FEATURE_TAR_SELINUX is not set +# CONFIG_UNCOMPRESS is not set +# CONFIG_UNLZMA is not set +# CONFIG_FEATURE_LZMA_FAST is not set +# CONFIG_LZMA is not set +# CONFIG_UNXZ is not set +# CONFIG_XZ is not set +CONFIG_UNZIP=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAT=y +CONFIG_DATE=y +# CONFIG_FEATURE_DATE_ISOFMT is not set +# CONFIG_FEATURE_DATE_NANO is not set +CONFIG_FEATURE_DATE_COMPAT=y +CONFIG_ID=y +CONFIG_GROUPS=y +CONFIG_TEST=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TOUCH=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +# CONFIG_FEATURE_TR_EQUIV is not set +# CONFIG_BASE64 is not set +CONFIG_WHO=y +CONFIG_USERS=y +# CONFIG_CAL is not set +# CONFIG_CATV is not set +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +# CONFIG_FEATURE_CHOWN_LONG_OPTIONS is not set +CONFIG_CHROOT=y +# CONFIG_CKSUM is not set +# CONFIG_COMM is not set +CONFIG_CP=y +# CONFIG_FEATURE_CP_LONG_OPTIONS is not set +CONFIG_CUT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +# CONFIG_FEATURE_DD_THIRD_STATUS_LINE is not set +# CONFIG_FEATURE_DD_IBS_OBS is not set +CONFIG_DF=y +# CONFIG_FEATURE_DF_FANCY is not set +CONFIG_DIRNAME=y +# CONFIG_DOS2UNIX is not set +# CONFIG_UNIX2DOS is not set +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +CONFIG_FEATURE_ENV_LONG_OPTIONS=y +# CONFIG_EXPAND is not set +# CONFIG_FEATURE_EXPAND_LONG_OPTIONS is not set +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FALSE=y +# CONFIG_FOLD is not set +# CONFIG_FSYNC is not set +CONFIG_HEAD=y +# CONFIG_FEATURE_FANCY_HEAD is not set +# CONFIG_HOSTID is not set +# CONFIG_INSTALL is not set +# CONFIG_FEATURE_INSTALL_LONG_OPTIONS is not set +CONFIG_LN=y +CONFIG_LOGNAME=y +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +CONFIG_FEATURE_LS_COLOR=y +# CONFIG_FEATURE_LS_COLOR_IS_DEFAULT is not set +CONFIG_MD5SUM=y +CONFIG_MKDIR=y +CONFIG_FEATURE_MKDIR_LONG_OPTIONS=y +CONFIG_MKFIFO=y +CONFIG_MKNOD=y +CONFIG_MV=y +# CONFIG_FEATURE_MV_LONG_OPTIONS is not set +# CONFIG_NICE is not set +CONFIG_NOHUP=y +CONFIG_OD=y +# CONFIG_PRINTENV is not set +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +# CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_SEQ=y +# CONFIG_SHA1SUM is not set +# CONFIG_SHA256SUM is not set +# CONFIG_SHA512SUM is not set +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +# CONFIG_FEATURE_FLOAT_SLEEP is not set +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +# CONFIG_SPLIT is not set +# CONFIG_FEATURE_SPLIT_FANCY is not set +# CONFIG_STAT is not set +# CONFIG_FEATURE_STAT_FORMAT is not set +CONFIG_STTY=y +# CONFIG_SUM is not set +CONFIG_SYNC=y +# CONFIG_TAC is not set +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +# CONFIG_FEATURE_TEE_USE_BLOCK_IO is not set +CONFIG_TRUE=y +CONFIG_TTY=y +CONFIG_UNAME=y +# CONFIG_UNEXPAND is not set +# CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS is not set +CONFIG_UNIQ=y +CONFIG_USLEEP=y +# CONFIG_UUDECODE is not set +# CONFIG_UUENCODE is not set +CONFIG_WC=y +# CONFIG_FEATURE_WC_LARGE is not set +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options for cp and mv +# +# CONFIG_FEATURE_PRESERVE_HARDLINKS is not set + +# +# Common options for ls, more and telnet +# +CONFIG_FEATURE_AUTOWIDTH=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +CONFIG_CHVT=y +# CONFIG_FGCONSOLE is not set +CONFIG_CLEAR=y +CONFIG_DEALLOCVT=y +CONFIG_DUMPKMAP=y +# CONFIG_KBD_MODE is not set +CONFIG_LOADFONT=y +CONFIG_LOADKMAP=y +CONFIG_OPENVT=y +CONFIG_RESET=y +# CONFIG_RESIZE is not set +# CONFIG_FEATURE_RESIZE_PRINT is not set +CONFIG_SETCONSOLE=y +# CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set +# CONFIG_SETFONT is not set +# CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set +CONFIG_DEFAULT_SETFONT_DIR="" +# CONFIG_SETKEYCODES is not set +# CONFIG_SETLOGCONS is not set +# CONFIG_SHOWKEY is not set + +# +# Common options for loadfont and setfont +# +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set + +# +# Debian Utilities +# +CONFIG_MKTEMP=y +# CONFIG_PIPE_PROGRESS is not set +CONFIG_RUN_PARTS=y +CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y +# CONFIG_FEATURE_RUN_PARTS_FANCY is not set +CONFIG_START_STOP_DAEMON=y +CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y +CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS=y +CONFIG_WHICH=y + +# +# Editors +# +CONFIG_PATCH=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=1024 +CONFIG_FEATURE_VI_8BIT=y +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +# CONFIG_FEATURE_VI_REGEX_SEARCH is not set +CONFIG_FEATURE_VI_USE_SIGNALS=y +# CONFIG_FEATURE_VI_DOT_CMD is not set +# CONFIG_FEATURE_VI_READONLY is not set +# CONFIG_FEATURE_VI_SETOPTS is not set +# CONFIG_FEATURE_VI_SET is not set +CONFIG_FEATURE_VI_WIN_RESIZE=y +# CONFIG_FEATURE_VI_ASK_TERMINAL is not set +CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y +CONFIG_AWK=y +# CONFIG_FEATURE_AWK_LIBM is not set +CONFIG_CMP=y +CONFIG_DIFF=y +# CONFIG_FEATURE_DIFF_LONG_OPTIONS is not set +CONFIG_FEATURE_DIFF_DIR=y +# CONFIG_ED is not set +CONFIG_SED=y +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +# CONFIG_FEATURE_FIND_INUM is not set +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +# CONFIG_FEATURE_FIND_DELETE is not set +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set +# CONFIG_FEATURE_FIND_LINKS is not set +CONFIG_GREP=y +CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +# CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION is not set +# CONFIG_FEATURE_XARGS_SUPPORT_QUOTES is not set +# CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT is not set +# CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM is not set + +# +# Init Utilities +# +# CONFIG_BOOTCHARTD is not set +# CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set +# CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE is not set +CONFIG_HALT=y +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +# CONFIG_INIT is not set +# CONFIG_FEATURE_USE_INITTAB is not set +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +# CONFIG_FEATURE_INIT_SCTTY is not set +# CONFIG_FEATURE_INIT_SYSLOG is not set +# CONFIG_FEATURE_EXTRA_QUIET is not set +# CONFIG_FEATURE_INIT_COREDUMPS is not set +# CONFIG_FEATURE_INITRD is not set +CONFIG_INIT_TERMINAL_TYPE="" +# CONFIG_MESG is not set +# CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP is not set + +# +# Login/Password Management Utilities +# +# CONFIG_ADD_SHELL is not set +# CONFIG_REMOVE_SHELL is not set +# CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_USE_BB_SHADOW is not set +CONFIG_USE_BB_CRYPT=y +# CONFIG_USE_BB_CRYPT_SHA is not set +# CONFIG_ADDUSER is not set +# CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set +# CONFIG_FEATURE_CHECK_NAMES is not set +CONFIG_FIRST_SYSTEM_ID=0 +CONFIG_LAST_SYSTEM_ID=0 +# CONFIG_ADDGROUP is not set +# CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set +# CONFIG_FEATURE_ADDUSER_TO_GROUP is not set +# CONFIG_DELUSER is not set +# CONFIG_DELGROUP is not set +# CONFIG_FEATURE_DEL_USER_FROM_GROUP is not set +# CONFIG_GETTY is not set +# CONFIG_LOGIN is not set +# CONFIG_PAM is not set +# CONFIG_LOGIN_SCRIPTS is not set +# CONFIG_FEATURE_NOLOGIN is not set +# CONFIG_FEATURE_SECURETTY is not set +# CONFIG_PASSWD is not set +# CONFIG_FEATURE_PASSWD_WEAK_CHECK is not set +# CONFIG_CRYPTPW is not set +# CONFIG_CHPASSWD is not set +# CONFIG_SU is not set +# CONFIG_FEATURE_SU_SYSLOG is not set +# CONFIG_FEATURE_SU_CHECKS_SHELLS is not set +# CONFIG_SULOGIN is not set +# CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +CONFIG_FSCK=y +# CONFIG_LSATTR is not set +# CONFIG_TUNE2FS is not set + +# +# Linux Module Utilities +# +# CONFIG_MODINFO is not set +# CONFIG_MODPROBE_SMALL is not set +# CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE is not set +# CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set +CONFIG_INSMOD=y +CONFIG_RMMOD=y +CONFIG_LSMOD=y +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +CONFIG_MODPROBE=y +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_TRY_MMAP is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +CONFIG_FEATURE_CHECK_TAINTED_MODULE=y +CONFIG_FEATURE_MODUTILS_ALIAS=y +CONFIG_FEATURE_MODUTILS_SYMBOLS=y +CONFIG_DEFAULT_MODULES_DIR="/lib/modules" +CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" + +# +# Linux System Utilities +# +# CONFIG_BLOCKDEV is not set +# CONFIG_REV is not set +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +# CONFIG_BLKID is not set +# CONFIG_FEATURE_BLKID_TYPE is not set +CONFIG_DMESG=y +CONFIG_FEATURE_DMESG_PRETTY=y +CONFIG_FBSET=y +CONFIG_FEATURE_FBSET_FANCY=y +CONFIG_FEATURE_FBSET_READMODE=y +# CONFIG_FDFLUSH is not set +# CONFIG_FDFORMAT is not set +CONFIG_FDISK=y +# CONFIG_FDISK_SUPPORT_LARGE_DISKS is not set +CONFIG_FEATURE_FDISK_WRITABLE=y +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +# CONFIG_FEATURE_GPT_LABEL is not set +# CONFIG_FEATURE_FDISK_ADVANCED is not set +# CONFIG_FINDFS is not set +CONFIG_FLOCK=y +# CONFIG_FREERAMDISK is not set +CONFIG_FSCK_MINIX=y +# CONFIG_MKFS_EXT2 is not set +CONFIG_MKFS_MINIX=y +CONFIG_FEATURE_MINIX2=y +# CONFIG_MKFS_REISER is not set +# CONFIG_MKFS_VFAT is not set +# CONFIG_GETOPT is not set +# CONFIG_FEATURE_GETOPT_LONG is not set +CONFIG_HEXDUMP=y +# CONFIG_FEATURE_HEXDUMP_REVERSE is not set +# CONFIG_HD is not set +CONFIG_HWCLOCK=y +CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS=y +CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS=y +# CONFIG_IPCRM is not set +# CONFIG_IPCS is not set +CONFIG_LOSETUP=y +# CONFIG_LSPCI is not set +# CONFIG_LSUSB is not set +# CONFIG_MDEV is not set +# CONFIG_FEATURE_MDEV_CONF is not set +# CONFIG_FEATURE_MDEV_RENAME is not set +# CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set +# CONFIG_FEATURE_MDEV_EXEC is not set +# CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set +CONFIG_MKSWAP=y +# CONFIG_FEATURE_MKSWAP_UUID is not set +CONFIG_MORE=y +CONFIG_MOUNT=y +# CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_FEATURE_MOUNT_LABEL is not set +CONFIG_FEATURE_MOUNT_NFS=y +# CONFIG_FEATURE_MOUNT_CIFS is not set +CONFIG_FEATURE_MOUNT_FLAGS=y +CONFIG_FEATURE_MOUNT_FSTAB=y +CONFIG_PIVOT_ROOT=y +CONFIG_RDATE=y +# CONFIG_RDEV is not set +# CONFIG_READPROFILE is not set +# CONFIG_RTCWAKE is not set +# CONFIG_SCRIPT is not set +# CONFIG_SCRIPTREPLAY is not set +# CONFIG_SETARCH is not set +CONFIG_SWAPONOFF=y +# CONFIG_FEATURE_SWAPON_PRI is not set +CONFIG_SWITCH_ROOT=y +CONFIG_UMOUNT=y +CONFIG_FEATURE_UMOUNT_ALL=y + +# +# Common options for mount/umount +# +CONFIG_FEATURE_MOUNT_LOOP=y +CONFIG_FEATURE_MOUNT_LOOP_CREATE=y +# CONFIG_FEATURE_MTAB_SUPPORT is not set +# CONFIG_VOLUMEID is not set +# CONFIG_FEATURE_VOLUMEID_EXT is not set +# CONFIG_FEATURE_VOLUMEID_BTRFS is not set +# CONFIG_FEATURE_VOLUMEID_REISERFS is not set +# CONFIG_FEATURE_VOLUMEID_FAT is not set +# CONFIG_FEATURE_VOLUMEID_HFS is not set +# CONFIG_FEATURE_VOLUMEID_JFS is not set +# CONFIG_FEATURE_VOLUMEID_XFS is not set +# CONFIG_FEATURE_VOLUMEID_NTFS is not set +# CONFIG_FEATURE_VOLUMEID_ISO9660 is not set +# CONFIG_FEATURE_VOLUMEID_UDF is not set +# CONFIG_FEATURE_VOLUMEID_LUKS is not set +# CONFIG_FEATURE_VOLUMEID_LINUXSWAP is not set +# CONFIG_FEATURE_VOLUMEID_CRAMFS is not set +# CONFIG_FEATURE_VOLUMEID_ROMFS is not set +# CONFIG_FEATURE_VOLUMEID_SYSV is not set +# CONFIG_FEATURE_VOLUMEID_OCFS2 is not set +# CONFIG_FEATURE_VOLUMEID_LINUXRAID is not set + +# +# Miscellaneous Utilities +# +# CONFIG_CONSPY is not set +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +# CONFIG_FEATURE_LESS_MARKS is not set +# CONFIG_FEATURE_LESS_REGEXP is not set +# CONFIG_FEATURE_LESS_WINCH is not set +# CONFIG_FEATURE_LESS_ASK_TERMINAL is not set +# CONFIG_FEATURE_LESS_DASHCMD is not set +# CONFIG_FEATURE_LESS_LINENUMS is not set +# CONFIG_NANDWRITE is not set +# CONFIG_NANDDUMP is not set +# CONFIG_SETSERIAL is not set +# CONFIG_UBIATTACH is not set +# CONFIG_UBIDETACH is not set +# CONFIG_UBIMKVOL is not set +# CONFIG_UBIRMVOL is not set +# CONFIG_UBIRSVOL is not set +# CONFIG_UBIUPDATEVOL is not set +# CONFIG_ADJTIMEX is not set +# CONFIG_BBCONFIG is not set +# CONFIG_FEATURE_COMPRESS_BBCONFIG is not set +# CONFIG_BEEP is not set +CONFIG_FEATURE_BEEP_FREQ=0 +CONFIG_FEATURE_BEEP_LENGTH_MS=0 +# CONFIG_CHAT is not set +# CONFIG_FEATURE_CHAT_NOFAIL is not set +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +# CONFIG_FEATURE_CHAT_IMPLICIT_CR is not set +# CONFIG_FEATURE_CHAT_SWALLOW_OPTS is not set +# CONFIG_FEATURE_CHAT_SEND_ESCAPES is not set +# CONFIG_FEATURE_CHAT_VAR_ABORT_LEN is not set +# CONFIG_FEATURE_CHAT_CLR_ABORT is not set +# CONFIG_CHRT is not set +# CONFIG_CROND is not set +# CONFIG_FEATURE_CROND_D is not set +# CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set +CONFIG_FEATURE_CROND_DIR="" +# CONFIG_CRONTAB is not set +CONFIG_DC=y +# CONFIG_FEATURE_DC_LIBM is not set +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +# CONFIG_DEVMEM is not set +# CONFIG_EJECT is not set +# CONFIG_FEATURE_EJECT_SCSI is not set +# CONFIG_FBSPLASH is not set +# CONFIG_FLASHCP is not set +# CONFIG_FLASH_LOCK is not set +# CONFIG_FLASH_UNLOCK is not set +# CONFIG_FLASH_ERASEALL is not set +# CONFIG_IONICE is not set +# CONFIG_INOTIFYD is not set +# CONFIG_LAST is not set +# CONFIG_FEATURE_LAST_SMALL is not set +# CONFIG_FEATURE_LAST_FANCY is not set +# CONFIG_HDPARM is not set +# CONFIG_FEATURE_HDPARM_GET_IDENTITY is not set +# CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set +# CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA is not set +# CONFIG_MAKEDEVS is not set +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +# CONFIG_FEATURE_MAKEDEVS_TABLE is not set +# CONFIG_MAN is not set +CONFIG_MICROCOM=y +# CONFIG_MOUNTPOINT is not set +# CONFIG_MT is not set +# CONFIG_RAIDAUTORUN is not set +# CONFIG_READAHEAD is not set +# CONFIG_RFKILL is not set +# CONFIG_RUNLEVEL is not set +# CONFIG_RX is not set +CONFIG_SETSID=y +CONFIG_STRINGS=y +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +CONFIG_TIME=y +# CONFIG_TIMEOUT is not set +# CONFIG_TTYSIZE is not set +# CONFIG_VOLNAME is not set +# CONFIG_WALL is not set +# CONFIG_WATCHDOG is not set + +# +# Networking Utilities +# +# CONFIG_NAMEIF is not set +# CONFIG_FEATURE_NAMEIF_EXTENDED is not set +# CONFIG_NBDCLIENT is not set +CONFIG_NC=y +# CONFIG_NC_SERVER is not set +# CONFIG_NC_EXTRA is not set +# CONFIG_NC_110_COMPAT is not set +CONFIG_PING=y +CONFIG_PING6=y +CONFIG_FEATURE_FANCY_PING=y +# CONFIG_WHOIS is not set +CONFIG_FEATURE_IPV6=y +# CONFIG_FEATURE_UNIX_LOCAL is not set +CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +# CONFIG_ARP is not set +# CONFIG_ARPING is not set +# CONFIG_BRCTL is not set +# CONFIG_FEATURE_BRCTL_FANCY is not set +# CONFIG_FEATURE_BRCTL_SHOW is not set +# CONFIG_DNSD is not set +# CONFIG_ETHER_WAKE is not set +# CONFIG_FAKEIDENTD is not set +# CONFIG_FTPD is not set +# CONFIG_FEATURE_FTP_WRITE is not set +# CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST is not set +# CONFIG_FTPGET is not set +# CONFIG_FTPPUT is not set +# CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set +CONFIG_HOSTNAME=y +# CONFIG_HTTPD is not set +# CONFIG_FEATURE_HTTPD_RANGES is not set +# CONFIG_FEATURE_HTTPD_USE_SENDFILE is not set +# CONFIG_FEATURE_HTTPD_SETUID is not set +# CONFIG_FEATURE_HTTPD_BASIC_AUTH is not set +# CONFIG_FEATURE_HTTPD_AUTH_MD5 is not set +# CONFIG_FEATURE_HTTPD_CGI is not set +# CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set +# CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set +# CONFIG_FEATURE_HTTPD_ENCODE_URL_STR is not set +# CONFIG_FEATURE_HTTPD_ERROR_PAGES is not set +# CONFIG_FEATURE_HTTPD_PROXY is not set +# CONFIG_FEATURE_HTTPD_GZIP is not set +CONFIG_IFCONFIG=y +CONFIG_FEATURE_IFCONFIG_STATUS=y +# CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +CONFIG_FEATURE_IFCONFIG_HW=y +# CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS is not set +# CONFIG_IFENSLAVE is not set +# CONFIG_IFPLUGD is not set +CONFIG_IFUPDOWN=y +CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate" +# CONFIG_FEATURE_IFUPDOWN_IP is not set +# CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN is not set +CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN=y +CONFIG_FEATURE_IFUPDOWN_IPV4=y +CONFIG_FEATURE_IFUPDOWN_IPV6=y +CONFIG_FEATURE_IFUPDOWN_MAPPING=y +# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set +# CONFIG_INETD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set +# CONFIG_FEATURE_INETD_RPC is not set +CONFIG_IP=y +CONFIG_FEATURE_IP_ADDRESS=y +CONFIG_FEATURE_IP_LINK=y +CONFIG_FEATURE_IP_ROUTE=y +CONFIG_FEATURE_IP_TUNNEL=y +# CONFIG_FEATURE_IP_RULE is not set +# CONFIG_FEATURE_IP_SHORT_FORMS is not set +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +# CONFIG_IPADDR is not set +# CONFIG_IPLINK is not set +# CONFIG_IPROUTE is not set +# CONFIG_IPTUNNEL is not set +# CONFIG_IPRULE is not set +# CONFIG_IPCALC is not set +# CONFIG_FEATURE_IPCALC_FANCY is not set +# CONFIG_FEATURE_IPCALC_LONG_OPTIONS is not set +CONFIG_NETSTAT=y +# CONFIG_FEATURE_NETSTAT_WIDE is not set +# CONFIG_FEATURE_NETSTAT_PRG is not set +CONFIG_NSLOOKUP=y +# CONFIG_NTPD is not set +# CONFIG_FEATURE_NTPD_SERVER is not set +# CONFIG_PSCAN is not set +CONFIG_ROUTE=y +# CONFIG_SLATTACH is not set +# CONFIG_TCPSVD is not set +CONFIG_TELNET=y +# CONFIG_FEATURE_TELNET_TTYPE is not set +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +# CONFIG_TELNETD is not set +# CONFIG_FEATURE_TELNETD_STANDALONE is not set +# CONFIG_FEATURE_TELNETD_INETD_WAIT is not set +CONFIG_TFTP=y +# CONFIG_TFTPD is not set + +# +# Common options for tftp/tftpd +# +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +# CONFIG_FEATURE_TFTP_BLOCKSIZE is not set +# CONFIG_FEATURE_TFTP_PROGRESS_BAR is not set +# CONFIG_TFTP_DEBUG is not set +CONFIG_TRACEROUTE=y +# CONFIG_TRACEROUTE6 is not set +# CONFIG_FEATURE_TRACEROUTE_VERBOSE is not set +# CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +# CONFIG_TUNCTL is not set +# CONFIG_FEATURE_TUNCTL_UG is not set +CONFIG_UDHCPD=y +# CONFIG_DHCPRELAY is not set +CONFIG_DUMPLEASES=y +# CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set +# CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set +CONFIG_DHCPD_LEASES_FILE="/var/lib/misc/udhcpd.leases" +CONFIG_UDHCPC=y +CONFIG_FEATURE_UDHCPC_ARPING=y +# CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_UDHCP_DEBUG=0 +# CONFIG_FEATURE_UDHCP_RFC3397 is not set +# CONFIG_FEATURE_UDHCP_8021Q is not set +CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n" +# CONFIG_UDPSVD is not set +# CONFIG_VCONFIG is not set +CONFIG_WGET=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_FEATURE_WGET_LONG_OPTIONS=y +CONFIG_FEATURE_WGET_TIMEOUT=y +# CONFIG_ZCIP is not set + +# +# Print Utilities +# +# CONFIG_LPD is not set +# CONFIG_LPR is not set +# CONFIG_LPQ is not set + +# +# Mail Utilities +# +# CONFIG_MAKEMIME is not set +CONFIG_FEATURE_MIME_CHARSET="" +# CONFIG_POPMAILDIR is not set +# CONFIG_FEATURE_POPMAILDIR_DELIVERY is not set +# CONFIG_REFORMIME is not set +# CONFIG_FEATURE_REFORMIME_COMPAT is not set +# CONFIG_SENDMAIL is not set + +# +# Process Utilities +# +# CONFIG_IOSTAT is not set +# CONFIG_MPSTAT is not set +# CONFIG_NMETER is not set +# CONFIG_PMAP is not set +# CONFIG_POWERTOP is not set +# CONFIG_PSTREE is not set +# CONFIG_PWDX is not set +# CONFIG_SMEMCAP is not set +CONFIG_UPTIME=y +# CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set +CONFIG_FREE=y +CONFIG_FUSER=y +CONFIG_KILL=y +CONFIG_KILLALL=y +# CONFIG_KILLALL5 is not set +# CONFIG_PGREP is not set +CONFIG_PIDOF=y +# CONFIG_FEATURE_PIDOF_SINGLE is not set +# CONFIG_FEATURE_PIDOF_OMIT is not set +# CONFIG_PKILL is not set +CONFIG_PS=y +CONFIG_FEATURE_PS_WIDE=y +# CONFIG_FEATURE_PS_TIME is not set +# CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS is not set +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +CONFIG_RENICE=y +CONFIG_BB_SYSCTL=y +CONFIG_TOP=y +CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +# CONFIG_FEATURE_TOP_SMP_CPU is not set +# CONFIG_FEATURE_TOP_DECIMALS is not set +# CONFIG_FEATURE_TOP_SMP_PROCESS is not set +# CONFIG_FEATURE_TOPMEM is not set +# CONFIG_FEATURE_SHOW_THREADS is not set +CONFIG_WATCH=y + +# +# Runit Utilities +# +# CONFIG_RUNSV is not set +# CONFIG_RUNSVDIR is not set +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +# CONFIG_SV is not set +CONFIG_SV_DEFAULT_SERVICE_DIR="" +# CONFIG_SVLOGD is not set +# CONFIG_CHPST is not set +# CONFIG_SETUIDGID is not set +# CONFIG_ENVUIDGID is not set +# CONFIG_ENVDIR is not set +# CONFIG_SOFTLIMIT is not set +# CONFIG_CHCON is not set +# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RESTORECON is not set +# CONFIG_RUNCON is not set +# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_SETSEBOOL is not set +# CONFIG_SESTATUS is not set + +# +# Shells +# +CONFIG_ASH=y +CONFIG_ASH_BASH_COMPAT=y +# CONFIG_ASH_IDLE_TIMEOUT is not set +CONFIG_ASH_JOB_CONTROL=y +CONFIG_ASH_ALIAS=y +CONFIG_ASH_GETOPTS=y +CONFIG_ASH_BUILTIN_ECHO=y +CONFIG_ASH_BUILTIN_PRINTF=y +CONFIG_ASH_BUILTIN_TEST=y +# CONFIG_ASH_CMDCMD is not set +# CONFIG_ASH_MAIL is not set +CONFIG_ASH_OPTIMIZE_FOR_SIZE=y +# CONFIG_ASH_RANDOM_SUPPORT is not set +CONFIG_ASH_EXPAND_PRMT=y +CONFIG_CTTYHACK=y +# CONFIG_HUSH is not set +# CONFIG_HUSH_BASH_COMPAT is not set +# CONFIG_HUSH_BRACE_EXPANSION is not set +# CONFIG_HUSH_HELP is not set +# CONFIG_HUSH_INTERACTIVE is not set +# CONFIG_HUSH_SAVEHISTORY is not set +# CONFIG_HUSH_JOB is not set +# CONFIG_HUSH_TICK is not set +# CONFIG_HUSH_IF is not set +# CONFIG_HUSH_LOOPS is not set +# CONFIG_HUSH_CASE is not set +# CONFIG_HUSH_FUNCTIONS is not set +# CONFIG_HUSH_LOCAL is not set +# CONFIG_HUSH_RANDOM_SUPPORT is not set +# CONFIG_HUSH_EXPORT_N is not set +# CONFIG_HUSH_MODE_X is not set +# CONFIG_MSH is not set +CONFIG_FEATURE_SH_IS_ASH=y +# CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_FEATURE_SH_IS_NONE is not set +# CONFIG_FEATURE_BASH_IS_ASH is not set +# CONFIG_FEATURE_BASH_IS_HUSH is not set +CONFIG_FEATURE_BASH_IS_NONE=y +CONFIG_SH_MATH_SUPPORT=y +# CONFIG_SH_MATH_SUPPORT_64 is not set +CONFIG_FEATURE_SH_EXTRA_QUIET=y +# CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_FEATURE_SH_NOFORK is not set +CONFIG_FEATURE_SH_HISTFILESIZE=y + +# +# System Logging Utilities +# +CONFIG_SYSLOGD=y +CONFIG_FEATURE_ROTATE_LOGFILE=y +CONFIG_FEATURE_REMOTE_LOG=y +CONFIG_FEATURE_SYSLOGD_DUP=y +CONFIG_FEATURE_SYSLOGD_CFG=y +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=256 +CONFIG_FEATURE_IPC_SYSLOG=y +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16 +CONFIG_LOGREAD=y +CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING=y +CONFIG_KLOGD=y +CONFIG_FEATURE_KLOGD_KLOGCTL=y +CONFIG_LOGGER=y diff --git a/meta-yocto/recipes-core/busybox/busybox_%.bbappend b/meta-yocto/recipes-core/busybox/busybox_%.bbappend new file mode 100644 index 0000000000..000578744a --- /dev/null +++ b/meta-yocto/recipes-core/busybox/busybox_%.bbappend @@ -0,0 +1,2 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" + diff --git a/meta-yocto/recipes-core/psplash/files/psplash-poky-img.h b/meta-yocto/recipes-core/psplash/files/psplash-poky-img.h new file mode 100644 index 0000000000..e84dac9334 --- /dev/null +++ b/meta-yocto/recipes-core/psplash/files/psplash-poky-img.h @@ -0,0 +1,914 @@ +/* Yocto Project logo for psplash + * + * Created using make-image-header.sh (distributed with psplash) + */ + +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +#define POKY_IMG_ROWSTRIDE (1708) +#define POKY_IMG_WIDTH (427) +#define POKY_IMG_HEIGHT (214) +#define POKY_IMG_BYTES_PER_PIXEL (4) /* 3:RGB, 4:RGBA */ +#define POKY_IMG_RLE_PIXEL_DATA ((uint8*) \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354" \ + "\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340" \ + "\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377" \ + "\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354" \ + "\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340" \ + "\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377" \ + "\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354" \ + "\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340" \ + "\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377" \ + "\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354" \ + "\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340" \ + "\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377" \ + "\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354" \ + "\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340" \ + "\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377" \ + "\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354" \ + "\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350" \ + "\354\340\377\237\350\354\340\377\1\350\354\342\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\254\350\354\340\377\2\241\243" \ + "\244\377;AC\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340" \ + "\377\252\350\354\340\377\2\275\277\277\377LQR\377\202.46\377\377\350" \ + "\354\340\377\377\350\354\340\377\377\350\354\340\377\250\350\354\340" \ + "\377\2\321\322\323\377]ac\377\204.46\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\246\350\354\340\377\3\346\347\347\377" \ + "w{|\377/57\377\205.46\377\377\350\354\340\377\377\350\354\340\377\377" \ + "\350\354\340\377\245\350\354\340\377\2\223\226\227\3775;=\377\207.46" \ + "\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\243" \ + "\350\354\340\377\2\253\255\256\377BHJ\377\211.46\377\377\350\354\340" \ + "\377\377\350\354\340\377\377\350\354\340\377\241\350\354\340\377\2\304" \ + "\306\306\377PUW\377\213.46\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\240\350\354\340\377\1\306\310\311\377\215.46\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\240\350" \ + "\354\340\377\1\302\303\304\377\215.46\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\240\350\354\340\377\1\302\303\304\377" \ + "\215.46\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\240\350\354\340\377\1\302\303\304\377\215.46\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\240\350\354\340\377\1\302\303" \ + "\304\377\215.46\377\377\350\354\340\377\377\350\354\340\377\377\350\354" \ + "\340\377\240\350\354\340\377\1\302\303\304\377\215.46\377\377\350\354" \ + "\340\377\377\350\354\340\377\377\350\354\340\377\240\350\354\340\377" \ + "\1\302\303\304\377\215.46\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\240\350\354\340\377\1\302\303\304\377\215.46\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\240\350" \ + "\354\340\377\1\302\303\304\377\215.46\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\240\350\354\340\377\1\302\303\304\377" \ + "\215.46\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\240\350\354\340\377\1\302\303\304\377\215.46\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\240\350\354\340\377\1\302\303" \ + "\304\377\215.46\377\377\350\354\340\377\305\350\354\340\377\1\346\347" \ + "\347\377\256\350\354\340\377\1\341\342\343\377\377\350\354\340\377\252" \ + "\350\354\340\377\1\302\303\304\377\215.46\377\377\350\354\340\377\304" \ + "\350\354\340\377\3\220\223\224\3775;=\377\244\247\250\377\254\350\354" \ + "\340\377\4\302\303\304\377179\377\205\210\212\377\350\354\342\377\377" \ + "\350\354\340\377\250\350\354\340\377\1\302\303\304\377\215.46\377\377" \ + "\350\354\340\377\302\350\354\340\377\2\250\253\253\377>DF\377\202.46" \ + "\377\1@FG\377\254\350\354\340\377\1Y^`\377\202.46\377\2;AC\377\241\243" \ + "\244\377\377\350\354\340\377\247\350\354\340\377\1\302\303\304\377\215" \ + ".46\377\377\350\354\340\377\300\350\354\340\377\2\303\305\305\377PUW" \ + "\377\205.46\377\1\230\233\234\377\252\350\354\340\377\1\303\305\305\377" \ + "\205.46\377\2LQR\377\275\277\277\377\244\350\354\340\377\16\350\352\351" \ + "\377\313\314\315\377\254\257\257\377\224\227\230\377\214\220\221\377" \ + "\202\205\206\377w{|\377uy{\377\202\205\206\377\213\216\217\377\223\226" \ + "\227\377\253\255\256\377\310\312\312\377\346\346\347\377\362\350\354" \ + "\340\377\1\302\303\304\377\215.46\377\267\350\354\340\377\16\352\354" \ + "\345\377\315\316\317\377\257\262\263\377\225\230\231\377\216\221\222" \ + "\377\202\205\206\377x|}\377txy\377\202\205\206\377\211\214\215\377\221" \ + "\224\225\377\247\252\253\377\305\306\307\377\342\343\343\377\370\350" \ + "\354\340\377\2\327\330\330\377bgh\377\207.46\377\1""9\77A\377\252\350" \ + "\354\340\377\1]ac\377\207.46\377\2bgh\377\327\330\330\377\236\350\354" \ + "\340\377\4\323\324\324\377\237\242\243\377kop\3779>@\377\216.46\377\4" \ + "7=\77\377fjl\377\232\235\236\377\316\317\320\377\303\350\354\340\377" \ + "\7\352\354\346\377\332\333\334\377\303\305\305\377\271\273\274\377\263" \ + "\265\266\377\253\256\257\377\247\252\253\377\244\235\240\241\377\1}\200" \ + "\202\377\215.46\377\1\227\232\233\377\221\235\240\241\377\1\335\336\336" \ + "\377\240\350\354\340\377\4\330\332\332\377\244\247\250\377ptu\377>CE" \ + "\377\216.46\377\4""4:<\377_de\377\224\230\231\377\311\312\313\377\362" \ + "\350\354\340\377\3\352\353\347\377~\202\203\377068\377\211.46\377\1\216" \ + "\221\222\377\250\350\354\340\377\1\306\310\311\377\211.46\377\3""068" \ + "\377~\202\203\377\352\353\347\377\231\350\354\340\377\3\332\333\334\377" \ + "\214\220\221\377CIJ\377\226.46\377\3>CE\377\207\212\213\377\321\322\323" \ + "\377\272\350\354\340\377\6\324\325\325\377\257\261\262\377\213\217\220" \ + "\377gkl\377FKM\37728:\377\313.46\377\1\265\267\270\377\235\350\354\340" \ + "\377\3\341\342\342\377\224\230\231\377JOQ\377\226.46\377\3""9\77A\377" \ + "}\200\202\377\312\313\314\377\356\350\354\340\377\2\225\230\231\3778" \ + ">\77\377\213.46\377\2""5;=\377\350\352\351\377\247\350\354\340\377\1" \ + "_de\377\213.46\377\2""8>\77\377\232\235\236\377\226\350\354\340\377\2" \ + "\264\266\266\377V[]\377\234.46\377\2PUV\377\253\256\257\377\264\350\354" \ + "\340\377\4\322\323\324\377\235\237\240\377gkl\3776<>\377\321.46\377\1" \ + "\265\267\270\377\233\350\354\340\377\2\277\301\302\377`ef\377\234.46" \ + "\377\2GMN\377\240\243\244\377\354\350\354\340\377\1BHJ\377\215.46\377" \ + "\1\202\205\206\377\246\350\354\340\377\1\311\312\313\377\215.46\377\1" \ + "CIJ\377\224\350\354\340\377\2\241\243\244\377FKM\377\240.46\377\2@FG" \ + "\377\231\233\234\377\257\350\354\340\377\3\325\326\327\377\214\220\221" \ + "\377EJL\377\325.46\377\1\265\267\270\377\231\350\354\340\377\2\255\257" \ + "\260\377NSU\377\240.46\377\3""9\77A\377\220\223\224\377\350\354\342\377" \ + "\351\350\354\340\377\1\251\253\254\377\215.46\377\2""179\377\341\342" \ + "\343\377\245\350\354\340\377\1bfh\377\215.46\377\1\244\247\250\377\222" \ + "\350\354\340\377\2\275\277\277\377LQR\377\244.46\377\2BHJ\377\264\267" \ + "\267\377\253\350\354\340\377\2\253\256\257\377PUV\377\330.46\377\1\265" \ + "\267\270\377\227\350\354\340\377\2\313\314\315\377UY[\377\244.46\377" \ + "\2;AC\377\247\252\253\377\351\350\354\340\377\1LQS\377\215.46\377\1x" \ + "|}\377\244\350\354\340\377\1\314\316\316\377\215.46\377\1BGI\377\221" \ + "\350\354\340\377\2\346\347\347\377hmn\377\250.46\377\2]ac\377\340\341" \ + "\341\377\247\350\354\340\377\2\235\237\240\377BGI\377\332.46\377\1\265" \ + "\267\270\377\225\350\354\340\377\2\350\354\342\377txz\377\250.46\377" \ + "\2PUW\377\324\326\326\377\347\350\354\340\377\1\270\272\272\377\215." \ + "46\377\2""068\377\330\332\332\377\243\350\354\340\377\1eik\377\215.4" \ + "6\377\1\242\244\245\377\220\350\354\340\377\2\275\277\277\377=BD\377" \ + "\252.46\377\2""8>\77\377\261\263\264\377\244\350\354\340\377\2\265\267" \ + "\270\377BHJ\377\334.46\377\1\265\267\270\377\224\350\354\340\377\2\313" \ + "\315\315\377EJL\377\252.46\377\2""28:\377\240\243\244\377\347\350\354" \ + "\340\377\1V[]\377\215.46\377\1kpq\377\242\350\354\340\377\1\316\317\320" \ + "\377\215.46\377\1@FG\377\220\350\354\340\377\1\210\214\215\377\256.4" \ + "6\377\1y}\177\377\241\350\354\340\377\2\336\337\337\377aeg\377\336.4" \ + "6\377\1\265\267\270\377\223\350\354\340\377\2\231\234\235\377068\377" \ + "\255.46\377\1imo\377\346\350\354\340\377\1\304\306\306\377\216.46\377" \ + "\1\317\321\321\377\241\350\354\340\377\1glm\377\215.46\377\1\236\241" \ + "\242\377\217\350\354\340\377\1ptu\377\260.46\377\1chi\377\237\350\354" \ + "\340\377\2\264\267\267\3778>\77\377\337.46\377\1\265\267\270\377\222" \ + "\350\354\340\377\1\202\205\206\377\260.46\377\2TYZ\377\352\353\347\377" \ + "\345\350\354\340\377\1chi\377\215.46\377\1bfh\377\240\350\354\340\377" \ + "\1\321\322\323\377\215.46\377\1>DF\377\217\350\354\340\377\1_de\377\262" \ + ".46\377\2TYZ\377\352\353\347\377\234\350\354\340\377\1\202\205\206\377" \ + "\341.46\377\1\265\267\270\377\221\350\354\340\377\1ptv\377\262.46\377" \ + "\2HMO\377\337\340\340\377\344\350\354\340\377\2\322\323\324\377/57\377" \ + "\215.46\377\1\304\306\306\377\237\350\354\340\377\1kop\377\215.46\377" \ + "\1\234\237\240\377\216\350\354\340\377\1aeg\377\264.46\377\1SXY\377\233" \ + "\350\354\340\377\1fjl\377\342.46\377\1\265\267\270\377\220\350\354\340" \ + "\377\1ptu\377\264.46\377\2EJL\377\350\351\351\377\344\350\354\340\377" \ + "\1ptv\377\215.46\377\1V[]\377\236\350\354\340\377\1\324\326\326\377\215" \ + ".46\377\1=BD\377\216\350\354\340\377\1nrs\377\226.46\377\12=BD\377`e" \ + "f\377\200\204\205\377\220\223\224\377\233\236\237\377\234\237\240\377" \ + "\220\223\224\377\202\205\206\377bgh\377>DF\377\226.46\377\1dij\377\231" \ + "\350\354\340\377\1_de\377\231.46\377\3""39;\377EJL\377Y^`\377\202fjl" \ + "\377\1swx\377\244txy\377\1_de\377\215.46\377\1ptu\377\221txy\377\1\316" \ + "\317\320\377\217\350\354\340\377\1\204\210\211\377\226.46\377\12""9\77" \ + "A\377[`a\377}\200\202\377\220\223\224\377\231\234\235\377\235\240\241" \ + "\377\220\223\224\377\205\210\212\377fjl\377BHJ\377\226.46\377\1SXY\377" \ + "\344\350\354\340\377\2\335\336\336\377068\377\215.46\377\1\271\273\274" \ + "\377\235\350\354\340\377\1lqr\377\215.46\377\1\231\233\234\377\215\350" \ + "\354\340\377\1\207\213\214\377\224.46\377\3PUW\377\234\237\240\377\327" \ + "\330\330\377\212\350\354\340\377\3\332\333\334\377\236\241\242\377PU" \ + "V\377\224.46\377\1x|}\377\227\350\354\340\377\1[`a\377\225.46\377\5K" \ + "PR\377\177\203\204\377\247\252\253\377\311\312\313\377\352\354\346\377" \ + "\252\350\354\340\377\1\302\303\304\377\215.46\377\241\350\354\340\377" \ + "\1\237\242\243\377\224.46\377\3JOQ\377\226\231\232\377\320\322\322\377" \ + "\212\350\354\340\377\3\336\337\337\377\242\245\246\377Y]_\377\224.46" \ + "\377\1eik\377\344\350\354\340\377\1~\201\202\377\215.46\377\1OTV\377" \ + "\234\350\354\340\377\2\326\327\330\377/57\377\214.46\377\1;AC\377\215" \ + "\350\354\340\377\1\271\273\274\377\222.46\377\3/57\377ptu\377\314\316" \ + "\316\377\220\350\354\340\377\2\312\313\314\377jnp\377\223.46\377\1\254" \ + "\257\257\377\225\350\354\340\377\1y|~\377\222.46\377\4/57\377]ac\377" \ + "\247\252\253\377\346\347\347\377\257\350\354\340\377\1\302\303\304\377" \ + "\215.46\377\240\350\354\340\377\2\316\317\320\377068\377\222.46\377\2" \ + "fjl\377\305\306\307\377\220\350\354\340\377\3\323\324\324\377txy\377" \ + "068\377\222.46\377\1\225\230\231\377\343\350\354\340\377\2\347\350\350" \ + "\3775:<\377\215.46\377\1\256\260\261\377\233\350\354\340\377\1ptu\377" \ + "\215.46\377\1\226\231\232\377\214\350\354\340\377\2\344\345\345\377:" \ + "@B\377\221.46\377\2gkl\377\332\333\334\377\224\350\354\340\377\2\324" \ + "\326\326\377^ce\377\221.46\377\2""6<>\377\335\336\337\377\223\350\354" \ + "\340\377\1\235\240\241\377\221.46\377\3""39;\377\177\203\204\377\341" \ + "\342\342\377\262\350\354\340\377\1\302\303\304\377\215.46\377\237\350" \ + "\354\340\377\2\350\354\342\377FKM\377\221.46\377\2[`a\377\321\322\323" \ + "\377\224\350\354\340\377\2\335\336\337\377kop\377\221.46\377\2""068\377" \ + "\314\316\316\377\343\350\354\340\377\1\213\217\220\377\215.46\377\1F" \ + "KM\377\232\350\354\340\377\2\331\332\333\377/57\377\214.46\377\1:@B\377" \ + "\215\350\354\340\377\1^ce\377\220.46\377\2;AC\377\265\267\270\377\230" \ + "\350\354\340\377\2\251\253\254\3775;=\377\220.46\377\1Y]_\377\222\350" \ + "\354\340\377\2\325\326\327\377068\377\220.46\377\2ptu\377\346\346\347" \ + "\377\264\350\354\340\377\1\302\303\304\377\215.46\377\237\350\354\340" \ + "\377\1txz\377\220.46\377\2""6<>\377\250\253\253\377\230\350\354\340\377" \ + "\2\270\272\272\377@\377\215\350\354\340\377\1AFH\377\217.46\377\1gkl\377" \ + "\235\350\354\340\377\2\352\353\347\377OTV\377\217.46\377\1\77EG\377\220" \ + "\350\354\340\377\1\232\235\236\377\217.46\377\2MRT\377\340\341\341\377" \ + "\267\350\354\340\377\1\302\303\304\377\215.46\377\236\350\354\340\377" \ + "\1OTV\377\217.46\377\2W\\]\377\350\354\342\377\235\350\354\340\377\1" \ + "\\ab\377\217.46\377\2""5:<\377\346\346\347\377\343\350\354\340\377\1" \ + "AFH\377\215.46\377\1\230\233\234\377\227\350\354\340\377\1uy{\377\215" \ + ".46\377\1\220\224\225\377\214\350\354\340\377\1\217\222\223\377\217." \ + "46\377\1imo\377\237\350\354\340\377\2\352\354\346\377LQR\377\217.46\377" \ + "\1\220\224\225\377\217\350\354\340\377\1""9>@\377\216.46\377\2OTV\377" \ + "\351\354\343\377\270\350\354\340\377\1\302\303\304\377\215.46\377\235" \ + "\350\354\340\377\1\246\251\252\377\217.46\377\1[`a\377\240\350\354\340" \ + "\377\1[`a\377\217.46\377\1{\177\200\377\343\350\354\340\377\1\246\251" \ + "\252\377\215.46\377\2""9\77A\377\350\354\342\377\225\350\354\340\377" \ + "\2\335\336\337\377068\377\214.46\377\2""8>\77\377\351\354\343\377\214" \ + "\350\354\340\377\1""9>@\377\216.46\377\1QVX\377\241\350\354\340\377\2" \ + "\341\342\343\377\77EG\377\216.46\377\1;AC\377\216\350\354\340\377\1\224" \ + "\230\231\377\216.46\377\2GLN\377\350\351\351\377\271\350\354\340\377" \ + "\1\302\303\304\377\215.46\377\235\350\354\340\377\1GLN\377\216.46\377" \ + "\2EJL\377\350\351\351\377\240\350\354\340\377\2\351\354\343\377JOQ\377" \ + "\216.46\377\2""179\377\346\347\347\377\343\350\354\340\377\1INP\377\215" \ + ".46\377\1\216\221\222\377\225\350\354\340\377\1x|}\377\215.46\377\1\216" \ + "\221\222\377\214\350\354\340\377\1\230\233\234\377\216.46\377\2""7=\77" \ + "\377\337\340\340\377\242\350\354\340\377\2\312\313\314\377068\377\216" \ + ".46\377\1\242\244\245\377\215\350\354\340\377\1;AC\377\215.46\377\2""0" \ + "68\377\316\317\320\377\272\350\354\340\377\1\302\303\304\377\215.46\377" \ + "\234\350\354\340\377\1\257\261\262\377\216.46\377\2""068\377\317\320" \ + "\320\377\242\350\354\340\377\2\330\332\332\3775:<\377\216.46\377\1\213" \ + "\216\217\377\343\350\354\340\377\1\264\266\266\377\215.46\377\2""5;=" \ + "\377\350\352\351\377\223\350\354\340\377\2\337\340\340\377068\377\214" \ + ".46\377\2""6<>\377\352\354\346\377\214\350\354\340\377\1>DF\377\216." \ + "46\377\1\246\250\251\377\244\350\354\340\377\1\216\221\222\377\216.4" \ + "6\377\1GLN\377\214\350\354\340\377\1\246\251\252\377\216.46\377\1\223" \ + "\226\227\377\273\350\354\340\377\1\302\303\304\377\215.46\377\234\350" \ + "\354\340\377\1OTV\377\216.46\377\1\220\223\224\377\244\350\354\340\377" \ + "\1\244\247\250\377\216.46\377\1""8>\77\377\344\350\354\340\377\1UY[\377" \ + "\215.46\377\1\202\205\206\377\223\350\354\340\377\1z~\177\377\215.46" \ + "\377\1\213\216\217\377\214\350\354\340\377\1\271\273\274\377\216.46\377" \ + "\1Z_a\377\246\350\354\340\377\1JOQ\377\216.46\377\1\310\312\312\377\213" \ + "\350\354\340\377\1[`a\377\215.46\377\1BHJ\377\274\350\354\340\377\1\302" \ + "\303\304\377\215.46\377\233\350\354\340\377\1\320\322\322\377\216.46" \ + "\377\1HMO\377\246\350\354\340\377\1\\ab\377\216.46\377\1\260\263\263" \ + "\377\343\350\354\340\377\1\302\303\304\377\215.46\377\2""179\377\341" \ + "\342\342\377\221\350\354\340\377\2\341\342\343\377179\377\214.46\377" \ + "\2""5;=\377\352\353\347\377\214\350\354\340\377\1nrs\377\216.46\377\1" \ + "\316\317\320\377\246\350\354\340\377\1\273\275\276\377\216.46\377\1|" \ + "\200\201\377\212\350\354\340\377\1\341\342\343\377\216.46\377\1\253\255" \ + "\256\377\274\350\354\340\377\1\302\303\304\377\215.46\377\233\350\354" \ + "\340\377\1\204\210\211\377\216.46\377\1\270\272\272\377\246\350\354\340" \ + "\377\2\321\322\323\377/57\377\215.46\377\1eik\377\344\350\354\340\377" \ + "\1_de\377\215.46\377\1x|}\377\221\350\354\340\377\1~\201\202\377\215" \ + ".46\377\1\210\214\215\377\214\350\354\340\377\2\350\354\342\37728:\377" \ + "\215.46\377\1hmn\377\250\350\354\340\377\1X]^\377\215.46\377\1""9>@\377" \ + "\212\350\354\340\377\1\231\234\235\377\215.46\377\1;AC\377\275\350\354" \ + "\340\377\1\302\303\304\377\215.46\377\233\350\354\340\377\1=BD\377\215" \ + ".46\377\1PUW\377\250\350\354\340\377\1ost\377\215.46\377\2""068\377\351" \ + "\352\350\377\343\350\354\340\377\1\316\317\320\377\215.46\377\2""068" \ + "\377\330\332\332\377\217\350\354\340\377\2\343\344\344\377179\377\214" \ + ".46\377\2""4:<\377\350\352\351\377\214\350\354\340\377\1\265\267\270" \ + "\377\216.46\377\1\305\306\307\377\250\350\354\340\377\1\271\273\273\377" \ + "\216.46\377\1\303\305\305\377\211\350\354\340\377\1eik\377\215.46\377" \ + "\1\207\212\213\377\275\350\354\340\377\1\302\303\304\377\215.46\377\232" \ + "\350\354\340\377\1\313\314\315\377\216.46\377\1\260\263\263\377\250\350" \ + "\354\340\377\1\317\320\320\377\216.46\377\1\254\257\257\377\344\350\354" \ + "\340\377\1nrs\377\215.46\377\1kpq\377\217\350\354\340\377\1\200\204\205" \ + "\377\215.46\377\1\205\210\212\377\215\350\354\340\377\1\201\204\206\377" \ + "\215.46\377\1MRT\377\252\350\354\340\377\1BHJ\377\215.46\377\1\217\222" \ + "\223\377\211\350\354\340\377\1""6<>\377\215.46\377\1\312\313\314\377" \ + "\275\350\354\340\377\1\302\303\304\377\215.46\377\232\350\354\340\377" \ + "\1\226\231\232\377\215.46\377\1=BD\377\252\350\354\340\377\1W\\]\377" \ + "\215.46\377\1x|}\377\344\350\354\340\377\2\333\334\334\377068\377\215" \ + ".46\377\1\317\320\320\377\215\350\354\340\377\2\345\346\346\37739;\377" \ + "\214.46\377\2""39;\377\347\350\350\377\215\350\354\340\377\1LQR\377\215" \ + ".46\377\1\225\230\231\377\252\350\354\340\377\1\211\214\215\377\215." \ + "46\377\1\\ab\377\210\350\354\340\377\1\321\322\323\377\215.46\377\1:" \ + "@B\377\276\350\354\340\377\1\302\303\304\377\215.46\377\232\350\354\340" \ + "\377\1bgh\377\215.46\377\1\177\203\204\377\252\350\354\340\377\1\237" \ + "\242\243\377\215.46\377\1DIK\377\345\350\354\340\377\1z~\177\377\215" \ + ".46\377\1bfh\377\215\350\354\340\377\1\203\207\210\377\215.46\377\1\203" \ + "\207\210\377\215\350\354\340\377\1\352\354\346\377\216.46\377\1\335\336" \ + "\336\377\252\350\354\340\377\1\316\317\320\377\215.46\377\1""179\377" \ + "\210\350\354\340\377\1\246\251\252\377\215.46\377\1imo\377\276\350\354" \ + "\340\377\1\302\303\304\377\215.46\377\232\350\354\340\377\1""5:<\377" \ + "\215.46\377\1\306\310\311\377\252\350\354\340\377\1\344\345\345\377\216" \ + ".46\377\1\344\345\345\377\252\350\354\340\377\5\304\336\373\377\236\311" \ + "\370\377\220\301\367\377\234\310\370\377\273\331\372\377\265\350\354" \ + "\340\377\2\344\345\345\37739;\377\215.46\377\1\304\306\306\377\213\350" \ + "\354\340\377\2\347\350\350\37739;\377\214.46\377\2""28:\377\345\346\346" \ + "\377\215\350\354\340\377\1\313\315\315\377\215.46\377\1@FG\377\254\350" \ + "\354\340\377\1""6<>\377\215.46\377\1\331\332\333\377\207\350\354\340" \ + "\377\1\212\215\216\377\215.46\377\1\222\225\226\377\276\350\354\340\377" \ + "\1\302\303\304\377\215.46\377\231\350\354\340\377\1\341\342\343\377\215" \ + ".46\377\1""28:\377\254\350\354\340\377\1HMO\377\215.46\377\1\302\304" \ + "\305\377\250\350\354\340\377\2\262\324\371\377[\244\363\377\205O\235" \ + "\362\377\2U\240\362\377\236\311\370\377\264\350\354\340\377\1\211\214" \ + "\215\377\215.46\377\1V[]\377\213\350\354\340\377\1\205\210\212\377\215" \ + ".46\377\1\200\204\205\377\216\350\354\340\377\1\253\256\257\377\215." \ + "46\377\1quw\377\254\350\354\340\377\1chi\377\215.46\377\1\275\277\277" \ + "\377\207\350\354\340\377\1mqs\377\215.46\377\1\270\272\272\377\276\350" \ + "\354\340\377\1\302\303\304\377\215.46\377\231\350\354\340\377\1\302\304" \ + "\305\377\215.46\377\1[`a\377\254\350\354\340\377\1y}\177\377\215.46\377" \ + "\1\246\250\251\377\247\350\354\340\377\1\214\277\366\377\211O\235\362" \ + "\377\1u\262\365\377\263\350\354\340\377\2\352\354\345\3779>@\377\215" \ + ".46\377\1\271\273\273\377\211\350\354\340\377\2\350\352\351\3775:<\377" \ + "\214.46\377\2""179\377\343\344\344\377\216\350\354\340\377\1\217\222" \ + "\223\377\215.46\377\1\231\233\234\377\254\350\354\340\377\1\212\215\216" \ + "\377\215.46\377\1\235\240\241\377\207\350\354\340\377\1QVX\377\215.4" \ + "6\377\1\320\322\322\377\276\350\354\340\377\1\302\303\304\377\215.46" \ + "\377\231\350\354\340\377\1\246\250\251\377\215.46\377\1\202\205\206\377" \ + "\254\350\354\340\377\1\237\242\243\377\215.46\377\1\207\212\213\377\246" \ + "\350\354\340\377\1\236\311\370\377\213O\235\362\377\1\177\270\366\377" \ + "\263\350\354\340\377\1\225\230\231\377\215.46\377\1OTV\377\211\350\354" \ + "\340\377\1\210\214\215\377\215.46\377\1}\200\202\377\217\350\354\340" \ + "\377\1y|~\377\215.46\377\1\264\267\267\377\254\350\354\340\377\1\246" \ + "\251\252\377\215.46\377\1\206\211\212\377\207\350\354\340\377\1;AC\377" \ + "\215.46\377\1\347\350\350\377\276\350\354\340\377\1\302\303\304\377\215" \ + ".46\377\231\350\354\340\377\1\216\221\222\377\215.46\377\1\235\240\241" \ + "\377\254\350\354\340\377\1\274\276\276\377\215.46\377\1nrs\377\245\350" \ + "\354\340\377\2\342\357\375\377Q\236\362\377\214O\235\362\377\1\304\336" \ + "\373\377\263\350\354\340\377\1>DF\377\215.46\377\1\256\260\261\377\207" \ + "\350\354\340\377\2\352\353\347\3775;=\377\214.46\377\2""179\377\341\342" \ + "\342\377\217\350\354\340\377\1kpq\377\215.46\377\1\313\315\315\377\254" \ + "\350\354\340\377\1\276\300\301\377\215.46\377\1{\177\200\377\207\350" \ + "\354\340\377\1""179\377\215.46\377\277\350\354\340\377\1\302\303\304" \ + "\377\215.46\377\231\350\354\340\377\1\204\210\211\377\215.46\377\1\267" \ + "\271\272\377\254\350\354\340\377\1\326\327\330\377\215.46\377\1eik\377" \ + "\245\350\354\340\377\1\232\307\370\377\215O\235\362\377\1z\265\365\377" \ + "\263\350\354\340\377\1\243\246\247\377\215.46\377\1FKM\377\207\350\354" \ + "\340\377\1\213\216\217\377\215.46\377\1y}\177\377\220\350\354\340\377" \ + "\1bgh\377\215.46\377\1\332\333\334\377\254\350\354\340\377\1\314\316" \ + "\316\377\215.46\377\1quw\377\207\350\354\340\377\216.46\377\277\350\354" \ + "\340\377\1\302\303\304\377\215.46\377\231\350\354\340\377\1y|~\377\215" \ + ".46\377\1\302\303\304\377\254\350\354\340\377\1\341\342\343\377\215." \ + "46\377\1[`a\377\245\350\354\340\377\1i\254\364\377\215O\235\362\377\1" \ + "Q\236\362\377\264\350\354\340\377\1GMN\377\215.46\377\1\243\246\247\377" \ + "\205\350\354\340\377\2\352\354\346\3776<>\377\214.46\377\2""068\377\337" \ + "\340\340\377\220\350\354\340\377\1Y^`\377\215.46\377\1\341\342\343\377" \ + "\254\350\354\340\377\1\324\326\326\377\215.46\377\1hmn\377\207\350\354" \ + "\340\377\215.46\377\1""8>\77\377\277\350\354\340\377\1\302\303\304\377" \ + "\215.46\377\231\350\354\340\377\1ptu\377\215.46\377\1\314\316\316\377" \ + "\254\350\354\340\377\1\351\352\350\377\215.46\377\1QVX\377\245\350\354" \ + "\340\377\1U\240\362\377\216O\235\362\377\1\344\360\375\377\263\350\354" \ + "\340\377\1\260\263\263\377\215.46\377\1@FG\377\205\350\354\340\377\1" \ + "\216\221\222\377\215.46\377\1w{|\377\221\350\354\340\377\1Y]_\377\215" \ + ".46\377\1\342\343\343\377\254\350\354\340\377\1\325\326\327\377\215." \ + "46\377\1glm\377\206\350\354\340\377\1\351\352\350\377\215.46\377\1""5" \ + ";=\377\277\350\354\340\377\1\302\303\304\377\215.46\377\231\350\354\340" \ + "\377\1ptu\377\215.46\377\1\315\316\317\377\254\350\354\340\377\1\352" \ + "\353\347\377\215.46\377\1QVX\377\245\350\354\340\377\1U\240\362\377\216" \ + "O\235\362\377\1\345\361\375\377\264\350\354\340\377\1PUW\377\215.46\377" \ + "\1\230\233\234\377\203\350\354\340\377\2\351\354\343\3778>\77\377\214" \ + ".46\377\2""068\377\335\336\336\377\221\350\354\340\377\1bfh\377\215." \ + "46\377\1\332\333\334\377\254\350\354\340\377\1\314\316\316\377\215.4" \ + "6\377\1quw\377\207\350\354\340\377\216.46\377\277\350\354\340\377\1\302" \ + "\303\304\377\215.46\377\231\350\354\340\377\1x|}\377\215.46\377\1\302" \ + "\303\304\377\254\350\354\340\377\1\341\342\343\377\215.46\377\1Z_a\377" \ + "\245\350\354\340\377\1l\255\364\377\215O\235\362\377\1R\237\362\377\265" \ + "\350\354\340\377\1\275\277\300\377\215.46\377\2""9\77A\377\350\354\342" \ + "\377\202\350\354\340\377\1\220\224\225\377\215.46\377\1txz\377\222\350" \ + "\354\340\377\1kpq\377\215.46\377\1\314\316\316\377\254\350\354\340\377" \ + "\1\277\301\302\377\215.46\377\1z~\177\377\207\350\354\340\377\216.46" \ + "\377\1\352\354\345\377\276\350\354\340\377\1\302\303\304\377\215.46\377" \ + "\231\350\354\340\377\1\204\210\211\377\215.46\377\1\271\273\273\377\254" \ + "\350\354\340\377\1\327\330\330\377\215.46\377\1dij\377\245\350\354\340" \ + "\377\1\236\311\370\377\215O\235\362\377\1\177\270\366\377\266\350\354" \ + "\340\377\1]ac\377\215.46\377\4\215\220\221\377\350\354\340\377\350\354" \ + "\342\3779>@\377\214.46\377\2/57\377\332\333\334\377\222\350\354\340\377" \ + "\1w{|\377\215.46\377\1\265\267\270\377\254\350\354\340\377\1\250\253" \ + "\253\377\215.46\377\1\205\210\212\377\207\350\354\340\377\1""068\377" \ + "\215.46\377\1\341\342\342\377\276\350\354\340\377\1\302\303\304\377\215" \ + ".46\377\231\350\354\340\377\1\215\220\221\377\215.46\377\1\237\242\243" \ + "\377\254\350\354\340\377\1\276\300\301\377\215.46\377\1mqs\377\245\350" \ + "\354\340\377\2\350\362\375\377S\237\362\377\214O\235\362\377\1\315\343" \ + "\373\377\266\350\354\340\377\1\313\315\315\377\215.46\377\3""5;=\377" \ + "\350\352\351\377\223\226\227\377\215.46\377\1quw\377\223\350\354\340" \ + "\377\1\216\221\222\377\215.46\377\1\231\234\235\377\254\350\354\340\377" \ + "\1\214\220\221\377\215.46\377\1\234\237\240\377\207\350\354\340\377\1" \ + "AFH\377\215.46\377\1\321\322\323\377\276\350\354\340\377\1\302\303\304" \ + "\377\215.46\377\231\350\354\340\377\1\244\247\250\377\215.46\377\1\203" \ + "\207\210\377\254\350\354\340\377\1\241\243\244\377\215.46\377\1\205\210" \ + "\212\377\246\350\354\340\377\1\253\320\371\377\213O\235\362\377\1\214" \ + "\277\366\377\270\350\354\340\377\1imo\377\215.46\377\2uy{\377:@B\377" \ + "\214.46\377\2/57\377\330\332\332\377\223\350\354\340\377\1\252\254\255" \ + "\377\215.46\377\1txy\377\254\350\354\340\377\1gkl\377\215.46\377\1\272" \ + "\274\275\377\207\350\354\340\377\1W\\]\377\215.46\377\1\251\253\254\377" \ + "\276\350\354\340\377\1\302\303\304\377\215.46\377\231\350\354\340\377" \ + "\1\301\302\303\377\215.46\377\1^ce\377\254\350\354\340\377\1}\200\202" \ + "\377\215.46\377\1\243\246\247\377\247\350\354\340\377\1\231\306\367\377" \ + "\211O\235\362\377\1\200\270\366\377\271\350\354\340\377\2\327\330\330" \ + "\377068\377\232.46\377\1nrs\377\224\350\354\340\377\1\311\312\313\377" \ + "\215.46\377\1CIJ\377\254\350\354\340\377\1""8>\77\377\215.46\377\1\330" \ + "\331\331\377\207\350\354\340\377\1kpq\377\215.46\377\1\177\203\204\377" \ + "\276\350\354\340\377\1\302\303\304\377\215.46\377\231\350\354\340\377" \ + "\1\337\340\340\377\215.46\377\1""4:<\377\254\350\354\340\377\1LQR\377" \ + "\215.46\377\1\301\302\303\377\250\350\354\340\377\2\303\336\373\377d" \ + "\251\364\377\205O\235\362\377\2Z\243\363\377\260\323\371\377\273\350" \ + "\354\340\377\1x|}\377\231.46\377\2/57\377\325\326\327\377\224\350\354" \ + "\340\377\1\351\352\350\377\216.46\377\1\340\341\341\377\252\350\354\340" \ + "\377\1\321\322\323\377\215.46\377\1""068\377\210\350\354\340\377\1\213" \ + "\217\220\377\215.46\377\1V[]\377\276\350\354\340\377\1\302\303\304\377" \ + "\215.46\377\232\350\354\340\377\1""39;\377\215.46\377\1\312\313\314\377" \ + "\252\350\354\340\377\1\350\351\351\377\216.46\377\1\341\342\342\377\252" \ + "\350\354\340\377\5\323\346\374\377\255\321\371\377\236\311\370\377\251" \ + "\317\371\377\313\342\373\377\275\350\354\340\377\2\342\343\343\37728" \ + ":\377\230.46\377\1kpq\377\226\350\354\340\377\1INP\377\215.46\377\1\232" \ + "\235\236\377\252\350\354\340\377\1\214\220\221\377\215.46\377\1X]^\377" \ + "\210\350\354\340\377\1\261\263\264\377\215.46\377\1""179\377\276\350" \ + "\354\340\377\1\302\303\304\377\215.46\377\232\350\354\340\377\1_de\377" \ + "\215.46\377\1\204\210\211\377\252\350\354\340\377\1\243\246\247\377\215" \ + ".46\377\1BGI\377\356\350\354\340\377\1\204\210\211\377\230.46\377\1\323" \ + "\324\324\377\226\350\354\340\377\1}\200\202\377\215.46\377\1QVX\377\252" \ + "\350\354\340\377\1GLN\377\215.46\377\1\214\220\221\377\210\350\354\340" \ + "\377\1\330\331\331\377\216.46\377\1\253\256\257\377\275\350\354\340\377" \ + "\1\302\303\304\377\215.46\377\232\350\354\340\377\1\224\227\230\377\215" \ + ".46\377\1\77EG\377\252\350\354\340\377\1[`a\377\215.46\377\1txz\377\356" \ + "\350\354\340\377\2\352\353\347\3776<>\377\226.46\377\1imo\377\227\350" \ + "\354\340\377\1\262\264\265\377\216.46\377\1\313\314\315\377\250\350\354" \ + "\340\377\1\276\300\301\377\216.46\377\1\300\302\302\377\211\350\354\340" \ + "\377\1;AC\377\215.46\377\1_de\377\275\350\354\340\377\1\302\303\304\377" \ + "\215.46\377\232\350\354\340\377\1\306\310\311\377\216.46\377\1\265\267" \ + "\270\377\250\350\354\340\377\1\324\325\325\377\216.46\377\1\251\253\254" \ + "\377\357\350\354\340\377\1\223\226\227\377\226.46\377\1\320\322\322\377" \ + "\227\350\354\340\377\2\352\354\350\377179\377\215.46\377\1ost\377\250" \ + "\350\354\340\377\1]ac\377\215.46\377\1""6<>\377\212\350\354\340\377\1" \ + "mqs\377\215.46\377\2/57\377\341\342\343\377\274\350\354\340\377\1\302" \ + "\303\304\377\215.46\377\233\350\354\340\377\1""9\77A\377\215.46\377\1" \ + "V[]\377\250\350\354\340\377\1txz\377\215.46\377\2/57\377\346\346\347" \ + "\377\360\350\354\340\377\1=BD\377\224.46\377\1fjl\377\231\350\354\340" \ + "\377\1imo\377\215.46\377\2/57\377\324\325\325\377\246\350\354\340\377" \ + "\1\303\305\305\377\216.46\377\1x|}\377\212\350\354\340\377\1\246\251" \ + "\252\377\216.46\377\1y}\177\377\274\350\354\340\377\1\302\303\304\377" \ + "\215.46\377\233\350\354\340\377\1\200\204\205\377\216.46\377\1\276\300" \ + "\301\377\246\350\354\340\377\2\330\331\331\377068\377\215.46\377\1`e" \ + "f\377\361\350\354\340\377\1\237\242\243\377\224.46\377\1\316\317\320" \ + "\377\231\350\354\340\377\1\264\267\267\377\216.46\377\1aeg\377\246\350" \ + "\354\340\377\1OTV\377\216.46\377\1\303\305\305\377\212\350\354\340\377" \ + "\2\351\352\350\377068\377\215.46\377\2/57\377\323\324\324\377\273\350" \ + "\354\340\377\1\302\303\304\377\215.46\377\233\350\354\340\377\1\313\315" \ + "\315\377\216.46\377\1NSU\377\246\350\354\340\377\1chi\377\216.46\377" \ + "\1\253\256\257\377\362\350\354\340\377\1DIK\377\222.46\377\1chi\377\233" \ + "\350\354\340\377\1;AC\377\216.46\377\1\257\262\263\377\244\350\354\340" \ + "\377\1\230\233\234\377\216.46\377\1BHJ\377\214\350\354\340\377\1aeg\377" \ + "\216.46\377\1]ac\377\273\350\354\340\377\1\302\303\304\377\215.46\377" \ + "\234\350\354\340\377\1JOQ\377\216.46\377\1\231\233\234\377\244\350\354" \ + "\340\377\1\256\260\261\377\216.46\377\1""5;=\377\363\350\354\340\377" \ + "\1\256\260\261\377\222.46\377\1\313\314\315\377\233\350\354\340\377\1" \ + "\224\227\230\377\216.46\377\2:@B\377\346\346\347\377\242\350\354\340" \ + "\377\2\322\323\324\377179\377\216.46\377\1\235\240\241\377\214\350\354" \ + "\340\377\1\262\264\265\377\217.46\377\1\220\223\224\377\272\350\354\340" \ + "\377\1\302\303\304\377\215.46\377\234\350\354\340\377\1\252\254\255\377" \ + "\216.46\377\2""39;\377\326\327\330\377\242\350\354\340\377\2\340\341" \ + "\341\3778>\77\377\216.46\377\1\207\212\213\377\364\350\354\340\377\1" \ + "OTV\377\220.46\377\1`ef\377\234\350\354\340\377\2\350\354\342\3778>\77" \ + "\377\216.46\377\1Y]_\377\241\350\354\340\377\2\350\351\351\377EJL\377" \ + "\216.46\377\1;AC\377\216\350\354\340\377\1BHJ\377\216.46\377\2/57\377" \ + "\264\267\267\377\271\350\354\340\377\1\302\303\304\377\215.46\377\235" \ + "\350\354\340\377\1EJL\377\216.46\377\2KPR\377\351\354\343\377\241\350" \ + "\354\340\377\1NSU\377\216.46\377\2""179\377\346\346\347\377\364\350\354" \ + "\340\377\1\272\274\275\377\220.46\377\1\307\311\311\377\235\350\354\340" \ + "\377\1\220\223\224\377\217.46\377\1swx\377\240\350\354\340\377\1SXY\377" \ + "\217.46\377\1\220\224\225\377\216\350\354\340\377\1\233\236\237\377\217" \ + ".46\377\2""6<>\377\301\302\303\377\270\350\354\340\377\1\302\303\304" \ + "\377\215.46\377\1\352\354\350\377\234\350\354\340\377\1\246\251\252\377" \ + "\217.46\377\1bfh\377\240\350\354\340\377\1chi\377\217.46\377\1z~\177" \ + "\377\366\350\354\340\377\1Y]_\377\216.46\377\1^ce\377\237\350\354\340" \ + "\377\1BGI\377\217.46\377\1lqr\377\235\350\354\340\377\2\352\354\350\377" \ + "SXY\377\217.46\377\1BGI\377\220\350\354\340\377\1@FG\377\217.46\377\2" \ + "068\377\246\251\252\377\267\350\354\340\377\1\302\303\304\377\215.46" \ + "\377\1\335\336\337\377\235\350\354\340\377\1QVX\377\217.46\377\1\\ab" \ + "\377\236\350\354\340\377\1_de\377\217.46\377\2""6<>\377\346\347\347\377" \ + "\366\350\354\340\377\1\311\312\313\377\216.46\377\1\304\306\306\377\237" \ + "\350\354\340\377\1\265\267\270\377\220.46\377\2W\\]\377\344\345\345\377" \ + "\232\350\354\340\377\2\326\327\330\377HMO\377\220.46\377\1\261\263\264" \ + "\377\220\350\354\340\377\1\247\252\253\377\221.46\377\1\202\206\207\377" \ + "\242\350\354\340\377\2\264\267\267\377\276\300\301\377\222\350\354\340" \ + "\377\1\310\312\312\377\215.46\377\1\267\271\272\377\235\350\354\340\377" \ + "\2\314\316\316\377/57\377\217.46\377\2LQS\377\330\331\331\377\232\350" \ + "\354\340\377\2\341\342\342\377SXY\377\220.46\377\1\231\233\234\377\367" \ + "\350\354\340\377\2\341\342\343\377068\377\214.46\377\1[`a\377\241\350" \ + "\354\340\377\1eik\377\220.46\377\2;AC\377\263\265\266\377\230\350\354" \ + "\340\377\2\246\251\252\3775:<\377\220.46\377\1]ac\377\222\350\354\340" \ + "\377\1Y]_\377\221.46\377\2BHJ\377\264\267\267\377\235\350\354\340\377" \ + "\5\331\332\333\377\207\213\214\377=BD\377.46\377FKM\377\222\350\354\340" \ + "\377\1\327\330\330\377\215.46\377\1uy{\377\220\350\354\340\377\1\350" \ + "\354\342\377\215\350\354\340\377\1|\200\201\377\220.46\377\2""5:<\377" \ + "\245\247\250\377\230\350\354\340\377\2\265\267\270\377;AC\377\220.46" \ + "\377\1KPR\377\370\350\354\340\377\1\205\210\212\377\215.46\377\1\302" \ + "\303\304\377\241\350\354\340\377\2\350\351\351\377>DF\377\221.46\377" \ + "\2fjl\377\335\336\336\377\224\350\354\340\377\2\327\330\330\377^bd\377" \ + "\221.46\377\2""9\77A\377\342\343\343\377\222\350\354\340\377\2\332\333" \ + "\334\37739;\377\222.46\377\2W\\]\377\257\262\263\377\230\350\354\340" \ + "\377\3\320\322\322\377\217\222\223\377MRT\377\205.46\377\1\246\250\251" \ + "\377\221\350\354\340\377\1\347\350\350\377\215.46\377\2""179\377\324" \ + "\326\326\377\215\350\354\340\377\3\235\240\241\377CIJ\377txz\377\216" \ + "\350\354\340\377\1KPR\377\221.46\377\2[`a\377\324\325\325\377\224\350" \ + "\354\340\377\2\341\342\342\377kop\377\221.46\377\2""39;\377\323\324\324" \ + "\377\367\350\354\340\377\2\350\354\342\3775;=\377\214.46\377\1Y]_\377" \ + "\243\350\354\340\377\2\303\305\305\377/57\377\221.46\377\3""068\377{" \ + "\177\200\377\332\333\334\377\220\350\354\340\377\3\325\326\327\377tx" \ + "z\377/57\377\222.46\377\1\270\272\272\377\224\350\354\340\377\1\244\247" \ + "\250\377\224.46\377\3>DF\377\206\211\212\377\277\301\302\377\221\350" \ + "\354\340\377\4\325\326\327\377\245\247\250\377txy\377BGI\377\210.46\377" \ + "\1BGI\377\222\350\354\340\377\1/57\377\215.46\377\2CIJ\377\330\332\332" \ + "\377\211\350\354\340\377\3\302\304\305\377|\200\201\3777=\77\377\202" \ + ".46\377\2""068\377\332\333\334\377\215\350\354\340\377\2\326\327\330" \ + "\3774:<\377\221.46\377\3/57\377ptv\377\320\322\322\377\220\350\354\340" \ + "\377\3\336\337\337\377\201\204\206\377179\377\222.46\377\1\237\242\243" \ + "\377\370\350\354\340\377\1\224\227\230\377\215.46\377\1\277\301\302\377" \ + "\244\350\354\340\377\1\224\227\230\377\224.46\377\3TYZ\377\232\235\236" \ + "\377\317\320\320\377\212\350\354\340\377\3\321\322\323\377\232\235\236" \ + "\377SXY\377\224.46\377\1\207\212\213\377\226\350\354\340\377\1vz{\377" \ + "\226.46\377\21""179\377\\ab\377~\201\202\377\233\236\237\377\272\274" \ + "\275\377\313\315\315\377\325\326\327\377\333\334\334\377\343\344\344" \ + "\377\331\332\333\377\315\316\317\377\301\302\303\377\264\266\266\377" \ + "\224\230\231\377uy{\377V[]\3776<>\377\215.46\377\1\236\241\242\377\221" \ + "\350\354\340\377\1PUW\377\216.46\377\12""179\377y}\177\377\274\276\276" \ + "\377\337\340\340\377\343\344\344\377\332\333\334\377\305\306\307\377" \ + "\235\237\240\377rvw\377CE\377\221\350\354\340\377\1\204\210\211\377\236.46\377\2/57\377\330" \ + "\331\331\377\216\350\354\340\377\1\220\224\225\377\226.46\377\12""28" \ + ":\377LQS\377kop\377|\200\201\377\205\210\212\377\211\214\215\377\200" \ + "\204\205\377ptv\377UZ\\\3776<>\377\226.46\377\1[`a\377\371\350\354\340" \ + "\377\1\225\230\231\377\215.46\377\1\274\276\276\377\247\350\354\340\377" \ + "\1nrs\377\264.46\377\1[`a\377\232\350\354\340\377\1UZ\\\377\263.46\377" \ + "\1\231\233\234\377\220\350\354\340\377\1\270\272\272\377\237.46\377\1" \ + "ost\377\217\350\354\340\377\1\204\210\211\377\264.46\377\2PUW\377\351" \ + "\354\343\377\370\350\354\340\377\2\350\354\342\3779>@\377\214.46\377" \ + "\1TYZ\377\251\350\354\340\377\1nrs\377\262.46\377\1bfh\377\234\350\354" \ + "\340\377\1_de\377\262.46\377\1:@B\377\221\350\354\340\377\1BHJ\377\236" \ + ".46\377\2/57\377\326\327\330\377\217\350\354\340\377\1\177\203\204\377" \ + "\262.46\377\2SXY\377\351\352\350\377\371\350\354\340\377\1\213\217\220" \ + "\377\215.46\377\1\271\273\274\377\252\350\354\340\377\1\177\203\204\377" \ + "\260.46\377\1quw\377\236\350\354\340\377\1rvw\377\262.46\377\1\222\225" \ + "\226\377\220\350\354\340\377\1\231\234\235\377\237.46\377\1mqs\377\220" \ + "\350\354\340\377\1\224\227\230\377\260.46\377\1bfh\377\372\350\354\340" \ + "\377\2\350\352\351\3775:<\377\214.46\377\1QVX\377\254\350\354\340\377" \ + "\2\231\233\234\377068\377\254.46\377\2/57\377\214\220\221\377\240\350" \ + "\354\340\377\2\237\242\243\377068\377\260.46\377\2""7=\77\377\352\354" \ + "\345\377\220\350\354\340\377\1BHJ\377\237.46\377\1\323\324\324\377\220" \ + "\350\354\340\377\2\253\256\257\3774:<\377\255.46\377\1y|~\377\373\350" \ + "\354\340\377\1\202\205\206\377\215.46\377\1\266\270\271\377\255\350\354" \ + "\340\377\2\312\313\314\377CIJ\377\252.46\377\2>CE\377\277\301\302\377" \ + "\242\350\354\340\377\2\322\323\324\377PUV\377\260.46\377\1\213\216\217" \ + "\377\220\350\354\340\377\2\307\311\311\377/57\377\236.46\377\1jnp\377" \ + "\221\350\354\340\377\2\330\331\331\377LQS\377\252.46\377\2""6<>\377\257" \ + "\262\263\377\373\350\354\340\377\2\342\343\343\377179\377\214.46\377" \ + "\1NSU\377\257\350\354\340\377\2\351\354\343\377quw\377\250.46\377\2f" \ + "jl\377\346\347\347\377\245\350\354\340\377\2\224\230\231\3775;=\377\255" \ + ".46\377\2W\\]\377\265\267\270\377\221\350\354\340\377\1\227\232\233\377" \ + "\237.46\377\1\321\322\323\377\222\350\354\340\377\2\200\204\205\377/" \ + "57\377\247.46\377\2Y^`\377\335\336\336\377\374\350\354\340\377\1ptu\377" \ + "\215.46\377\1\264\267\267\377\261\350\354\340\377\2\304\306\306\377L" \ + "QR\377\244.46\377\2FKM\377\271\273\274\377\250\350\354\340\377\3\346" \ + "\347\347\377|\200\201\37728:\377\250.46\377\3""28:\377vz{\377\317\321" \ + "\321\377\224\350\354\340\377\1\235\237\240\377\234.46\377\3/57\377qu" \ + "w\377\341\342\342\377\223\350\354\340\377\2\321\322\323\377V[]\377\244" \ + ".46\377\2>DF\377\253\256\257\377\375\350\354\340\377\1\306\307\310\377" \ + "\215.46\377\1MRT\377\264\350\354\340\377\2\242\245\246\377CIJ\377\240" \ + ".46\377\2>CE\377\231\233\234\377\254\350\354\340\377\3\346\346\347\377" \ + "\207\213\214\377:@B\377\243.46\377\4/57\377Y^`\377\235\240\241\377\352" \ + "\353\347\377\227\350\354\340\377\2\266\270\271\377>CE\377\230.46\377" \ + "\3""179\377quw\377\324\326\326\377\227\350\354\340\377\2\255\257\260" \ + "\377KPR\377\240.46\377\3""9>@\377\215\220\221\377\350\354\342\377\376" \ + "\350\354\340\377\1OTV\377\215.46\377\1\262\264\265\377\266\350\354\340" \ + "\377\2\252\254\255\377KPR\377\234.46\377\2DIK\377\242\244\245\377\261" \ + "\350\354\340\377\3\256\260\261\377dij\377068\377\235.46\377\4""068\377" \ + "`ef\377\243\246\247\377\346\347\347\377\233\350\354\340\377\3\352\354" \ + "\345\377z~\177\37728:\377\224.46\377\3HMO\377\224\230\231\377\350\351" \ + "\351\377\233\350\354\340\377\2\265\267\270\377SXY\377\234.46\377\2>C" \ + "E\377\226\231\232\377\377\350\354\340\377\2\350\354\340\377\227\232\233" \ + "\377\215.46\377\1PUW\377\271\350\354\340\377\3\317\320\320\377\210\214" \ + "\215\377BHJ\377\226.46\377\3>CE\377\201\204\206\377\312\313\314\377\265" \ + "\350\354\340\377\4\350\354\342\377\257\261\262\377x|}\377BHJ\377\226" \ + ".46\377\5""6<>\377`ef\377\220\223\224\377\277\301\302\377\350\354\342" \ + "\377\240\350\354\340\377\3\347\350\350\377\220\223\224\377HMO\377\216" \ + ".46\377\4""179\377[`a\377\224\227\230\377\326\327\330\377\240\350\354" \ + "\340\377\3\330\331\331\377\220\223\224\377HMO\377\226.46\377\3""9>@\377" \ + "z~\177\377\301\302\303\377\377\350\354\340\377\202\350\354\340\377\2" \ + "\332\333\334\37739;\377\215.46\377\1\275\277\277\377\274\350\354\340" \ + "\377\4\326\327\330\377\244\247\250\377swx\377CIJ\377\216.46\377\4@FG" \ + "\377nrs\377\240\243\244\377\321\322\323\377\274\350\354\340\377\7\350" \ + "\352\351\377\306\307\310\377\242\244\245\377\177\203\204\377Y^`\377B" \ + "HJ\3775;=\377\211.46\377\6CIJ\377_de\377z~\177\377\226\231\232\377\262" \ + "\264\265\377\325\326\327\377\250\350\354\340\377\6\336\337\337\377\246" \ + "\251\252\377\205\210\212\377fjl\377LQS\377DIK\377\202@\377\350\352\351\377\377\350\354\340\377\377" \ + "\350\354\340\377\377\350\354\340\377\234\350\354\340\377\2\334\335\335" \ + "\377\77EG\377\216.46\377\1\243\246\247\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\234\350\354\340\377\2\335\336\337\377" \ + "@FG\377\216.46\377\1V[]\377\377\350\354\340\377\377\350\354\340\377\377" \ + "\350\354\340\377\234\350\354\340\377\2\336\337\337\377BGI\377\216.46" \ + "\377\2""6<>\377\335\336\336\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\233\350\354\340\377\2\333\334\334\377BHJ\377\217" \ + ".46\377\1\252\254\255\377\377\350\354\340\377\377\350\354\340\377\377" \ + "\350\354\340\377\233\350\354\340\377\2\277\301\302\3779>@\377\217.46" \ + "\377\1ptu\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340" \ + "\377\233\350\354\340\377\2\215\220\221\377/57\377\217.46\377\1LQS\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\232\350" \ + "\354\340\377\2\304\306\306\377PUW\377\220.46\377\2\77EG\377\341\342\343" \ + "\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\230" \ + "\350\354\340\377\2\335\336\336\377imo\377\221.46\377\2""5:<\377\322\323" \ + "\324\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\227\350\354\340\377\3\312\313\314\377vz{\377179\377\221.46\377\2""2" \ + "8:\377\275\277\277\377\377\350\354\340\377\377\350\354\340\377\377\350" \ + "\354\340\377\225\350\354\340\377\3\341\342\343\377\237\242\243\377MR" \ + "T\377\223.46\377\2""068\377\271\273\274\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\223\350\354\340\377\3\310\312\312\377" \ + "\215\220\221\377OTV\377\225.46\377\2""068\377\264\267\267\377\377\350" \ + "\354\340\377\377\350\354\340\377\377\350\354\340\377\221\350\354\340" \ + "\377\3\217\222\223\377Y^`\377179\377\227.46\377\2""5:<\377\275\277\300" \ + "\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\222" \ + "\350\354\340\377\1\201\204\206\377\230.46\377\2;AC\377\313\315\315\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\223\350" \ + "\354\340\377\2\341\342\343\377179\377\226.46\377\2NSU\377\335\336\337" \ + "\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\225" \ + "\350\354\340\377\1x|}\377\225.46\377\1ptu\377\377\350\354\340\377\377" \ + "\350\354\340\377\377\350\354\340\377\227\350\354\340\377\2\333\334\334" \ + "\377/57\377\222.46\377\2""9>@\377\252\254\255\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\231\350\354\340\377\1ptu\377" \ + "\221.46\377\2eik\377\344\345\345\377\377\350\354\340\377\377\350\354" \ + "\340\377\377\350\354\340\377\232\350\354\340\377\1\324\325\325\377\217" \ + ".46\377\2PUW\377\275\277\277\377\377\350\354\340\377\377\350\354\340" \ + "\377\377\350\354\340\377\235\350\354\340\377\1gkl\377\214.46\377\2LQ" \ + "S\377\260\263\263\377\377\350\354\340\377\377\350\354\340\377\377\350" \ + "\354\340\377\237\350\354\340\377\1\313\315\315\377\211.46\377\3""068" \ + "\377jnp\377\275\277\277\377\377\350\354\340\377\377\350\354\340\377\377" \ + "\350\354\340\377\242\350\354\340\377\1^ce\377\205.46\377\4""8>\77\377" \ + "kpq\377\253\255\256\377\350\352\351\377\377\350\354\340\377\377\350\354" \ + "\340\377\377\350\354\340\377\244\350\354\340\377\6\302\304\305\377.4" \ + "6\377;AC\377bgh\377\224\230\231\377\314\316\316\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\251\350\354\340\377\1\345\346" \ + "\346\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377" \ + "\377\350\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350" \ + "\354\340\377\377\350\354\340\377\377\350\354\340\377\377\350\354\340" \ + "\377\337\350\354\340\377\1\352\354\350\377\210\325\326\327\377\1\341" \ + "\342\342\377\232\350\354\340\377\1\341\342\343\377\207\325\326\327\377" \ + "\1\343\344\344\377\244\350\354\340\377\2\314\316\316\377\267\271\272" \ + "\377\202\244\247\250\377\2\267\271\272\377\315\316\317\377\236\350\354" \ + "\340\377\1\350\351\351\377\204\343\344\344\377\224\350\354\340\377\1" \ + "\332\333\334\377\217\325\326\327\377\232\350\354\340\377\3\300\302\302" \ + "\377\235\237\240\377\206\211\212\377\202\202\205\206\377\3\212\215\216" \ + "\377\242\245\246\377\307\311\311\377\225\350\354\340\377\1\344\345\345" \ + "\377\223\325\326\327\377\1\335\336\336\377\377\350\354\340\377\302\350" \ + "\354\340\377\1\235\237\240\377\212.46\377\3KPR\377\213\216\217\377\335" \ + "\336\337\377\226\350\354\340\377\1kpq\377\211.46\377\3BGI\377txy\377" \ + "\271\273\273\377\235\350\354\340\377\3\265\267\270\377lqr\3776<>\377" \ + "\206.46\377\3""6<>\377nrs\377\270\272\272\377\233\350\354\340\377\1S" \ + "XY\377\204.46\377\224\350\354\340\377\1GLN\377\217.46\377\1\331\332\333" \ + "\377\226\350\354\340\377\3\267\271\272\377fjl\377068\377\210.46\377\4" \ + "068\377aeg\377\246\251\252\377\350\354\342\377\221\350\354\340\377\1" \ + "x|}\377\223.46\377\1SXY\377\377\350\354\340\377\302\350\354\340\377\1" \ + "\235\237\240\377\214.46\377\2""179\377\213\217\220\377\225\350\354\340" \ + "\377\1kpq\377\214.46\377\2PUW\377\326\327\330\377\231\350\354\340\377" \ + "\2\275\277\300\377PUV\377\214.46\377\2RWY\377\277\301\302\377\231\350" \ + "\354\340\377\1SXY\377\204.46\377\224\350\354\340\377\1GLN\377\217.46" \ + "\377\1\332\333\334\377\224\350\354\340\377\2\312\313\314\377QVX\377\216" \ + ".46\377\2""6<>\377\207\213\214\377\220\350\354\340\377\1txz\377\223." \ + "46\377\1SXY\377\377\350\354\340\377\302\350\354\340\377\1\235\237\240" \ + "\377\216.46\377\1swx\377\224\350\354\340\377\1kpq\377\215.46\377\2""7" \ + "=\77\377\317\321\321\377\227\350\354\340\377\1\210\214\215\377\220.4" \ + "6\377\1\211\214\215\377\230\350\354\340\377\1SXY\377\204.46\377\224\350" \ + "\354\340\377\1GLN\377\217.46\377\1\334\335\335\377\223\350\354\340\377" \ + "\2\225\230\231\377068\377\220.46\377\1JOQ\377\220\350\354\340\377\1k" \ + "pq\377\223.46\377\1SXY\377\377\350\354\340\377\302\350\354\340\377\1" \ + "\235\237\240\377\204.46\377\1@FG\377\202JOQ\377\2FKM\377068\377\206." \ + "46\377\1\257\261\262\377\223\350\354\340\377\1kpq\377\204.46\377\1GL" \ + "N\377\202JOQ\377\1AFH\377\206.46\377\1GMN\377\226\350\354\340\377\1g" \ + "lm\377\207.46\377\4CE\377\207.46\377\1glm\377\227" \ + "\350\354\340\377\1SXY\377\204.46\377\224\350\354\340\377\1GLN\377\203" \ + ".46\377\1/57\377\213\377\204.46\377\1SXY\377\223\350" \ + "\354\340\377\1kpq\377\204.46\377\1\346\347\347\377\203\350\354\340\377" \ + "\2\352\354\345\377\207\213\214\377\205.46\377\1\271\273\274\377\224\350" \ + "\354\340\377\1z~\177\377\205.46\377\3""5;=\377\213\217\220\377\327\330" \ + "\330\377\204\350\354\340\377\3\334\335\335\377\223\226\227\3778>\77\377" \ + "\205.46\377\1y|~\377\226\350\354\340\377\1SXY\377\204.46\377\224\350" \ + "\354\340\377\1GLN\377\203.46\377\1:@B\377\235\350\354\340\377\1\240\243" \ + "\244\377\205.46\377\3:@B\377\224\230\231\377\344\345\345\377\206\350" \ + "\354\340\377\5\306\307\310\377\202\205\206\377:@B\377.46\377GMN\377\231" \ + "\350\354\340\377\204.46\377\1SXY\377\377\350\354\340\377\312\350\354" \ + "\340\377\1\235\237\240\377\204.46\377\1\265\267\270\377\205\350\354\340" \ + "\377\1\255\257\260\377\205.46\377\1\351\354\343\377\222\350\354\340\377" \ + "\1kpq\377\204.46\377\1\346\347\347\377\205\350\354\340\377\1z~\177\377" \ + "\204.46\377\1\210\214\215\377\223\350\354\340\377\1\257\262\263\377\205" \ + ".46\377\2^bd\377\350\352\351\377\210\350\354\340\377\2\351\354\343\377" \ + "glm\377\205.46\377\1\253\256\257\377\225\350\354\340\377\1SXY\377\204" \ + ".46\377\224\350\354\340\377\1GLN\377\203.46\377\1:@B\377\234\350\354" \ + "\340\377\2\332\333\334\37728:\377\204.46\377\2[`a\377\347\350\350\377" \ + "\213\350\354\340\377\2\237\242\243\377\264\266\266\377\231\350\354\340" \ + "\377\204.46\377\1SXY\377\377\350\354\340\377\312\350\354\340\377\1\235" \ + "\237\240\377\204.46\377\1\265\267\270\377\206\350\354\340\377\205.46" \ + "\377\1\330\331\331\377\222\350\354\340\377\1kpq\377\204.46\377\1\346" \ + "\347\347\377\205\350\354\340\377\1\310\312\312\377\204.46\377\1quw\377" \ + "\223\350\354\340\377\1BGI\377\204.46\377\1gkl\377\214\350\354\340\377" \ + "\1txy\377\204.46\377\1AFH\377\225\350\354\340\377\1SXY\377\204.46\377" \ + "\224\350\354\340\377\1GLN\377\203.46\377\1:@B\377\234\350\354\340\377" \ + "\1jnp\377\204.46\377\1UZ\\\377\250\350\354\340\377\204.46\377\1SXY\377" \ + "\377\350\354\340\377\312\350\354\340\377\1\235\237\240\377\204.46\377" \ + "\1\265\267\270\377\205\350\354\340\377\1\352\354\345\377\205.46\377\1" \ + "\340\341\341\377\222\350\354\340\377\1kpq\377\204.46\377\1\346\347\347" \ + "\377\205\350\354\340\377\1\271\273\273\377\204.46\377\1\201\204\206\377" \ + "\222\350\354\340\377\1\234\237\240\377\204.46\377\1CIJ\377\216\350\354" \ + "\340\377\1PUV\377\204.46\377\1\233\236\237\377\224\350\354\340\377\1" \ + "SXY\377\204.46\377\224\350\354\340\377\1GLN\377\203.46\377\1:@B\377\233" \ + "\350\354\340\377\1\341\342\342\377\204.46\377\2""179\377\335\336\337" \ + "\377\250\350\354\340\377\204.46\377\1SXY\377\377\350\354\340\377\312" \ + "\350\354\340\377\1\235\237\240\377\204.46\377\1\265\267\270\377\205\350" \ + "\354\340\377\1\222\225\226\377\204.46\377\1""068\377\223\350\354\340" \ + "\377\1kpq\377\204.46\377\1\346\347\347\377\205\350\354\340\377\1bfh\377" \ + "\204.46\377\1\235\237\240\377\222\350\354\340\377\1V[]\377\204.46\377" \ + "\1\253\256\257\377\216\350\354\340\377\1\273\275\276\377\204.46\377\1" \ + "TYZ\377\224\350\354\340\377\1SXY\377\204.46\377\224\350\354\340\377\1" \ + "GLN\377\203.46\377\1:@B\377\233\350\354\340\377\1\231\233\234\377\204" \ + ".46\377\1y}\177\377\251\350\354\340\377\204.46\377\1SXY\377\377\350\354" \ + "\340\377\312\350\354\340\377\1\235\237\240\377\204.46\377\1\265\267\270" \ + "\377\203\350\354\340\377\3\345\346\346\377\206\211\212\377/57\377\204" \ + ".46\377\1[`a\377\223\350\354\340\377\1kpq\377\204.46\377\1\346\347\347" \ + "\377\203\350\354\340\377\2\323\324\324\377fjl\377\204.46\377\2/57\377" \ + "\336\337\337\377\221\350\354\340\377\1\345\346\346\377\204.46\377\1""9" \ + "\77A\377\220\350\354\340\377\1BHJ\377\204.46\377\1\341\342\342\377\223" \ + "\350\354\340\377\1SXY\377\204.46\377\224\350\354\340\377\1GLN\377\203" \ + ".46\377\1:@B\377\233\350\354\340\377\1gkl\377\204.46\377\1\300\302\302" \ + "\377\251\350\354\340\377\204.46\377\1SXY\377\377\350\354\340\377\312" \ + "\350\354\340\377\1\235\237\240\377\204.46\377\1""7=\77\377\203@\377\206.46\377\1\200\204\205\377\222" \ + "\350\354\340\377\1\302\303\304\377\204.46\377\1rvw\377\220\350\354\340" \ + "\377\1~\202\203\377\204.46\377\1\274\276\276\377\223\350\354\340\377" \ + "\1SXY\377\204.46\377\224\350\354\340\377\1GLN\377\203.46\377\1""179\377" \ + "\211fjl\377\1\311\312\313\377\221\350\354\340\377\1@FG\377\204.46\377" \ + "\1\352\354\345\377\251\350\354\340\377\204.46\377\1SXY\377\377\350\354" \ + "\340\377\312\350\354\340\377\1\235\237\240\377\216.46\377\1eik\377\224" \ + "\350\354\340\377\1kpq\377\215.46\377\1ptv\377\223\350\354\340\377\1\256" \ + "\260\261\377\204.46\377\1\217\222\223\377\220\350\354\340\377\1\235\237" \ + "\240\377\204.46\377\1\246\250\251\377\223\350\354\340\377\1SXY\377\204" \ + ".46\377\224\350\354\340\377\1GLN\377\215.46\377\1\265\267\270\377\221" \ + "\350\354\340\377\1""179\377\203.46\377\1""39;\377\252\350\354\340\377" \ + "\204.46\377\1SXY\377\377\350\354\340\377\312\350\354\340\377\1\235\237" \ + "\240\377\215.46\377\1ptu\377\225\350\354\340\377\1kpq\377\213.46\377" \ + "\2:@B\377\255\257\260\377\224\350\354\340\377\1\236\241\242\377\204." \ + "46\377\1\235\237\240\377\220\350\354\340\377\1\251\253\254\377\204.4" \ + "6\377\1\231\233\234\377\223\350\354\340\377\1SXY\377\204.46\377\224\350" \ + "\354\340\377\1GLN\377\215.46\377\1\265\267\270\377\221\350\354\340\377" \ + "\204.46\377\1:@B\377\252\350\354\340\377\204.46\377\1SXY\377\377\350" \ + "\354\340\377\312\350\354\340\377\1\235\237\240\377\212.46\377\3""8>\77" \ + "\377ost\377\310\312\312\377\226\350\354\340\377\1kpq\377\213.46\377\2" \ + "7=\77\377\352\354\350\377\224\350\354\340\377\1\257\262\263\377\204." \ + "46\377\1\214\220\221\377\220\350\354\340\377\1\231\234\235\377\204.4" \ + "6\377\1\251\253\254\377\223\350\354\340\377\1SXY\377\204.46\377\224\350" \ + "\354\340\377\1GLN\377\215.46\377\1\265\267\270\377\221\350\354\340\377" \ + "\1""5;=\377\203.46\377\1""068\377\252\350\354\340\377\204.46\377\1SX" \ + "Y\377\377\350\354\340\377\312\350\354\340\377\1\235\237\240\377\204." \ + "46\377\1x|}\377\202\253\256\257\377\3\254\257\257\377\300\302\302\377" \ + "\326\327\330\377\231\350\354\340\377\1kpq\377\204.46\377\1\302\303\304" \ + "\377\202\325\326\327\377\1\204\210\211\377\204.46\377\1\202\206\207\377" \ + "\224\350\354\340\377\1\304\306\306\377\204.46\377\1kpq\377\220\350\354" \ + "\340\377\1z~\177\377\204.46\377\1\275\277\277\377\223\350\354\340\377" \ + "\1SXY\377\204.46\377\224\350\354\340\377\1GLN\377\203.46\377\1""6<>\377" \ + "\211\271\273\274\377\1\346\347\347\377\221\350\354\340\377\1INP\377\204" \ + ".46\377\1\331\332\333\377\251\350\354\340\377\204.46\377\1SXY\377\377" \ + "\350\354\340\377\312\350\354\340\377\1\235\237\240\377\204.46\377\1\251" \ + "\253\254\377\236\350\354\340\377\1kpq\377\204.46\377\1\346\347\347\377" \ + "\202\350\354\340\377\2\350\354\342\3779\77A\377\203.46\377\2""179\377" \ + "\336\337\337\377\223\350\354\340\377\2\351\352\350\377068\377\203.46" \ + "\377\1""5;=\377\220\350\354\340\377\1=BD\377\203.46\377\2/57\377\347" \ + "\350\350\377\223\350\354\340\377\1SXY\377\204.46\377\224\350\354\340" \ + "\377\1GLN\377\203.46\377\1:@B\377\233\350\354\340\377\1swx\377\204.4" \ + "6\377\1\235\240\241\377\251\350\354\340\377\204.46\377\1SXY\377\377\350" \ + "\354\340\377\312\350\354\340\377\1\235\237\240\377\204.46\377\1\251\253" \ + "\254\377\236\350\354\340\377\1kpq\377\204.46\377\1\346\347\347\377\203" \ + "\350\354\340\377\1\224\230\231\377\204.46\377\1ptu\377\224\350\354\340" \ + "\377\1\\ab\377\204.46\377\1\242\244\245\377\216\350\354\340\377\1\260" \ + "\263\263\377\204.46\377\1Y^`\377\224\350\354\340\377\1SXY\377\204.46" \ + "\377\224\350\354\340\377\1GLN\377\203.46\377\1:@B\377\233\350\354\340" \ + "\377\1\250\253\253\377\204.46\377\1HMO\377\251\350\354\340\377\204.4" \ + "6\377\1SXY\377\377\350\354\340\377\312\350\354\340\377\1\235\237\240" \ + "\377\204.46\377\1\251\253\254\377\236\350\354\340\377\1kpq\377\204.4" \ + "6\377\1\346\347\347\377\204\350\354\340\377\1\377\224\350\354\340\377\1" \ + "GLN\377\203.46\377\1:@B\377\235\350\354\340\377\1AFH\377\204.46\377\2" \ + "/57\377\217\222\223\377\212\350\354\340\377\4\274\276\276\377bgh\377" \ + ".46\377\327\330\330\377\230\350\354\340\377\204.46\377\1SXY\377\377\350" \ + "\354\340\377\312\350\354\340\377\1\235\237\240\377\204.46\377\1\251\253" \ + "\254\377\236\350\354\340\377\1kpq\377\204.46\377\1\346\347\347\377\205" \ + "\350\354\340\377\1\240\243\244\377\204.46\377\1MRT\377\224\350\354\340" \ + "\377\1\220\224\225\377\205.46\377\3""068\377y}\177\377\302\304\305\377" \ + "\204\350\354\340\377\3\306\307\310\377\200\204\205\377179\377\205.46" \ + "\377\1\220\223\224\377\223\350\354\340\377\3\306\307\310\377\257\261" \ + "\262\377hmn\377\204.46\377\1_de\377\224\350\354\340\377\1GLN\377\203" \ + ".46\377\1""9>@\377\213\343\344\344\377\222\350\354\340\377\2\313\315" \ + "\315\37739;\377\205.46\377\12@FG\377\212\215\216\377\302\303\304\377" \ + "\341\342\342\377\350\354\340\377\347\350\350\377\320\322\322\377\253" \ + "\256\257\377w{|\377=BD\377\203.46\377\1\212\215\216\377\230\350\354\340" \ + "\377\204.46\377\1SXY\377\377\350\354\340\377\312\350\354\340\377\1\235" \ + "\237\240\377\204.46\377\1\264\266\266\377\236\350\354\340\377\1kpq\377" \ + "\204.46\377\1\346\347\347\377\206\350\354\340\377\1BHJ\377\204.46\377" \ + "\1\251\253\254\377\224\350\354\340\377\1txz\377\210.46\377\2""7=\77\377" \ + "8>\77\377\210.46\377\1txz\377\224\350\354\340\377\1SXY\377\206.46\377" \ + "\1\251\253\254\377\224\350\354\340\377\1GLN\377\217.46\377\1\320\322" \ + "\322\377\222\350\354\340\377\2\276\300\301\3775;=\377\221.46\377\1@F" \ + "G\377\230\350\354\340\377\204.46\377\1SXY\377\377\350\354\340\377\312" \ + "\350\354\340\377\1\235\237\240\377\204.46\377\1\265\267\270\377\236\350" \ + "\354\340\377\1kpq\377\204.46\377\1\346\347\347\377\206\350\354\340\377" \ + "\1\246\251\252\377\204.46\377\1AFH\377\225\350\354\340\377\2\232\235" \ + "\236\377068\377\216.46\377\2""068\377\232\235\236\377\225\350\354\340" \ + "\377\1X]^\377\205.46\377\1LQS\377\225\350\354\340\377\1GLN\377\217.4" \ + "6\377\1\316\317\320\377\223\350\354\340\377\2\324\325\325\377NSU\377" \ + "\220.46\377\2""068\377\321\322\323\377\227\350\354\340\377\204.46\377" \ + "\1SXY\377\377\350\354\340\377\312\350\354\340\377\1\235\237\240\377\204" \ + ".46\377\1\265\267\270\377\236\350\354\340\377\1kpq\377\204.46\377\1\346" \ + "\347\347\377\207\350\354\340\377\1GLN\377\204.46\377\1\226\231\232\377" \ + "\225\350\354\340\377\2\317\320\320\377`ef\377\214.46\377\2bgh\377\317" \ + "\321\321\377\226\350\354\340\377\1_de\377\204.46\377\2:@B\377\332\333" \ + "\334\377\225\350\354\340\377\1GLN\377\217.46\377\1\316\317\320\377\225" \ + "\350\354\340\377\2\236\241\242\377BGI\377\214.46\377\3""8>\77\377~\201" \ + "\202\377\335\336\337\377\230\350\354\340\377\204.46\377\1SXY\377\377" \ + "\350\354\340\377\312\350\354\340\377\1\235\237\240\377\204.46\377\1\265" \ + "\267\270\377\236\350\354\340\377\1kpq\377\204.46\377\1\346\347\347\377" \ + "\207\350\354\340\377\1\254\257\257\377\204.46\377\2""8>\77\377\352\354" \ + "\350\377\226\350\354\340\377\3\311\312\313\377\200\204\205\377EJL\377" \ + "\206.46\377\3EJL\377\203\207\210\377\313\314\315\377\230\350\354\340" \ + "\377\1_de\377\202.46\377\3/57\377fjl\377\342\343\343\377\226\350\354" \ + "\340\377\1SXY\377\217